+
@@ -209,7 +216,7 @@ if (enableShortcutKey.value) {
{{ text }}
@@ -218,7 +225,7 @@ if (enableShortcutKey.value) {
-
diff --git a/packages/effects/plugins/package.json b/packages/effects/plugins/package.json
index 7c58ab831..aea279d6a 100644
--- a/packages/effects/plugins/package.json
+++ b/packages/effects/plugins/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/plugins",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
@@ -41,6 +41,7 @@
},
"dependencies": {
"@tinyflow-ai/vue": "catalog:",
+ "@vben-core/design": "workspace:*",
"@vben-core/form-ui": "workspace:*",
"@vben-core/shadcn-ui": "workspace:*",
"@vben-core/shared": "workspace:*",
diff --git a/packages/effects/plugins/src/echarts/echarts.ts b/packages/effects/plugins/src/echarts/echarts.ts
index 216d883d4..02432a6c4 100644
--- a/packages/effects/plugins/src/echarts/echarts.ts
+++ b/packages/effects/plugins/src/echarts/echarts.ts
@@ -43,7 +43,11 @@ import {
VisualMapComponent,
} from 'echarts/components';
import * as echarts from 'echarts/core';
-import { LabelLayout, UniversalTransition } from 'echarts/features';
+import {
+ LabelLayout,
+ LegacyGridContainLabel,
+ UniversalTransition,
+} from 'echarts/features';
import { CanvasRenderer } from 'echarts/renderers';
// 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型
@@ -78,6 +82,7 @@ echarts.use([
FunnelChart,
GaugeChart,
LabelLayout,
+ LegacyGridContainLabel,
UniversalTransition,
CanvasRenderer,
LegendComponent,
diff --git a/packages/effects/plugins/src/echarts/use-echarts.ts b/packages/effects/plugins/src/echarts/use-echarts.ts
index dd87b5bbb..df9ade0e5 100644
--- a/packages/effects/plugins/src/echarts/use-echarts.ts
+++ b/packages/effects/plugins/src/echarts/use-echarts.ts
@@ -6,7 +6,17 @@ import type { Nullable } from '@vben/types';
import type EchartsUI from './echarts-ui.vue';
-import { computed, nextTick, watch } from 'vue';
+import {
+ computed,
+ nextTick,
+ onActivated,
+ onBeforeUnmount,
+ onDeactivated,
+ onMounted,
+ ref,
+ unref,
+ watch,
+} from 'vue';
import { usePreferences } from '@vben/preferences';
@@ -29,6 +39,8 @@ type EchartsThemeType = 'dark' | 'light' | null;
function useEcharts(chartRef: Ref
) {
let chartInstance: echarts.ECharts | null = null;
let cacheOptions: EChartsOption = {};
+ // echarts是否处于激活状态
+ const isActiveRef = ref(false);
const { isDark } = usePreferences();
const { height, width } = useWindowSize();
@@ -56,6 +68,11 @@ function useEcharts(chartRef: Ref) {
return maybeComponent.$el ?? null;
};
+ onMounted(() => (isActiveRef.value = true));
+ onActivated(() => (isActiveRef.value = true));
+ onDeactivated(() => (isActiveRef.value = false));
+ onBeforeUnmount(() => (isActiveRef.value = false));
+
const isElHidden = (el: HTMLElement | null): boolean => {
if (!el) return true;
return el.offsetHeight === 0 || el.offsetWidth === 0;
@@ -85,6 +102,9 @@ function useEcharts(chartRef: Ref) {
options: EChartsOption,
clear = true,
): Promise> => {
+ if (!unref(isActiveRef)) {
+ return Promise.resolve(null);
+ }
cacheOptions = options;
const currentOptions = {
...options,
@@ -168,8 +188,8 @@ function useEcharts(chartRef: Ref) {
useResizeObserver(chartRef as never, resizeHandler);
- watch(isDark, () => {
- if (chartInstance) {
+ watch([isDark, isActiveRef], () => {
+ if (chartInstance && unref(isActiveRef)) {
chartInstance.dispose();
initCharts();
renderEcharts(cacheOptions);
@@ -182,6 +202,7 @@ function useEcharts(chartRef: Ref) {
chartInstance?.dispose();
});
return {
+ isActive: isActiveRef,
renderEcharts,
resize,
updateData,
diff --git a/packages/effects/plugins/src/vxe-table/api.ts b/packages/effects/plugins/src/vxe-table/api.ts
index 2b60d602e..ca896ae19 100644
--- a/packages/effects/plugins/src/vxe-table/api.ts
+++ b/packages/effects/plugins/src/vxe-table/api.ts
@@ -45,14 +45,13 @@ export class VxeGridApi = any> {
const defaultState = getDefaultState();
this.store = new Store(
mergeWithArrayOverride(storeState, defaultState),
- {
- onUpdate: () => {
- // this.prevState = this.state;
- this.state = this.store.state;
- },
- },
);
+ this.store.subscribe((state) => {
+ // this.prevState = this.state;
+ this.state = state;
+ });
+
this.state = this.store.state;
this.stateHandler = new StateHandler();
bindMethods(this);
diff --git a/packages/effects/plugins/src/vxe-table/init.ts b/packages/effects/plugins/src/vxe-table/init.ts
index 0a1e8bab6..3144c3e23 100644
--- a/packages/effects/plugins/src/vxe-table/init.ts
+++ b/packages/effects/plugins/src/vxe-table/init.ts
@@ -50,8 +50,15 @@ import { extendsDefaultFormatter } from './extends';
// 是否加载过
let isInit = false;
-// eslint-disable-next-line import/no-mutable-exports
-export let useTableForm: typeof useVbenForm;
+let tableFormFactory: typeof useVbenForm | undefined;
+
+export const useTableForm: typeof useVbenForm = ((...args) => {
+ if (!tableFormFactory) {
+ throw new Error('useTableForm is not initialized');
+ }
+
+ return tableFormFactory(...args);
+}) as typeof useVbenForm;
// 部分组件,如果没注册,vxe-table 会报错,这里实际没用组件,只是为了不报错,同时可以减少打包体积
const createVirtualComponent = (name = '') => {
@@ -104,7 +111,7 @@ export function setupVbenVxeTable(setupOptions: SetupVxeTable) {
const { configVxeTable, useVbenForm } = setupOptions;
initVxeTable();
- useTableForm = useVbenForm;
+ tableFormFactory = useVbenForm;
const { isDark, locale } = usePreferences();
diff --git a/packages/effects/plugins/src/vxe-table/style.css b/packages/effects/plugins/src/vxe-table/style.css
index 152fcf219..06e63fcc3 100644
--- a/packages/effects/plugins/src/vxe-table/style.css
+++ b/packages/effects/plugins/src/vxe-table/style.css
@@ -1,3 +1,5 @@
+@reference "@vben-core/design/theme";
+
:root .vxe-grid {
--vxe-ui-font-color: hsl(var(--foreground));
--vxe-ui-font-primary-color: hsl(var(--primary));
diff --git a/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue b/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
index ac71f06e3..4cb2d03bb 100644
--- a/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
+++ b/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
@@ -316,7 +316,6 @@ async function init() {
'[Vben Vxe Table]: The formConfig in the grid is not supported, please use the `formOptions` props',
);
}
- // @ts-ignore
props.api?.setState?.({ gridOptions: defaultGridOptions });
// form 由 vben-form 代替,所以需要保证query相关事件可以拿到参数
extendProxyOptions(props.api, defaultGridOptions, () =>
@@ -361,7 +360,7 @@ onUnmounted(() => {
-
+
-
+
{{ tableTitle }}
{{ tableTitleHelp }}
@@ -419,7 +416,7 @@ onUnmounted(() => {
v-show="showSearchForm !== false"
:class="
cn(
- 'relative rounded py-3',
+ 'relative rounded-sm py-3',
isCompactForm
? isSeparator
? 'pb-8'
@@ -461,7 +458,7 @@ onUnmounted(() => {
:style="{
...(separatorBg ? { backgroundColor: separatorBg } : undefined),
}"
- class="bg-background-deep z-100 absolute -left-2 bottom-1 h-2 w-[calc(100%+1rem)] overflow-hidden md:bottom-2 md:h-3"
+ class="absolute bottom-1 -left-2 z-100 h-2 w-[calc(100%+1rem)] overflow-hidden bg-background-deep md:bottom-2 md:h-3"
>
diff --git a/packages/effects/request/package.json b/packages/effects/request/package.json
index 294d4229d..cf64392b4 100644
--- a/packages/effects/request/package.json
+++ b/packages/effects/request/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/request",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/effects/request/src/request-client/modules/sse.ts b/packages/effects/request/src/request-client/modules/sse.ts
index 09d13017e..aa2755cf1 100644
--- a/packages/effects/request/src/request-client/modules/sse.ts
+++ b/packages/effects/request/src/request-client/modules/sse.ts
@@ -98,11 +98,9 @@ class SSE {
if (!reader) {
throw new Error('No reader');
}
- let isEnd = false;
- while (!isEnd) {
+ while (true) {
const { done, value } = await reader.read();
if (done) {
- isEnd = true;
decoder.decode(new Uint8Array(0), { stream: false });
requestOptions?.onEnd?.();
reader.releaseLock?.();
diff --git a/packages/effects/request/src/request-client/preset-interceptors.ts b/packages/effects/request/src/request-client/preset-interceptors.ts
index de0f5bdcc..dd79cdf11 100644
--- a/packages/effects/request/src/request-client/preset-interceptors.ts
+++ b/packages/effects/request/src/request-client/preset-interceptors.ts
@@ -130,7 +130,7 @@ export const errorMessageResponseInterceptor = (
return Promise.reject(error);
}
- let errorMessage = '';
+ let errorMessage: string;
const status =
error?.code || error?.response?.data?.code || error?.response?.status;
diff --git a/packages/icons/package.json b/packages/icons/package.json
index d95928682..1a5fc72b2 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/icons",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/icons/src/svg/load.ts b/packages/icons/src/svg/load.ts
index 59098bdbe..c42dd50d2 100644
--- a/packages/icons/src/svg/load.ts
+++ b/packages/icons/src/svg/load.ts
@@ -2,11 +2,7 @@ import type { IconifyIconStructure } from '@vben-core/icons';
import { addIcon } from '@vben-core/icons';
-let loaded = false;
-if (!loaded) {
- loadSvgIcons();
- loaded = true;
-}
+loadSvgIcons();
function parseSvg(svgData: string): IconifyIconStructure {
const parser = new DOMParser();
diff --git a/packages/locales/package.json b/packages/locales/package.json
index ce75b3cc5..709b264e1 100644
--- a/packages/locales/package.json
+++ b/packages/locales/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/locales",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/locales/src/langs/en-US/preferences.json b/packages/locales/src/langs/en-US/preferences.json
index f32d0b6a6..9fb0f2f38 100644
--- a/packages/locales/src/langs/en-US/preferences.json
+++ b/packages/locales/src/langs/en-US/preferences.json
@@ -31,6 +31,7 @@
"plain": "Plain",
"rounded": "Rounded",
"copyPreferences": "Copy Preferences",
+ "enableCopyPreferences": "Show copy preferences button",
"copyPreferencesSuccessTitle": "Copy successful",
"copyPreferencesSuccess": "Copy successful, please override in `src/preferences.ts` under app",
"clearAndLogout": "Clear Cache & Logout",
@@ -54,6 +55,7 @@
"title": "Sidebar",
"width": "Width",
"visible": "Show Sidebar",
+ "draggable": "Drag Sidebar Menu",
"collapsed": "Collpase Menu",
"collapsedShowTitle": "Show Menu Title",
"autoActivateChild": "Auto Activate SubMenu",
@@ -127,6 +129,9 @@
"light": "Light",
"dark": "Dark",
"darkSidebar": "Semi Dark Sidebar",
+ "darkSidebarTip": "It can be enabled when the theme is light, and the layout is neither 'Horizontal' nor 'Full Content'.",
+ "darkSidebarSub": "Semi Dark Sidebar Sub",
+ "darkSidebarSubTip": "It can be enabled when the theme is light, the semi dark sidebar is enabled, and the layout uses 'Two-Column' menu mode.",
"darkHeader": "Semi Dark Header",
"weakMode": "Weak Mode",
"grayMode": "Gray Mode",
diff --git a/packages/locales/src/langs/zh-CN/preferences.json b/packages/locales/src/langs/zh-CN/preferences.json
index a36a9dbbe..017efad4c 100644
--- a/packages/locales/src/langs/zh-CN/preferences.json
+++ b/packages/locales/src/langs/zh-CN/preferences.json
@@ -31,6 +31,7 @@
"plain": "朴素",
"rounded": "圆润",
"copyPreferences": "复制偏好设置",
+ "enableCopyPreferences": "显示复制偏好设置按钮",
"copyPreferencesSuccessTitle": "复制成功",
"copyPreferencesSuccess": "复制成功,请在 app 下的 `src/preferences.ts`内进行覆盖",
"clearAndLogout": "清空缓存 & 退出登录",
@@ -54,6 +55,7 @@
"title": "侧边栏",
"width": "宽度",
"visible": "显示侧边栏",
+ "draggable": "侧边栏菜单拖拽",
"collapsed": "折叠菜单",
"collapsedShowTitle": "折叠显示菜单名",
"autoActivateChild": "自动激活子菜单",
@@ -127,6 +129,9 @@
"light": "浅色",
"dark": "深色",
"darkSidebar": "深色侧边栏",
+ "darkSidebarTip": "当主题为浅色,布局不为水平菜单或不为内容全屏时可开启",
+ "darkSidebarSub": "深色侧边栏子栏",
+ "darkSidebarSubTip": "当主题为浅色,开启深色侧边栏且布局使用双列菜单模式时可开启",
"darkHeader": "深色顶栏",
"weakMode": "色弱模式",
"grayMode": "灰色模式",
diff --git a/packages/preferences/package.json b/packages/preferences/package.json
index 84a5a01cf..baac39e83 100644
--- a/packages/preferences/package.json
+++ b/packages/preferences/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/preferences",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/stores/package.json b/packages/stores/package.json
index d91761a53..dca737eab 100644
--- a/packages/stores/package.json
+++ b/packages/stores/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/stores",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/stores/src/modules/tabbar.ts b/packages/stores/src/modules/tabbar.ts
index 6b18c26ec..14af7be98 100644
--- a/packages/stores/src/modules/tabbar.ts
+++ b/packages/stores/src/modules/tabbar.ts
@@ -1,13 +1,15 @@
-import type { ComputedRef } from 'vue';
+import type { ComputedRef, VNode } from 'vue';
import type {
RouteLocationNormalized,
+ RouteLocationNormalizedLoaded,
+ RouteLocationNormalizedLoadedGeneric,
Router,
RouteRecordNormalized,
} from 'vue-router';
import type { TabDefinition } from '@vben-core/typings';
-import { toRaw } from 'vue';
+import { markRaw, toRaw } from 'vue';
import { preferences } from '@vben-core/preferences';
import {
@@ -20,7 +22,14 @@ import {
import { acceptHMRUpdate, defineStore } from 'pinia';
+interface RouteCached {
+ component: VNode;
+ key: string;
+ route: RouteLocationNormalizedLoadedGeneric;
+}
+
interface TabbarState {
+ cachedRoutes: Map;
/**
* @zh_CN 当前打开的标签页列表缓存
*/
@@ -553,6 +562,25 @@ export const useTabbarStore = defineStore('core-tabbar', {
}
this.cachedTabs = cacheMap;
},
+ /**
+ * 添加缓存的route
+ * @param component
+ * @param route
+ */
+ addCachedRoute(component: VNode, route: RouteLocationNormalizedLoaded) {
+ const key = getTabKey(route);
+ if (this.cachedRoutes.has(key)) {
+ return;
+ }
+ this.cachedRoutes.set(key, {
+ key,
+ component: markRaw(component),
+ route: markRaw(route),
+ });
+ },
+ removeCachedRoute(key: string) {
+ this.cachedRoutes.delete(key);
+ },
},
getters: {
affixTabs(): TabDefinition[] {
@@ -577,16 +605,37 @@ export const useTabbarStore = defineStore('core-tabbar', {
const normalTabs = this.tabs.filter((tab) => !isAffixTab(tab));
return [...this.affixTabs, ...normalTabs].filter(Boolean);
},
+ getCachedRoutes(): Map {
+ return this.cachedRoutes;
+ },
},
persist: [
// tabs不需要保存在localStorage
{
pick: ['tabs', 'visitHistory'],
storage: sessionStorage,
+ serializer: {
+ serialize: JSON.stringify,
+ deserialize(value: string) {
+ const parsed = JSON.parse(value);
+ // Stack 类实例经 JSON 序列化后会变成普通对象 {dedup, items, maxSize},
+ // 丢失所有方法和 getter,需要重新构建 Stack 实例
+ if (parsed.visitHistory && !(parsed.visitHistory instanceof Stack)) {
+ const raw = parsed.visitHistory;
+ const stack = createStack(true, MAX_VISIT_HISTORY);
+ if (Array.isArray(raw.items)) {
+ stack.push(...raw.items);
+ }
+ parsed.visitHistory = stack;
+ }
+ return parsed;
+ },
+ },
},
],
state: (): TabbarState => ({
visitHistory: createStack(true, MAX_VISIT_HISTORY),
+ cachedRoutes: new Map(),
cachedTabs: new Set(),
dragEndIndex: 0,
excludeCachedTabs: new Set(),
diff --git a/packages/stores/src/setup.ts b/packages/stores/src/setup.ts
index b18c27e34..36b3a701c 100644
--- a/packages/stores/src/setup.ts
+++ b/packages/stores/src/setup.ts
@@ -7,6 +7,28 @@ import SecureLS from 'secure-ls';
let pinia: Pinia;
+type SecureLSStorage = {
+ get(key: string): any;
+ set(key: string, value: unknown): void;
+};
+
+type SecureLSCtor = new (config?: {
+ encodingType?: string;
+ encryptionSecret?: string;
+ isCompression?: boolean;
+ metaKey?: string;
+}) => SecureLSStorage;
+
+const secureLSModule = SecureLS as unknown as {
+ default?: SecureLSCtor;
+ SecureLS?: SecureLSCtor;
+};
+
+const SecureLSConstructor =
+ secureLSModule.default ??
+ secureLSModule.SecureLS ??
+ (SecureLS as unknown as SecureLSCtor);
+
export interface InitStoreOptions {
/**
* @zh_CN 应用名,由于 @vben/stores 是公用的,后续可能有多个app,为了防止多个app缓存冲突,可在这里配置应用名,应用名将被用于持久化的前缀
@@ -21,11 +43,10 @@ export async function initStores(app: App, options: InitStoreOptions) {
const { createPersistedState } = await import('pinia-plugin-persistedstate');
pinia = createPinia();
const { namespace } = options;
- const ls = new SecureLS({
+ const ls = new SecureLSConstructor({
encodingType: 'aes',
encryptionSecret: import.meta.env.VITE_APP_STORE_SECURE_KEY,
isCompression: true,
- // @ts-ignore secure-ls does not have a type definition for this
metaKey: `${namespace}-secure-meta`,
});
pinia.use(
diff --git a/packages/styles/package.json b/packages/styles/package.json
index 79125f118..5f787b6b9 100644
--- a/packages/styles/package.json
+++ b/packages/styles/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/styles",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/styles/src/antd/index.css b/packages/styles/src/antd/index.css
index 4dec637ff..03b9e9ef8 100644
--- a/packages/styles/src/antd/index.css
+++ b/packages/styles/src/antd/index.css
@@ -34,7 +34,10 @@
.ant-message-notice-content,
.ant-notification-notice {
- @apply dark:border-border/60 dark:border;
+ &:is(.dark *) {
+ border-color: hsl(var(--border) / 60%);
+ border-width: 1px;
+ }
}
.form-valid-error {
diff --git a/packages/styles/src/antdv-next/index.css b/packages/styles/src/antdv-next/index.css
index 420dfe96e..fd6522183 100644
--- a/packages/styles/src/antdv-next/index.css
+++ b/packages/styles/src/antdv-next/index.css
@@ -36,7 +36,10 @@
.ant-message-notice-content,
.ant-notification-notice {
- @apply dark:border-border/60 dark:border;
+ &:is(.dark *) {
+ border-color: hsl(var(--border) / 60%);
+ border-width: 1px;
+ }
}
.form-valid-error {
diff --git a/packages/types/package.json b/packages/types/package.json
index 249f64c49..e489048a3 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/types",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 5fe93f631..fddacfedd 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/utils",
- "version": "5.6.0",
+ "version": "5.7.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a78d45dfa..72532dbbc 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -7,29 +7,32 @@ settings:
catalogs:
default:
'@changesets/changelog-github':
- specifier: ^0.5.2
- version: 0.5.2
+ specifier: ^0.6.0
+ version: 0.6.0
'@changesets/cli':
- specifier: ^2.29.8
- version: 2.29.8
+ specifier: ^2.30.0
+ version: 2.30.0
'@changesets/git':
specifier: ^3.0.4
version: 3.0.4
'@clack/prompts':
- specifier: ^0.11.0
- version: 0.11.0
+ specifier: ^1.1.0
+ version: 1.1.0
'@commitlint/cli':
- specifier: ^19.8.1
- version: 19.8.1
+ specifier: ^20.4.4
+ version: 20.4.4
'@commitlint/config-conventional':
- specifier: ^19.8.1
- version: 19.8.1
+ specifier: ^20.4.4
+ version: 20.4.4
+ '@eslint-community/eslint-plugin-eslint-comments':
+ specifier: ^4.7.1
+ version: 4.7.1
'@eslint/js':
- specifier: ^9.39.2
- version: 9.39.2
+ specifier: ^10.0.1
+ version: 10.0.1
'@form-create/ant-design-vue':
specifier: ^3.2.37
- version: 3.2.37
+ version: 3.2.38
'@form-create/antd-designer':
specifier: ^3.4.0
version: 3.4.0
@@ -38,28 +41,28 @@ catalogs:
version: 3.4.0
'@form-create/element-ui':
specifier: ^3.2.37
- version: 3.2.37
+ version: 3.2.38
'@form-create/naive-ui':
specifier: ^3.2.37
- version: 3.2.37
+ version: 3.2.38
'@iconify/json':
- specifier: ^2.2.432
- version: 2.2.438
- '@iconify/tailwind':
- specifier: ^1.2.0
- version: 1.2.0
+ specifier: ^2.2.449
+ version: 2.2.449
+ '@iconify/tailwind4':
+ specifier: ^1.2.3
+ version: 1.2.3
'@iconify/vue':
specifier: ^5.0.0
version: 5.0.0
'@intlify/core-base':
- specifier: ^11.2.8
- version: 11.2.8
+ specifier: ^11.3.0
+ version: 11.3.0
'@intlify/unplugin-vue-i18n':
- specifier: ^6.0.8
- version: 6.0.8
+ specifier: ^11.0.7
+ version: 11.0.7
'@jspm/generator':
- specifier: ^2.9.0
- version: 2.10.0
+ specifier: ^2.11.0
+ version: 2.11.0
'@manypkg/get-packages':
specifier: ^3.1.0
version: 3.1.0
@@ -73,20 +76,20 @@ catalogs:
specifier: ^1.58.2
version: 1.58.2
'@pnpm/workspace.read-manifest':
- specifier: ^1000.2.10
- version: 1000.2.10
+ specifier: ^1000.3.0
+ version: 1000.3.0
'@stylistic/stylelint-plugin':
- specifier: ^4.0.1
- version: 4.0.1
- '@tailwindcss/nesting':
- specifier: 0.0.0-insiders.565cd3e
- version: 0.0.0-insiders.565cd3e
+ specifier: ^5.0.1
+ version: 5.0.1
'@tailwindcss/typography':
specifier: ^0.5.19
version: 0.5.19
+ '@tailwindcss/vite':
+ specifier: ^4.2.1
+ version: 4.2.1
'@tanstack/vue-store':
- specifier: ^0.8.0
- version: 0.8.0
+ specifier: ^0.9.2
+ version: 0.9.2
'@tinyflow-ai/vue':
specifier: ~1.1.10
version: 1.1.10
@@ -102,12 +105,12 @@ catalogs:
'@types/crypto-js':
specifier: ^4.2.2
version: 4.2.2
- '@types/eslint':
- specifier: ^9.6.1
- version: 9.6.1
'@types/html-minifier-terser':
specifier: ^7.0.2
version: 7.0.2
+ '@types/json-bigint':
+ specifier: ^1.0.4
+ version: 1.0.4
'@types/lodash.clonedeep':
specifier: ^4.5.9
version: 4.5.9
@@ -115,29 +118,26 @@ catalogs:
specifier: ^14.1.2
version: 14.1.2
'@types/node':
- specifier: ^24.10.12
- version: 24.10.13
+ specifier: ^25.5.0
+ version: 25.5.0
'@types/nprogress':
specifier: ^0.2.3
version: 0.2.3
- '@types/postcss-import':
- specifier: ^14.0.3
- version: 14.0.3
'@types/qrcode':
specifier: ^1.5.6
version: 1.5.6
'@types/qs':
- specifier: ^6.14.0
- version: 6.14.0
+ specifier: ^6.15.0
+ version: 6.15.0
'@types/sortablejs':
specifier: ^1.15.9
version: 1.15.9
'@typescript-eslint/eslint-plugin':
- specifier: ^8.54.0
- version: 8.55.0
+ specifier: ^8.57.0
+ version: 8.57.0
'@typescript-eslint/parser':
- specifier: ^8.54.0
- version: 8.55.0
+ specifier: ^8.57.0
+ version: 8.57.0
'@vee-validate/zod':
specifier: ^4.15.1
version: 4.15.1
@@ -148,22 +148,22 @@ catalogs:
specifier: ^1.1.0
version: 1.1.0
'@vitejs/plugin-vue':
- specifier: ^6.0.4
- version: 6.0.4
+ specifier: ^6.0.5
+ version: 6.0.5
'@vitejs/plugin-vue-jsx':
- specifier: ^5.1.4
- version: 5.1.4
+ specifier: ^5.1.5
+ version: 5.1.5
'@vue/shared':
- specifier: ^3.5.27
- version: 3.5.28
+ specifier: ^3.5.30
+ version: 3.5.30
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
'@vueuse/core':
- specifier: ^14.1.0
+ specifier: ^14.2.1
version: 14.2.1
'@vueuse/integrations':
- specifier: ^14.1.0
+ specifier: ^14.2.1
version: 14.2.1
'@vueuse/motion':
specifier: ^3.0.3
@@ -172,17 +172,14 @@ catalogs:
specifier: ^4.2.6
version: 4.2.6
antdv-next:
- specifier: ^1.0.2
- version: 1.0.2
+ specifier: ^1.1.3
+ version: 1.1.3
archiver:
specifier: ^7.0.1
version: 7.0.1
- autoprefixer:
- specifier: ^10.4.24
- version: 10.4.24
axios:
- specifier: ^1.13.4
- version: 1.13.5
+ specifier: ^1.13.6
+ version: 1.13.6
axios-mock-adapter:
specifier: ^2.1.0
version: 2.1.0
@@ -199,8 +196,8 @@ catalogs:
specifier: ^0.36.3
version: 0.36.3
cac:
- specifier: ^6.7.14
- version: 6.7.14
+ specifier: ^7.0.0
+ version: 7.0.0
camunda-bpmn-moddle:
specifier: ^7.0.1
version: 7.0.1
@@ -211,8 +208,8 @@ catalogs:
specifier: ^1.2.0
version: 1.2.0
circular-dependency-scanner:
- specifier: ^2.3.0
- version: 2.3.0
+ specifier: ^3.0.1
+ version: 3.0.1
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
@@ -220,8 +217,8 @@ catalogs:
specifier: ^5.65.20
version: 5.65.21
commitlint-plugin-function-rules:
- specifier: ^4.3.1
- version: 4.3.1
+ specifier: ^4.3.2
+ version: 4.3.2
consola:
specifier: ^3.4.2
version: 3.4.2
@@ -235,11 +232,8 @@ catalogs:
specifier: ^4.2.0
version: 4.2.0
cspell:
- specifier: ^9.6.4
- version: 9.6.4
- cssnano:
- specifier: ^7.1.2
- version: 7.1.2
+ specifier: ^9.7.0
+ version: 9.7.0
cz-git:
specifier: ^1.12.0
version: 1.12.0
@@ -247,8 +241,8 @@ catalogs:
specifier: ^1.12.0
version: 1.12.0
dayjs:
- specifier: ^1.11.19
- version: 1.11.19
+ specifier: ^1.11.20
+ version: 1.11.20
defu:
specifier: ^6.1.4
version: 6.1.4
@@ -259,89 +253,74 @@ catalogs:
specifier: ^12.8.1
version: 12.8.1
dotenv:
- specifier: ^16.6.1
- version: 16.6.1
+ specifier: ^17.3.1
+ version: 17.3.1
echarts:
specifier: ^6.0.0
version: 6.0.0
element-plus:
- specifier: ^2.13.1
- version: 2.13.2
+ specifier: ^2.13.5
+ version: 2.13.5
es-toolkit:
- specifier: ^1.44.0
- version: 1.44.0
+ specifier: ^1.45.1
+ version: 1.45.1
eslint:
- specifier: ^9.39.2
- version: 9.39.2
+ specifier: ^10.0.3
+ version: 10.0.3
eslint-config-turbo:
- specifier: ^2.7.6
- version: 2.8.5
+ specifier: ^2.8.16
+ version: 2.8.17
+ eslint-plugin-better-tailwindcss:
+ specifier: ^4.3.2
+ version: 4.3.2
eslint-plugin-command:
- specifier: ^3.4.0
- version: 3.4.0
- eslint-plugin-eslint-comments:
- specifier: ^3.2.0
- version: 3.2.0
- eslint-plugin-import-x:
- specifier: ^4.16.1
- version: 4.16.1
- eslint-plugin-jsdoc:
- specifier: ^61.7.1
- version: 61.7.1
+ specifier: ^3.5.2
+ version: 3.5.2
eslint-plugin-jsonc:
- specifier: ^2.21.0
- version: 2.21.1
+ specifier: ^3.1.2
+ version: 3.1.2
eslint-plugin-n:
- specifier: ^17.23.2
- version: 17.23.2
- eslint-plugin-no-only-tests:
- specifier: ^3.3.0
- version: 3.3.0
+ specifier: ^17.24.0
+ version: 17.24.0
+ eslint-plugin-oxlint:
+ specifier: ^1.55.0
+ version: 1.55.0
eslint-plugin-perfectionist:
- specifier: ^4.15.1
- version: 4.15.1
+ specifier: ^5.6.0
+ version: 5.6.0
eslint-plugin-pnpm:
- specifier: ^1.5.0
- version: 1.5.0
- eslint-plugin-prettier:
- specifier: ^5.5.5
- version: 5.5.5
- eslint-plugin-regexp:
- specifier: ^2.10.0
- version: 2.10.0
+ specifier: ^1.6.0
+ version: 1.6.0
eslint-plugin-unicorn:
- specifier: ^62.0.0
- version: 62.0.0
+ specifier: ^63.0.0
+ version: 63.0.0
eslint-plugin-unused-imports:
- specifier: ^4.3.0
+ specifier: ^4.4.1
version: 4.4.1
- eslint-plugin-vitest:
- specifier: ^0.5.4
- version: 0.5.4
eslint-plugin-vue:
- specifier: ^10.7.0
- version: 10.7.0
+ specifier: ^10.8.0
+ version: 10.8.0
eslint-plugin-yml:
- specifier: ^1.19.1
- version: 1.19.1
+ specifier: ^3.3.1
+ version: 3.3.1
execa:
specifier: ^9.6.1
version: 9.6.1
fast-xml-parser:
specifier: ^4.5.3
- version: 4.5.3
+ version: 4.5.4
find-up:
- specifier: ^7.0.0
- version: 7.0.0
+ specifier: ^8.0.0
+ version: 8.0.0
get-port:
specifier: ^7.1.0
version: 7.1.0
globals:
- specifier: ^16.5.0
- version: 16.5.0
+ specifier: ^17.4.0
+ version: 17.4.0
happy-dom:
- specifier: ^17.6.3
- version: 17.6.3
+ specifier: ^20.8.4
+ version: 20.8.4
highlight.js:
specifier: ^11.11.1
version: 11.11.1
@@ -357,21 +336,18 @@ catalogs:
json-bigint:
specifier: ^1.0.0
version: 1.0.0
- jsonc-eslint-parser:
- specifier: ^2.4.2
- version: 2.4.2
lefthook:
- specifier: ^2.1.0
- version: 2.1.0
+ specifier: ^2.1.4
+ version: 2.1.4
lodash.clonedeep:
specifier: ^4.5.0
version: 4.5.0
lucide-vue-next:
- specifier: ^0.553.0
- version: 0.553.0
+ specifier: ^0.577.0
+ version: 0.577.0
markdown-it:
specifier: ^14.1.0
- version: 14.1.0
+ version: 14.1.1
markmap-common:
specifier: ^0.16.0
version: 0.16.0
@@ -388,8 +364,8 @@ catalogs:
specifier: ^1.1.0
version: 1.1.0
naive-ui:
- specifier: ^2.43.2
- version: 2.43.2
+ specifier: ^2.44.1
+ version: 2.44.1
nitropack:
specifier: ^2.13.1
version: 2.13.1
@@ -397,8 +373,17 @@ catalogs:
specifier: ^0.2.0
version: 0.2.0
ora:
- specifier: ^8.2.0
- version: 8.2.0
+ specifier: ^9.3.0
+ version: 9.3.0
+ oxfmt:
+ specifier: ^0.40.0
+ version: 0.40.0
+ oxlint:
+ specifier: ^1.55.0
+ version: 1.55.0
+ oxlint-tsgolint:
+ specifier: ^0.16.0
+ version: 0.16.0
pinia-plugin-persistedstate:
specifier: ^4.7.1
version: 4.7.1
@@ -409,116 +394,101 @@ catalogs:
specifier: ^1.58.2
version: 1.58.2
postcss:
- specifier: ^8.5.6
- version: 8.5.6
- postcss-antd-fixes:
- specifier: ^0.2.0
- version: 0.2.0
+ specifier: ^8.5.8
+ version: 8.5.8
postcss-html:
specifier: ^1.8.1
version: 1.8.1
- postcss-import:
- specifier: ^16.1.1
- version: 16.1.1
- postcss-preset-env:
- specifier: ^10.6.1
- version: 10.6.1
postcss-scss:
specifier: ^4.0.9
version: 4.0.9
- prettier:
- specifier: ^3.8.1
- version: 3.8.1
- prettier-plugin-tailwindcss:
- specifier: ^0.7.2
- version: 0.7.2
publint:
- specifier: ^0.3.17
- version: 0.3.17
+ specifier: ^0.3.18
+ version: 0.3.18
qrcode:
specifier: ^1.5.4
version: 1.5.4
qs:
- specifier: ^6.14.1
- version: 6.14.1
+ specifier: ^6.15.0
+ version: 6.15.0
reka-ui:
- specifier: ^2.7.0
- version: 2.8.0
+ specifier: ^2.9.2
+ version: 2.9.2
resolve.exports:
specifier: ^2.0.3
version: 2.0.3
rimraf:
- specifier: ^6.1.2
- version: 6.1.2
+ specifier: ^6.1.3
+ version: 6.1.3
rollup:
- specifier: ^4.57.0
- version: 4.57.1
+ specifier: ^4.59.0
+ version: 4.59.0
rollup-plugin-visualizer:
- specifier: ^5.14.0
- version: 5.14.0
+ specifier: ^7.0.1
+ version: 7.0.1
sass:
- specifier: ^1.97.3
- version: 1.97.3
+ specifier: ^1.98.0
+ version: 1.98.0
+ sass-embedded:
+ specifier: ^1.98.0
+ version: 1.98.0
secure-ls:
specifier: ^2.0.0
version: 2.0.0
sortablejs:
- specifier: ^1.15.6
- version: 1.15.6
+ specifier: ^1.15.7
+ version: 1.15.7
steady-xml:
specifier: ^0.1.0
version: 0.1.0
stylelint:
- specifier: ^16.26.1
- version: 16.26.1
+ specifier: ^17.4.0
+ version: 17.4.0
stylelint-config-recess-order:
- specifier: ^7.6.0
+ specifier: ^7.6.1
version: 7.6.1
stylelint-config-recommended:
+ specifier: ^18.0.0
+ version: 18.0.0
+ stylelint-config-recommended-scss:
specifier: ^17.0.0
version: 17.0.0
- stylelint-config-recommended-scss:
- specifier: ^16.0.2
- version: 16.0.2
stylelint-config-recommended-vue:
specifier: ^1.6.1
version: 1.6.1
stylelint-config-standard:
- specifier: ^39.0.1
- version: 39.0.1
+ specifier: ^40.0.0
+ version: 40.0.0
stylelint-order:
- specifier: ^7.0.1
- version: 7.0.1
- stylelint-prettier:
- specifier: ^5.0.3
- version: 5.0.3
+ specifier: ^8.0.0
+ version: 8.1.0
stylelint-scss:
- specifier: ^6.14.0
- version: 6.14.0
+ specifier: ^7.0.0
+ version: 7.0.0
tailwind-merge:
- specifier: ^2.6.0
- version: 2.6.1
+ specifier: ^3.5.0
+ version: 3.5.0
tailwindcss:
- specifier: ^3.4.19
- version: 3.4.19
- tailwindcss-animate:
- specifier: ^1.0.7
- version: 1.0.7
+ specifier: ^4.2.1
+ version: 4.2.1
tdesign-vue-next:
- specifier: ^1.18.0
- version: 1.18.2
+ specifier: ^1.18.5
+ version: 1.18.5
theme-colors:
specifier: ^0.1.0
version: 0.1.0
tinymce:
specifier: ^7.3.0
- version: 7.9.1
+ version: 7.9.2
tippy.js:
specifier: ^6.3.7
version: 6.3.7
turbo:
- specifier: ^2.8.3
- version: 2.8.5
+ specifier: ^2.8.16
+ version: 2.8.17
+ tw-animate-css:
+ specifier: ^1.4.0
+ version: 1.4.0
typescript:
specifier: ^5.9.3
version: 5.9.3
@@ -535,8 +505,8 @@ catalogs:
specifier: ^7.21.7
version: 7.21.7
vite:
- specifier: ^7.3.1
- version: 7.3.1
+ specifier: ^8.0.0
+ version: 8.0.0
vite-plugin-compression:
specifier: ^0.5.1
version: 0.5.1
@@ -553,8 +523,8 @@ catalogs:
specifier: ^1.2.0
version: 1.2.0
vite-plugin-vue-devtools:
- specifier: ^8.0.5
- version: 8.0.6
+ specifier: ^8.1.0
+ version: 8.1.0
vitepress:
specifier: ^1.6.4
version: 1.6.4
@@ -562,29 +532,29 @@ catalogs:
specifier: ^1.7.1
version: 1.7.1
vitest:
- specifier: ^3.2.4
- version: 3.2.4
+ specifier: ^4.1.0
+ version: 4.1.0
vue-dompurify-html:
specifier: ^5.3.0
version: 5.3.0
vue-eslint-parser:
- specifier: ^10.2.0
- version: 10.2.0
+ specifier: ^10.4.0
+ version: 10.4.0
vue-i18n:
- specifier: ^11.2.8
- version: 11.2.8
+ specifier: ^11.3.0
+ version: 11.3.0
vue-json-viewer:
specifier: ^3.0.4
version: 3.0.4
vue-router:
- specifier: ^4.6.4
- version: 4.6.4
+ specifier: ^5.0.3
+ version: 5.0.3
vue-tippy:
specifier: ^6.7.1
version: 6.7.1
vue-tsc:
- specifier: ^3.2.4
- version: 3.2.4
+ specifier: ^3.2.5
+ version: 3.2.5
vue3-print-nb:
specifier: ^0.1.4
version: 0.1.4
@@ -595,17 +565,17 @@ catalogs:
specifier: ^4.1.0
version: 4.1.0
vxe-pc-ui:
- specifier: ^4.12.16
- version: 4.12.36
+ specifier: ^4.13.5
+ version: 4.13.5
vxe-table:
- specifier: ^4.17.46
- version: 4.17.48
+ specifier: ^4.18.2
+ version: 4.18.2
watermark-js-plus:
specifier: ^1.6.3
version: 1.6.3
yaml-eslint-parser:
- specifier: ^1.3.2
- version: 1.3.2
+ specifier: ^2.0.0
+ version: 2.0.0
zod:
specifier: ^3.25.76
version: 3.25.76
@@ -614,13 +584,12 @@ catalogs:
version: 0.1.3
overrides:
- '@ast-grep/napi': ^0.39.9
+ '@ast-grep/napi': ^0.41.1
'@ctrl/tinycolor': ^4.2.0
clsx: ^2.1.1
- esbuild: ^0.25.12
- jiti: ^2.6.1
+ esbuild: ^0.27.4
pinia: ^3.0.4
- vue: ^3.5.27
+ vue: ^3.5.30
importers:
@@ -628,31 +597,31 @@ importers:
devDependencies:
'@changesets/changelog-github':
specifier: 'catalog:'
- version: 0.5.2
+ version: 0.6.0
'@changesets/cli':
specifier: 'catalog:'
- version: 2.29.8(@types/node@24.10.13)
+ version: 2.30.0(@types/node@25.5.0)
'@playwright/test':
specifier: 'catalog:'
version: 1.58.2
'@types/node':
specifier: 'catalog:'
- version: 24.10.13
+ version: 25.5.0
'@vben/commitlint-config':
specifier: workspace:*
version: link:internal/lint-configs/commitlint-config
'@vben/eslint-config':
specifier: workspace:*
version: link:internal/lint-configs/eslint-config
- '@vben/prettier-config':
+ '@vben/oxfmt-config':
specifier: workspace:*
- version: link:internal/lint-configs/prettier-config
+ version: link:internal/lint-configs/oxfmt-config
+ '@vben/oxlint-config':
+ specifier: workspace:*
+ version: link:internal/lint-configs/oxlint-config
'@vben/stylelint-config':
specifier: workspace:*
version: link:internal/lint-configs/stylelint-config
- '@vben/tailwind-config':
- specifier: workspace:*
- version: link:internal/tailwind-config
'@vben/tsconfig':
specifier: workspace:*
version: link:internal/tsconfig
@@ -667,73 +636,79 @@ importers:
version: link:scripts/vsh
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
+ version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.1.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
+ version: 5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
'@vue/test-utils':
specifier: 'catalog:'
version: 2.4.6
- autoprefixer:
- specifier: 'catalog:'
- version: 10.4.24(postcss@8.5.6)
cross-env:
specifier: 'catalog:'
version: 10.1.0
cspell:
specifier: 'catalog:'
- version: 9.6.4
+ version: 9.7.0
happy-dom:
specifier: 'catalog:'
- version: 17.6.3
+ version: 20.8.4
is-ci:
specifier: 'catalog:'
version: 4.1.0
lefthook:
specifier: 'catalog:'
- version: 2.1.0
+ version: 2.1.4
+ oxfmt:
+ specifier: 'catalog:'
+ version: 0.40.0
+ oxlint:
+ specifier: 'catalog:'
+ version: 1.55.0(oxlint-tsgolint@0.16.0)
+ oxlint-tsgolint:
+ specifier: 'catalog:'
+ version: 0.16.0
playwright:
specifier: 'catalog:'
version: 1.58.2
rimraf:
specifier: 'catalog:'
- version: 6.1.2
+ version: 6.1.3
tailwindcss:
specifier: 'catalog:'
- version: 3.4.19(yaml@2.8.2)
+ version: 4.2.1
turbo:
specifier: 'catalog:'
- version: 2.8.5
+ version: 2.8.17
typescript:
specifier: 'catalog:'
version: 5.9.3
unbuild:
specifier: 'catalog:'
- version: 3.6.1(sass@1.97.3)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))
+ version: 3.6.1(sass@1.98.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
vite:
specifier: 'catalog:'
- version: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
vitest:
specifier: 'catalog:'
- version: 3.2.4(@types/node@24.10.13)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ version: 4.1.0(@types/node@25.5.0)(happy-dom@20.8.4)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-tsc:
specifier: 'catalog:'
- version: 3.2.4(typescript@5.9.3)
+ version: 3.2.5(typescript@5.9.3)
apps/web-antd:
dependencies:
'@form-create/ant-design-vue':
specifier: 'catalog:'
- version: 3.2.37(vue@3.5.28(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.30(typescript@5.9.3))
'@form-create/antd-designer':
specifier: 'catalog:'
- version: 3.4.0(vue@3.5.28(typescript@5.9.3))
+ version: 3.4.0(vue@3.5.30(typescript@5.9.3))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.1)(vue@3.5.28(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -778,16 +753,16 @@ importers:
version: link:../../packages/utils
'@videojs-player/vue':
specifier: 'catalog:'
- version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.28(typescript@5.9.3))
+ version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.30(typescript@5.9.3))
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.28(typescript@5.9.3))
+ version: 4.2.6(vue@3.5.30(typescript@5.9.3))
benz-amr-recorder:
specifier: 'catalog:'
version: 1.1.5
@@ -796,7 +771,7 @@ importers:
version: 17.11.1
bpmn-js-properties-panel:
specifier: 'catalog:'
- version: 5.23.0(@bpmn-io/properties-panel@3.38.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.0(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1)
+ version: 5.23.0(@bpmn-io/properties-panel@3.40.3)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1)
bpmn-js-token-simulation:
specifier: 'catalog:'
version: 0.36.3
@@ -808,46 +783,46 @@ importers:
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
diagram-js:
specifier: 'catalog:'
version: 12.8.1
fast-xml-parser:
specifier: 'catalog:'
- version: 4.5.3
+ version: 4.5.4
highlight.js:
specifier: 'catalog:'
version: 11.11.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
steady-xml:
specifier: 'catalog:'
version: 0.1.0
tinymce:
specifier: 'catalog:'
- version: 7.9.1
+ version: 7.9.2
video.js:
specifier: 'catalog:'
version: 7.21.7
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.28(typescript@5.9.3))
+ version: 5.3.0(vue@3.5.30(typescript@5.9.3))
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
vue3-print-nb:
specifier: 'catalog:'
version: 0.1.4(typescript@5.9.3)
vue3-signature:
specifier: 'catalog:'
- version: 0.2.4(vue@3.5.28(typescript@5.9.3))
+ version: 0.2.4(vue@3.5.30(typescript@5.9.3))
vuedraggable:
specifier: 'catalog:'
- version: 4.1.0(vue@3.5.28(typescript@5.9.3))
+ version: 4.1.0(vue@3.5.30(typescript@5.9.3))
apps/web-antdv-next:
dependencies:
@@ -895,34 +870,34 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
antdv-next:
specifier: 'catalog:'
- version: 1.0.2(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.28(typescript@5.9.3))
+ version: 1.1.3(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3))
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
apps/web-ele:
dependencies:
'@form-create/designer':
specifier: 'catalog:'
- version: 3.4.0(vue@3.5.28(typescript@5.9.3))
+ version: 3.4.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
'@form-create/element-ui':
specifier: 'catalog:'
- version: 3.2.37(vue@3.5.28(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.30(typescript@5.9.3))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.1)(vue@3.5.28(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -967,13 +942,13 @@ importers:
version: link:../../packages/utils
'@videojs-player/vue':
specifier: 'catalog:'
- version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.28(typescript@5.9.3))
+ version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.30(typescript@5.9.3))
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
benz-amr-recorder:
specifier: 'catalog:'
version: 1.1.5
@@ -982,7 +957,7 @@ importers:
version: 17.11.1
bpmn-js-properties-panel:
specifier: 'catalog:'
- version: 5.23.0(@bpmn-io/properties-panel@3.38.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.0(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1)
+ version: 5.23.0(@bpmn-io/properties-panel@3.40.3)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1)
bpmn-js-token-simulation:
specifier: 'catalog:'
version: 0.36.3
@@ -994,49 +969,49 @@ importers:
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
diagram-js:
specifier: 'catalog:'
version: 12.8.1
element-plus:
specifier: 'catalog:'
- version: 2.13.2(vue@3.5.28(typescript@5.9.3))
+ version: 2.13.5(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
fast-xml-parser:
specifier: 'catalog:'
- version: 4.5.3
+ version: 4.5.4
highlight.js:
specifier: 'catalog:'
version: 11.11.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
steady-xml:
specifier: 'catalog:'
version: 0.1.0
tinymce:
specifier: 'catalog:'
- version: 7.9.1
+ version: 7.9.2
video.js:
specifier: 'catalog:'
version: 7.21.7
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.28(typescript@5.9.3))
+ version: 5.3.0(vue@3.5.30(typescript@5.9.3))
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
vue3-print-nb:
specifier: 'catalog:'
version: 0.1.4(typescript@5.9.3)
vue3-signature:
specifier: 'catalog:'
- version: 0.2.4(vue@3.5.28(typescript@5.9.3))
+ version: 0.2.4(vue@3.5.30(typescript@5.9.3))
vuedraggable:
specifier: 'catalog:'
- version: 4.1.0(vue@3.5.28(typescript@5.9.3))
+ version: 4.1.0(vue@3.5.30(typescript@5.9.3))
devDependencies:
unplugin-element-plus:
specifier: 'catalog:'
@@ -1046,7 +1021,7 @@ importers:
dependencies:
'@form-create/naive-ui':
specifier: 'catalog:'
- version: 3.2.37(vue@3.5.28(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.30(typescript@5.9.3))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -1091,28 +1066,28 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
naive-ui:
specifier: 'catalog:'
- version: 2.43.2(vue@3.5.28(typescript@5.9.3))
+ version: 2.44.1(vue@3.5.30(typescript@5.9.3))
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
apps/web-tdesign:
dependencies:
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.1)(vue@3.5.28(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -1157,31 +1132,31 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
cropperjs:
specifier: 'catalog:'
version: 1.6.2
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
es-toolkit:
specifier: 'catalog:'
- version: 1.44.0
+ version: 1.45.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
tdesign-vue-next:
specifier: 'catalog:'
- version: 1.18.2(vue@3.5.28(typescript@5.9.3))
+ version: 1.18.5(vue@3.5.30(typescript@5.9.3))
tinymce:
specifier: 'catalog:'
- version: 7.9.1
+ version: 7.9.2
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
docs:
dependencies:
@@ -1202,50 +1177,53 @@ importers:
version: link:../packages/styles
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.28(typescript@5.9.3))
+ version: 4.2.6(vue@3.5.30(typescript@5.9.3))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.553.0(vue@3.5.28(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.30(typescript@5.9.3))
medium-zoom:
specifier: 'catalog:'
version: 1.1.0
reka-ui:
specifier: 'catalog:'
- version: 2.8.0(vue@3.5.28(typescript@5.9.3))
+ version: 2.9.2(vue@3.5.30(typescript@5.9.3))
vitepress-plugin-group-icons:
specifier: 'catalog:'
- version: 1.7.1(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))
+ version: 1.7.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
devDependencies:
'@nolebase/vitepress-plugin-git-changelog':
specifier: 'catalog:'
- version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))
+ version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
+ '@tailwindcss/vite':
+ specifier: 'catalog:'
+ version: 4.2.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
'@vben/vite-config':
specifier: workspace:*
version: link:../internal/vite-config
'@vite-pwa/vitepress':
specifier: 'catalog:'
- version: 1.1.0(vite-plugin-pwa@1.2.0(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(workbox-build@7.4.0)(workbox-window@7.4.0))
+ version: 1.1.0(vite-plugin-pwa@1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0))
vitepress:
specifier: 'catalog:'
- version: 1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3)
+ version: 1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3)
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
internal/lint-configs/commitlint-config:
dependencies:
'@commitlint/cli':
specifier: 'catalog:'
- version: 19.8.1(@types/node@24.10.13)(typescript@5.9.3)
+ version: 20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: 'catalog:'
- version: 19.8.1
+ version: 20.4.4
'@vben/node-utils':
specifier: workspace:*
version: link:../../node-utils
commitlint-plugin-function-rules:
specifier: 'catalog:'
- version: 4.3.1(@commitlint/lint@19.8.1)
+ version: 4.3.2(@commitlint/lint@20.4.4)
cz-git:
specifier: 'catalog:'
version: 1.12.0
@@ -1255,140 +1233,122 @@ importers:
internal/lint-configs/eslint-config:
dependencies:
+ '@vben/oxlint-config':
+ specifier: workspace:*
+ version: link:../oxlint-config
eslint-config-turbo:
specifier: 'catalog:'
- version: 2.8.5(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.5)
+ version: 2.8.17(eslint@10.0.3(jiti@2.6.1))(turbo@2.8.17)
eslint-plugin-command:
specifier: 'catalog:'
- version: 3.4.0(eslint@9.39.2(jiti@2.6.1))
- eslint-plugin-import-x:
- specifier: 'catalog:'
- version: 4.16.1(@typescript-eslint/utils@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))
+ version: 3.5.2(@typescript-eslint/rule-tester@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3))(@typescript-eslint/utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))
devDependencies:
+ '@eslint-community/eslint-plugin-eslint-comments':
+ specifier: 'catalog:'
+ version: 4.7.1(eslint@10.0.3(jiti@2.6.1))
'@eslint/js':
specifier: 'catalog:'
- version: 9.39.2
- '@types/eslint':
- specifier: 'catalog:'
- version: 9.6.1
+ version: 10.0.1(eslint@10.0.3(jiti@2.6.1))
'@typescript-eslint/eslint-plugin':
specifier: 'catalog:'
- version: 8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: 'catalog:'
- version: 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
eslint:
specifier: 'catalog:'
- version: 9.39.2(jiti@2.6.1)
- eslint-plugin-eslint-comments:
- specifier: 'catalog:'
- version: 3.2.0(eslint@9.39.2(jiti@2.6.1))
- eslint-plugin-jsdoc:
- specifier: 'catalog:'
- version: 61.7.1(eslint@9.39.2(jiti@2.6.1))
+ version: 10.0.3(jiti@2.6.1)
eslint-plugin-jsonc:
specifier: 'catalog:'
- version: 2.21.1(eslint@9.39.2(jiti@2.6.1))
+ version: 3.1.2(eslint@10.0.3(jiti@2.6.1))
eslint-plugin-n:
specifier: 'catalog:'
- version: 17.23.2(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-no-only-tests:
+ version: 17.24.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ eslint-plugin-oxlint:
specifier: 'catalog:'
- version: 3.3.0
+ version: 1.55.0
eslint-plugin-perfectionist:
specifier: 'catalog:'
- version: 4.15.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ version: 5.6.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
eslint-plugin-pnpm:
specifier: 'catalog:'
- version: 1.5.0(eslint@9.39.2(jiti@2.6.1))
- eslint-plugin-prettier:
- specifier: 'catalog:'
- version: 5.5.5(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.6.1))(prettier@3.8.1)
- eslint-plugin-regexp:
- specifier: 'catalog:'
- version: 2.10.0(eslint@9.39.2(jiti@2.6.1))
+ version: 1.6.0(eslint@10.0.3(jiti@2.6.1))
eslint-plugin-unicorn:
specifier: 'catalog:'
- version: 62.0.0(eslint@9.39.2(jiti@2.6.1))
+ version: 63.0.0(eslint@10.0.3(jiti@2.6.1))
eslint-plugin-unused-imports:
specifier: 'catalog:'
- version: 4.4.1(@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))
- eslint-plugin-vitest:
- specifier: 'catalog:'
- version: 0.5.4(@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@25.2.3)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ version: 4.4.1(@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))
eslint-plugin-vue:
specifier: 'catalog:'
- version: 10.7.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@2.6.1)))
+ version: 10.8.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.0.3(jiti@2.6.1)))
eslint-plugin-yml:
specifier: 'catalog:'
- version: 1.19.1(eslint@9.39.2(jiti@2.6.1))
+ version: 3.3.1(eslint@10.0.3(jiti@2.6.1))
globals:
specifier: 'catalog:'
- version: 16.5.0
- jsonc-eslint-parser:
- specifier: 'catalog:'
- version: 2.4.2
+ version: 17.4.0
vue-eslint-parser:
specifier: 'catalog:'
- version: 10.2.0(eslint@9.39.2(jiti@2.6.1))
+ version: 10.4.0(eslint@10.0.3(jiti@2.6.1))
yaml-eslint-parser:
specifier: 'catalog:'
- version: 1.3.2
+ version: 2.0.0
- internal/lint-configs/prettier-config:
+ internal/lint-configs/oxfmt-config:
dependencies:
- prettier:
+ oxfmt:
specifier: 'catalog:'
- version: 3.8.1
- prettier-plugin-tailwindcss:
+ version: 0.40.0
+
+ internal/lint-configs/oxlint-config:
+ dependencies:
+ eslint-plugin-better-tailwindcss:
specifier: 'catalog:'
- version: 0.7.2(prettier@3.8.1)
+ version: 4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.16.0))(tailwindcss@4.2.1)(typescript@5.9.3)
+ oxlint:
+ specifier: 'catalog:'
+ version: 1.55.0(oxlint-tsgolint@0.16.0)
internal/lint-configs/stylelint-config:
dependencies:
'@stylistic/stylelint-plugin':
specifier: 'catalog:'
- version: 4.0.1(stylelint@16.26.1(typescript@5.9.3))
+ version: 5.0.1(stylelint@17.4.0(typescript@5.9.3))
stylelint-config-recess-order:
specifier: 'catalog:'
- version: 7.6.1(stylelint-order@7.0.1(stylelint@16.26.1(typescript@5.9.3)))(stylelint@16.26.1(typescript@5.9.3))
+ version: 7.6.1(stylelint-order@8.1.0(stylelint@17.4.0(typescript@5.9.3)))(stylelint@17.4.0(typescript@5.9.3))
stylelint-scss:
specifier: 'catalog:'
- version: 6.14.0(stylelint@16.26.1(typescript@5.9.3))
+ version: 7.0.0(stylelint@17.4.0(typescript@5.9.3))
devDependencies:
postcss:
specifier: 'catalog:'
- version: 8.5.6
+ version: 8.5.8
postcss-html:
specifier: 'catalog:'
version: 1.8.1
postcss-scss:
specifier: 'catalog:'
- version: 4.0.9(postcss@8.5.6)
- prettier:
- specifier: 'catalog:'
- version: 3.8.1
+ version: 4.0.9(postcss@8.5.8)
stylelint:
specifier: 'catalog:'
- version: 16.26.1(typescript@5.9.3)
+ version: 17.4.0(typescript@5.9.3)
stylelint-config-recommended:
specifier: 'catalog:'
- version: 17.0.0(stylelint@16.26.1(typescript@5.9.3))
+ version: 18.0.0(stylelint@17.4.0(typescript@5.9.3))
stylelint-config-recommended-scss:
specifier: 'catalog:'
- version: 16.0.2(postcss@8.5.6)(stylelint@16.26.1(typescript@5.9.3))
+ version: 17.0.0(postcss@8.5.8)(stylelint@17.4.0(typescript@5.9.3))
stylelint-config-recommended-vue:
specifier: 'catalog:'
- version: 1.6.1(postcss-html@1.8.1)(stylelint@16.26.1(typescript@5.9.3))
+ version: 1.6.1(postcss-html@1.8.1)(stylelint@17.4.0(typescript@5.9.3))
stylelint-config-standard:
specifier: 'catalog:'
- version: 39.0.1(stylelint@16.26.1(typescript@5.9.3))
+ version: 40.0.0(stylelint@17.4.0(typescript@5.9.3))
stylelint-order:
specifier: 'catalog:'
- version: 7.0.1(stylelint@16.26.1(typescript@5.9.3))
- stylelint-prettier:
- specifier: 'catalog:'
- version: 5.0.3(prettier@3.8.1)(stylelint@16.26.1(typescript@5.9.3))
+ version: 8.1.0(stylelint@17.4.0(typescript@5.9.3))
internal/node-utils:
dependencies:
@@ -1406,74 +1366,22 @@ importers:
version: 3.4.2
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
execa:
specifier: 'catalog:'
version: 9.6.1
find-up:
specifier: 'catalog:'
- version: 7.0.0
+ version: 8.0.0
ora:
specifier: 'catalog:'
- version: 8.2.0
+ version: 9.3.0
pkg-types:
specifier: 'catalog:'
version: 2.3.0
- prettier:
- specifier: 'catalog:'
- version: 3.8.1
rimraf:
specifier: 'catalog:'
- version: 6.1.2
-
- internal/tailwind-config:
- dependencies:
- '@iconify/json':
- specifier: 'catalog:'
- version: 2.2.438
- '@iconify/tailwind':
- specifier: 'catalog:'
- version: 1.2.0
- '@manypkg/get-packages':
- specifier: 'catalog:'
- version: 3.1.0
- '@tailwindcss/nesting':
- specifier: 'catalog:'
- version: 0.0.0-insiders.565cd3e(postcss@8.5.6)
- '@tailwindcss/typography':
- specifier: 'catalog:'
- version: 0.5.19(tailwindcss@3.4.19(yaml@2.8.2))
- autoprefixer:
- specifier: 'catalog:'
- version: 10.4.24(postcss@8.5.6)
- cssnano:
- specifier: 'catalog:'
- version: 7.1.2(postcss@8.5.6)
- jiti:
- specifier: ^2.6.1
- version: 2.6.1
- postcss:
- specifier: 'catalog:'
- version: 8.5.6
- postcss-antd-fixes:
- specifier: 'catalog:'
- version: 0.2.0(postcss@8.5.6)
- postcss-import:
- specifier: 'catalog:'
- version: 16.1.1(postcss@8.5.6)
- postcss-preset-env:
- specifier: 'catalog:'
- version: 10.6.1(postcss@8.5.6)
- tailwindcss:
- specifier: 'catalog:'
- version: 3.4.19(yaml@2.8.2)
- tailwindcss-animate:
- specifier: 'catalog:'
- version: 1.0.7(tailwindcss@3.4.19(yaml@2.8.2))
- devDependencies:
- '@types/postcss-import':
- specifier: 'catalog:'
- version: 14.0.3
+ version: 6.1.3
internal/tsconfig:
dependencies:
@@ -1482,16 +1390,19 @@ importers:
version: link:../../packages/types
vite:
specifier: 'catalog:'
- version: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
internal/vite-config:
dependencies:
'@intlify/unplugin-vue-i18n':
specifier: 'catalog:'
- version: 6.0.8(@vue/compiler-dom@3.5.28)(eslint@9.39.2(jiti@2.6.1))(rollup@4.57.1)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))
+ version: 11.0.7(@vue/compiler-dom@3.5.30)(eslint@10.0.3(jiti@2.6.1))(rollup@4.59.0)(typescript@5.9.3)(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
'@jspm/generator':
specifier: 'catalog:'
- version: 2.10.0
+ version: 2.11.0
+ '@tailwindcss/vite':
+ specifier: 'catalog:'
+ version: 4.2.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
archiver:
specifier: 'catalog:'
version: 7.0.1
@@ -1506,20 +1417,20 @@ importers:
version: 7.2.0
nitropack:
specifier: 'catalog:'
- version: 2.13.1
+ version: 2.13.1(rolldown@1.0.0-rc.9)
resolve.exports:
specifier: 'catalog:'
version: 2.0.3
vite-plugin-pwa:
specifier: 'catalog:'
- version: 1.2.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
+ version: 1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
vite-plugin-vue-devtools:
specifier: 'catalog:'
- version: 8.0.6(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
+ version: 8.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
devDependencies:
'@pnpm/workspace.read-manifest':
specifier: 'catalog:'
- version: 1000.2.10
+ version: 1000.3.0
'@types/archiver':
specifier: 'catalog:'
version: 6.0.4
@@ -1531,54 +1442,70 @@ importers:
version: link:../node-utils
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.4(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
+ version: 6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.1.4(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
+ version: 5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
dotenv:
specifier: 'catalog:'
- version: 16.6.1
+ version: 17.3.1
rollup:
specifier: 'catalog:'
- version: 4.57.1
+ version: 4.59.0
rollup-plugin-visualizer:
specifier: 'catalog:'
- version: 5.14.0(rollup@4.57.1)
+ version: 7.0.1(rolldown@1.0.0-rc.9)(rollup@4.59.0)
sass:
specifier: 'catalog:'
- version: 1.97.3
+ version: 1.98.0
+ sass-embedded:
+ specifier: 'catalog:'
+ version: 1.98.0
vite:
specifier: 'catalog:'
- version: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ version: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
vite-plugin-compression:
specifier: 'catalog:'
- version: 0.5.1(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ version: 0.5.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
vite-plugin-dts:
specifier: 'catalog:'
- version: 4.5.4(@types/node@25.2.3)(rollup@4.57.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ version: 4.5.4(@types/node@25.5.0)(rollup@4.59.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
vite-plugin-html:
specifier: 'catalog:'
- version: 3.2.2(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ version: 3.2.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
vite-plugin-lazy-import:
specifier: 'catalog:'
version: 1.0.7
- packages/@core/base/design: {}
+ packages/@core/base/design:
+ dependencies:
+ '@iconify/json':
+ specifier: 'catalog:'
+ version: 2.2.449
+ '@iconify/tailwind4':
+ specifier: 'catalog:'
+ version: 1.2.3(tailwindcss@4.2.1)
+ '@tailwindcss/typography':
+ specifier: 'catalog:'
+ version: 0.5.19(tailwindcss@4.2.1)
+ tw-animate-css:
+ specifier: 'catalog:'
+ version: 1.4.0
packages/@core/base/icons:
dependencies:
'@iconify/vue':
specifier: 'catalog:'
- version: 5.0.0(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.0(vue@3.5.30(typescript@5.9.3))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.553.0(vue@3.5.28(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/base/shared:
dependencies:
@@ -1587,10 +1514,10 @@ importers:
version: 4.2.0
'@tanstack/vue-store':
specifier: 'catalog:'
- version: 0.8.0(vue@3.5.28(typescript@5.9.3))
+ version: 0.9.2(vue@3.5.30(typescript@5.9.3))
'@vue/shared':
specifier: 'catalog:'
- version: 3.5.28
+ version: 3.5.30
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -1599,13 +1526,13 @@ importers:
version: 4.2.0
dayjs:
specifier: 'catalog:'
- version: 1.11.19
+ version: 1.11.20
defu:
specifier: 'catalog:'
version: 6.1.4
es-toolkit:
specifier: 'catalog:'
- version: 1.44.0
+ version: 1.45.1
jsencrypt:
specifier: 'catalog:'
version: 3.5.4
@@ -1617,7 +1544,7 @@ importers:
version: 0.2.0
tailwind-merge:
specifier: 'catalog:'
- version: 2.6.1
+ version: 3.5.0
theme-colors:
specifier: 'catalog:'
version: 0.1.0
@@ -1635,11 +1562,11 @@ importers:
packages/@core/base/typings:
dependencies:
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
packages/@core/composables:
dependencies:
@@ -1648,16 +1575,16 @@ importers:
version: link:../base/shared
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
reka-ui:
specifier: 'catalog:'
- version: 2.8.0(vue@3.5.28(typescript@5.9.3))
+ version: 2.9.2(vue@3.5.30(typescript@5.9.3))
sortablejs:
specifier: 'catalog:'
- version: 1.15.6
+ version: 1.15.7
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
devDependencies:
'@types/sortablejs':
specifier: 'catalog:'
@@ -1673,10 +1600,10 @@ importers:
version: link:../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/ui-kit/form-ui:
dependencies:
@@ -1697,16 +1624,16 @@ importers:
version: link:../../base/typings
'@vee-validate/zod':
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.28(typescript@5.9.3))(zod@3.25.76)
+ version: 4.15.1(vue@3.5.30(typescript@5.9.3))(zod@3.25.76)
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.28(typescript@5.9.3))
+ version: 4.15.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
zod:
specifier: 'catalog:'
version: 3.25.76
@@ -1733,16 +1660,19 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/ui-kit/menu-ui:
dependencies:
'@vben-core/composables':
specifier: workspace:*
version: link:../../composables
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../base/design
'@vben-core/icons':
specifier: workspace:*
version: link:../../base/icons
@@ -1757,10 +1687,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/ui-kit/popup-ui:
dependencies:
@@ -1781,16 +1711,19 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/ui-kit/shadcn-ui:
dependencies:
'@vben-core/composables':
specifier: workspace:*
version: link:../../composables
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../base/design
'@vben-core/icons':
specifier: workspace:*
version: link:../../base/icons
@@ -1802,28 +1735,31 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
lucide-vue-next:
specifier: 'catalog:'
- version: 0.553.0(vue@3.5.28(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.30(typescript@5.9.3))
reka-ui:
specifier: 'catalog:'
- version: 2.8.0(vue@3.5.28(typescript@5.9.3))
+ version: 2.9.2(vue@3.5.30(typescript@5.9.3))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.28(typescript@5.9.3))
+ version: 4.15.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/@core/ui-kit/tabs-ui:
dependencies:
'@vben-core/composables':
specifier: workspace:*
version: link:../../composables
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../base/design
'@vben-core/icons':
specifier: workspace:*
version: link:../../base/icons
@@ -1835,10 +1771,10 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/constants:
dependencies:
@@ -1861,11 +1797,14 @@ importers:
specifier: workspace:*
version: link:../../utils
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
packages/effects/common-ui:
dependencies:
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../@core/base/design
'@vben-core/form-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/form-ui
@@ -1898,10 +1837,10 @@ importers:
version: link:../../types
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
json-bigint:
specifier: 'catalog:'
version: 1.0.0
@@ -1912,18 +1851,21 @@ importers:
specifier: 'catalog:'
version: 6.3.7
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-json-viewer:
specifier: 'catalog:'
- version: 3.0.4(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(vue@3.5.30(typescript@5.9.3))
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
vue-tippy:
specifier: 'catalog:'
- version: 6.7.1(vue@3.5.28(typescript@5.9.3))
+ version: 6.7.1(vue@3.5.30(typescript@5.9.3))
devDependencies:
+ '@types/json-bigint':
+ specifier: 'catalog:'
+ version: 1.0.4
'@types/qrcode':
specifier: 'catalog:'
version: 1.5.6
@@ -1947,13 +1889,13 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
watermark-js-plus:
specifier: 'catalog:'
version: 1.6.3
@@ -1963,6 +1905,9 @@ importers:
'@vben-core/composables':
specifier: workspace:*
version: link:../../@core/composables
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../@core/base/design
'@vben-core/form-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/form-ui
@@ -2010,19 +1955,22 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
packages/effects/plugins:
dependencies:
'@tinyflow-ai/vue':
specifier: 'catalog:'
- version: 1.1.10(svelte@5.50.1)(vue@3.5.28(typescript@5.9.3))
+ version: 1.1.10(svelte@5.53.11)(vue@3.5.30(typescript@5.9.3))
+ '@vben-core/design':
+ specifier: workspace:*
+ version: link:../../@core/base/design
'@vben-core/form-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/form-ui
@@ -2052,10 +2000,10 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.28(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.30(typescript@5.9.3))
'@vueuse/motion':
specifier: 'catalog:'
- version: 3.0.3(magicast@0.5.2)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.3(magicast@0.5.2)(vue@3.5.30(typescript@5.9.3))
codemirror:
specifier: 'catalog:'
version: 5.65.21
@@ -2064,7 +2012,7 @@ importers:
version: 6.0.0
markdown-it:
specifier: 'catalog:'
- version: 14.1.0
+ version: 14.1.1
markmap-common:
specifier: 'catalog:'
version: 0.16.0
@@ -2078,14 +2026,14 @@ importers:
specifier: 'catalog:'
version: 0.16.0(markmap-common@0.16.0)
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vxe-pc-ui:
specifier: 'catalog:'
- version: 4.12.36(vue@3.5.28(typescript@5.9.3))
+ version: 4.13.5(vue@3.5.30(typescript@5.9.3))
vxe-table:
specifier: 'catalog:'
- version: 4.17.48(vue@3.5.28(typescript@5.9.3))
+ version: 4.18.2(vue@3.5.30(typescript@5.9.3))
devDependencies:
'@types/codemirror':
specifier: 'catalog:'
@@ -2107,17 +2055,17 @@ importers:
version: link:../../utils
axios:
specifier: 'catalog:'
- version: 1.13.5
+ version: 1.13.6
qs:
specifier: 'catalog:'
- version: 6.14.1
+ version: 6.15.0
devDependencies:
'@types/qs':
specifier: 'catalog:'
- version: 6.14.0
+ version: 6.15.0
axios-mock-adapter:
specifier: 'catalog:'
- version: 2.1.0(axios@1.13.5)
+ version: 2.1.0(axios@1.13.6)
packages/icons:
dependencies:
@@ -2129,16 +2077,16 @@ importers:
dependencies:
'@intlify/core-base':
specifier: 'catalog:'
- version: 11.2.8
+ version: 11.3.0
'@vben-core/composables':
specifier: workspace:*
version: link:../@core/composables
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-i18n:
specifier: 'catalog:'
- version: 11.2.8(vue@3.5.28(typescript@5.9.3))
+ version: 11.3.0(vue@3.5.30(typescript@5.9.3))
packages/preferences:
dependencies:
@@ -2162,19 +2110,19 @@ importers:
version: link:../@core/base/typings
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
pinia-plugin-persistedstate:
specifier: 'catalog:'
- version: 4.7.1(@nuxt/kit@4.3.1(magicast@0.5.2))(pinia@3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))
+ version: 4.7.1(@nuxt/kit@4.4.2(magicast@0.5.2))(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))
secure-ls:
specifier: 'catalog:'
version: 2.0.0
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
packages/styles:
dependencies:
@@ -2188,11 +2136,11 @@ importers:
specifier: workspace:*
version: link:../@core/base/typings
vue:
- specifier: ^3.5.27
- version: 3.5.28(typescript@5.9.3)
+ specifier: ^3.5.30
+ version: 3.5.30(typescript@5.9.3)
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
packages/utils:
dependencies:
@@ -2204,19 +2152,19 @@ importers:
version: link:../@core/base/typings
vue-router:
specifier: 'catalog:'
- version: 4.6.4(vue@3.5.28(typescript@5.9.3))
+ version: 5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
scripts/turbo-run:
dependencies:
'@clack/prompts':
specifier: 'catalog:'
- version: 0.11.0
+ version: 1.1.0
'@vben/node-utils':
specifier: workspace:*
version: link:../../internal/node-utils
cac:
specifier: 'catalog:'
- version: 6.7.14
+ version: 7.0.0
scripts/vsh:
dependencies:
@@ -2225,21 +2173,21 @@ importers:
version: link:../../internal/node-utils
cac:
specifier: 'catalog:'
- version: 6.7.14
+ version: 7.0.0
circular-dependency-scanner:
specifier: 'catalog:'
- version: 2.3.0
+ version: 3.0.1
depcheck:
specifier: 'catalog:'
version: 1.4.7
publint:
specifier: 'catalog:'
- version: 0.3.17
+ version: 0.3.18
packages:
- '@algolia/abtesting@1.14.0':
- resolution: {integrity: sha512-cZfj+1Z1dgrk3YPtNQNt0H9Rr67P8b4M79JjUKGS0d7/EbFbGxGgSu6zby5f22KXo3LT0LZa4O2c6VVbupJuDg==}
+ '@algolia/abtesting@1.15.2':
+ resolution: {integrity: sha512-rF7vRVE61E0QORw8e2NNdnttcl3jmFMWS9B4hhdga12COe+lMa26bQLfcBn/Nbp9/AF/8gXdaRCPsVns3CnjsA==}
engines: {node: '>= 14.0.0'}
'@algolia/autocomplete-core@1.17.7':
@@ -2262,62 +2210,58 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.48.0':
- resolution: {integrity: sha512-n17WSJ7vazmM6yDkWBAjY12J8ERkW9toOqNgQ1GEZu/Kc4dJDJod1iy+QP5T/UlR3WICgZDi/7a/VX5TY5LAPQ==}
+ '@algolia/client-abtesting@5.49.2':
+ resolution: {integrity: sha512-XyvKCm0RRmovMI/ChaAVjTwpZhXdbgt3iZofK914HeEHLqD1MUFFVLz7M0+Ou7F56UkHXwRbpHwb9xBDNopprQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.48.0':
- resolution: {integrity: sha512-v5bMZMEqW9U2l40/tTAaRyn4AKrYLio7KcRuHmLaJtxuJAhvZiE7Y62XIsF070juz4MN3eyvfQmI+y5+OVbZuA==}
+ '@algolia/client-analytics@5.49.2':
+ resolution: {integrity: sha512-jq/3qvtmj3NijZlhq7A1B0Cl41GfaBpjJxcwukGsYds6aMSCWrEAJ9pUqw/C9B3hAmILYKl7Ljz3N9SFvekD3Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.48.0':
- resolution: {integrity: sha512-7H3DgRyi7UByScc0wz7EMrhgNl7fKPDjKX9OcWixLwCj7yrRXDSIzwunykuYUUO7V7HD4s319e15FlJ9CQIIFQ==}
+ '@algolia/client-common@5.49.2':
+ resolution: {integrity: sha512-bn0biLequn3epobCfjUqCxlIlurLr4RHu7RaE4trgN+RDcUq6HCVC3/yqq1hwbNYpVtulnTOJzcaxYlSr1fnuw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.48.0':
- resolution: {integrity: sha512-tXmkB6qrIGAXrtRYHQNpfW0ekru/qymV02bjT0w5QGaGw0W91yT+53WB6dTtRRsIrgS30Al6efBvyaEosjZ5uw==}
+ '@algolia/client-insights@5.49.2':
+ resolution: {integrity: sha512-z14wfFs1T3eeYbCArC8pvntAWsPo9f6hnUGoj8IoRUJTwgJiiySECkm8bmmV47/x0oGHfsVn3kBdjMX0yq0sNA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.48.0':
- resolution: {integrity: sha512-4tXEsrdtcBZbDF73u14Kb3otN+xUdTVGop1tBjict+Rc/FhsJQVIwJIcTrOJqmvhtBfc56Bu65FiVOnpAZCxcw==}
+ '@algolia/client-personalization@5.49.2':
+ resolution: {integrity: sha512-GpRf7yuuAX93+Qt0JGEJZwgtL0MFdjFO9n7dn8s2pA9mTjzl0Sc5+uTk1VPbIAuf7xhCP9Mve+URGb6J+EYxgA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.48.0':
- resolution: {integrity: sha512-unzSUwWFpsDrO8935RhMAlyK0Ttua/5XveVIwzfjs5w+GVBsHgIkbOe8VbBJccMU/z1LCwvu1AY3kffuSLAR5Q==}
+ '@algolia/client-query-suggestions@5.49.2':
+ resolution: {integrity: sha512-HZwApmNkp0DiAjZcLYdQLddcG4Agb88OkojiAHGgcm5DVXobT5uSZ9lmyrbw/tmQBJwgu2CNw4zTyXoIB7YbPA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.48.0':
- resolution: {integrity: sha512-RB9bKgYTVUiOcEb5bOcZ169jiiVW811dCsJoLT19DcbbFmU4QaK0ghSTssij35QBQ3SCOitXOUrHcGgNVwS7sQ==}
+ '@algolia/client-search@5.49.2':
+ resolution: {integrity: sha512-y1IOpG6OSmTpGg/CT0YBb/EAhR2nsC18QWp9Jy8HO9iGySpcwaTvs5kHa17daP3BMTwWyaX9/1tDTDQshZzXdg==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.48.0':
- resolution: {integrity: sha512-rhoSoPu+TDzDpvpk3cY/pYgbeWXr23DxnAIH/AkN0dUC+GCnVIeNSQkLaJ+CL4NZ51cjLIjksrzb4KC5Xu+ktw==}
+ '@algolia/ingestion@1.49.2':
+ resolution: {integrity: sha512-YYJRjaZ2bqk923HxE4um7j/Cm3/xoSkF2HC2ZweOF8cXL3sqnlndSUYmCaxHFjNPWLaSHk2IfssX6J/tdKTULw==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.48.0':
- resolution: {integrity: sha512-aSe6jKvWt+8VdjOaq2ERtsXp9+qMXNJ3mTyTc1VMhNfgPl7ArOhRMRSQ8QBnY8ZL4yV5Xpezb7lAg8pdGrrulg==}
+ '@algolia/monitoring@1.49.2':
+ resolution: {integrity: sha512-9WgH+Dha39EQQyGKCHlGYnxW/7W19DIrEbCEbnzwAMpGAv1yTWCHMPXHxYa+LcL3eCp2V/5idD1zHNlIKmHRHg==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.48.0':
- resolution: {integrity: sha512-p9tfI1bimAaZrdiVExL/dDyGUZ8gyiSHsktP1ZWGzt5hXpM3nhv4tSjyHtXjEKtA0UvsaHKwSfFE8aAAm1eIQA==}
+ '@algolia/recommend@5.49.2':
+ resolution: {integrity: sha512-K7Gp5u+JtVYgaVpBxF5rGiM+Ia8SsMdcAJMTDV93rwh00DKNllC19o1g+PwrDjDvyXNrnTEbofzbTs2GLfFyKA==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.48.0':
- resolution: {integrity: sha512-XshyfpsQB7BLnHseMinp3fVHOGlTv6uEHOzNK/3XrEF9mjxoZAcdVfY1OCXObfwRWX5qXZOq8FnrndFd44iVsQ==}
+ '@algolia/requester-browser-xhr@5.49.2':
+ resolution: {integrity: sha512-3UhYCcWX6fbtN8ABcxZlhaQEwXFh3CsFtARyyadQShHMPe3mJV9Wel4FpJTa+seugRkbezFz0tt6aPTZSYTBuA==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.48.0':
- resolution: {integrity: sha512-Q4XNSVQU89bKNAPuvzSYqTH9AcbOOiIo6AeYMQTxgSJ2+uvT78CLPMG89RIIloYuAtSfE07s40OLV50++l1Bbw==}
+ '@algolia/requester-fetch@5.49.2':
+ resolution: {integrity: sha512-G94VKSGbsr+WjsDDOBe5QDQ82QYgxvpxRGJfCHZBnYKYsy/jv9qGIDb93biza+LJWizQBUtDj7bZzp3QZyzhPQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.48.0':
- resolution: {integrity: sha512-ZgxV2+5qt3NLeUYBTsi6PLyHcENQWC0iFppFZekHSEDA2wcLdTUjnaJzimTEULHIvJuLRCkUs4JABdhuJktEag==}
+ '@algolia/requester-node-http@5.49.2':
+ resolution: {integrity: sha512-UuihBGHafG/ENsrcTGAn5rsOffrCIRuHMOsD85fZGLEY92ate+BMTUqxz60dv5zerh8ZumN4bRm8eW2z9L11jA==}
engines: {node: '>= 14.0.0'}
- '@alloc/quick-lru@5.2.0':
- resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
- engines: {node: '>=10'}
-
'@ant-design/colors@6.0.0':
resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==}
@@ -2338,17 +2282,17 @@ packages:
'@ant-design/icons-vue@7.0.1':
resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@antdv-next/cssinjs@1.0.1':
- resolution: {integrity: sha512-9C7f2dZ7seDLuRU7dy23dmyxsWGZyHl9OriDQvamYHjqpKf6WdJhdUkQpTZ7q63t6h5JXrDgX4VYZH3JD6hX3g==}
+ '@antdv-next/cssinjs@1.0.4':
+ resolution: {integrity: sha512-bk/jnt5jkDDgULeH5gHyNVMf1krC8xz/E0LAqLVUnmYnaxKoNOOUYJgZtM+ElbJfFVz6PuahtjX1Wqk61zNhWw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@antdv-next/icons@1.0.0':
- resolution: {integrity: sha512-O3gxRGEYOYsNbyPuhEqZ+HIDTakl6v3ukBDQwZ3ZvbzOPBorgdhMhHQ1WFjlLBCo72bdx5/wKyjz6oFRhk0G+g==}
+ '@antdv-next/icons@1.0.5':
+ resolution: {integrity: sha512-gPUuhhB449hwnLZLS3j+CYIPGowpu2jJQJXX9vLT5insbmmFlizp9RwEH8zLqQOmLw7srSh87xnzGj6uzXW7fA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
@@ -2359,66 +2303,66 @@ packages:
peerDependencies:
ajv: '>=8'
- '@ast-grep/napi-darwin-arm64@0.39.9':
- resolution: {integrity: sha512-0gdBC2oPBkIBsh89yUXxJeK37QYRbp1qNZVuRGizT666ljgCw+2NIxHeQGNjwWuI0+g3exrd8FyqD3gMixRx3w==}
+ '@ast-grep/napi-darwin-arm64@0.41.1':
+ resolution: {integrity: sha512-sZHwg/oD6YB2y4VD8ZMeMHBq/ONil+mx+bB61YAiGQB+8UCMSFxJupvtNICB/BnIFqcPCVz/jCaSdbASLrbXQQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@ast-grep/napi-darwin-x64@0.39.9':
- resolution: {integrity: sha512-7QuQNFwcVj71hDAMBErF+mVq2h92vUdHLKa/vq58HdRpix5G3DZqcTKoFjwhCNzc2wsNRAjV+BiIR01znQSxLA==}
+ '@ast-grep/napi-darwin-x64@0.41.1':
+ resolution: {integrity: sha512-SL9hGB8sKvPnLUcigiDQrhohL7N4ujy1+t885kGcBkMXR73JT05OpPmvw0AWmg8l2iH1e5uNK/ZjnV/lSkynxQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@ast-grep/napi-linux-arm64-gnu@0.39.9':
- resolution: {integrity: sha512-qXTjhagRYkPyHNACEzGi5q26OMRdSvLRRqi799oZaSDf96Xj+8tcB5+tFlH0NpqaP84GsZoQ15SfDXeoP4qdmQ==}
+ '@ast-grep/napi-linux-arm64-gnu@0.41.1':
+ resolution: {integrity: sha512-mkNQpkm1jvnIdeRMnEWZ4Q0gNGApoNTMAoJRVmY11CkA4C/vIdNIjxj7UB61xV42Ng/A7Fw8mQUQuFos0lAKPQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@ast-grep/napi-linux-arm64-musl@0.39.9':
- resolution: {integrity: sha512-U9KVohyburVGEWiiREFq+iTxdMdSbRyXL+yzCVvGPmLPW4Ca4zpX9Cret4jCJBp8dljSIK0C7txXAc7fM+6rag==}
+ '@ast-grep/napi-linux-arm64-musl@0.41.1':
+ resolution: {integrity: sha512-0G3cHyc+8A945aLie55bLZ+oaEBer0EFlyP/GlwRAx4nn5vGBct1hVTxSexWJ6AxnnRNPlN0mvswVwXiE7H7gA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@ast-grep/napi-linux-x64-gnu@0.39.9':
- resolution: {integrity: sha512-C5WwiNr/eE7lS0vl9bNdSXrsGIUAga2SaqV3G+ogVl9HeRU2jtGhv+3AgzGvYWj+PtnbtuZ2Nxkm10gEVPhv1A==}
+ '@ast-grep/napi-linux-x64-gnu@0.41.1':
+ resolution: {integrity: sha512-+aNiCik3iTMtUrMp1k2yIMjby1U64EydTH1qotlx+fh8YvwrwwxZWct7NlurY3MILgT/WONSxhHKmL5NsbB4dw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@ast-grep/napi-linux-x64-musl@0.39.9':
- resolution: {integrity: sha512-KutzZSMhHP3P43nQ+kNSbuiDaqkCcdqOcXLnq28MRvS+qwvW+01dJ8eWRlpMJC9vCJmaJAZfI7xkNSp74WkdxA==}
+ '@ast-grep/napi-linux-x64-musl@0.41.1':
+ resolution: {integrity: sha512-rBrZSx5za3OliYcJcUrbLct+1+8oxh8ZEjYPiLCybe4FhspNKGM952g8a4sjgRuwbKS9BstYO9Fz+wthFnaFUQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@ast-grep/napi-win32-arm64-msvc@0.39.9':
- resolution: {integrity: sha512-S2kC6K9I7e70oMVn2FDICzVlz7SPZVWNCRKCBD+Dgy1OTn0byzmMLaGpjth3pqN93UCssEC03ooP3tuclS0JSA==}
+ '@ast-grep/napi-win32-arm64-msvc@0.41.1':
+ resolution: {integrity: sha512-uNRHM3a1qFN0SECJDCEDVy1b0N75JNhJE2O/2BhDkDo0qM8kEewf9jRtG1fwpgZbMK2KoKvMHU/KQ73fWN44Zw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@ast-grep/napi-win32-ia32-msvc@0.39.9':
- resolution: {integrity: sha512-n18Dqtc7O5q8ZM9gBNkvLd+ajdjLNraw4ZoIcHelI7TnTvh1m6zR3tUuHNxPhL+IJfdKx3ne7ATKlEeiSlMn4g==}
+ '@ast-grep/napi-win32-ia32-msvc@0.41.1':
+ resolution: {integrity: sha512-uNPQwGUBGIbCX+WhEIfYJf/VrS7o5+vJvT4MVEHI8aVJnpjcFsLrFI0hIv044OXxnleOo2HUvEmjOrub//at/Q==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@ast-grep/napi-win32-x64-msvc@0.39.9':
- resolution: {integrity: sha512-YOF7mO+6nvyRtMC179u82Vr1qIGOmoE1yjwr4cmAf7DVNd+vs42y9tbQGYwLmVY8M3Hg1PviB8XX7FQKewuOGQ==}
+ '@ast-grep/napi-win32-x64-msvc@0.41.1':
+ resolution: {integrity: sha512-xFp68OCUEmWYcqoreZFaf2xwMhm/22Qf6bR2Qyn8WNVY9RF4m4+k5K+7Wn+n9xy0vHUPhtFd1So/SvuaqLHEoA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@ast-grep/napi@0.39.9':
- resolution: {integrity: sha512-qtLLQq1a3isK0iaq0Drl7Qt4PqeyjTrpFxNdA/20O/jYkGiA/oJA8DLMn1bzczsfjlUohe4dg39bpeAqG02uvA==}
+ '@ast-grep/napi@0.41.1':
+ resolution: {integrity: sha512-OYQVWBbb43af2lTSCayMS7wsZ20nl+fw6LGVl/5zSuHTZRNfANknKLk3wMA4y7RIaAiIwrldAmI6GNZeIDRTkQ==}
engines: {node: '>= 10'}
'@babel/code-frame@7.29.0':
@@ -2457,8 +2401,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.6':
- resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==}
+ '@babel/helper-define-polyfill-provider@0.6.7':
+ resolution: {integrity: sha512-6Fqi8MtQ/PweQ9xvux65emkLQ83uB+qAVtfHkC9UodyHMIZdxNI01HjLCLUtybElp2KY2XNE0nOgyP1E1vXw9w==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2970,8 +2914,8 @@ packages:
'@bpmn-io/extract-process-variables@0.8.0':
resolution: {integrity: sha512-yAS7ZYX+D56K+luC36u96eRMLb4VHcPUwTUqMZ/Z/Je2gou2DJLRbuBTHAB4jjKt4wFCHSG4B8Y+TrBciEYf4w==}
- '@bpmn-io/feel-editor@2.4.0':
- resolution: {integrity: sha512-/2fRDDEYb07zacdsFn1nn0W3gV/XkT2YSpHfa9HpyeyYzHWT2bCeU5YkIPxtROrJdScqGuCcCQV2IuxAfgjjhw==}
+ '@bpmn-io/feel-editor@2.5.1':
+ resolution: {integrity: sha512-reX8eLG5ttS72KSLFeeHg+J8dbFecdJdJrJPRAp8OvHMLWBWRLN1wGbLua9Lst1lLEM2MclwDKy/NPkahHsmyQ==}
engines: {node: '>= 20'}
'@bpmn-io/feel-lint@3.1.0':
@@ -2985,27 +2929,30 @@ packages:
resolution: {integrity: sha512-t/k0z5AW18J7Qz2i/bIFAlvlcS63RuyQB9OQ0YiC1WyMosxXRAnv98LHnVbwirx9vje1DLll85tkBT2B8KLjmQ==}
engines: {node: '>= 20.12.0'}
- '@bpmn-io/lezer-feel@2.2.1':
- resolution: {integrity: sha512-X/8DIoTIW+F9dI2Pr2M66tGT8q83ZXLAwVYqHVUWw9STXbbCs7Aluy6CxW8EpXD1rur15pbP1ZkXQDIFkx55rA==}
+ '@bpmn-io/lezer-feel@2.3.0':
+ resolution: {integrity: sha512-GU6UwiBZP2imXkDOXhNWdlBWCjZjDj0QcR+zEWRDK5jDHDFdN1wUZjOvYpZIKFpNJd3JRHY6uz3Ynqu/THn3gA==}
engines: {node: '>= 20.12.0'}
- '@bpmn-io/properties-panel@3.38.0':
- resolution: {integrity: sha512-o8Oih4ILK93cMyD1FO1rnLL5GvWqbzFM8R14RhEheNUXvfd8/VnwOHpMlXvqlJ5zX8GTN9VBks3jmt7HQf0slg==}
+ '@bpmn-io/properties-panel@3.40.3':
+ resolution: {integrity: sha512-+aU75w4Dhhz8zgy02467tKBSylA9SF2zMJm7MP/vDu3M0y287dLEUjZTeYhwHgassEglWJB7dikeLhGvxNCMQA==}
- '@cacheable/memory@2.0.7':
- resolution: {integrity: sha512-RbxnxAMf89Tp1dLhXMS7ceft/PGsDl1Ip7T20z5nZ+pwIAsQ1p2izPjVG69oCLv/jfQ7HDPHTWK0c9rcAWXN3A==}
+ '@bufbuild/protobuf@2.11.0':
+ resolution: {integrity: sha512-sBXGT13cpmPR5BMgHE6UEEfEaShh5Ror6rfN3yEK5si7QVrtZg8LEPQb0VVhiLRUslD2yLnXtnRzG035J/mZXQ==}
- '@cacheable/utils@2.3.4':
- resolution: {integrity: sha512-knwKUJEYgIfwShABS1BX6JyJJTglAFcEU7EXqzTdiGCXur4voqkiJkdgZIQtWNFhynzDWERcTYv/sETMu3uJWA==}
+ '@cacheable/memory@2.0.8':
+ resolution: {integrity: sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==}
- '@camunda/feel-builtins@0.3.0':
- resolution: {integrity: sha512-pLz9GC2aXyWOk7fYnimnXZZh75X4TGmy//4FQW9yp+9I2voyUZAg+7vBOo+FzAeIiBMU9aEjrYfX8hBpzIkc+A==}
+ '@cacheable/utils@2.4.0':
+ resolution: {integrity: sha512-PeMMsqjVq+bF0WBsxFBxr/WozBJiZKY0rUojuaCoIaKnEl3Ju1wfEwS+SV1DU/cSe8fqHIPiYJFif8T3MVt4cQ==}
- '@carbon/icons@11.74.0':
- resolution: {integrity: sha512-tKAUXSgzLvov2gidRb3/U1NvUWKqxfG3anmWMz7WnTj/W3aK6PXpvgfspqPMOnBsnuF5q5H3Csq6XJ99dUZ5ig==}
+ '@camunda/feel-builtins@1.0.0':
+ resolution: {integrity: sha512-/0w86UVmNcNqlZB9n/4Ro5wqHt+JuBKwD8kt+O7ASxSqs80D1y4BMfgu+We+O7cA8MWbt9eNKUjwRgGf4f75TQ==}
- '@changesets/apply-release-plan@7.0.14':
- resolution: {integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==}
+ '@carbon/icons@11.76.0':
+ resolution: {integrity: sha512-e9XnUWPgxsyvgCL/ti/Ee2fItqRs/WrHkwy7GPqbEGdGZKSd9pBvO+jN7nxBT5TLdA50q26t5hR0U2taEyc5Kg==}
+
+ '@changesets/apply-release-plan@7.1.0':
+ resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==}
'@changesets/assemble-release-plan@6.0.9':
resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==}
@@ -3013,15 +2960,15 @@ packages:
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
- '@changesets/changelog-github@0.5.2':
- resolution: {integrity: sha512-HeGeDl8HaIGj9fQHo/tv5XKQ2SNEi9+9yl1Bss1jttPqeiASRXhfi0A2wv8yFKCp07kR1gpOI5ge6+CWNm1jPw==}
+ '@changesets/changelog-github@0.6.0':
+ resolution: {integrity: sha512-wA2/y4hR/A1K411cCT75rz0d46Iezxp1WYRFoFJDIUpkQ6oDBAIUiU7BZkDCmYgz0NBl94X1lgcZO+mHoiHnFg==}
- '@changesets/cli@2.29.8':
- resolution: {integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==}
+ '@changesets/cli@2.30.0':
+ resolution: {integrity: sha512-5D3Nk2JPqMI1wK25pEymeWRSlSMdo5QOGlyfrKg0AOufrUcjEE3RQgaCpHoBiM31CSNrtSgdJ0U6zL1rLDDfBA==}
hasBin: true
- '@changesets/config@3.1.2':
- resolution: {integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==}
+ '@changesets/config@3.1.3':
+ resolution: {integrity: sha512-vnXjcey8YgBn2L1OPWd3ORs0bGC4LoYcK/ubpgvzNVr53JXV5GiTVj7fWdMRsoKUH7hhhMAQnsJUqLr21EncNw==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
@@ -3029,11 +2976,11 @@ packages:
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
- '@changesets/get-github-info@0.7.0':
- resolution: {integrity: sha512-+i67Bmhfj9V4KfDeS1+Tz3iF32btKZB2AAx+cYMqDSRFP7r3/ZdGbjCo+c6qkyViN9ygDuBjzageuPGJtKGe5A==}
+ '@changesets/get-github-info@0.8.0':
+ resolution: {integrity: sha512-cRnC+xdF0JIik7coko3iUP9qbnfi1iJQ3sAa6dE+Tx3+ET8bjFEm63PA4WEohgjYcmsOikPHWzPsMWWiZmntOQ==}
- '@changesets/get-release-plan@4.0.14':
- resolution: {integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==}
+ '@changesets/get-release-plan@4.0.15':
+ resolution: {integrity: sha512-Q04ZaRPuEVZtA+auOYgFaVQQSA98dXiVe/yFaZfY7hoSmQICHGvP0TF4u3EDNHWmmCS4ekA/XSpKlSM2PyTS2g==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
@@ -3044,14 +2991,14 @@ packages:
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
- '@changesets/parse@0.4.2':
- resolution: {integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==}
+ '@changesets/parse@0.4.3':
+ resolution: {integrity: sha512-ZDmNc53+dXdWEv7fqIUSgRQOLYoUom5Z40gmLgmATmYR9NbL6FJJHwakcCpzaeCy+1D0m0n7mT4jj2B/MQPl7A==}
'@changesets/pre@2.0.2':
resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==}
- '@changesets/read@0.6.6':
- resolution: {integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==}
+ '@changesets/read@0.6.7':
+ resolution: {integrity: sha512-D1G4AUYGrBEk8vj8MGwf75k9GpN6XL3wg8i42P2jZZwFLXnlr2Pn7r9yuQNbaMCarP7ZQWNJbV6XLeysAIMhTA==}
'@changesets/should-skip-package@0.1.2':
resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==}
@@ -3065,133 +3012,145 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@clack/core@0.5.0':
- resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==}
+ '@clack/core@1.1.0':
+ resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==}
- '@clack/prompts@0.11.0':
- resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==}
+ '@clack/prompts@1.1.0':
+ resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==}
'@cloudflare/kv-asset-handler@0.4.2':
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
engines: {node: '>=18.0.0'}
- '@codemirror/autocomplete@6.20.0':
- resolution: {integrity: sha512-bOwvTOIJcG5FVo5gUUupiwYh8MioPLQ4UcqbcRf7UQ98X90tCa9E1kZ3Z7tqwpZxYyOvh1YTYbmZE9RTfTp5hg==}
+ '@codemirror/autocomplete@6.20.1':
+ resolution: {integrity: sha512-1cvg3Vz1dSSToCNlJfRA2WSI4ht3K+WplO0UMOgmUYPivCyy2oueZY6Lx7M9wThm7SDUBViRmuT+OG/i8+ON9A==}
- '@codemirror/commands@6.10.2':
- resolution: {integrity: sha512-vvX1fsih9HledO1c9zdotZYUZnE4xV0m6i3m25s5DIfXofuprk6cRcLUZvSk3CASUbwjQX21tOGbkY2BH8TpnQ==}
+ '@codemirror/commands@6.10.3':
+ resolution: {integrity: sha512-JFRiqhKu+bvSkDLI+rUhJwSxQxYb759W5GBezE8Uc8mHLqC9aV/9aTC7yJSqCtB3F00pylrLCwnyS91Ap5ej4Q==}
- '@codemirror/language@6.12.1':
- resolution: {integrity: sha512-Fa6xkSiuGKc8XC8Cn96T+TQHYj4ZZ7RdFmXA3i9xe/3hLHfwPZdM+dqfX0Cp0zQklBKhVD8Yzc8LS45rkqcwpQ==}
+ '@codemirror/language@6.12.2':
+ resolution: {integrity: sha512-jEPmz2nGGDxhRTg3lTpzmIyGKxz3Gp3SJES4b0nAuE5SWQoKdT5GoQ69cwMmFd+wvFUhYirtDTr0/DRHpQAyWg==}
- '@codemirror/lint@6.9.3':
- resolution: {integrity: sha512-y3YkYhdnhjDBAe0VIA0c4wVoFOvnp8CnAvfLqi0TqotIv92wIlAAP7HELOpLBsKwjAX6W92rSflA6an/2zBvXw==}
+ '@codemirror/lint@6.9.5':
+ resolution: {integrity: sha512-GElsbU9G7QT9xXhpUg1zWGmftA/7jamh+7+ydKRuT0ORpWS3wOSP0yT1FOlIZa7mIJjpVPipErsyvVqB9cfTFA==}
- '@codemirror/state@6.5.4':
- resolution: {integrity: sha512-8y7xqG/hpB53l25CIoit9/ngxdfoG+fx+V3SHBrinnhOtLvKHRyAJJuHzkWrR4YXXLX8eXBsejgAAxHUOdW1yw==}
+ '@codemirror/state@6.6.0':
+ resolution: {integrity: sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==}
- '@codemirror/view@6.39.13':
- resolution: {integrity: sha512-QBO8ZsgJLCbI28KdY0/oDy5NQLqOQVZCozBknxc2/7L98V+TVYFHnfaCsnGh1U+alpd2LOkStVwYY7nW2R1xbw==}
+ '@codemirror/view@6.40.0':
+ resolution: {integrity: sha512-WA0zdU7xfF10+5I3HhUUq3kqOx3KjqmtQ9lqZjfK7jtYk4G72YW9rezcSywpaUMCWOMlq+6E0pO1IWg1TNIhtg==}
- '@commitlint/cli@19.8.1':
- resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==}
+ '@commitlint/cli@20.4.4':
+ resolution: {integrity: sha512-GLMNQHYGcn0ohL2HMlAnXcD1PS2vqBBGbYKlhrRPOYsWiRoLWtrewsR3uKRb9v/IdS+qOS0vqJQ64n1g8VPKFw==}
engines: {node: '>=v18'}
hasBin: true
- '@commitlint/config-conventional@19.8.1':
- resolution: {integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==}
+ '@commitlint/config-conventional@20.4.4':
+ resolution: {integrity: sha512-Usg+XXbPNG2GtFWTgRURNWCge1iH1y6jQIvvklOdAbyn2t8ajfVwZCnf5t5X4gUsy17BOiY+myszGsSMIvhOVA==}
engines: {node: '>=v18'}
- '@commitlint/config-validator@19.8.1':
- resolution: {integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==}
+ '@commitlint/config-validator@20.4.4':
+ resolution: {integrity: sha512-K8hMS9PTLl7EYe5vWtSFQ/sgsV2PHUOtEnosg8k3ZQxCyfKD34I4C7FxWEfRTR54rFKeUYmM3pmRQqBNQeLdlw==}
engines: {node: '>=v18'}
- '@commitlint/ensure@19.8.1':
- resolution: {integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==}
+ '@commitlint/ensure@20.4.4':
+ resolution: {integrity: sha512-QivV0M1MGL867XCaF+jJkbVXEPKBALhUUXdjae66hes95aY1p3vBJdrcl3x8jDv2pdKWvIYIz+7DFRV/v0dRkA==}
engines: {node: '>=v18'}
- '@commitlint/execute-rule@19.8.1':
- resolution: {integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==}
+ '@commitlint/execute-rule@20.0.0':
+ resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==}
engines: {node: '>=v18'}
- '@commitlint/format@19.8.1':
- resolution: {integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==}
+ '@commitlint/format@20.4.4':
+ resolution: {integrity: sha512-jLi/JBA4GEQxc5135VYCnkShcm1/rarbXMn2Tlt3Si7DHiiNKHm4TaiJCLnGbZ1r8UfwDRk+qrzZ80kwh08Aow==}
engines: {node: '>=v18'}
- '@commitlint/is-ignored@19.8.1':
- resolution: {integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==}
+ '@commitlint/is-ignored@20.4.4':
+ resolution: {integrity: sha512-y76rT8yq02x+pMDBI2vY4y/ByAwmJTkta/pASbgo8tldBiKLduX8/2NCRTSCjb3SumE5FBeopERKx3oMIm8RTQ==}
engines: {node: '>=v18'}
- '@commitlint/lint@19.8.1':
- resolution: {integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==}
+ '@commitlint/lint@20.4.4':
+ resolution: {integrity: sha512-svOEW+RptcNpXKE7UllcAsV0HDIdOck9reC2TP1QA6K5Fo0xxQV+QPjV8Zqx9g6X/hQBkF2S9ZQZ78Xrv1Eiog==}
engines: {node: '>=v18'}
- '@commitlint/load@19.8.1':
- resolution: {integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==}
+ '@commitlint/load@20.4.4':
+ resolution: {integrity: sha512-kvFrzvoIACa/fMjXEP0LNEJB1joaH3q3oeMJsLajXE5IXjYrNGVcW1ZFojXUruVJ7odTZbC3LdE/6+ONW4f2Dg==}
engines: {node: '>=v18'}
- '@commitlint/message@19.8.1':
- resolution: {integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==}
+ '@commitlint/message@20.4.3':
+ resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==}
engines: {node: '>=v18'}
- '@commitlint/parse@19.8.1':
- resolution: {integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==}
+ '@commitlint/parse@20.4.4':
+ resolution: {integrity: sha512-AjfgOgrjEozeQNzhFu1KL5N0nDx4JZmswVJKNfOTLTUGp6xODhZHCHqb//QUHKOzx36If5DQ7tci2o7szYxu1A==}
engines: {node: '>=v18'}
- '@commitlint/read@19.8.1':
- resolution: {integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==}
+ '@commitlint/read@20.4.4':
+ resolution: {integrity: sha512-jvgdAQDdEY6L8kCxOo21IWoiAyNFzvrZb121wU2eBxI1DzWAUZgAq+a8LlJRbT0Qsj9INhIPVWgdaBbEzlF0dQ==}
engines: {node: '>=v18'}
- '@commitlint/resolve-extends@19.8.1':
- resolution: {integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==}
+ '@commitlint/resolve-extends@20.4.4':
+ resolution: {integrity: sha512-pyOf+yX3c3m/IWAn2Jop+7s0YGKPQ8YvQaxt9IQxnLIM3yZAlBdkKiQCT14TnrmZTkVGTXiLtckcnFTXYwlY0A==}
engines: {node: '>=v18'}
- '@commitlint/rules@19.8.1':
- resolution: {integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==}
+ '@commitlint/rules@20.4.4':
+ resolution: {integrity: sha512-PmUp8QPLICn9w05dAx5r1rdOYoTk7SkfusJJh5tP3TqHwo2mlQ9jsOm8F0HSXU9kuLfgTEGNrunAx/dlK/RyPQ==}
engines: {node: '>=v18'}
- '@commitlint/to-lines@19.8.1':
- resolution: {integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==}
+ '@commitlint/to-lines@20.0.0':
+ resolution: {integrity: sha512-2l9gmwiCRqZNWgV+pX1X7z4yP0b3ex/86UmUFgoRt672Ez6cAM2lOQeHFRUTuE6sPpi8XBCGnd8Kh3bMoyHwJw==}
engines: {node: '>=v18'}
- '@commitlint/top-level@19.8.1':
- resolution: {integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==}
+ '@commitlint/top-level@20.4.3':
+ resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==}
engines: {node: '>=v18'}
- '@commitlint/types@19.8.1':
- resolution: {integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==}
+ '@commitlint/types@20.4.4':
+ resolution: {integrity: sha512-dwTGzyAblFXHJNBOgrTuO5Ee48ioXpS5XPRLLatxhQu149DFAHUcB3f0Q5eea3RM4USSsP1+WVT2dBtLVod4fg==}
engines: {node: '>=v18'}
- '@cspell/cspell-bundled-dicts@9.6.4':
- resolution: {integrity: sha512-OIiPQuB7XQ6rnUv4KaCwHr9vNwbh6VZ4GfgQjcThT0oz0hkL6E5Ar3tq54K9jyqE9ylcHqpRuXUgnKgio6Hlig==}
+ '@conventional-changelog/git-client@2.6.0':
+ resolution: {integrity: sha512-T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ conventional-commits-filter: ^5.0.0
+ conventional-commits-parser: ^6.3.0
+ peerDependenciesMeta:
+ conventional-commits-filter:
+ optional: true
+ conventional-commits-parser:
+ optional: true
+
+ '@cspell/cspell-bundled-dicts@9.7.0':
+ resolution: {integrity: sha512-s7h1vo++Q3AsfQa3cs0u/KGwm3SYInuIlC4kjlCBWjQmb4KddiZB5O1u0+3TlA7GycHb5M4CR7MDfHUICgJf+w==}
engines: {node: '>=20'}
- '@cspell/cspell-json-reporter@9.6.4':
- resolution: {integrity: sha512-rGYSDnDWACrUyovfN8M/LM8CCFSKjYd2kehbNS7YMPk0Jk+rLk6sgt5WYu3ty45otXCkiO07bjUo/81wBLet7A==}
+ '@cspell/cspell-json-reporter@9.7.0':
+ resolution: {integrity: sha512-6xpGXlMtQA3hV2BCAQcPkpx9eI12I0o01i9eRqSSEDKtxuAnnrejbcCpL+5OboAjTp3/BSeNYSnhuWYLkSITWQ==}
engines: {node: '>=20'}
- '@cspell/cspell-performance-monitor@9.6.4':
- resolution: {integrity: sha512-exuqxV1IVfZkasg57ZjUbaHeZDd6Mdbsbe5FBT3+XaVnRij+wpY2oEW9+kIOL5MOQE3bgQKgu37iMtA1NlCrGA==}
+ '@cspell/cspell-performance-monitor@9.7.0':
+ resolution: {integrity: sha512-w1PZIFXuvjnC6mQHyYAFnrsn5MzKnEcEkcK1bj4OG00bAt7WX2VUA/eNNt9c1iHozCQ+FcRYlfbGxuBmNyzSgw==}
engines: {node: '>=20.18'}
- '@cspell/cspell-pipe@9.6.4':
- resolution: {integrity: sha512-vVxajTG9Ko01oHk8HPsMLajcLrd9AfkOk6vdgFI4FD7ZPq1CY0hfTmfmJ8bzZ4/QkqXglTvePdSgHQVJeltwWw==}
+ '@cspell/cspell-pipe@9.7.0':
+ resolution: {integrity: sha512-iiisyRpJciU9SOHNSi0ZEK0pqbEMFRatI/R4O+trVKb+W44p4MNGClLVRWPGUmsFbZKPJL3jDtz0wPlG0/JCZA==}
engines: {node: '>=20'}
- '@cspell/cspell-resolver@9.6.4':
- resolution: {integrity: sha512-3xsgZEqqH9Uj8ZYLBnWbnsHz8wphgaeuWKcNDqgwoMjvwTMQLGoXjHht8Jx5yxd2e080lB7fJax8TaBdCzmFFA==}
+ '@cspell/cspell-resolver@9.7.0':
+ resolution: {integrity: sha512-uiEgS238mdabDnwavo6HXt8K98jlh/jpm7NONroM9NTr9rzck2VZKD2kXEj85wDNMtRsRXNoywTjwQ8WTB6/+w==}
engines: {node: '>=20'}
- '@cspell/cspell-service-bus@9.6.4':
- resolution: {integrity: sha512-oGNEzP1gJ43rLklJQjOk5PsfX0mZkLjV19djGptb9xZQeC2qAUxnaAbZtWt5CE8ni2iiTaRmgNRbUqAhRCnjew==}
+ '@cspell/cspell-service-bus@9.7.0':
+ resolution: {integrity: sha512-fkqtaCkg4jY/FotmzjhIavbXuH0AgUJxZk78Ktf4XlhqOZ4wDeUWrCf220bva4mh3TWiLx/ae9lIlpl59Vx6hA==}
engines: {node: '>=20'}
- '@cspell/cspell-types@9.6.4':
- resolution: {integrity: sha512-lf6d+BdMkJIFCxx2FpajLpqVGGyaGUNFU6jhEM6QUPeGuoA5et2kJXrL0NSY2uWLOVyYYc/FPjzlbe8trA9tBQ==}
+ '@cspell/cspell-types@9.7.0':
+ resolution: {integrity: sha512-Tdfx4eH2uS+gv9V9NCr3Rz+c7RSS6ntXp3Blliud18ibRUlRxO9dTaOjG4iv4x0nAmMeedP1ORkEpeXSkh2QiQ==}
engines: {node: '>=20'}
- '@cspell/cspell-worker@9.6.4':
- resolution: {integrity: sha512-anacKDOZzDfPzuDeFOXGI2tFBYiRRCSnIZP/AOyJ9zTvEQcqq5p/ak18nJ5OQyDr2NG7ovJiCDT5YNiH2Vdg/g==}
+ '@cspell/cspell-worker@9.7.0':
+ resolution: {integrity: sha512-cjEApFF0aOAa1vTUk+e7xP8ofK7iC7hsRzj1FmvvVQz8PoLWPRaq+1bT89ypPsZQvavqm5sIgb97S60/aW4TVg==}
engines: {node: '>=20.18'}
'@cspell/dict-ada@4.1.1':
@@ -3206,8 +3165,8 @@ packages:
'@cspell/dict-bash@4.2.2':
resolution: {integrity: sha512-kyWbwtX3TsCf5l49gGQIZkRLaB/P8g73GDRm41Zu8Mv51kjl2H7Au0TsEvHv7jzcsRLS6aUYaZv6Zsvk1fOz+Q==}
- '@cspell/dict-companies@3.2.10':
- resolution: {integrity: sha512-bJ1qnO1DkTn7JYGXvxp8FRQc4yq6tRXnrII+jbP8hHmq5TX5o1Wu+rdfpoUQaMWTl6balRvcMYiINDesnpR9Bw==}
+ '@cspell/dict-companies@3.2.11':
+ resolution: {integrity: sha512-0cmafbcz2pTHXLd59eLR1gvDvN6aWAOM0+cIL4LLF9GX9yB2iKDNrKsvs4tJRqutoaTdwNFBbV0FYv+6iCtebQ==}
'@cspell/dict-cpp@7.0.2':
resolution: {integrity: sha512-dfbeERiVNeqmo/npivdR6rDiBCqZi3QtjH2Z0HFcXwpdj6i97dX1xaKyK2GUsO/p4u1TOv63Dmj5Vm48haDpuA==}
@@ -3218,8 +3177,8 @@ packages:
'@cspell/dict-csharp@4.0.8':
resolution: {integrity: sha512-qmk45pKFHSxckl5mSlbHxmDitSsGMlk/XzFgt7emeTJWLNSTUK//MbYAkBNRtfzB4uD7pAFiKgpKgtJrTMRnrQ==}
- '@cspell/dict-css@4.0.19':
- resolution: {integrity: sha512-VYHtPnZt/Zd/ATbW3rtexWpBnHUohUrQOHff/2JBhsVgxOrksAxJnLAO43Q1ayLJBJUUwNVo+RU0sx0aaysZfg==}
+ '@cspell/dict-css@4.1.1':
+ resolution: {integrity: sha512-y/Vgo6qY08e1t9OqR56qjoFLBCpi4QfWMf2qzD1l9omRZwvSMQGRPz4x0bxkkkU4oocMAeztjzCsmLew//c/8w==}
'@cspell/dict-dart@2.3.2':
resolution: {integrity: sha512-sUiLW56t9gfZcu8iR/5EUg+KYyRD83Cjl3yjDEA2ApVuJvK1HhX+vn4e4k4YfjpUQMag8XO2AaRhARE09+/rqw==}
@@ -3233,8 +3192,8 @@ packages:
'@cspell/dict-docker@1.1.17':
resolution: {integrity: sha512-OcnVTIpHIYYKhztNTyK8ShAnXTfnqs43hVH6p0py0wlcwRIXe5uj4f12n7zPf2CeBI7JAlPjEsV0Rlf4hbz/xQ==}
- '@cspell/dict-dotnet@5.0.11':
- resolution: {integrity: sha512-LSVKhpFf/ASTWJcfYeS0Sykcl1gVMsv2Z5Eo0TnTMSTLV3738HH+66pIsjUTChqU6SF3gKPuCe6EOaRYqb/evA==}
+ '@cspell/dict-dotnet@5.0.12':
+ resolution: {integrity: sha512-FiV934kNieIjGTkiApu/WKvLYi/KBpvfWB2TSqpDQtmXZlt3uSa5blwblO1ZC8OvjH8RCq/31H5IdEYmTaZS7A==}
'@cspell/dict-elixir@4.0.8':
resolution: {integrity: sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==}
@@ -3242,20 +3201,20 @@ packages:
'@cspell/dict-en-common-misspellings@2.1.12':
resolution: {integrity: sha512-14Eu6QGqyksqOd4fYPuRb58lK1Va7FQK9XxFsRKnZU8LhL3N+kj7YKDW+7aIaAN/0WGEqslGP6lGbQzNti8Akw==}
- '@cspell/dict-en-gb-mit@3.1.18':
- resolution: {integrity: sha512-AXaMzbaxhSc32MSzKX0cpwT+Thv1vPfxQz1nTly1VHw3wQcwPqVFSqrLOYwa8VNqAPR45583nnhD6iqJ9YESoQ==}
+ '@cspell/dict-en-gb-mit@3.1.20':
+ resolution: {integrity: sha512-rcWEKb1mwgK13CSHu6GwwFA/sWLRkB0twTzSfPxUOULJkhcUrL93ixohk416SBa0BVxixub+lOpTXKcCTbTXsA==}
- '@cspell/dict-en_us@4.4.29':
- resolution: {integrity: sha512-G3B27++9ziRdgbrY/G/QZdFAnMzzx17u8nCb2Xyd4q6luLpzViRM/CW3jA+Mb/cGT5zR/9N+Yz9SrGu1s0bq7g==}
+ '@cspell/dict-en_us@4.4.31':
+ resolution: {integrity: sha512-MdV6mbrSkyIqn9+6F5poCyHIPqWB3H/wlDL9LXfjgAxNFBdYRE767xJtIYunzUqhUiJHSJgZajEFdTtMDw441Q==}
- '@cspell/dict-filetypes@3.0.15':
- resolution: {integrity: sha512-uDMeqYlLlK476w/muEFQGBy9BdQWS0mQ7BJiy/iQv5XUWZxE2O54ZQd9nW8GyQMzAgoyg5SG4hf9l039Qt66oA==}
+ '@cspell/dict-filetypes@3.0.17':
+ resolution: {integrity: sha512-6f1gZf9o60fGQXGi/fZaryISUNDRmmJwGyr4QU1UvgUgOdpDHLVJtv/0wSL9q5F0wAkYhbXo/fNG8CcUTaf7Ww==}
'@cspell/dict-flutter@1.1.1':
resolution: {integrity: sha512-UlOzRcH2tNbFhZmHJN48Za/2/MEdRHl2BMkCWZBYs+30b91mWvBfzaN4IJQU7dUZtowKayVIF9FzvLZtZokc5A==}
- '@cspell/dict-fonts@4.0.5':
- resolution: {integrity: sha512-BbpkX10DUX/xzHs6lb7yzDf/LPjwYIBJHJlUXSBXDtK/1HaeS+Wqol4Mlm2+NAgZ7ikIE5DQMViTgBUY3ezNoQ==}
+ '@cspell/dict-fonts@4.0.6':
+ resolution: {integrity: sha512-aR/0csY01dNb0A1tw/UmN9rKgHruUxsYsvXu6YlSBJFu60s26SKr/k1o4LavpHTQ+lznlYMqAvuxGkE4Flliqw==}
'@cspell/dict-fsharp@1.1.1':
resolution: {integrity: sha512-imhs0u87wEA4/cYjgzS0tAyaJpwG7vwtC8UyMFbwpmtw+/bgss+osNfyqhYRyS/ehVCWL17Ewx2UPkexjKyaBA==}
@@ -3281,8 +3240,8 @@ packages:
'@cspell/dict-html-symbol-entities@4.0.5':
resolution: {integrity: sha512-429alTD4cE0FIwpMucvSN35Ld87HCyuM8mF731KU5Rm4Je2SG6hmVx7nkBsLyrmH3sQukTcr1GaiZsiEg8svPA==}
- '@cspell/dict-html@4.0.14':
- resolution: {integrity: sha512-2bf7n+kS92g+cMKV0wr9o/Oq9n8JzU7CcrB96gIh2GHgnF+0xDOqO2W/1KeFAqOfqosoOVE48t+4dnEMkkoJ2Q==}
+ '@cspell/dict-html@4.0.15':
+ resolution: {integrity: sha512-GJYnYKoD9fmo2OI0aySEGZOjThnx3upSUvV7mmqUu8oG+mGgzqm82P/f7OqsuvTaInZZwZbo+PwJQd/yHcyFIw==}
'@cspell/dict-java@5.0.12':
resolution: {integrity: sha512-qPSNhTcl7LGJ5Qp6VN71H8zqvRQK04S08T67knMq9hTA8U7G1sTKzLmBaDOFhq17vNX/+rT+rbRYp+B5Nwza1A==}
@@ -3296,8 +3255,8 @@ packages:
'@cspell/dict-kotlin@1.1.1':
resolution: {integrity: sha512-J3NzzfgmxRvEeOe3qUXnSJQCd38i/dpF9/t3quuWh6gXM+krsAXP75dY1CzDmS8mrJAlBdVBeAW5eAZTD8g86Q==}
- '@cspell/dict-latex@5.0.0':
- resolution: {integrity: sha512-HUrIqUVohM6P0+5b7BsdAdb0STIv0aaFBvguI7pLcreljlcX3FSPUxea7ticzNlCNeVrEaiEn/ws9m6rYUeuNw==}
+ '@cspell/dict-latex@5.1.0':
+ resolution: {integrity: sha512-qxT4guhysyBt0gzoliXYEBYinkAdEtR2M7goRaUH0a7ltCsoqqAeEV8aXYRIdZGcV77gYSobvu3jJL038tlPAw==}
'@cspell/dict-lorem-ipsum@4.0.5':
resolution: {integrity: sha512-9a4TJYRcPWPBKkQAJ/whCu4uCAEgv/O2xAaZEI0n4y1/l18Yyx8pBKoIX5QuVXjjmKEkK7hi5SxyIsH7pFEK9Q==}
@@ -3308,11 +3267,11 @@ packages:
'@cspell/dict-makefile@1.0.5':
resolution: {integrity: sha512-4vrVt7bGiK8Rx98tfRbYo42Xo2IstJkAF4tLLDMNQLkQ86msDlYSKG1ZCk8Abg+EdNcFAjNhXIiNO+w4KflGAQ==}
- '@cspell/dict-markdown@2.0.14':
- resolution: {integrity: sha512-uLKPNJsUcumMQTsZZgAK9RgDLyQhUz/uvbQTEkvF/Q4XfC1i/BnA8XrOrd0+Vp6+tPOKyA+omI5LRWfMu5K/Lw==}
+ '@cspell/dict-markdown@2.0.16':
+ resolution: {integrity: sha512-976RRqKv6cwhrxdFCQP2DdnBVB86BF57oQtPHy4Zbf4jF/i2Oy29MCrxirnOBalS1W6KQeto7NdfDXRAwkK4PQ==}
peerDependencies:
- '@cspell/dict-css': ^4.0.19
- '@cspell/dict-html': ^4.0.14
+ '@cspell/dict-css': ^4.1.1
+ '@cspell/dict-html': ^4.0.15
'@cspell/dict-html-symbol-entities': ^4.0.5
'@cspell/dict-typescript': ^3.2.3
@@ -3322,8 +3281,8 @@ packages:
'@cspell/dict-node@5.0.9':
resolution: {integrity: sha512-hO+ga+uYZ/WA4OtiMEyKt5rDUlUyu3nXMf8KVEeqq2msYvAPdldKBGH7lGONg6R/rPhv53Rb+0Y1SLdoK1+7wQ==}
- '@cspell/dict-npm@5.2.33':
- resolution: {integrity: sha512-U1gfDxdFR6nnojvtdkF2Ati3jfIlnW5nJkFb2jS1JunlhrSYdZXwz/4bI//h1W3aaeYQoSlvTIqk3vlnIDrNng==}
+ '@cspell/dict-npm@5.2.37':
+ resolution: {integrity: sha512-dYKrD0bI08YgebJcbjsIDpTMK6EH0wTkEyQLsaH0T4tmsLJE95coTYb3eE7giRRGJADvBqrjH4fz5+INd85QqQ==}
'@cspell/dict-php@4.1.1':
resolution: {integrity: sha512-EXelI+4AftmdIGtA8HL8kr4WlUE11OqCSVlnIgZekmTkEGSZdYnkFdiJ5IANSALtlQ1mghKjz+OFqVs6yowgWA==}
@@ -3331,8 +3290,8 @@ packages:
'@cspell/dict-powershell@5.0.15':
resolution: {integrity: sha512-l4S5PAcvCFcVDMJShrYD0X6Huv9dcsQPlsVsBGbH38wvuN7gS7+GxZFAjTNxDmTY1wrNi1cCatSg6Pu2BW4rgg==}
- '@cspell/dict-public-licenses@2.0.15':
- resolution: {integrity: sha512-cJEOs901H13Pfy0fl4dCD1U+xpWIMaEPq8MeYU83FfDZvellAuSo4GqWCripfIqlhns/L6+UZEIJSOZnjgy7Wg==}
+ '@cspell/dict-public-licenses@2.0.16':
+ resolution: {integrity: sha512-EQRrPvEOmwhwWezV+W7LjXbIBjiy6y/shrET6Qcpnk3XANTzfvWflf9PnJ5kId/oKWvihFy0za0AV1JHd03pSQ==}
'@cspell/dict-python@4.2.25':
resolution: {integrity: sha512-hDdN0YhKgpbtZVRjQ2c8jk+n0wQdidAKj1Fk8w7KEHb3YlY5uPJ0mAKJk7AJKPNLOlILoUmN+HAVJz+cfSbWYg==}
@@ -3340,8 +3299,8 @@ packages:
'@cspell/dict-r@2.1.1':
resolution: {integrity: sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw==}
- '@cspell/dict-ruby@5.1.0':
- resolution: {integrity: sha512-9PJQB3cfkBULrMLp5kSAcFPpzf8oz9vFN+QYZABhQwWkGbuzCIXSorHrmWSASlx4yejt3brjaWS57zZ/YL5ZQQ==}
+ '@cspell/dict-ruby@5.1.1':
+ resolution: {integrity: sha512-LHrp84oEV6q1ZxPPyj4z+FdKyq1XAKYPtmGptrd+uwHbrF/Ns5+fy6gtSi7pS+uc0zk3JdO9w/tPK+8N1/7WUA==}
'@cspell/dict-rust@4.1.2':
resolution: {integrity: sha512-O1FHrumYcO+HZti3dHfBPUdnDFkI+nbYK3pxYmiM1sr+G0ebOd6qchmswS0Wsc6ZdEVNiPYJY/gZQR6jfW3uOg==}
@@ -3352,8 +3311,8 @@ packages:
'@cspell/dict-shell@1.1.2':
resolution: {integrity: sha512-WqOUvnwcHK1X61wAfwyXq04cn7KYyskg90j4lLg3sGGKMW9Sq13hs91pqrjC44Q+lQLgCobrTkMDw9Wyl9nRFA==}
- '@cspell/dict-software-terms@5.1.20':
- resolution: {integrity: sha512-TEk1xHvetTI4pv7Vzje1D322m6QEjaH2P6ucOOf6q7EJCppQIdC0lZSXkgHJAFU5HGSvEXSzvnVeW2RHW86ziQ==}
+ '@cspell/dict-software-terms@5.2.0':
+ resolution: {integrity: sha512-jyucc8KKxH5ClC4FPICISgcKAZU7UwgFdPkuuuK5nYIw0+l1umnUSn9IKCcOaurvXujvVP6mBfclXpUtmT6Vrw==}
'@cspell/dict-sql@2.2.1':
resolution: {integrity: sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==}
@@ -3376,24 +3335,24 @@ packages:
'@cspell/dict-zig@1.0.0':
resolution: {integrity: sha512-XibBIxBlVosU06+M6uHWkFeT0/pW5WajDRYdXG2CgHnq85b0TI/Ks0FuBJykmsgi2CAD3Qtx8UHFEtl/DSFnAQ==}
- '@cspell/dynamic-import@9.6.4':
- resolution: {integrity: sha512-1VnL9ahT3s17DLWl4MeO1pYg7zcVT3X9cKynI2/U86zNK5xMGS5icvjp7X65tsCAVNcWOtkqVFfrxi7kWxn67g==}
+ '@cspell/dynamic-import@9.7.0':
+ resolution: {integrity: sha512-Ws36IYvtS/8IN3x6K9dPLvTmaArodRJmzTn2Rkf2NaTnIYWhRuFzsP3SVVO59NN3fXswAEbmz5DSbVUe8bPZHg==}
engines: {node: '>=20'}
- '@cspell/filetypes@9.6.4':
- resolution: {integrity: sha512-a1aZ/8vGnhTknxTukjzo3m8CISyHW2MWnbedywg5SDEl5RMJitmzX90QZiQdSvEcqzqmtoAgSEZNBT2LX2gIKg==}
+ '@cspell/filetypes@9.7.0':
+ resolution: {integrity: sha512-Ln9e/8wGOyTeL3DCCs6kwd18TSpTw3kxsANjTrzLDASrX4cNmAdvc9J5dcIuBHPaqOAnRQxuZbzUlpRh73Y24w==}
engines: {node: '>=20'}
- '@cspell/rpc@9.6.4':
- resolution: {integrity: sha512-vGI1788Rx5Yml9N1/pD4zGd8Vrchi2Y01ADf9NiiOaNVVdf4PU1GCssLCsiIzhYQneErpQ8pJi/mS2F/QMZbRA==}
+ '@cspell/rpc@9.7.0':
+ resolution: {integrity: sha512-VnZ4ABgQeoS4RwofcePkDP7L6tf3Kh5D7LQKoyRM4R6XtfSsYefym6XKaRl3saGtthH5YyjgNJ0Tgdjen4wAAw==}
engines: {node: '>=20.18'}
- '@cspell/strong-weak-map@9.6.4':
- resolution: {integrity: sha512-AQrUbA0JUOEQgwItnfUQ6Ydk0hWY/uV3VhLwZWyrnT9eiQynmTnRTHtOCkkSl9+M4P0N4Raa2eGFRLcPAFksaw==}
+ '@cspell/strong-weak-map@9.7.0':
+ resolution: {integrity: sha512-5xbvDASjklrmy88O6gmGXgYhpByCXqOj5wIgyvwZe2l83T1bE+iOfGI4pGzZJ/mN+qTn1DNKq8BPBPtDgb7Q2Q==}
engines: {node: '>=20'}
- '@cspell/url@9.6.4':
- resolution: {integrity: sha512-h6VMlb7bDyGJfwLtipxxtHlT+ojzUXZz14AqZ/NEzY3LfOhfJTGpRcWLYFsgG/L0Ma4qjsYbPJt/Sj1C14j0VA==}
+ '@cspell/url@9.7.0':
+ resolution: {integrity: sha512-ZaaBr0pTvNxmyUbIn+nVPXPr383VqJzfUDMWicgTjJIeo2+T2hOq2kNpgpvTIrWtZrsZnSP8oXms1+sKTjcvkw==}
engines: {node: '>=20'}
'@css-render/plugin-bem@0.15.14':
@@ -3404,315 +3363,54 @@ packages:
'@css-render/vue3-ssr@0.15.14':
resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@csstools/cascade-layer-name-parser@2.0.5':
- resolution: {integrity: sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A==}
- engines: {node: '>=18'}
+ '@csstools/css-calc@3.1.1':
+ resolution: {integrity: sha512-HJ26Z/vmsZQqs/o3a6bgKslXGFAungXGbinULZO3eMsOyNJHeBBZfup5FiZInOghgoM4Hwnmw+OgbJCNg1wwUQ==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-parser-algorithms': ^4.0.0
+ '@csstools/css-tokenizer': ^4.0.0
- '@csstools/color-helpers@5.1.0':
- resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==}
- engines: {node: '>=18'}
-
- '@csstools/css-calc@2.1.4':
- resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
- engines: {node: '>=18'}
+ '@csstools/css-parser-algorithms@4.0.0':
+ resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-color-parser@3.1.0':
- resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==}
- engines: {node: '>=18'}
+ '@csstools/css-syntax-patches-for-csstree@1.1.0':
+ resolution: {integrity: sha512-H4tuz2nhWgNKLt1inYpoVCfbJbMwX/lQKp3g69rrrIMIYlFD9+zTykOKhNR8uGrAmbS/kT9n6hTFkmDkxLgeTA==}
+
+ '@csstools/css-tokenizer@4.0.0':
+ resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
+ engines: {node: '>=20.19.0'}
+
+ '@csstools/media-query-list-parser@5.0.0':
+ resolution: {integrity: sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-parser-algorithms': ^4.0.0
+ '@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-parser-algorithms@3.0.5':
- resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
- engines: {node: '>=18'}
+ '@csstools/selector-resolve-nested@4.0.0':
+ resolution: {integrity: sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- '@csstools/css-tokenizer': ^3.0.4
+ postcss-selector-parser: ^7.1.1
- '@csstools/css-syntax-patches-for-csstree@1.0.27':
- resolution: {integrity: sha512-sxP33Jwg1bviSUXAV43cVYdmjt2TLnLXNqCWl9xmxHawWVjGz/kEbdkr7F9pxJNBN2Mh+dq0crgItbW6tQvyow==}
-
- '@csstools/css-tokenizer@3.0.4':
- resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
- engines: {node: '>=18'}
-
- '@csstools/media-query-list-parser@4.0.3':
- resolution: {integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==}
- engines: {node: '>=18'}
+ '@csstools/selector-specificity@6.0.0':
+ resolution: {integrity: sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.5
- '@csstools/css-tokenizer': ^3.0.4
-
- '@csstools/postcss-alpha-function@1.0.1':
- resolution: {integrity: sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-cascade-layers@5.0.2':
- resolution: {integrity: sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-color-function-display-p3-linear@1.0.1':
- resolution: {integrity: sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-color-function@4.0.12':
- resolution: {integrity: sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-color-mix-function@3.0.12':
- resolution: {integrity: sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2':
- resolution: {integrity: sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-content-alt-text@2.0.8':
- resolution: {integrity: sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-contrast-color-function@2.0.12':
- resolution: {integrity: sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-exponential-functions@2.0.9':
- resolution: {integrity: sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-font-format-keywords@4.0.0':
- resolution: {integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-gamut-mapping@2.0.11':
- resolution: {integrity: sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-gradients-interpolation-method@5.0.12':
- resolution: {integrity: sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-hwb-function@4.0.12':
- resolution: {integrity: sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-ic-unit@4.0.4':
- resolution: {integrity: sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-initial@2.0.1':
- resolution: {integrity: sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-is-pseudo-class@5.0.3':
- resolution: {integrity: sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-light-dark-function@2.0.11':
- resolution: {integrity: sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-logical-float-and-clear@3.0.0':
- resolution: {integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-logical-overflow@2.0.0':
- resolution: {integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-logical-overscroll-behavior@2.0.0':
- resolution: {integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-logical-resize@3.0.0':
- resolution: {integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-logical-viewport-units@3.0.4':
- resolution: {integrity: sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-media-minmax@2.0.9':
- resolution: {integrity: sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5':
- resolution: {integrity: sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-nested-calc@4.0.0':
- resolution: {integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-normalize-display-values@4.0.1':
- resolution: {integrity: sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-oklab-function@4.0.12':
- resolution: {integrity: sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-position-area-property@1.0.0':
- resolution: {integrity: sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-progressive-custom-properties@4.2.1':
- resolution: {integrity: sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-property-rule-prelude-list@1.0.0':
- resolution: {integrity: sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-random-function@2.0.1':
- resolution: {integrity: sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-relative-color-syntax@3.0.12':
- resolution: {integrity: sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-scope-pseudo-class@4.0.1':
- resolution: {integrity: sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-sign-functions@1.1.4':
- resolution: {integrity: sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-stepped-value-functions@4.0.9':
- resolution: {integrity: sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1':
- resolution: {integrity: sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-system-ui-font-family@1.0.0':
- resolution: {integrity: sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-text-decoration-shorthand@4.0.3':
- resolution: {integrity: sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-trigonometric-functions@4.0.9':
- resolution: {integrity: sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/postcss-unset-value@4.0.0':
- resolution: {integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- '@csstools/selector-resolve-nested@3.1.0':
- resolution: {integrity: sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss-selector-parser: ^7.0.0
-
- '@csstools/selector-specificity@5.0.0':
- resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss-selector-parser: ^7.0.0
-
- '@csstools/utilities@2.0.0':
- resolution: {integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
+ postcss-selector-parser: ^7.1.1
'@ctrl/tinycolor@4.2.0':
resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==}
engines: {node: '>=14'}
+ '@cyberalien/svg-utils@1.2.6':
+ resolution: {integrity: sha512-x24BZpZ//OQZebYowWV8muilk9p4DJBGDYCVxeFiX+T/68VLKFJNBqSrJZ/XBNgmcQz3RCf4GjWj0DSt2NfM6w==}
+
'@docsearch/css@3.8.2':
resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==}
@@ -3736,22 +3434,19 @@ packages:
search-insights:
optional: true
- '@dual-bundle/import-meta-resolve@4.2.1':
- resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
-
'@element-plus/icons-vue@2.3.2':
resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@emnapi/core@1.8.1':
- resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
+ '@emnapi/core@1.9.0':
+ resolution: {integrity: sha512-0DQ98G9ZQZOxfUcQn1waV2yS8aWdZ6kJMbYCJB3oUBecjWYO1fqJ+a1DRfPF3O5JEkwqwP1A9QEN/9mYm2Yd0w==}
- '@emnapi/runtime@1.8.1':
- resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
+ '@emnapi/runtime@1.9.0':
+ resolution: {integrity: sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==}
- '@emnapi/wasi-threads@1.1.0':
- resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+ '@emnapi/wasi-threads@1.2.0':
+ resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
@@ -3768,170 +3463,172 @@ packages:
'@epic-web/invariant@1.0.0':
resolution: {integrity: sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==}
- '@es-joy/jsdoccomment@0.78.0':
- resolution: {integrity: sha512-rQkU5u8hNAq2NVRzHnIUUvR6arbO0b6AOlvpTNS48CkiKSn/xtNfOzBK23JE4SiW89DgvU7GtxLVgV4Vn2HBAw==}
- engines: {node: '>=20.11.0'}
+ '@es-joy/jsdoccomment@0.84.0':
+ resolution: {integrity: sha512-0xew1CxOam0gV5OMjh2KjFQZsKL2bByX1+q4j3E73MpYIdyUxcZb/xQct9ccUb+ve5KGUYbCUxyPnYB7RbuP+w==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@es-joy/resolve.exports@1.2.0':
- resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==}
- engines: {node: '>=10'}
-
- '@esbuild/aix-ppc64@0.25.12':
- resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
+ '@esbuild/aix-ppc64@0.27.4':
+ resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.12':
- resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
+ '@esbuild/android-arm64@0.27.4':
+ resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.12':
- resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
+ '@esbuild/android-arm@0.27.4':
+ resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.12':
- resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
+ '@esbuild/android-x64@0.27.4':
+ resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.12':
- resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
+ '@esbuild/darwin-arm64@0.27.4':
+ resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.12':
- resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
+ '@esbuild/darwin-x64@0.27.4':
+ resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.12':
- resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
+ '@esbuild/freebsd-arm64@0.27.4':
+ resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.12':
- resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
+ '@esbuild/freebsd-x64@0.27.4':
+ resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.12':
- resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
+ '@esbuild/linux-arm64@0.27.4':
+ resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.12':
- resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
+ '@esbuild/linux-arm@0.27.4':
+ resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.12':
- resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
+ '@esbuild/linux-ia32@0.27.4':
+ resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.12':
- resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
+ '@esbuild/linux-loong64@0.27.4':
+ resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.12':
- resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
+ '@esbuild/linux-mips64el@0.27.4':
+ resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.12':
- resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
+ '@esbuild/linux-ppc64@0.27.4':
+ resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.12':
- resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
+ '@esbuild/linux-riscv64@0.27.4':
+ resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.12':
- resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
+ '@esbuild/linux-s390x@0.27.4':
+ resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.12':
- resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
+ '@esbuild/linux-x64@0.27.4':
+ resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.12':
- resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
+ '@esbuild/netbsd-arm64@0.27.4':
+ resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.12':
- resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
+ '@esbuild/netbsd-x64@0.27.4':
+ resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.12':
- resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
+ '@esbuild/openbsd-arm64@0.27.4':
+ resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.12':
- resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
+ '@esbuild/openbsd-x64@0.27.4':
+ resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openharmony-arm64@0.25.12':
- resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
+ '@esbuild/openharmony-arm64@0.27.4':
+ resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.25.12':
- resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
+ '@esbuild/sunos-x64@0.27.4':
+ resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.12':
- resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
+ '@esbuild/win32-arm64@0.27.4':
+ resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.12':
- resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
+ '@esbuild/win32-ia32@0.27.4':
+ resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.12':
- resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
+ '@esbuild/win32-x64@0.27.4':
+ resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ '@eslint-community/eslint-plugin-eslint-comments@4.7.1':
+ resolution: {integrity: sha512-Ql2nJFwA8wUGpILYGOQaT1glPsmvEwE0d+a+l7AALLzQvInqdbXJdx7aSu0DpUX9dB1wMVBMhm99/++S3MdEtQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
+
'@eslint-community/eslint-utils@4.9.1':
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -3942,61 +3639,66 @@ packages:
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.21.1':
- resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-array@0.23.3':
+ resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/config-helpers@0.4.2':
- resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-helpers@0.5.3':
+ resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/core@0.17.0':
- resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/core@1.1.1':
+ resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/eslintrc@3.3.3':
- resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/css-tree@3.6.9':
+ resolution: {integrity: sha512-3D5/OHibNEGk+wKwNwMbz63NMf367EoR4mVNNpxddCHKEb2Nez7z62J2U6YjtErSsZDoY0CsccmoUpdEbkogNA==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- '@eslint/js@9.39.2':
- resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@eslint/object-schema@2.1.7':
- resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@eslint/plugin-kit@0.4.1':
- resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@floating-ui/core@1.7.4':
- resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==}
-
- '@floating-ui/dom@1.7.5':
- resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==}
-
- '@floating-ui/utils@0.2.10':
- resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
-
- '@floating-ui/vue@1.1.10':
- resolution: {integrity: sha512-vdf8f6rHnFPPLRsmL4p12wYl+Ux4mOJOkjzKEMYVnwdf7UFdvBtHlLvQyx8iKG5vhPRbDRgZxdtpmyigDPjzYg==}
-
- '@form-create/ant-design-vue@3.2.37':
- resolution: {integrity: sha512-BrdsQ3+G556u75ff3srCCKWDXeZpJ9Yr+AoeI36MLX+eRIkg9p4Xgxoy6eQ3jb0ohEKuh8kKNKF5H5lJVTIvPw==}
+ '@eslint/js@10.0.1':
+ resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
peerDependencies:
- vue: ^3.5.27
+ eslint: ^10.0.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+
+ '@eslint/object-schema@3.0.3':
+ resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ '@eslint/plugin-kit@0.6.1':
+ resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ '@floating-ui/core@1.7.5':
+ resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
+
+ '@floating-ui/dom@1.7.6':
+ resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
+
+ '@floating-ui/utils@0.2.11':
+ resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
+
+ '@floating-ui/vue@1.1.11':
+ resolution: {integrity: sha512-HzHKCNVxnGS35r9fCHBc3+uCnjw9IWIlCPL683cGgM9Kgj2BiAl8x1mS7vtvP6F9S/e/q4O6MApwSHj8hNLGfw==}
+
+ '@form-create/ant-design-vue@3.2.38':
+ resolution: {integrity: sha512-sXMOyHgD/zipdxEJkaxdQQIGDzaJ79JyThFh2cH3fbYJjEdes2Vaw/BwUGlFlS5lkRV5hqK3YydOaW02AxOfJQ==}
+ peerDependencies:
+ vue: ^3.5.30
'@form-create/antd-designer@3.4.0':
resolution: {integrity: sha512-55wFRbsLJ02Fj4+CLJK2HJ628xsQRafzlmz2yhHFk99O8eMl523QpxD/0O4yH7e+azqakxW6H5WoFexG78qSgA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@form-create/component-antdv-frame@3.2.31':
resolution: {integrity: sha512-1pg+OsmZLnhIZJvg4dC14R0KNaRVGGN1pxZkY2hf0iFeoKViEMnhsRKAqJzjAf3uGE/2jSyXpjRpRPZi8Egwww==}
- '@form-create/component-antdv-group@3.2.34':
- resolution: {integrity: sha512-7m4WLRkvVyOZ8ADQyWON9RIhJ/1aOb+dN2xUsxH+S1reGPlnKL9bRoCY5XNsPf/iitbWLRistSSi1r1Q0XFK/g==}
+ '@form-create/component-antdv-group@3.2.38':
+ resolution: {integrity: sha512-vvNKSUGWb82/xlMHL2SdAnuWU0bz/0kNE4gCfT7tcI1FWkrOsR5BkNw/mBkEFJFEuCj4enr1XYSZUhtv/mohGA==}
'@form-create/component-antdv-upload@3.2.31':
resolution: {integrity: sha512-pTaYM31LnEocHYCrBNqp2qE67NbhjNEG0qO4OJgLjsf8i66Pd47BTB3SLkay2daAH1o1ziRNkoilsQrcHTV3og==}
@@ -4007,8 +3709,8 @@ packages:
'@form-create/component-elm-frame@3.2.31':
resolution: {integrity: sha512-8ub7SnIRVV6YVIBXHps1A7hi7ivrjm8v1qNIcUOndUliXjP90PZ02YUZkVNh12aX8LNhGtuq8kLZqtdSdh78uA==}
- '@form-create/component-elm-group@3.2.34':
- resolution: {integrity: sha512-/067dB7Ss9UNLCKfTKpazYwVlpIeuAPGfhO4kcVx+bqr38fMuh2zuQNAqqRk5hsNC/Y8wOnPshT/bU1L8AQOGA==}
+ '@form-create/component-elm-group@3.2.38':
+ resolution: {integrity: sha512-TbsSf60qbgza5C8G49eX99iQEBxMdlN7Emayctq5eL+TzORx1qR1XFGGfHIm2Waizeq5uJXoh1jQm3QuKG4Q8A==}
'@form-create/component-elm-radio@3.2.31':
resolution: {integrity: sha512-hm/+tuBPf6bH1iw1xP80JXGe9rhUTovMcQpDfLMNkrdXrLZJ618sKXzID1nId03QKYcocnOHvkbX0NuNPila+A==}
@@ -4028,8 +3730,8 @@ packages:
'@form-create/component-naive-frame@3.2.31':
resolution: {integrity: sha512-XmQ0ywyULRUPyyn0bSKMijRsWIIg1U3Ytju+kQfclOb6gSzSQ0ULJqEQQRXHhIhDMC5g8QsBbq4S/bZgiHWUNA==}
- '@form-create/component-naive-group@3.2.34':
- resolution: {integrity: sha512-P+6Rsm9yNIkdKQZ/byJoo9ygvOJEZEFqNVh6e1gu70dJGd9HhmiFukIcx/N1tdmQYhM3MUedEgbsvko8XtBD1g==}
+ '@form-create/component-naive-group@3.2.38':
+ resolution: {integrity: sha512-wG54dj8GJ4RVtwg3fnlCs+F4yqfeaNb+Ij1I+P8OIEWjGY/xyPuch4h73lc0aMaSKL5o6DdcxNOz6VAurR6FZw==}
'@form-create/component-naive-radio@3.2.31':
resolution: {integrity: sha512-0XRQvtDAz25BDAuBARW2Ds0J5jCCTKgaVlv4/o7A8Ck16PF2rXdwU8XHaKEFQNb8Q8VMAFZjJgsQk5r+xZxCuw==}
@@ -4046,22 +3748,22 @@ packages:
'@form-create/core@3.2.37':
resolution: {integrity: sha512-1Wwr+6xMrL/6XfeeZJtlhMIKOWjwdUxuTiOJEApk+Q+Stsaz15LtKqsffyZTs7mN5DajUGnDxW8MP/myYgABXw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@form-create/designer@3.4.0':
resolution: {integrity: sha512-g1vUqX977lIHuWtAIhgLKZGZw87YClA1sJnLOFkweGA5CBJDhqNhvC4N0M1idkuKmCJtS+aweCYmrL2FapjDsw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@form-create/element-ui@3.2.37':
- resolution: {integrity: sha512-KfC+a1zE1SfEpiZR3i+C95GPsoXajrT/b76bvToI6Nxk4SKSG+cqNyrS4FnRU0WbJlxjF9lzPJ+oejOLmqPjmQ==}
+ '@form-create/element-ui@3.2.38':
+ resolution: {integrity: sha512-Ctsd7gw8STDlxxJ21M9+Q8b7BY82ILNRTMtY3wAAWKlIqtKsUexxob2IlGfvlFEk8nP78hPUH6ZksjYcm9YkKQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@form-create/naive-ui@3.2.37':
- resolution: {integrity: sha512-8TuSIWg2DhAq/VV3TVe4kW0RM3lO2tIMNpwdZRciZKIPLI7ePjrZvA+H7ztc160C6DRgNDm+fRGh4H2COX44ig==}
+ '@form-create/naive-ui@3.2.38':
+ resolution: {integrity: sha512-e0RJlubfDa91OKoysa3p5HRhqgMLhOKVyd51O9gxhWHMZdNikbXhhDXEQE8f98JqKg9l2pv6zwkBJvsGj+gAGw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@form-create/utils@3.2.31':
resolution: {integrity: sha512-YcisHXuQEF0r9y2VKS2CB2nMQ2q8EkKvQXp4nPR9sjbsCabPZOXq2n2MrkWDMhwQNwep08/0NCf7z0wslHzyWQ==}
@@ -4092,20 +3794,25 @@ packages:
'@iconify-json/logos@1.2.10':
resolution: {integrity: sha512-qxaXKJ6fu8jzTMPQdHtNxlfx6tBQ0jXRbHZIYy5Ilh8Lx9US9FsAdzZWUR8MXV8PnWTKGDFO4ZZee9VwerCyMA==}
- '@iconify-json/octicon@1.2.20':
- resolution: {integrity: sha512-BCIWoh06jlOKMY3JCDx547g+4a0TOj96cdrtD1N4gz3oNlWF7yXdrK9WbqYN4ykmDl+KdJYRtOYIFP1AvGXgVA==}
+ '@iconify-json/octicon@1.2.21':
+ resolution: {integrity: sha512-iMW8IT7suHRKVcHnci9wHKY79LU9mQ4rCAcVgKQQsI5SHoBi0r6z0leOXrI/oRCGJDiJDy9cLqweF3C5wSnm0A==}
- '@iconify-json/simple-icons@1.2.70':
- resolution: {integrity: sha512-CYNRCgN6nBTjN4dNkrBCjHXNR2e4hQihdsZUs/afUNFOWLSYjfihca4EFN05rRvDk4Xoy2n8tym6IxBZmcn+Qg==}
+ '@iconify-json/simple-icons@1.2.73':
+ resolution: {integrity: sha512-nQZTwul4c2zBqH/aLP4zMOiElj93T6HawbrP+sFQKpxmBdS5x1duCK3cAnkj6dntHz84EYkzaQRM83V2pj4qxA==}
- '@iconify-json/vscode-icons@1.2.41':
- resolution: {integrity: sha512-2qMotu+RBsom/sqiInfZQGCeVm7KmSrZdjK0b4oGbOcOLL0vECSUuAuvrsCZIkYloqzY6EBg2lkaSfnByVebpg==}
+ '@iconify-json/vscode-icons@1.2.45':
+ resolution: {integrity: sha512-ow+ueibMIq79ueM1kv6cOWgHx8jfh1XJQi2RrqMHb4HLbvIBlxpy5PCMvOJXlA68R6fBAHpWQeh6uWx7VKEVsA==}
- '@iconify/json@2.2.438':
- resolution: {integrity: sha512-vDZEuUxqO9b29GBNQrblIH/sE4e1fwNuwZjm3q22w8sKv6bJnqtMw0nCDAf0RVlp+7IPPCRVkFnk6L78cXZ6cg==}
+ '@iconify/json@2.2.449':
+ resolution: {integrity: sha512-23uDJsjBeUXqK66dchHDN/YulLeXxUDvAKLwYVKzL0UDT7A9UyHtHPwcOUNf0rbA452ZQMVqk8jsyDtg+xcheg==}
- '@iconify/tailwind@1.2.0':
- resolution: {integrity: sha512-KgpIHWOTcRYw1XcoUqyNSrmYyfLLqZYu3AmP8zdfLk0F5TqRO8YerhlvlQmGfn7rJXgPeZN569xPAJnJ53zZxA==}
+ '@iconify/tailwind4@1.2.3':
+ resolution: {integrity: sha512-z8SKiMHRASJKF/IY//87MF88lcB7ulxh8vlhQXXLWsBkNtOh6ese9R41MyGpQeqXdRvQVt+/fX2glQtHFjQ+MA==}
+ peerDependencies:
+ tailwindcss: '>= 4.0.0'
+
+ '@iconify/tools@5.0.5':
+ resolution: {integrity: sha512-JE3uqne+l89kggZYKIukaYDIae4lHKMNVDg7Oc+L+8rPwiMcfD5C56YLWyynyH/ib6I9xDFH1aamdfoL+m7OFA==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -4116,7 +3823,7 @@ packages:
'@iconify/vue@5.0.0':
resolution: {integrity: sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@inquirer/external-editor@1.0.3':
resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
@@ -4127,15 +3834,15 @@ packages:
'@types/node':
optional: true
- '@internationalized/date@3.11.0':
- resolution: {integrity: sha512-BOx5huLAWhicM9/ZFs84CzP+V3gBW6vlpM02yzsdYC7TGlZJX1OJiEEHcSayF00Z+3jLlm4w79amvSt6RqKN3Q==}
+ '@internationalized/date@3.12.0':
+ resolution: {integrity: sha512-/PyIMzK29jtXaGU23qTvNZxvBXRtKbNnGDFD+PY6CZw/Y8Ex8pFUzkuCJCG9aOqmShjqhS9mPqP6Dk5onQY8rQ==}
'@internationalized/number@3.6.5':
resolution: {integrity: sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==}
- '@intlify/bundle-utils@10.0.1':
- resolution: {integrity: sha512-WkaXfSevtpgtUR4t8K2M6lbR7g03mtOxFeh+vXp5KExvPqS12ppaRj1QxzwRuRI5VUto54A22BjKoBMLyHILWQ==}
- engines: {node: '>= 18'}
+ '@intlify/bundle-utils@11.0.7':
+ resolution: {integrity: sha512-fEO3CJGPymxieGh8BHox7d6stgajDQae7wgpH6YYw7WX+cdW6jTTXyljZqz7OV3JcwlS9M9UHSoO+YwiO56IhA==}
+ engines: {node: '>= 20'}
peerDependencies:
petite-vue-i18n: '*'
vue-i18n: '*'
@@ -4145,24 +3852,28 @@ packages:
vue-i18n:
optional: true
- '@intlify/core-base@11.2.8':
- resolution: {integrity: sha512-nBq6Y1tVkjIUsLsdOjDSJj4AsjvD0UG3zsg9Fyc+OivwlA/oMHSKooUy9tpKj0HqZ+NWFifweHavdljlBLTwdA==}
+ '@intlify/core-base@11.3.0':
+ resolution: {integrity: sha512-NNX5jIwF4TJBe7RtSKDMOA6JD9mp2mRcBHAwt2X+Q8PvnZub0yj5YYXlFu2AcESdgQpEv/5Yx2uOCV/yh7YkZg==}
engines: {node: '>= 16'}
- '@intlify/message-compiler@11.2.8':
- resolution: {integrity: sha512-A5n33doOjmHsBtCN421386cG1tWp5rpOjOYPNsnpjIJbQ4POF0QY2ezhZR9kr0boKwaHjbOifvyQvHj2UTrDFQ==}
+ '@intlify/devtools-types@11.3.0':
+ resolution: {integrity: sha512-G9CNL4WpANWVdUjubOIIS7/D2j/0j+1KJmhBJxHilWNKr9mmt3IjFV3Hq4JoBP23uOoC5ynxz/FHZ42M+YxfGw==}
engines: {node: '>= 16'}
- '@intlify/shared@11.2.8':
- resolution: {integrity: sha512-l6e4NZyUgv8VyXXH4DbuucFOBmxLF56C/mqh2tvApbzl2Hrhi1aTDcuv5TKdxzfHYmpO3UB0Cz04fgDT9vszfw==}
+ '@intlify/message-compiler@11.3.0':
+ resolution: {integrity: sha512-RAJp3TMsqohg/Wa7bVF3cChRhecSYBLrTCQSj7j0UtWVFLP+6iEJoE2zb7GU5fp+fmG5kCbUdzhmlAUCWXiUJw==}
engines: {node: '>= 16'}
- '@intlify/unplugin-vue-i18n@6.0.8':
- resolution: {integrity: sha512-Vvm3KhjE6TIBVUQAk37rBiaYy2M5OcWH0ZcI1XKEsOTeN1o0bErk+zeuXmcrcMc/73YggfI8RoxOUz9EB/69JQ==}
- engines: {node: '>= 18'}
+ '@intlify/shared@11.3.0':
+ resolution: {integrity: sha512-LC6P/uay7rXL5zZ5+5iRJfLs/iUN8apu9tm8YqQVmW3Uq3X4A0dOFUIDuAmB7gAC29wTHOS3EiN/IosNSz0eNQ==}
+ engines: {node: '>= 16'}
+
+ '@intlify/unplugin-vue-i18n@11.0.7':
+ resolution: {integrity: sha512-wswKprS1D8VfnxxVhKxug5wa3MbDSOcCoXOBjnzhMK+6NfP6h6UI8pFqSBIvcW8nPDuzweTc0Sk3PeBCcubfoQ==}
+ engines: {node: '>= 20'}
peerDependencies:
petite-vue-i18n: '*'
- vue: ^3.5.27
+ vue: ^3.5.30
vue-i18n: '*'
peerDependenciesMeta:
petite-vue-i18n:
@@ -4176,7 +3887,7 @@ packages:
peerDependencies:
'@intlify/shared': ^9.0.0 || ^10.0.0 || ^11.0.0
'@vue/compiler-dom': ^3.0.0
- vue: ^3.5.27
+ vue: ^3.5.30
vue-i18n: ^9.0.0 || ^10.0.0 || ^11.0.0
peerDependenciesMeta:
'@intlify/shared':
@@ -4188,16 +3899,8 @@ packages:
vue-i18n:
optional: true
- '@ioredis/commands@1.5.0':
- resolution: {integrity: sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==}
-
- '@isaacs/balanced-match@4.0.1':
- resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
- engines: {node: 20 || >=22}
-
- '@isaacs/brace-expansion@5.0.1':
- resolution: {integrity: sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==}
- engines: {node: 20 || >=22}
+ '@ioredis/commands@1.5.1':
+ resolution: {integrity: sha512-JH8ZL/ywcJyR9MmJ5BNqZllXNZQqQbnVZOqpPQqE1vHiFgAw4NHbvE0FOduNU8IX9babitBT46571OnPTT0Zcw==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -4230,11 +3933,11 @@ packages:
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@jspm/generator@2.10.0':
- resolution: {integrity: sha512-uP4qx/bh7eu7NVyEU5V0jjRUXmVtIiM1tsO9YwVFOlOkMUob5TRZfGac5bEo2qb+1AvSUN6IfFJP94iDnvSV1g==}
+ '@jspm/generator@2.11.0':
+ resolution: {integrity: sha512-9Asdskq7SjjFdM2oEhu1i1QiBRElAKFYaJMIP7GQoQ9jEPyYUJNZjp9oj9UJm44AJ9+wuiWg9JbgplhHgDom9w==}
- '@jspm/import-map@1.2.2':
- resolution: {integrity: sha512-QrM7+lkgVE8t9NZSm9fDSzheguEOVCOxueKxSwgoOt7yUWesWKDFmmL9bQFURl4IqMcpPz7VV2Tvw9s9emaJzQ==}
+ '@jspm/import-map@1.3.0':
+ resolution: {integrity: sha512-fnQBtZ9zlOwSHfUNGXCw02bC6nvHXIjg0kBdLngeRfeQ5uXvvTvkP/HRZnmxae4ZU9+p1VUGUcmP98rVynh82g==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
@@ -4286,24 +3989,24 @@ packages:
'@marijn/find-cluster-break@1.0.2':
resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
- '@microsoft/api-extractor-model@7.32.2':
- resolution: {integrity: sha512-Ussc25rAalc+4JJs9HNQE7TuO9y6jpYQX9nWD1DhqUzYPBr3Lr7O9intf+ZY8kD5HnIqeIRJX7ccCT0QyBy2Ww==}
+ '@microsoft/api-extractor-model@7.33.4':
+ resolution: {integrity: sha512-u1LTaNTikZAQ9uK6KG1Ms7nvNedsnODnspq/gH2dcyETWvH4hVNGNDvRAEutH66kAmxA4/necElqGNs1FggC8w==}
- '@microsoft/api-extractor@7.56.3':
- resolution: {integrity: sha512-fRqok4aRNq5GpgGBv2fKlSSKbirPKTJ75vQefthB5x9dwt4Zz+AezUzdc1p/AG4wUBIgmhjcEwn/Rj+N4Wh4Mw==}
+ '@microsoft/api-extractor@7.57.7':
+ resolution: {integrity: sha512-kmnmVs32MFWbV5X6BInC1/TfCs7y1ugwxv1xHsAIj/DyUfoe7vtO0alRUgbQa57+yRGHBBjlNcEk33SCAt5/dA==}
hasBin: true
'@microsoft/fetch-event-source@2.0.1':
resolution: {integrity: sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==}
- '@microsoft/tsdoc-config@0.18.0':
- resolution: {integrity: sha512-8N/vClYyfOH+l4fLkkr9+myAoR6M7akc8ntBJ4DJdWH2b09uVfr71+LTMpNyG19fNqWDg8KEDZhx5wxuqHyGjw==}
+ '@microsoft/tsdoc-config@0.18.1':
+ resolution: {integrity: sha512-9brPoVdfN9k9g0dcWkFeA7IH9bbcttzDJlXvkf8b2OBzd5MueR1V2wkKBL0abn0otvmkHJC6aapBOTJDDeMCZg==}
'@microsoft/tsdoc@0.16.0':
resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==}
- '@napi-rs/wasm-runtime@0.2.12':
- resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
+ '@napi-rs/wasm-runtime@1.1.1':
+ resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -4321,7 +4024,7 @@ packages:
resolution: {integrity: sha512-xxfRacF9cqQ5/umMhvhr0y2W4SkhzTmrrAHJ0UAAu/pIWfV/JPE9Hj0buH06bK7ZEUur+036gxkKlStI6UtDBw==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- vue: ^3.5.27
+ vue: ^3.5.30
'@nolebase/vitepress-plugin-git-changelog@2.18.2':
resolution: {integrity: sha512-TT1nxP+iS+5K8OLtkEr1EZ4bhCa4iqggly0JTD7TsO01hcwzMovr0lRaxPTo/4i/0bwMiPcaKxpKJ2zJIiu4Kw==}
@@ -4332,17 +4035,302 @@ packages:
resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@nuxt/kit@3.21.1':
- resolution: {integrity: sha512-QORZRjcuTKgo++XP1Pc2c2gqwRydkaExrIRfRI9vFsPA3AzuHVn5Gfmbv1ic8y34e78mr5DMBvJlelUaeOuajg==}
+ '@nuxt/kit@3.21.2':
+ resolution: {integrity: sha512-Bd6m6mrDrqpBEbX+g0rc66/ALd1sxlgdx5nfK9MAYO0yKLTOSK7McSYz1KcOYn3LQFCXOWfvXwaqih/b+REI1g==}
engines: {node: '>=18.12.0'}
- '@nuxt/kit@4.3.1':
- resolution: {integrity: sha512-UjBFt72dnpc+83BV3OIbCT0YHLevJtgJCHpxMX0YRKWLDhhbcDdUse87GtsQBrjvOzK7WUNUYLDS/hQLYev5rA==}
+ '@nuxt/kit@4.4.2':
+ resolution: {integrity: sha512-5+IPRNX2CjkBhuWUwz0hBuLqiaJPRoKzQ+SvcdrQDbAyE+VDeFt74VpSFr5/R0ujrK4b+XnSHUJWdS72w6hsog==}
engines: {node: '>=18.12.0'}
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ '@ota-meshi/ast-token-store@0.3.0':
+ resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ '@oxc-project/runtime@0.115.0':
+ resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+
+ '@oxc-project/types@0.115.0':
+ resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==}
+
+ '@oxfmt/binding-android-arm-eabi@0.40.0':
+ resolution: {integrity: sha512-S6zd5r1w/HmqR8t0CTnGjFTBLDq2QKORPwriCHxo4xFNuhmOTABGjPaNvCJJVnrKBLsohOeiDX3YqQfJPF+FXw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxfmt/binding-android-arm64@0.40.0':
+ resolution: {integrity: sha512-/mbS9UUP/5Vbl2D6osIdcYiP0oie63LKMoTyGj5hyMCK/SFkl3EhtyRAfdjPvuvHC0SXdW6ePaTKkBSq1SNcIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxfmt/binding-darwin-arm64@0.40.0':
+ resolution: {integrity: sha512-wRt8fRdfLiEhnRMBonlIbKrJWixoEmn6KCjKE9PElnrSDSXETGZfPb8ee+nQNTobXkCVvVLytp2o0obAsxl78Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxfmt/binding-darwin-x64@0.40.0':
+ resolution: {integrity: sha512-fzowhqbOE/NRy+AE5ob0+Y4X243WbWzDb00W+pKwD7d9tOqsAFbtWUwIyqqCoCLxj791m2xXIEeLH/3uz7zCCg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxfmt/binding-freebsd-x64@0.40.0':
+ resolution: {integrity: sha512-agZ9ITaqdBjcerRRFEHB8s0OyVcQW8F9ZxsszjxzeSthQ4fcN2MuOtQFWec1ed8/lDa50jSLHVE2/xPmTgtCfQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxfmt/binding-linux-arm-gnueabihf@0.40.0':
+ resolution: {integrity: sha512-ZM2oQ47p28TP1DVIp7HL1QoMUgqlBFHey0ksHct7tMXoU5BqjNvPWw7888azzMt25lnyPODVuye1wvNbvVUFOA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxfmt/binding-linux-arm-musleabihf@0.40.0':
+ resolution: {integrity: sha512-RBFPAxRAIsMisKM47Oe6Lwdv6agZYLz02CUhVCD1sOv5ajAcRMrnwCFBPWwGXpazToW2mjnZxFos8TuFjTU15A==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxfmt/binding-linux-arm64-gnu@0.40.0':
+ resolution: {integrity: sha512-Nb2XbQ+wV3W2jSIihXdPj7k83eOxeSgYP3N/SRXvQ6ZYPIk6Q86qEh5Gl/7OitX3bQoQrESqm1yMLvZV8/J7dA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-arm64-musl@0.40.0':
+ resolution: {integrity: sha512-tGmWhLD/0YMotCdfezlT6tC/MJG/wKpo4vnQ3Cq+4eBk/BwNv7EmkD0VkD5F/dYkT3b8FNU01X2e8vvJuWoM1w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-linux-ppc64-gnu@0.40.0':
+ resolution: {integrity: sha512-rVbFyM3e7YhkVnp0IVYjaSHfrBWcTRWb60LEcdNAJcE2mbhTpbqKufx0FrhWfoxOrW/+7UJonAOShoFFLigDqQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-riscv64-gnu@0.40.0':
+ resolution: {integrity: sha512-3ZqBw14JtWeEoLiioJcXSJz8RQyPE+3jLARnYM1HdPzZG4vk+Ua8CUupt2+d+vSAvMyaQBTN2dZK+kbBS/j5mA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-riscv64-musl@0.40.0':
+ resolution: {integrity: sha512-JJ4PPSdcbGBjPvb+O7xYm2FmAsKCyuEMYhqatBAHMp/6TA6rVlf9Z/sYPa4/3Bommb+8nndm15SPFRHEPU5qFA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-linux-s390x-gnu@0.40.0':
+ resolution: {integrity: sha512-Kp0zNJoX9Ik77wUya2tpBY3W9f40VUoMQLWVaob5SgCrblH/t2xr/9B2bWHfs0WCefuGmqXcB+t0Lq77sbBmZw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-x64-gnu@0.40.0':
+ resolution: {integrity: sha512-7YTCNzleWTaQTqNGUNQ66qVjpoV6DjbCOea+RnpMBly2bpzrI/uu7Rr+2zcgRfNxyjXaFTVQKaRKjqVdeUfeVA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxfmt/binding-linux-x64-musl@0.40.0':
+ resolution: {integrity: sha512-hWnSzJ0oegeOwfOEeejYXfBqmnRGHusgtHfCPzmvJvHTwy1s3Neo59UKc1CmpE3zxvrCzJoVHos0rr97GHMNPw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxfmt/binding-openharmony-arm64@0.40.0':
+ resolution: {integrity: sha512-28sJC1lR4qtBJGzSRRbPnSW3GxU2+4YyQFE6rCmsUYqZ5XYH8jg0/w+CvEzQ8TuAQz5zLkcA25nFQGwoU0PT3Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxfmt/binding-win32-arm64-msvc@0.40.0':
+ resolution: {integrity: sha512-cDkRnyT0dqwF5oIX1Cv59HKCeZQFbWWdUpXa3uvnHFT2iwYSSZspkhgjXjU6iDp5pFPaAEAe9FIbMoTgkTmKPg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxfmt/binding-win32-ia32-msvc@0.40.0':
+ resolution: {integrity: sha512-7rPemBJjqm5Gkv6ZRCPvK8lE6AqQ/2z31DRdWazyx2ZvaSgL7QGofHXHNouRpPvNsT9yxRNQJgigsWkc+0qg4w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxfmt/binding-win32-x64-msvc@0.40.0':
+ resolution: {integrity: sha512-/Zmj0yTYSvmha6TG1QnoLqVT7ZMRDqXvFXXBQpIjteEwx9qvUYMBH2xbiOFhDeMUJkGwC3D6fdKsFtaqUvkwNA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxlint-tsgolint/darwin-arm64@0.16.0':
+ resolution: {integrity: sha512-WQt5lGwRPJBw7q2KNR0mSPDAaMmZmVvDlEEti96xLO7ONhyomQc6fBZxxwZ4qTFedjJnrHX94sFelZ4OKzS7UQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxlint-tsgolint/darwin-x64@0.16.0':
+ resolution: {integrity: sha512-VJo29XOzdkalvCTiE2v6FU3qZlgHaM8x8hUEVJGPU2i5W+FlocPpmn00+Ld2n7Q0pqIjyD5EyvZ5UmoIEJMfqg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxlint-tsgolint/linux-arm64@0.16.0':
+ resolution: {integrity: sha512-MPfqRt1+XRHv9oHomcBMQ3KpTE+CSkZz14wUxDQoqTNdUlV0HWdzwIE9q65I3D9YyxEnqpM7j4qtDQ3apqVvbQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxlint-tsgolint/linux-x64@0.16.0':
+ resolution: {integrity: sha512-XQSwVUsnwLokMhe1TD6IjgvW5WMTPzOGGkdFDtXWQmlN2YeTw94s/NN0KgDrn2agM1WIgAenEkvnm0u7NgwEyw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxlint-tsgolint/win32-arm64@0.16.0':
+ resolution: {integrity: sha512-EWdlspQiiFGsP2AiCYdhg5dTYyAlj6y1nRyNI2dQWq4Q/LITFHiSRVPe+7m7K7lcsZCEz2icN/bCeSkZaORqIg==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxlint-tsgolint/win32-x64@0.16.0':
+ resolution: {integrity: sha512-1ufk8cgktXJuJZHKF63zCHAkaLMwZrEXnZ89H2y6NO85PtOXqu4zbdNl0VBpPP3fCUuUBu9RvNqMFiv0VsbXWA==}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxlint/binding-android-arm-eabi@1.55.0':
+ resolution: {integrity: sha512-NhvgAhncTSOhRahQSCnkK/4YIGPjTmhPurQQ2dwt2IvwCMTvZRW5vF2K10UBOxFve4GZDMw6LtXZdC2qeuYIVQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [android]
+
+ '@oxlint/binding-android-arm64@1.55.0':
+ resolution: {integrity: sha512-P9iWRh+Ugqhg+D7rkc7boHX8o3H2h7YPcZHQIgvVBgnua5tk4LR2L+IBlreZs58/95cd2x3/004p5VsQM9z4SA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxlint/binding-darwin-arm64@1.55.0':
+ resolution: {integrity: sha512-esakkJIt7WFAhT30P/Qzn96ehFpzdZ1mNuzpOb8SCW7lI4oB8VsyQnkSHREM671jfpuBb/o2ppzBCx5l0jpgMA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxlint/binding-darwin-x64@1.55.0':
+ resolution: {integrity: sha512-xDMFRCCAEK9fOH6As2z8ELsC+VDGSFRHwIKVSilw+xhgLwTDFu37rtmRbmUlx8rRGS6cWKQPTc47AVxAZEVVPQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxlint/binding-freebsd-x64@1.55.0':
+ resolution: {integrity: sha512-mYZqnwUD7ALCRxGenyLd1uuG+rHCL+OTT6S8FcAbVm/ZT2AZMGjvibp3F6k1SKOb2aeqFATmwRykrE41Q0GWVw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxlint/binding-linux-arm-gnueabihf@1.55.0':
+ resolution: {integrity: sha512-LcX6RYcF9vL9ESGwJW3yyIZ/d/ouzdOKXxCdey1q0XJOW1asrHsIg5MmyKdEBR4plQx+shvYeQne7AzW5f3T1w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxlint/binding-linux-arm-musleabihf@1.55.0':
+ resolution: {integrity: sha512-C+8GS1rPtK+dI7mJFkqoRBkDuqbrNihnyYQsJPS9ez+8zF9JzfvU19lawqt4l/Y23o5uQswE/DORa8aiXUih3w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxlint/binding-linux-arm64-gnu@1.55.0':
+ resolution: {integrity: sha512-ErLE4XbmcCopA4/CIDiH6J1IAaDOMnf/KSx/aFObs4/OjAAM3sFKWGZ57pNOMxhhyBdcmcXwYymph9GwcpcqgQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-arm64-musl@1.55.0':
+ resolution: {integrity: sha512-/kp65avi6zZfqEng56TTuhiy3P/3pgklKIdf38yvYeJ9/PgEeRA2A2AqKAKbZBNAqUzrzHhz9jF6j/PZvhJzTQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-linux-ppc64-gnu@1.55.0':
+ resolution: {integrity: sha512-A6pTdXwcEEwL/nmz0eUJ6WxmxcoIS+97GbH96gikAyre3s5deC7sts38ZVVowjS2QQFuSWkpA4ZmQC0jZSNvJQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-riscv64-gnu@1.55.0':
+ resolution: {integrity: sha512-clj0lnIN+V52G9tdtZl0LbdTSurnZ1NZj92Je5X4lC7gP5jiCSW+Y/oiDiSauBAD4wrHt2S7nN3pA0zfKYK/6Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-riscv64-musl@1.55.0':
+ resolution: {integrity: sha512-NNu08pllN5x/O94/sgR3DA8lbrGBnTHsINZZR0hcav1sj79ksTiKKm1mRzvZvacwQ0hUnGinFo+JO75ok2PxYg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-linux-s390x-gnu@1.55.0':
+ resolution: {integrity: sha512-BvfQz3PRlWZRoEZ17dZCqgQsMRdpzGZomJkVATwCIGhHVVeHJMQdmdXPSjcT1DCNUrOjXnVyj1RGDj5+/Je2+Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-x64-gnu@1.55.0':
+ resolution: {integrity: sha512-ngSOoFCSBMKVQd24H8zkbcBNc7EHhjnF1sv3mC9NNXQ/4rRjI/4Dj9+9XoDZeFEkF1SX1COSBXF1b2Pr9rqdEw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxlint/binding-linux-x64-musl@1.55.0':
+ resolution: {integrity: sha512-BDpP7W8GlaG7BR6QjGZAleYzxoyKc/D24spZIF2mB3XsfALQJJT/OBmP8YpeTb1rveFSBHzl8T7l0aqwkWNdGA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxlint/binding-openharmony-arm64@1.55.0':
+ resolution: {integrity: sha512-PS6GFvmde/pc3fCA2Srt51glr8Lcxhpf6WIBFfLphndjRrD34NEcses4TSxQrEcxYo6qVywGfylM0ZhSCF2gGA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxlint/binding-win32-arm64-msvc@1.55.0':
+ resolution: {integrity: sha512-P6JcLJGs/q1UOvDLzN8otd9JsH4tsuuPDv+p7aHqHM3PrKmYdmUvkNj4K327PTd35AYcznOCN+l4ZOaq76QzSw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxlint/binding-win32-ia32-msvc@1.55.0':
+ resolution: {integrity: sha512-gzkk4zE2zsE+WmRxFOiAZHpCpUNDFytEakqNXoNHW+PnYEOTPKDdW6nrzgSeTbGKVPXNAKQnRnMgrh7+n3Xueg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@oxlint/binding-win32-x64-msvc@1.55.0':
+ resolution: {integrity: sha512-ZFALNow2/og75gvYzNP7qe+rREQ5xunktwA+lgykoozHZ6hw9bqg4fn5j2UvG4gIn1FXqrZHkOAXuPf5+GOYTQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
'@parcel/watcher-android-arm64@2.5.6':
resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
engines: {node: '>= 10.0.0'}
@@ -4474,8 +4462,8 @@ packages:
resolution: {integrity: sha512-NLTXheat/u7OEGg5M5vF6Z85zx8uKUZE0+whtX/sbFV2XL48RdnOWGPTKYuVVkv8M+launaLUTgGEXNs/ess2w==}
engines: {node: '>=18.12'}
- '@pnpm/workspace.read-manifest@1000.2.10':
- resolution: {integrity: sha512-SnKM53rRYwpgrNI/LQ/4wa0BP9hkc29kQt2c9bBE1daDQP89z61v3LCkchnthgdE1s530JmaJRAf9tHtqRQ0jA==}
+ '@pnpm/workspace.read-manifest@1000.3.0':
+ resolution: {integrity: sha512-aBTT6pViHvR+ARJYpMpxbs5+OcIq/9HKQLvYxyTm6ozoRoVgrNogWTRNDnnQptc02h1EvdVSoR36cCB+aoKkLw==}
engines: {node: '>=18.12'}
'@polka/url@1.0.0-next.29':
@@ -4487,8 +4475,8 @@ packages:
'@poppinss/colors@4.1.6':
resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==}
- '@poppinss/dumper@0.6.5':
- resolution: {integrity: sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==}
+ '@poppinss/dumper@0.7.0':
+ resolution: {integrity: sha512-0UTYalzk2t6S4rA2uHOz5bSSW2CHdv4vggJI6Alg90yvl0UgXs6XSXpH96OH+bRkX4J/06djv29pqXJ0lq5Kag==}
'@poppinss/exception@1.2.3':
resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==}
@@ -4497,11 +4485,106 @@ packages:
resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==}
engines: {node: '>=18'}
+ '@rolldown/binding-android-arm64@1.0.0-rc.9':
+ resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
+ resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.0.0-rc.9':
+ resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
+ resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
+ resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
+ resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
+ resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
+ resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
+ resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
+ resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
+ resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
+ resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
+ resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
+ resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
+ resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
'@rolldown/pluginutils@1.0.0-rc.2':
resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
- '@rolldown/pluginutils@1.0.0-rc.3':
- resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==}
+ '@rolldown/pluginutils@1.0.0-rc.9':
+ resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==}
'@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
@@ -4541,8 +4624,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@29.0.0':
- resolution: {integrity: sha512-U2YHaxR2cU/yAiwKJtJRhnyLk7cifnQw0zUpISsocBDoHDJn+HTV74ABqnwr5bEgWUwFZC9oFL6wLe21lHu5eQ==}
+ '@rollup/plugin-commonjs@29.0.2':
+ resolution: {integrity: sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -4628,173 +4711,173 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.57.1':
- resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==}
+ '@rollup/rollup-android-arm-eabi@4.59.0':
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.57.1':
- resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==}
+ '@rollup/rollup-android-arm64@4.59.0':
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.57.1':
- resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==}
+ '@rollup/rollup-darwin-arm64@4.59.0':
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.57.1':
- resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==}
+ '@rollup/rollup-darwin-x64@4.59.0':
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.57.1':
- resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==}
+ '@rollup/rollup-freebsd-arm64@4.59.0':
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.57.1':
- resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==}
+ '@rollup/rollup-freebsd-x64@4.59.0':
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
- resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.57.1':
- resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.57.1':
- resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==}
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.57.1':
- resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==}
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-loong64-gnu@4.57.1':
- resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==}
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
cpu: [loong64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-loong64-musl@4.57.1':
- resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==}
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
cpu: [loong64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-ppc64-gnu@4.57.1':
- resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==}
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-ppc64-musl@4.57.1':
- resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==}
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
cpu: [ppc64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-riscv64-gnu@4.57.1':
- resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==}
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-musl@4.57.1':
- resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==}
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-s390x-gnu@4.57.1':
- resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==}
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.57.1':
- resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==}
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.57.1':
- resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==}
+ '@rollup/rollup-linux-x64-musl@4.59.0':
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-openbsd-x64@4.57.1':
- resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==}
+ '@rollup/rollup-openbsd-x64@4.59.0':
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
cpu: [x64]
os: [openbsd]
- '@rollup/rollup-openharmony-arm64@4.57.1':
- resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==}
+ '@rollup/rollup-openharmony-arm64@4.59.0':
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.57.1':
- resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.57.1':
- resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==}
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-gnu@4.57.1':
- resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==}
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.57.1':
- resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==}
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
cpu: [x64]
os: [win32]
- '@rushstack/node-core-library@5.19.1':
- resolution: {integrity: sha512-ESpb2Tajlatgbmzzukg6zyAhH+sICqJR2CNXNhXcEbz6UGCQfrKCtkxOpJTftWc8RGouroHG0Nud1SJAszvpmA==}
+ '@rushstack/node-core-library@5.20.3':
+ resolution: {integrity: sha512-95JgEPq2k7tHxhF9/OJnnyHDXfC9cLhhta0An/6MlkDsX2A6dTzDrTUG18vx4vjc280V0fi0xDH9iQczpSuWsw==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/problem-matcher@0.1.1':
- resolution: {integrity: sha512-Fm5XtS7+G8HLcJHCWpES5VmeMyjAKaWeyZU5qPzZC+22mPlJzAsOxymHiWIfuirtPckX3aptWws+K2d0BzniJA==}
+ '@rushstack/problem-matcher@0.2.1':
+ resolution: {integrity: sha512-gulfhBs6n+I5b7DvjKRfhMGyUejtSgOHTclF/eONr8hcgF1APEDjhxIsfdUYYMzC3rvLwGluqLjbwCFZ8nxrog==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/rig-package@0.6.0':
- resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==}
+ '@rushstack/rig-package@0.7.2':
+ resolution: {integrity: sha512-9XbFWuqMYcHUso4mnETfhGVUSaADBRj6HUAAEYk50nMPn8WRICmBuCphycQGNB3duIR6EEZX3Xj3SYc2XiP+9A==}
- '@rushstack/terminal@0.21.0':
- resolution: {integrity: sha512-cLaI4HwCNYmknM5ns4G+drqdEB6q3dCPV423+d3TZeBusYSSm09+nR7CnhzJMjJqeRcdMAaLnrA4M/3xDz4R3w==}
+ '@rushstack/terminal@0.22.3':
+ resolution: {integrity: sha512-gHC9pIMrUPzAbBiI4VZMU7Q+rsCzb8hJl36lFIulIzoceKotyKL3Rd76AZ2CryCTKEg+0bnTj406HE5YY5OQvw==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/ts-command-line@5.2.0':
- resolution: {integrity: sha512-lYxCX0nDdkDtCkVpvF0m25ymf66SaMWuppbD6b7MdkIzvGXKBXNIVZlwBH/C0YfkanrupnICWf2n4z3AKSfaHw==}
+ '@rushstack/ts-command-line@5.3.3':
+ resolution: {integrity: sha512-c+ltdcvC7ym+10lhwR/vWiOhsrm/bP3By2VsFcs5qTKv+6tTmxgbVrtJ5NdNjANiV5TcmOZgUN+5KYQ4llsvEw==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
@@ -4826,8 +4909,12 @@ packages:
'@simonwep/pickr@1.8.2':
resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==}
- '@sindresorhus/base62@1.0.0':
- resolution: {integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA==}
+ '@simple-libs/child-process-utils@1.0.2':
+ resolution: {integrity: sha512-/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw==}
+ engines: {node: '>=18'}
+
+ '@simple-libs/stream-utils@1.2.0':
+ resolution: {integrity: sha512-KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA==}
engines: {node: '>=18'}
'@sindresorhus/is@7.2.0':
@@ -4845,11 +4932,14 @@ packages:
'@speed-highlight/core@1.2.14':
resolution: {integrity: sha512-G4ewlBNhUtlLvrJTb88d2mdy2KRijzs4UhnlrOSRT4bmjh/IqNElZa3zkrZ+TC47TwtlDWzVLFADljF1Ijp5hA==}
- '@stylistic/stylelint-plugin@4.0.1':
- resolution: {integrity: sha512-jKZSZr/S/NehfgayNJI3O/JEq+W5lSeHUJNvdOebRPNFP2ZylTbAx/p5qR8scQFpiVzy1VQM9R+G0kIB62r1Pw==}
- engines: {node: ^18.12 || >=20.9}
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
+ '@stylistic/stylelint-plugin@5.0.1':
+ resolution: {integrity: sha512-NaVwCNVZ2LyPA3TnUwvjO9c6P6VUjgRB8UP8SOW+cAOJBVqPPuOIDawsvvtql/LhkuR3JuTdGvr/RM3dUl8l2Q==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- stylelint: ^16.22.0
+ stylelint: ^17.0.0
'@surma/rollup-plugin-off-main-thread@2.2.3':
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
@@ -4859,46 +4949,135 @@ packages:
peerDependencies:
svelte: ^5.1.0
- '@sveltejs/acorn-typescript@1.0.8':
- resolution: {integrity: sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==}
+ '@sveltejs/acorn-typescript@1.0.9':
+ resolution: {integrity: sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==}
peerDependencies:
acorn: ^8.9.0
- '@swc/helpers@0.5.18':
- resolution: {integrity: sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==}
+ '@swc/helpers@0.5.19':
+ resolution: {integrity: sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==}
'@sxzz/popperjs-es@2.11.8':
resolution: {integrity: sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==}
- '@tailwindcss/nesting@0.0.0-insiders.565cd3e':
- resolution: {integrity: sha512-WhHoFBx19TnH/c+xLwT/sxei6+4RpdfiyG3MYXfmLaMsADmVqBkF7B6lDalgZD9YdM459MF7DtxVbWkOrV7IaQ==}
- peerDependencies:
- postcss: ^8.2.15
+ '@tailwindcss/node@4.2.1':
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
+
+ '@tailwindcss/oxide-android-arm64@4.2.1':
+ resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
+ engines: {node: '>= 20'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
+ resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
+ engines: {node: '>= 20'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
+ resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
+ engines: {node: '>= 20'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
+ resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
+ engines: {node: '>= 20'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
+ resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
+ engines: {node: '>= 20'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
+ resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
+ engines: {node: '>= 20'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
+ resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
+ engines: {node: '>= 20'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
+ resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
+ engines: {node: '>= 20'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
+ resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
+ engines: {node: '>= 20'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
+ resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
+ resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
+ engines: {node: '>= 20'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
+ resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
+ engines: {node: '>= 20'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.2.1':
+ resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
+ engines: {node: '>= 20'}
'@tailwindcss/typography@0.5.19':
resolution: {integrity: sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
- '@tanstack/store@0.8.0':
- resolution: {integrity: sha512-Om+BO0YfMZe//X2z0uLF2j+75nQga6TpTJgLJQBiq85aOyZNIhkCgleNcud2KQg4k4v9Y9l+Uhru3qWMPGTOzQ==}
+ '@tailwindcss/vite@4.2.1':
+ resolution: {integrity: sha512-TBf2sJjYeb28jD2U/OhwdW0bbOsxkWPwQ7SrqGf9sVcoYwZj7rkXljroBO9wKBut9XnmQLXanuDUeqQK0lGg/w==}
+ peerDependencies:
+ vite: ^5.2.0 || ^6 || ^7
- '@tanstack/virtual-core@3.13.18':
- resolution: {integrity: sha512-Mx86Hqu1k39icq2Zusq+Ey2J6dDWTjDvEv43PJtRCoEYTLyfaPnxIQ6iy7YAOK0NV/qOEmZQ/uCufrppZxTgcg==}
+ '@tanstack/store@0.9.2':
+ resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==}
- '@tanstack/vue-store@0.8.0':
- resolution: {integrity: sha512-YLsinYboBLIjNkxDpAn1ydaMS35dKq3M3a788JRCJi4/stWcN7Swp0pxxJ+p0IwKSY4tBXx7vMz22OYWQ1QsUQ==}
+ '@tanstack/virtual-core@3.13.22':
+ resolution: {integrity: sha512-isuUGKsc5TAPDoHSbWTbl1SCil54zOS2MiWz/9GCWHPUQOvNTQx8qJEWC7UWR0lShhbK0Lmkcf0SZYxvch7G3g==}
+
+ '@tanstack/vue-store@0.9.2':
+ resolution: {integrity: sha512-Cz2QvwWg/vDziuCnP5TVjmZroshM8rI+Yaifqiv6A5jK8eaMxD5r86SJLUtznnOEGmqpTOPdp3ryvWzuPVTZrA==}
peerDependencies:
'@vue/composition-api': ^1.2.1
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
'@vue/composition-api':
optional: true
- '@tanstack/vue-virtual@3.13.18':
- resolution: {integrity: sha512-6pT8HdHtTU5Z+t906cGdCroUNA5wHjFXsNss9gwk7QAr1VNZtz9IQCs2Nhx0gABK48c+OocHl2As+TMg8+Hy4A==}
+ '@tanstack/vue-virtual@3.13.22':
+ resolution: {integrity: sha512-GiUwGKJADlCoTD7PaEfgSTAnQ9JW7KAmV98d5yFQf+vT2bSs52BPC22ZTXnNhe8PViTVqqRERNRKaWlut7tMPQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@tinyflow-ai/ui@1.1.10':
resolution: {integrity: sha512-l3kIYNq3K7LPKdcR6Dl60qwE039O4bdl7vRNnc1gqL0Rnzh6KTwYiwGvnwU8v96aoqCbRdPfvuvaaSrJomGf3Q==}
@@ -4906,13 +5085,13 @@ packages:
'@tinyflow-ai/vue@1.1.10':
resolution: {integrity: sha512-wK27NL3V00eFYDPRSioYCrmEsk5mvRFNooJR2bEgdYGmYWXSRkwYzPQy4dn1MrmGDMsqNYK3XjKRRvN7g+lofg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@tinymce/tinymce-vue@6.3.0':
resolution: {integrity: sha512-DSP8Jhd3XqCCliTnusfbmz3D8GqQ4iRzkc4aadYHDcJPVjkaqopJ61McOdH82CSy599vGLkPjGzqJYWJkRMiUA==}
peerDependencies:
tinymce: ^8.0.0 || ^7.0.0 || ^6.0.0 || ^5.5.1
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
tinymce:
optional: true
@@ -4926,18 +5105,12 @@ packages:
'@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
- '@types/bintrees@1.0.6':
- resolution: {integrity: sha512-pZWT4Bz+tWwxlDspSjdoIza4PE5lbGI4Xvs3FZV/2v5m5SDA8LwNpU8AXxlndmARO7OaQ1Vf3zFenOsNMzaRkQ==}
-
'@types/chai@5.2.3':
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
'@types/codemirror@5.60.17':
resolution: {integrity: sha512-AZq2FIsUHVMlp7VSe2hTfl5w4pcUkoFkM3zVsRKsn1ca8CXRDYvnin04+HP2REkwsxemuHqvDofdlhUWNpbwfw==}
- '@types/conventional-commits-parser@5.0.2':
- resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==}
-
'@types/crypto-js@4.2.2':
resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==}
@@ -5037,8 +5210,8 @@ packages:
'@types/deep-eql@4.0.2':
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
- '@types/eslint@9.6.1':
- resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
+ '@types/esrecurse@4.3.1':
+ resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
'@types/estree@0.0.39':
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -5055,12 +5228,12 @@ packages:
'@types/html-minifier-terser@7.0.2':
resolution: {integrity: sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==}
+ '@types/json-bigint@1.0.4':
+ resolution: {integrity: sha512-ydHooXLbOmxBbubnA7Eh+RpBzuaIiQjh8WGJYQB50JFGFrdxW7JzVlyEV7fAXw0T2sqJ1ysTneJbiyNLqZRAag==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
- '@types/katex@0.16.8':
- resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==}
-
'@types/linkify-it@5.0.0':
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
@@ -5070,8 +5243,8 @@ packages:
'@types/lodash.clonedeep@4.5.9':
resolution: {integrity: sha512-19429mWC+FyaAhOLzsS8kZUsI+/GmBAQ0HFiCPsKGU+7pBXOQWhyrY6xNNDwUSX8SMZMJvuFVMF9O5dQOlQK9Q==}
- '@types/lodash@4.17.23':
- resolution: {integrity: sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==}
+ '@types/lodash@4.17.24':
+ resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
@@ -5088,11 +5261,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@24.10.13':
- resolution: {integrity: sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==}
-
- '@types/node@25.2.3':
- resolution: {integrity: sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==}
+ '@types/node@25.5.0':
+ resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
'@types/nprogress@0.2.3':
resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==}
@@ -5100,14 +5270,11 @@ packages:
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- '@types/postcss-import@14.0.3':
- resolution: {integrity: sha512-raZhRVTf6Vw5+QbmQ7LOHSDML71A5rj4+EqDzAbrZPfxfoGzFxMHRCq16VlddGIZpHELw0BG4G0YE2ANkdZiIQ==}
-
'@types/qrcode@1.5.6':
resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==}
- '@types/qs@6.14.0':
- resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
+ '@types/qs@6.15.0':
+ resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==}
'@types/readdir-glob@1.1.5':
resolution: {integrity: sha512-raiuEPUYqXu+nvtY2Pe8s8FEmZ3x5yAH4VkLdihcPdalvsHltomrRC9BzuStrJ9yk06470hS0Crw0f1pXqD+Hg==}
@@ -5142,260 +5309,142 @@ packages:
'@types/web-bluetooth@0.0.21':
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
- '@typescript-eslint/eslint-plugin@8.55.0':
- resolution: {integrity: sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==}
+ '@types/whatwg-mimetype@3.0.2':
+ resolution: {integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==}
+
+ '@types/ws@8.18.1':
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
+
+ '@typescript-eslint/eslint-plugin@8.57.0':
+ resolution: {integrity: sha512-qeu4rTHR3/IaFORbD16gmjq9+rEs9fGKdX0kF6BKSfi+gCuG3RCKLlSBYzn/bGsY9Tj7KE/DAQStbp8AHJGHEQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.55.0
- eslint: ^8.57.0 || ^9.0.0
+ '@typescript-eslint/parser': ^8.57.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.55.0':
- resolution: {integrity: sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==}
+ '@typescript-eslint/parser@8.57.0':
+ resolution: {integrity: sha512-XZzOmihLIr8AD1b9hL9ccNMzEMWt/dE2u7NyTY9jJG6YNiNthaD5XtUHVF2uCXZ15ng+z2hT3MVuxnUYhq6k1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.55.0':
- resolution: {integrity: sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==}
+ '@typescript-eslint/project-service@8.57.0':
+ resolution: {integrity: sha512-pR+dK0BlxCLxtWfaKQWtYr7MhKmzqZxuii+ZjuFlZlIGRZm22HnXFqa2eY+90MUz8/i80YJmzFGDUsi8dMOV5w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@7.18.0':
- resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/rule-tester@8.57.0':
+ resolution: {integrity: sha512-qs4OapXmAIj3so85/20lQG1WrBSSvDE/3b42Orl3lpZkaOlNXtbfKzL+9EPaY5wSEgdlhKEpympAMFHPG9i72Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- '@typescript-eslint/scope-manager@8.55.0':
- resolution: {integrity: sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==}
+ '@typescript-eslint/scope-manager@8.57.0':
+ resolution: {integrity: sha512-nvExQqAHF01lUM66MskSaZulpPL5pgy5hI5RfrxviLgzZVffB5yYzw27uK/ft8QnKXI2X0LBrHJFr1TaZtAibw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.55.0':
- resolution: {integrity: sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==}
+ '@typescript-eslint/tsconfig-utils@8.57.0':
+ resolution: {integrity: sha512-LtXRihc5ytjJIQEH+xqjB0+YgsV4/tW35XKX3GTZHpWtcC8SPkT/d4tqdf1cKtesryHm2bgp6l555NYcT2NLvA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.55.0':
- resolution: {integrity: sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==}
+ '@typescript-eslint/type-utils@8.57.0':
+ resolution: {integrity: sha512-yjgh7gmDcJ1+TcEg8x3uWQmn8ifvSupnPfjP21twPKrDP/pTHlEQgmKcitzF/rzPSmv7QjJ90vRpN4U+zoUjwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@7.18.0':
- resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/types@8.55.0':
- resolution: {integrity: sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==}
+ '@typescript-eslint/types@8.57.0':
+ resolution: {integrity: sha512-dTLI8PEXhjUC7B9Kre+u0XznO696BhXcTlOn0/6kf1fHaQW8+VjJAVHJ3eTI14ZapTxdkOmc80HblPQLaEeJdg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.18.0':
- resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/typescript-estree@8.55.0':
- resolution: {integrity: sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==}
+ '@typescript-eslint/typescript-estree@8.57.0':
+ resolution: {integrity: sha512-m7faHcyVg0BT3VdYTlX8GdJEM7COexXxS6KqGopxdtkQRvBanK377QDHr4W/vIPAR+ah9+B/RclSW5ldVniO1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@7.18.0':
- resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
- '@typescript-eslint/utils@8.55.0':
- resolution: {integrity: sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==}
+ '@typescript-eslint/utils@8.57.0':
+ resolution: {integrity: sha512-5iIHvpD3CZe06riAsbNxxreP+MuYgVUsV0n4bwLH//VJmgtt54sQeY2GszntJ4BjYCpMzrfVh2SBnUQTtys2lQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@7.18.0':
- resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/visitor-keys@8.55.0':
- resolution: {integrity: sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==}
+ '@typescript-eslint/visitor-keys@8.57.0':
+ resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@unrs/resolver-binding-android-arm-eabi@1.11.1':
- resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
- cpu: [arm]
- os: [android]
+ '@v-c/async-validator@1.0.1':
+ resolution: {integrity: sha512-2WXdbTso13119ZLiwUv1JkmdL0K4ll69id4oE3ft3LQX+YAHOoJtfx080u26lLtypgZS32PguoohgB0BVo39rg==}
- '@unrs/resolver-binding-android-arm64@1.11.1':
- resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
- cpu: [arm64]
- os: [android]
-
- '@unrs/resolver-binding-darwin-arm64@1.11.1':
- resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
- cpu: [arm64]
- os: [darwin]
-
- '@unrs/resolver-binding-darwin-x64@1.11.1':
- resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
- cpu: [x64]
- os: [darwin]
-
- '@unrs/resolver-binding-freebsd-x64@1.11.1':
- resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
- cpu: [x64]
- os: [freebsd]
-
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
- resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
- cpu: [arm]
- os: [linux]
-
- '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
- resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
- cpu: [arm]
- os: [linux]
-
- '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
- resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
- cpu: [arm64]
- os: [linux]
- libc: [glibc]
-
- '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
- resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
- cpu: [arm64]
- os: [linux]
- libc: [musl]
-
- '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
- resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
- cpu: [ppc64]
- os: [linux]
- libc: [glibc]
-
- '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
- resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
- cpu: [riscv64]
- os: [linux]
- libc: [glibc]
-
- '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
- resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
- cpu: [riscv64]
- os: [linux]
- libc: [musl]
-
- '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
- resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
- cpu: [s390x]
- os: [linux]
- libc: [glibc]
-
- '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
- resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
- cpu: [x64]
- os: [linux]
- libc: [glibc]
-
- '@unrs/resolver-binding-linux-x64-musl@1.11.1':
- resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
- cpu: [x64]
- os: [linux]
- libc: [musl]
-
- '@unrs/resolver-binding-wasm32-wasi@1.11.1':
- resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
- engines: {node: '>=14.0.0'}
- cpu: [wasm32]
-
- '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
- resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
- cpu: [arm64]
- os: [win32]
-
- '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
- resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
- cpu: [ia32]
- os: [win32]
-
- '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
- resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
- cpu: [x64]
- os: [win32]
-
- '@v-c/async-validator@1.0.0':
- resolution: {integrity: sha512-nwi4hW/V3L5M4qY8cwScEuUonGfm1KRmN6aPwGpG9zhy7UDTEXKA3Tv4pdfjY9ryXKQc5TYo78TLSX9EjAPLUA==}
-
- '@v-c/cascader@1.0.0':
- resolution: {integrity: sha512-GoDcocPUnIgJOVknk96nxzx7Jkf9kFKJ+sjcZPT45pBynZvaMOFJ9ZLGMB2ZMOYtRr0SfXeqZ09lLy9c8PtwZw==}
+ '@v-c/cascader@1.0.2':
+ resolution: {integrity: sha512-xv2CRJBPPVTos3k88Gs5urW//Q8rQ8+jTjdK8kmykURDvnYNs067dskvht+qU77Ocsk9b8Xt2omWDOfzAhjO0g==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/checkbox@1.0.1':
resolution: {integrity: sha512-+QsE/0VfU6oeglwuHWYxRNTn3+eV08iG0uN/upDmqSGznezInzfUClh+t4acd/OxyJVtuob0WKsg/vPlT6WRWw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/collapse@1.0.0':
resolution: {integrity: sha512-y4NAl3j4mka193ZMDLHdISA8to61qoROG6/kTQ0myM2ZuEsonnEK1QWlqoEw3gveMsa6a4RdyoXLxdGdcJyp0Q==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/color-picker@1.0.5':
- resolution: {integrity: sha512-n8wydSJExOwvPR4mqW/xmQb9FUFIaA87u0PlcZoJnW8craJtU2+iYm9BlgzGhSm+Nu3Dx9TYypO+xJ4pwhnuPg==}
+ '@v-c/color-picker@1.0.6':
+ resolution: {integrity: sha512-XiTlEMG5p5jkCdKP7nbeo9EJrpdXnoW4uBOA2us8pVgA6m0GxrwMoCg//X+1XsuOaebG/1Swo65mjRuMBM6rZg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/dialog@1.0.1':
resolution: {integrity: sha512-8+HqvlDXGcgie4Z+sQB3HnMkkFN0N1zfIxdQwtpXTl+gWu9ue8tz+zI7pNXMq7XdM3DU6A+x+qeNRstJ2poCbw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/drawer@1.0.0':
- resolution: {integrity: sha512-1FhalqOqDmdvEfXGmlEZtwbeZBMKeK3+LIeDfXfqUiLy38QMMDTxMARmnHCxUGhuj20zFxrZUl0sxNEaTjTkEA==}
+ '@v-c/drawer@1.0.1':
+ resolution: {integrity: sha512-bF9POhn0/+7IbYtaokohJdZPY090QA3H11dKssBfuiM/r/mPQfwYJ2uN78nFw9KnEaENyfDFcy4dw2KgskV+TQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/dropdown@1.0.2':
resolution: {integrity: sha512-D6TACf3jUiRWx4xW5h2+wVT9SMYxUasFlAHESYJr4ZMjLTLLM1Q8iBjkjhGF+vA0eYR5zqRTwlaacN0DNDZBPw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/image@1.0.2':
- resolution: {integrity: sha512-uTAhX+SRWjQHIUPJ0DAYUSzOEVnVDAmZazJNP5OqCqLuncrS7hUN37CQ1XgNKaF2Dt8b1aPFZlpXYb/zXfQdXw==}
+ '@v-c/image@1.0.5':
+ resolution: {integrity: sha512-TQE+2kNeIzGSrw55vwAOIVVbKJ3K56Vwt9JoG1iCSEVPOFHYn6tOTFJhL6VZ4m0EVP4oNPUfRu100CwQGqwuXQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/input-number@1.0.2':
- resolution: {integrity: sha512-9wbAmdC0Nt18XlLLgfVbmulY50K7tc5RZsNeZuWnmqluTK3JTgZRSbPdRkzl308x8vtGyCOufnepsMrFei1NoQ==}
+ '@v-c/input-number@1.0.3':
+ resolution: {integrity: sha512-L38ANAuSx8As5hsqk95mHx4N98Xv15jr5aKQKob4kXPBhIy5DQ+rzNiXgm0vokvav8hPSN/qsCPqHGDcNpLXTg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/input@1.0.2':
resolution: {integrity: sha512-NzBor6XbUYP42zRrcaBUgWtQI1aIaN3oylmMdvSZ5UMcWsAXRNC8XKsedkFF/LLOEJBJ2NaTbomHRwkIjmtQAA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/mentions@1.0.0':
resolution: {integrity: sha512-trkG1lvfiaIY7UnHn0gx6B01o3rFLEMin3KGp1q4oU6zOCRWde4ejZ+EHSvmXzOz2N+FlRMTE4EMJFi4w0oOlQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/menu@1.0.10':
- resolution: {integrity: sha512-iKXuPpZteVjPlg3nQ+4YbAlYa3/I21N/5RswKLai61IRO/8IcfRLc+YBEoG3n5xV+I5b2Yby2iJjsA8lU1En/w==}
+ '@v-c/menu@1.0.11':
+ resolution: {integrity: sha512-NDMucv22bI8/L+8W9HKWrg/dVVokNo6sROzApEH3Gy5uXeWHyQbPCZqGb5CY+nNYHVo6gQI6G5IQFd2eNRzKaw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/mini-decimal@1.0.1':
resolution: {integrity: sha512-76wZLdlkI017iDlaZMNOWZyDCv29YVabUJn5urQgIKtW4dnI5AkNXWtmLyhl/mu/OS7ZGisRi5ai/558QhLQxQ==}
@@ -5403,31 +5452,31 @@ packages:
'@v-c/mutate-observer@1.0.1':
resolution: {integrity: sha512-84+9KGORX8LY9u+K0DEGyRwRCJaky0sjRkXxBC7X/jahHJl8NQGQ0Gxve5IVwaxRTfZ9eftlRmHs90JD6Utfqg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/notification@1.0.0':
resolution: {integrity: sha512-aU5g+ZiYxp0KVdKuho067wJRF38Mv7MrQS95dwSJLsbDmVFBpjO3Lo3ptakfPkwn+7uwRytHKIf39t9QVGk+sg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/overflow@1.0.3':
- resolution: {integrity: sha512-GVWxd2gk9T0t9kO7EH1fMy2DgYULle/D+GBXiEeB5j/V1b9Gj39pvFLA1EHuiiyJW56Lr/P/uJ/ZM38WFh755w==}
+ '@v-c/overflow@1.0.4':
+ resolution: {integrity: sha512-27vuUWoLUz/WeUzYVubfVZ4YtthKCQ1FskYw2VIQw6ECnuTxG1yjj2UdSIoEunZFdU03VU1wU9DI6Qu0Vcp1tQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/pagination@1.0.0':
resolution: {integrity: sha512-uYIMkvHKMtY+nwHTu5rXxiq6KPf0zGpZbtQTn1nDPng0tOyA1vLQ+R6OfE+1LOwuQqvFTEDnAq4vb90By+eBfw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/picker@1.0.2':
- resolution: {integrity: sha512-Lf9qPZ/hODaIBEoXpkpGmHK5oXubquia8bYN8zVWigr312jbl/bI6txRF4p+zci0UTtJQsOX1zp9fqX8rg0vSA==}
+ '@v-c/picker@1.0.4':
+ resolution: {integrity: sha512-B98FSgE+Kh6lNwa5msySFL8NNiF3fFkmFuuL14WEdb4f6q47XYH7YvcQa2jySXnbYPKHdykZMFo37f/0BzFaPw==}
peerDependencies:
date-fns: '>= 2.x'
dayjs: '>= 1.x'
luxon: '>= 3.x'
moment: '>= 2.x'
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
date-fns:
optional: true
@@ -5438,123 +5487,128 @@ packages:
moment:
optional: true
- '@v-c/portal@1.0.7':
- resolution: {integrity: sha512-iIcU+9C8GNas7BWMXlWkwz9RoB8E7B4f0D+qPNTPLUbdwDvKRNypATYImkIWK/BSGDHOkxu1kIBshxgolaODfA==}
+ '@v-c/portal@1.0.8':
+ resolution: {integrity: sha512-93elruWfHKrdtRkpFBNpi47YhQjA75tCuG8C/WvcQ9x/dp+H3i+y7h6t0iyyDjZu1w3d2U5+d43vtslmoQXBYg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/progress@1.0.0':
resolution: {integrity: sha512-kWDTU1uXnPDMmoezwyAECxuSH+WKn92OjSdk/GgDbQgZ0qNy9woOiRe5fOsrcy61agHdJxzf0MvsUy1b6bZVlA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/qrcode@1.0.0':
resolution: {integrity: sha512-OSMrYDhP/NQiUcO6J0X2X8BskHPRqX/E/F9npH3oayZgjCo5Aom+63Ja3J0u6SOmKP1JgLSgjrm5karc0671jw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/rate@1.0.0':
- resolution: {integrity: sha512-H2cj/dS3guxq9s79HlTzu8uUzH/dQM8Ko5zlPosWrBI33YvySqoxcShY8cZS/tcq8I4xDE/SjeAmBe7rHd9VEA==}
+ '@v-c/rate@1.0.1':
+ resolution: {integrity: sha512-ZWWY01LeKu9S/JncdvSr2gz2Kwwum3bB/AxzzCsuhCyg+9P4BLwX7S2WZDMiJ92uYEpiYladVTCa9XdSCPaCaQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/resize-observer@1.0.8':
resolution: {integrity: sha512-VH8WBsNfZA5KQ+CXVaQ1PK5B6FIHnuTdqOLrjRWiZTrIYDZi/MyREi9b21YDj55fbFWMRx4yapnO9tiZX1RNxA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/segmented@1.0.0':
- resolution: {integrity: sha512-HWo8Ck6Lg0epTEvw5d2yhE+mU/SOxTN6/ngMXLz7iwGI2TwskKu8l+atOSNcJ7XqS/QgsqIHpL26GATPOS8qvQ==}
+ '@v-c/segmented@1.0.1':
+ resolution: {integrity: sha512-qEaHzJxl3gfuZNn754iUcC+YrvPih0luD/wr51VInwOKQgEqaIm5R0fzs3uO57aA4zCuXrDn5LK0z6rFOF+IbQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/select@1.0.9':
- resolution: {integrity: sha512-RpZMtjKi3BIWj2+SKJKFKhydBE0Q0vZYyJduJZ6GioBi7JF26JPQuwZOsthaHDVr6oaOoc9ejlSAQqP92tFIKA==}
+ '@v-c/select@1.0.19':
+ resolution: {integrity: sha512-Um6zBWHUS4H2camwaPriaVN4Hz7Z2h0YXAPlIbjubixQjxGmKJ99HoAa/xuZju63bxK06Nual3NT/cyS0g+RiA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/slick@1.0.0':
- resolution: {integrity: sha512-Pzb4bahxbXvXTCmgOJ9OX6Ek1joUHx0EFUxmjDSAfrvaAkHWv2pSqGLDF0CJvm+/uG+rcdT2YQUNcxMtKInQ3A==}
+ '@v-c/slick@1.0.2':
+ resolution: {integrity: sha512-8BbPxJgYST+tio9jyeFQgJb/3XSFhfWZN8Am7YVYeqsYsvn3g8wu61UZNSjlkp9ArOEe+ujOgX4izfDHeXh4RA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/slider@1.0.10':
resolution: {integrity: sha512-KMIVytBm8K8RQ+aPPraS28GmBptGHESF/gDRbGjOLD7xyivuQDJeEqVaUFY3EcCWsERjh4VP/L96gUbMTF0uag==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/steps@1.0.0':
resolution: {integrity: sha512-DPL0OOb8pDLlTPZB93b8+Saxiz6V5zEpGXKaCnsbXUuOhimkc7089AuEKfpMw+8x1SrVe+gapWf5RRHWXUm2pg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/switch@1.0.0':
resolution: {integrity: sha512-VIem244KJkYfqDgofpgHjK00sGL9rJ/9OtmK4Gbs4hnPsrTtzHDBRltYxR4IT7HQleathZfj6NhcZ1bjdWKYUw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/table@1.0.0':
- resolution: {integrity: sha512-1/TMEppX3BpLYYSXzAcwrD5Os6O1VX5OGZsvGyqIp9A8Iy8QeI4Vb54XizGyooHNMs378RIWzX4yDe9JxYMm/A==}
+ '@v-c/table@1.0.3':
+ resolution: {integrity: sha512-VsklYM8M/fSrx+djBJJ0+nUiyzav9w3kZQYtojCnLPg2d2BKORtDKw8WRcpIaZZjDUSJcOh9LOSoY7GA+JKwBQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/tabs@1.0.1':
resolution: {integrity: sha512-6G6cWKdxb8l3IuR802mZGV+l8GAvCEJCoVQcyG3BwiBYOeOii6eyET5D+yMp7mC7dsFRxc2y7q0krxyo97CosQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/textarea@1.0.3':
resolution: {integrity: sha512-oCpqdOyiNPFgLRUw913IjTdIMVtryy9maJEaSz+ledn/cVO4OJ44dEP8eCnhxlHTfduLKesKIlDoRIBhLu4qqQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/tooltip@1.0.3':
resolution: {integrity: sha512-72EkTfhb67RPJvMXIW6HUYiZ+Jdrb7tBQmS3wDtFDNU7uIrS5DQLyXJDCu9qWlrPv7cQ/RHA4JfCINw88vchzw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/tour@1.0.3':
resolution: {integrity: sha512-y4DVJPP7jvL+MWUMAKQWxLAMXSWJEfZXaKASPn3DKbSQ8drBhsjMXwcep3glAfrCjCKfj/QD3OrUMxqydi4qFw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/tree-select@1.0.0':
- resolution: {integrity: sha512-EOUt3zBFMm2wCCDgY5pYU2mjff7NQiGss0uM/J2dOw8JP3LgPjhCuT2/0ZgXt6HkqK+Fl5AdhzxYujGbgTw6Ow==}
+ '@v-c/tree-select@1.0.3':
+ resolution: {integrity: sha512-N4mK8JXrCU+GFfhLG/zat3TAUt0Ju+P4S3hN6PlmuHPikQ4OWEA91CA8Br83i4zpW9TCH7xP0EfMUvhLtjqbsA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/tree@1.0.2':
- resolution: {integrity: sha512-Z/x1DuazauoPtuKWaL6iaNdTq6t/c+6j8dbOxQN7kAJOW4RJ8BKKx8DA0fq49R7OCUH/YQLOWTrWI5gyQ0169A==}
+ '@v-c/tree@1.0.5':
+ resolution: {integrity: sha512-u6tja/kV9mupXWhFT+RtLUVqhCvNtb7LHuKkh4pka8sy5goQ7MjIODciuXn8mizIlEw3rGopq7C7auC9Sg1K8w==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/trigger@1.0.11':
- resolution: {integrity: sha512-a81J89KmTNn99xtGHYXswkvqxnP17AFsgfkEF2SPj2Hp4igJSUT3XVEaqWLwBdO7icV7Il1qrMKOe/8YA7CTjQ==}
+ '@v-c/trigger@1.0.13':
+ resolution: {integrity: sha512-DRMoDCqAyvz0P+yYo8cUIJvBrRLbzYoW4wLhJ5dGKXBrL/1vuy9PfkQQ6rcnpRwFgEQdKjEw7H+If1jpid8DcQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@v-c/upload@1.0.0':
resolution: {integrity: sha512-W92PNCD61aM/B5w8oUzHQSDHur1T8484726Ls0IoNMO5nPiF/15eEE3RuuI/t7xXQVP/fA06hNSwzXwGWdDg1w==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/util@1.0.13':
- resolution: {integrity: sha512-/CUsbqrgqMz2TGqdzUnq1jwNFwX6lqy+HsYzmGH8auTUly9buIQiDmoxLxnjsI2XO6IryCqhzOP2Ii1213zqtA==}
+ '@v-c/util@1.0.18':
+ resolution: {integrity: sha512-6inpVDoLC8JpcrZPR9hWaWcsEx1ruCPzhJ00sj92EEiAbA1OUEP7lF7NXj+nf5i/JZGfYzGOGKjXO7WACZL7Nw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@v-c/virtual-list@1.0.5':
- resolution: {integrity: sha512-hv+ZIXkT7Bprv4pRloa/EYfWsJjOL2hI6wRSWX/XOxMcra+eq9uFvTY5GSOzYURPyzA/ExGq4607+fl1vEhwZQ==}
+ '@v-c/virtual-list@1.0.6':
+ resolution: {integrity: sha512-eXGbU1zME4pXAfQSBfhp1BkqBP3XYSX03CRJg7tsHgwXoaw8DE7pLuxzFSa+COJ66oOdYn99XS/sHTiz34aQCA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
+
+ '@valibot/to-json-schema@1.5.0':
+ resolution: {integrity: sha512-GE7DmSr1C2UCWPiV0upRH6mv0cCPsqYGs819fb6srCS1tWhyXrkGGe+zxUiwzn/L1BOfADH4sNjY/YHCuP8phQ==}
+ peerDependencies:
+ valibot: ^1.2.0
'@vee-validate/zod@4.15.1':
resolution: {integrity: sha512-329Z4TDBE5Vx0FdbA8S4eR9iGCFFUNGbxjpQ20ff5b5wGueScjocUIx9JHPa79LTG06RnlUR4XogQsjN4tecKA==}
peerDependencies:
zod: ^3.24.0
- '@vercel/nft@1.3.1':
- resolution: {integrity: sha512-ihNT1rswiq3cy4WKQAV5kJi6UjWX1vLUzlLc+Vvq83G8CU9nMgfDWz5f1tOnSlS8LeC4Wp4qTB3+HGj/ccUrFQ==}
+ '@vercel/nft@1.3.2':
+ resolution: {integrity: sha512-HC8venRc4Ya7vNeBsJneKHHMDDWpQie7VaKhAIOst3MKO+DES+Y/SbzSp8mFkD7OzwAE2HhHkeSuSmwS20mz3A==}
engines: {node: '>=20'}
hasBin: true
@@ -5563,7 +5617,7 @@ packages:
peerDependencies:
'@types/video.js': 7.x
video.js: 7.x
- vue: ^3.5.27
+ vue: ^3.5.30
'@videojs/http-streaming@2.16.3':
resolution: {integrity: sha512-91CJv5PnFBzNBvyEjt+9cPzTK/xoVixARj2g7ZAvItA+5bx8VKdk5RxCz/PP2kdzz9W+NiDUMPkdmTsosmy69Q==}
@@ -5587,74 +5641,74 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- '@vitejs/plugin-vue-jsx@5.1.4':
- resolution: {integrity: sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==}
+ '@vitejs/plugin-vue-jsx@5.1.5':
+ resolution: {integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- vue: ^3.5.27
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ vue: ^3.5.30
'@vitejs/plugin-vue@5.2.4':
resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0
- vue: ^3.5.27
+ vue: ^3.5.30
- '@vitejs/plugin-vue@6.0.4':
- resolution: {integrity: sha512-uM5iXipgYIn13UUQCZNdWkYk+sysBeA97d5mHsAoAt1u/wpN3+zxOmsVJWosuzX+IMGRzeYUNytztrYznboIkQ==}
+ '@vitejs/plugin-vue@6.0.5':
+ resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- vue: ^3.5.27
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ vue: ^3.5.30
- '@vitest/expect@3.2.4':
- resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
+ '@vitest/expect@4.1.0':
+ resolution: {integrity: sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==}
- '@vitest/mocker@3.2.4':
- resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
+ '@vitest/mocker@4.1.0':
+ resolution: {integrity: sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==}
peerDependencies:
msw: ^2.4.9
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@3.2.4':
- resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
+ '@vitest/pretty-format@4.1.0':
+ resolution: {integrity: sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==}
- '@vitest/runner@3.2.4':
- resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
+ '@vitest/runner@4.1.0':
+ resolution: {integrity: sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==}
- '@vitest/snapshot@3.2.4':
- resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
+ '@vitest/snapshot@4.1.0':
+ resolution: {integrity: sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==}
- '@vitest/spy@3.2.4':
- resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
+ '@vitest/spy@4.1.0':
+ resolution: {integrity: sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==}
- '@vitest/utils@3.2.4':
- resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
-
- '@volar/language-core@2.4.27':
- resolution: {integrity: sha512-DjmjBWZ4tJKxfNC1F6HyYERNHPYS7L7OPFyCrestykNdUZMFYzI9WTyvwPcaNaHlrEUwESHYsfEw3isInncZxQ==}
+ '@vitest/utils@4.1.0':
+ resolution: {integrity: sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==}
'@volar/language-core@2.4.28':
resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
- '@volar/source-map@2.4.27':
- resolution: {integrity: sha512-ynlcBReMgOZj2i6po+qVswtDUeeBRCTgDurjMGShbm8WYZgJ0PA4RmtebBJ0BCYol1qPv3GQF6jK7C9qoVc7lg==}
-
'@volar/source-map@2.4.28':
resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==}
- '@volar/typescript@2.4.27':
- resolution: {integrity: sha512-eWaYCcl/uAPInSK2Lze6IqVWaBu/itVqR5InXcHXFyles4zO++Mglt3oxdgj75BDcv1Knr9Y93nowS8U3wqhxg==}
-
'@volar/typescript@2.4.28':
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
+ '@vue-macros/common@3.1.2':
+ resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ vue: ^3.5.30
+ peerDependenciesMeta:
+ vue:
+ optional: true
+
'@vue/babel-helper-vue-transform-on@1.5.0':
resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==}
@@ -5687,17 +5741,17 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.5.28':
- resolution: {integrity: sha512-kviccYxTgoE8n6OCw96BNdYlBg2GOWfBuOW4Vqwrt7mSKWKwFVvI8egdTltqRgITGPsTFYtKYfxIG8ptX2PJHQ==}
+ '@vue/compiler-core@3.5.30':
+ resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
- '@vue/compiler-dom@3.5.28':
- resolution: {integrity: sha512-/1ZepxAb159jKR1btkefDP+J2xuWL5V3WtleRmxaT+K2Aqiek/Ab/+Ebrw2pPj0sdHO8ViAyyJWfhXXOP/+LQA==}
+ '@vue/compiler-dom@3.5.30':
+ resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
- '@vue/compiler-sfc@3.5.28':
- resolution: {integrity: sha512-6TnKMiNkd6u6VeVDhZn/07KhEZuBSn43Wd2No5zaP5s3xm8IqFTHBj84HJah4UepSUJTro5SoqqlOY22FKY96g==}
+ '@vue/compiler-sfc@3.5.30':
+ resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
- '@vue/compiler-ssr@3.5.28':
- resolution: {integrity: sha512-JCq//9w1qmC6UGLWJX7RXzrGpKkroubey/ZFqTpvEIDJEKGgntuDMqkuWiZvzTzTA5h2qZvFBFHY7fAAa9475g==}
+ '@vue/compiler-ssr@3.5.30':
+ resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -5708,22 +5762,25 @@ packages:
'@vue/devtools-api@7.7.9':
resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
- '@vue/devtools-core@8.0.6':
- resolution: {integrity: sha512-fN7iVtpSQQdtMORWwVZ1JiIAKriinhD+lCHqPw9Rr252ae2TczILEmW0zcAZifPW8HfYcbFkn+h7Wv6kQQCayw==}
+ '@vue/devtools-api@8.1.0':
+ resolution: {integrity: sha512-O44X57jjkLKbLEc4OgL/6fEPOOanRJU8kYpCE8qfKlV96RQZcdzrcLI5mxMuVRUeXhHKIHGhCpHacyCk0HyO4w==}
+
+ '@vue/devtools-core@8.1.0':
+ resolution: {integrity: sha512-LvD1VgDpoHmYL00IgKRLKktF6SsPAb0yaV8wB8q2jRwsAWvqhS8+vsMLEGKNs7uoKyymXhT92dhxgf/wir6YGQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@vue/devtools-kit@7.7.9':
resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
- '@vue/devtools-kit@8.0.6':
- resolution: {integrity: sha512-9zXZPTJW72OteDXeSa5RVML3zWDCRcO5t77aJqSs228mdopYj5AiTpihozbsfFJ0IodfNs7pSgOGO3qfCuxDtw==}
+ '@vue/devtools-kit@8.1.0':
+ resolution: {integrity: sha512-/NZlS4WtGIB54DA/z10gzk+n/V7zaqSzYZOVlg2CfdnpIKdB61bd7JDIMxf/zrtX41zod8E2/bbEBoW/d7x70Q==}
'@vue/devtools-shared@7.7.9':
resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
- '@vue/devtools-shared@8.0.6':
- resolution: {integrity: sha512-Pp1JylTqlgMJvxW6MGyfTF8vGvlBSCAvMFaDCYa82Mgw7TT5eE5kkHgDvmOGHWeJE4zIDfCpCxHapsK2LtIAJg==}
+ '@vue/devtools-shared@8.1.0':
+ resolution: {integrity: sha512-h8uCb4Qs8UT8VdTT5yjY6tOJ//qH7EpxToixR0xqejR55t5OdISIg7AJ7eBkhBs8iu1qG5gY3QQNN1DF1EelAA==}
'@vue/language-core@2.2.0':
resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
@@ -5733,31 +5790,31 @@ packages:
typescript:
optional: true
- '@vue/language-core@3.2.4':
- resolution: {integrity: sha512-bqBGuSG4KZM45KKTXzGtoCl9cWju5jsaBKaJJe3h5hRAAWpZUuj5G+L+eI01sPIkm4H6setKRlw7E85wLdDNew==}
+ '@vue/language-core@3.2.5':
+ resolution: {integrity: sha512-d3OIxN/+KRedeM5wQ6H6NIpwS3P5gC9nmyaHgBk+rO6dIsjY+tOh4UlPpiZbAh3YtLdCGEX4M16RmsBqPmJV+g==}
- '@vue/reactivity@3.5.28':
- resolution: {integrity: sha512-gr5hEsxvn+RNyu9/9o1WtdYdwDjg5FgjUSBEkZWqgTKlo/fvwZ2+8W6AfKsc9YN2k/+iHYdS9vZYAhpi10kNaw==}
+ '@vue/reactivity@3.5.30':
+ resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==}
- '@vue/runtime-core@3.5.28':
- resolution: {integrity: sha512-POVHTdbgnrBBIpnbYU4y7pOMNlPn2QVxVzkvEA2pEgvzbelQq4ZOUxbp2oiyo+BOtiYlm8Q44wShHJoBvDPAjQ==}
+ '@vue/runtime-core@3.5.30':
+ resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==}
- '@vue/runtime-dom@3.5.28':
- resolution: {integrity: sha512-4SXxSF8SXYMuhAIkT+eBRqOkWEfPu6nhccrzrkioA6l0boiq7sp18HCOov9qWJA5HML61kW8p/cB4MmBiG9dSA==}
+ '@vue/runtime-dom@3.5.30':
+ resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==}
- '@vue/server-renderer@3.5.28':
- resolution: {integrity: sha512-pf+5ECKGj8fX95bNincbzJ6yp6nyzuLDhYZCeFxUNp8EBrQpPpQaLX3nNCp49+UbgbPun3CeVE+5CXVV1Xydfg==}
+ '@vue/server-renderer@3.5.30':
+ resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@vue/shared@3.5.28':
- resolution: {integrity: sha512-cfWa1fCGBxrvaHRhvV3Is0MgmrbSCxYTXCSCau2I0a1Xw1N1pHAvkWCiXPRAqjvToILvguNyEwjevUqAuBQWvQ==}
+ '@vue/shared@3.5.30':
+ resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
- '@vueuse/core@10.11.1':
- resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
+ '@vueuse/core@12.0.0':
+ resolution: {integrity: sha512-C12RukhXiJCbx4MGhjmd/gH52TjJsc3G0E0kQj/kb19H3Nt6n1CA4DRWuTdWWcaFRdlTe0npWDS942mvacvNBw==}
'@vueuse/core@12.8.2':
resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==}
@@ -5765,12 +5822,12 @@ packages:
'@vueuse/core@13.9.0':
resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@vueuse/core@14.2.1':
resolution: {integrity: sha512-3vwDzV+GDUNpdegRY6kzpLm4Igptq+GA0QkJ3W61Iv27YWwW/ufSlOfgQIpN6FZRMG0mkaz4gglJRtq5SeJyIQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@vueuse/integrations@12.8.2':
resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==}
@@ -5828,7 +5885,7 @@ packages:
qrcode: ^1.5
sortablejs: ^1
universal-cookie: ^7 || ^8
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
async-validator:
optional: true
@@ -5855,8 +5912,8 @@ packages:
universal-cookie:
optional: true
- '@vueuse/metadata@10.11.1':
- resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
+ '@vueuse/metadata@12.0.0':
+ resolution: {integrity: sha512-Yzimd1D3sjxTDOlF05HekU5aSGdKjxhuhRFHA7gDWLn57PRbBIh+SF5NmjhJ0WRgF3my7T8LBucyxdFJjIfRJQ==}
'@vueuse/metadata@12.8.2':
resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==}
@@ -5870,10 +5927,10 @@ packages:
'@vueuse/motion@3.0.3':
resolution: {integrity: sha512-4B+ITsxCI9cojikvrpaJcLXyq0spj3sdlzXjzesWdMRd99hhtFI6OJ/1JsqwtF73YooLe0hUn/xDR6qCtmn5GQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@vueuse/shared@10.11.1':
- resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
+ '@vueuse/shared@12.0.0':
+ resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==}
'@vueuse/shared@12.8.2':
resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==}
@@ -5881,33 +5938,29 @@ packages:
'@vueuse/shared@13.9.0':
resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@vueuse/shared@14.2.1':
resolution: {integrity: sha512-shTJncjV9JTI4oVNyF1FQonetYAiTBd+Qj7cY89SWbXSkx7gyhrgtEdF2ZAVWS1S3SHlaROO6F2IesJxQEkZBw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- '@vxe-ui/core@4.3.1':
- resolution: {integrity: sha512-sr2WdFDWM3IKID02HbSaDxxRDvj1LZ5ZkOnH2POvGkkCfCWItkx3avkizfRUk8RtjNU+wXozaPbYTNha5kjSdg==}
+ '@vxe-ui/core@4.4.3':
+ resolution: {integrity: sha512-IIwi5+h7Yopq3Ps+JtlSmggUQZg3wvzuad2xuWGR9sNzR/r0qlWKfax7qimrM2UNpVhSF1jI+3Z9+3yg+HPYTw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
'@xmldom/xmldom@0.8.11':
resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==}
engines: {node: '>=10.0.0'}
- '@xyflow/svelte@1.5.0':
- resolution: {integrity: sha512-kHJVwMtabN7xthDJqLvx5wGT5qjOAVV90J9a26geDS51lrGsGb7CCxNRiZCMuVDlRkczGVIy9dkqdph6FL4slQ==}
+ '@xyflow/svelte@1.5.1':
+ resolution: {integrity: sha512-PsurMZxEaTrAwt+PzQtzEkwZwJ9dSc92kusz1rNJTogU1ATxIwheznO2R+RCf2GNuyRuExeDn26WwwBTqkCIhg==}
peerDependencies:
svelte: ^5.25.0
- '@xyflow/system@0.0.74':
- resolution: {integrity: sha512-7v7B/PkiVrkdZzSbL+inGAo6tkR/WQHHG0/jhSvLQToCsfa8YubOGmBYd1s08tpKpihdHDZFwzQZeR69QSBb4Q==}
-
- JSONStream@1.3.5:
- resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
- hasBin: true
+ '@xyflow/system@0.0.75':
+ resolution: {integrity: sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==}
abbrev@2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
@@ -5931,8 +5984,8 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.15.0:
- resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -5959,20 +6012,14 @@ packages:
ajv:
optional: true
- ajv@6.12.6:
- resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@6.14.0:
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
- ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.18.0:
+ resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- ajv@8.13.0:
- resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
-
- ajv@8.17.1:
- resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
-
- algoliasearch@5.48.0:
- resolution: {integrity: sha512-aD8EQC6KEman6/S79FtPdQmB7D4af/etcRL/KwiKFKgAE62iU8c5PeEQvpvIcBPurC3O/4Lj78nOl7ZcoazqSw==}
+ algoliasearch@5.49.2:
+ resolution: {integrity: sha512-1K0wtDaRONwfhL4h8bbJ9qTjmY6rhGgRvvagXkMBsAOMNr+3Q2SffHECh9DIuNVrMA1JwA0zCwhyepgBZVakng==}
engines: {node: '>= 14.0.0'}
alien-signals@0.4.14:
@@ -6016,13 +6063,10 @@ packages:
resolution: {integrity: sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==}
engines: {node: '>=12.22.0'}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- antdv-next@1.0.2:
- resolution: {integrity: sha512-JkPXDLk7MfAtye2pS3z/heLiUeow1K3JJCAnmaM+vzZhCds+wXUCNNHJ03qUIQvKCNbFdko4OJ9p0dY/pDJncg==}
-
- any-promise@1.3.0:
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+ antdv-next@1.1.3:
+ resolution: {integrity: sha512-ziS77lHL/EdiF6klFzo63WXWWF9SOMFwh1ZJWXpBvhY9RIpNFOau+BZKw+/HUHXF103bHSC0t7LWueMzm5BrIg==}
anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
@@ -6036,13 +6080,6 @@ packages:
resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==}
engines: {node: '>= 14'}
- are-docs-informative@0.0.2:
- resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
- engines: {node: '>=14'}
-
- arg@5.0.2:
- resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -6053,8 +6090,8 @@ packages:
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
engines: {node: '>=10'}
- aria-query@5.3.2:
- resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ aria-query@5.3.1:
+ resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==}
engines: {node: '>= 0.4'}
array-buffer-byte-length@1.0.2:
@@ -6094,6 +6131,14 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
+ ast-kit@2.2.0:
+ resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==}
+ engines: {node: '>=20.19.0'}
+
+ ast-walker-scope@0.8.3:
+ resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==}
+ engines: {node: '>=20.19.0'}
+
astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
@@ -6124,8 +6169,8 @@ packages:
autolinker@3.16.2:
resolution: {integrity: sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==}
- autoprefixer@10.4.24:
- resolution: {integrity: sha512-uHZg7N9ULTVbutaIsDRoUkoS8/h3bdsmVJYZ5l3wv8Cp/6UIIoRDm90hZ+BwxUj/hGBEzLxdHNSKuFpn8WOyZw==}
+ autoprefixer@10.4.27:
+ resolution: {integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -6140,41 +6185,42 @@ packages:
peerDependencies:
axios: '>= 0.17.0'
- axios@1.13.5:
- resolution: {integrity: sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==}
+ axios@1.13.6:
+ resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- b4a@1.7.3:
- resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==}
+ b4a@1.8.0:
+ resolution: {integrity: sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==}
peerDependencies:
react-native-b4a: '*'
peerDependenciesMeta:
react-native-b4a:
optional: true
- babel-plugin-polyfill-corejs2@0.4.15:
- resolution: {integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==}
+ babel-plugin-polyfill-corejs2@0.4.16:
+ resolution: {integrity: sha512-xaVwwSfebXf0ooE11BJovZYKhFjIvQo7TsyVpETuIeH2JHv0k/T6Y5j22pPTvqYqmpkxdlPAJlyJ0tfOJAoMxw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.14.0:
- resolution: {integrity: sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==}
+ babel-plugin-polyfill-corejs3@0.14.1:
+ resolution: {integrity: sha512-ENp89vM9Pw4kv/koBb5N2f9bDZsR0hpf3BdPMOg/pkS3pwO4dzNnQZVXtBbeyAadgm865DmQG2jMMLqmZXvuCw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.6:
- resolution: {integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==}
+ babel-plugin-polyfill-regenerator@0.6.7:
+ resolution: {integrity: sha512-OTYbUlSwXhNgr4g6efMZgsO8//jA61P7ZbRX3iTT53VON8l+WQS8IAUEVo4a4cWknrg2W8Cj4gQhRYNCJ8GkAA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- balanced-match@2.0.0:
- resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
bare-events@2.8.2:
resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==}
@@ -6184,11 +6230,42 @@ packages:
bare-abort-controller:
optional: true
+ bare-fs@4.5.5:
+ resolution: {integrity: sha512-XvwYM6VZqKoqDll8BmSww5luA5eflDzY0uEFfBJtFKe4PAAtxBjU3YIxzIBzhyaEQBy1VXEQBto4cpN5RZJw+w==}
+ engines: {bare: '>=1.16.0'}
+ peerDependencies:
+ bare-buffer: '*'
+ peerDependenciesMeta:
+ bare-buffer:
+ optional: true
+
+ bare-os@3.8.0:
+ resolution: {integrity: sha512-Dc9/SlwfxkXIGYhvMQNUtKaXCaGkZYGcd1vuNUUADVqzu4/vQfvnMkYYOUnt2VwQ2AqKr/8qAVFRtwETljgeFg==}
+ engines: {bare: '>=1.14.0'}
+
+ bare-path@3.0.0:
+ resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
+
+ bare-stream@2.8.1:
+ resolution: {integrity: sha512-bSeR8RfvbRwDpD7HWZvn8M3uYNDrk7m9DQjYOFkENZlXW8Ju/MPaqUPQq5LqJ3kyjEm07siTaAQ7wBKCU59oHg==}
+ peerDependencies:
+ bare-buffer: '*'
+ bare-events: '*'
+ peerDependenciesMeta:
+ bare-buffer:
+ optional: true
+ bare-events:
+ optional: true
+
+ bare-url@2.3.2:
+ resolution: {integrity: sha512-ZMq4gd9ngV5aTMa5p9+UfY0b3skwhHELaDkhEHetMdX0LRkW9kzaym4oo/Eh+Ghm0CCDuMTsRIGM/ytUc1ZYmw==}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- baseline-browser-mapping@2.9.19:
- resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
+ baseline-browser-mapping@2.10.7:
+ resolution: {integrity: sha512-1ghYO3HnxGec0TCGBXiDLVns4eCSx4zJpxnHrlqFQajmhfKMQBzUGDdkMK7fUW7PTHTeLf+j87aTuKuuwWzMGw==}
+ engines: {node: '>=6.0.0'}
hasBin: true
benz-amr-recorder@1.1.5:
@@ -6204,16 +6281,9 @@ packages:
bignumber.js@9.3.1:
resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
- binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
-
bindings@1.5.0:
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
- bintrees@1.0.2:
- resolution: {integrity: sha512-VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw==}
-
birpc@2.9.0:
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
@@ -6248,6 +6318,10 @@ packages:
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@5.0.4:
+ resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
+ engines: {node: 18 || 20 || >=22}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
@@ -6283,16 +6357,16 @@ packages:
magicast:
optional: true
- cac@6.7.14:
- resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
- engines: {node: '>=8'}
+ cac@7.0.0:
+ resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
+ engines: {node: '>=20.19.0'}
cacache@20.0.3:
resolution: {integrity: sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==}
engines: {node: ^20.17.0 || >=22.9.0}
- cacheable@2.3.2:
- resolution: {integrity: sha512-w+ZuRNmex9c1TR9RcsxbfTKCjSL0rh1WA5SABbrWprIHeNBdmyQLSYonlDy9gpD+63XT8DgZ/wNh1Smvc9WnJA==}
+ cacheable@2.3.3:
+ resolution: {integrity: sha512-iffYMX4zxKp54evOH27fm92hs+DeC1DhXmNVN8Tr94M/iZIV42dqTHSR2Ik4TOSPyOAwKr7Yu3rN9ALoLkbWyQ==}
call-bind-apply-helpers@1.0.2:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
@@ -6316,10 +6390,6 @@ packages:
camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
- camelcase-css@2.0.1:
- resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
- engines: {node: '>= 6'}
-
camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -6332,8 +6402,8 @@ packages:
resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
engines: {node: '>=16'}
- camunda-bpmn-js-behaviors@1.14.0:
- resolution: {integrity: sha512-Brbt6ZY+SklZjc77R4WKyBqmLXshcvAJVGIabvQUKqn6IDzClGRlTX/V2aaIC9OyMFuXJRQSd3zYrbZRQHk9vg==}
+ camunda-bpmn-js-behaviors@1.14.1:
+ resolution: {integrity: sha512-M+awrL4PuKFi8kemtjLV8A32zODVQ2/cLuaHl2lZt5EKmMjxGb41BL3ulDRaK1Je712/zFTliYKNDX3IsLAvpQ==}
peerDependencies:
bpmn-js: '>= 9'
camunda-bpmn-moddle: '>= 7'
@@ -6345,14 +6415,14 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001769:
- resolution: {integrity: sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==}
+ caniuse-lite@1.0.30001778:
+ resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.3.3:
- resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
+ chai@6.2.2:
+ resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
engines: {node: '>=18'}
chalk-template@1.1.2:
@@ -6379,10 +6449,6 @@ packages:
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
- check-error@2.1.3:
- resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
- engines: {node: '>= 16'}
-
cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
@@ -6394,10 +6460,6 @@ packages:
resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==}
engines: {node: '>=20.18.1'}
- chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
-
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
@@ -6410,23 +6472,20 @@ packages:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
- ci-info@3.9.0:
- resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
- engines: {node: '>=8'}
-
ci-info@4.4.0:
resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
engines: {node: '>=8'}
- circular-dependency-scanner@2.3.0:
- resolution: {integrity: sha512-J1a6SeOL1pfaVdCVECg4h1cLxZipjnibha2uutY7gG7Ax8lre03sWdK1raJew0P+8AGv9/zRF5DCWHkceOYPBQ==}
+ circular-dependency-scanner@3.0.1:
+ resolution: {integrity: sha512-q9Wadov30HqZGJF34ZUZZsICoR9ihKDFe0XK0jbNOuVZE5YPitHbsipLkSJg271Rj8NQzs7bvNgue2M2aILeWg==}
+ engines: {node: '>=20'}
hasBin: true
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- citty@0.2.0:
- resolution: {integrity: sha512-8csy5IBFI2ex2hTVpaHN2j+LNE199AgiI7y4dMintrr8i0lQiFn+0AWMZrWdHKIgMOer65f8IThysYhoReqjWA==}
+ citty@0.2.1:
+ resolution: {integrity: sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==}
class-variance-authority@0.7.1:
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
@@ -6454,13 +6513,13 @@ packages:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
- cli-spinners@2.9.2:
- resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
- engines: {node: '>=6'}
+ cli-spinners@3.4.0:
+ resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
+ engines: {node: '>=18.20'}
- cli-truncate@4.0.0:
- resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
- engines: {node: '>=18'}
+ cli-truncate@5.2.0:
+ resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
+ engines: {node: '>=20'}
clipboard@2.0.11:
resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
@@ -6479,6 +6538,10 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
+
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -6507,6 +6570,9 @@ packages:
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ colorjs.io@0.5.2:
+ resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==}
+
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -6522,10 +6588,6 @@ packages:
resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
engines: {node: '>=16'}
- commander@12.1.0:
- resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
- engines: {node: '>=18'}
-
commander@14.0.3:
resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
engines: {node: '>=20'}
@@ -6533,10 +6595,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@4.1.1:
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
- engines: {node: '>= 6'}
-
commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
@@ -6545,20 +6603,16 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- comment-json@4.5.1:
- resolution: {integrity: sha512-taEtr3ozUmOB7it68Jll7s0Pwm+aoiHyXKrEC8SEodL4rNpdfDLqa7PfBlrgFoCNNdR8ImL+muti5IGvktJAAg==}
+ comment-json@4.6.2:
+ resolution: {integrity: sha512-R2rze/hDX30uul4NZoIZ76ImSJLFxn/1/ZxtKC1L77y2X1k+yYu1joKbAtMA2Fg3hZrTOiw0I5mwVMo0cf250w==}
engines: {node: '>= 6'}
- comment-parser@1.4.1:
- resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
- engines: {node: '>= 12.0.0'}
-
comment-parser@1.4.5:
resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==}
engines: {node: '>= 12.0.0'}
- commitlint-plugin-function-rules@4.3.1:
- resolution: {integrity: sha512-wRvlVUWRgN9qTlfUelB1EqnhTfGLVUKz6xBSnjnBRIwHEn2Ma39WZHJEzmANOqDYa9kpS5hyr3iLD2OliwlDIw==}
+ commitlint-plugin-function-rules@4.3.2:
+ resolution: {integrity: sha512-UrJfHj7jRislz5qWkBj0mp2EHaFT1LwDdG8uOTofWK/jf84EmNMjmDD+9M6eyrfrgLorTAN3/veRMU0D/vb7CQ==}
engines: {node: '>=20'}
peerDependencies:
'@commitlint/lint': '>=19 <21'
@@ -6619,17 +6673,17 @@ packages:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
- conventional-changelog-angular@7.0.0:
- resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
- engines: {node: '>=16'}
+ conventional-changelog-angular@8.3.0:
+ resolution: {integrity: sha512-DOuBwYSqWzfwuRByY9O4oOIvDlkUCTDzfbOgcSbkY+imXXj+4tmrEFao3K+FxemClYfYnZzsvudbwrhje9VHDA==}
+ engines: {node: '>=18'}
- conventional-changelog-conventionalcommits@7.0.2:
- resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==}
- engines: {node: '>=16'}
+ conventional-changelog-conventionalcommits@9.3.0:
+ resolution: {integrity: sha512-kYFx6gAyjSIMwNtASkI3ZE99U1fuVDJr0yTYgVy+I2QG46zNZfl2her+0+eoviG82c5WQvW1jMt1eOQTeJLodA==}
+ engines: {node: '>=18'}
- conventional-commits-parser@5.0.0:
- resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==}
- engines: {node: '>=16'}
+ conventional-commits-parser@6.3.0:
+ resolution: {integrity: sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==}
+ engines: {node: '>=18'}
hasBin: true
convert-source-map@2.0.0:
@@ -6641,8 +6695,9 @@ packages:
cookie-es@2.0.0:
resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
- copy-anything@2.0.6:
- resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
+ copy-anything@3.0.5:
+ resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
+ engines: {node: '>=12.13'}
copy-anything@4.0.5:
resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
@@ -6672,8 +6727,8 @@ packages:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
- cosmiconfig@9.0.0:
- resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ cosmiconfig@9.0.1:
+ resolution: {integrity: sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==}
engines: {node: '>=14'}
peerDependencies:
typescript: '>=4.9.5'
@@ -6719,53 +6774,47 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- cspell-config-lib@9.6.4:
- resolution: {integrity: sha512-MecJNR9bIlcPBhyZFsXP6Q2n8qQ2IR9N9HiIz0yh0gBNVydp3LR5JITP5Ji8m7hexmZzVeoXms/dVN74XbS95g==}
+ cspell-config-lib@9.7.0:
+ resolution: {integrity: sha512-pguh8A3+bSJ1OOrKCiQan8bvaaY125de76OEFz7q1Pq309lIcDrkoL/W4aYbso/NjrXaIw6OjkgPMGRBI/IgGg==}
engines: {node: '>=20'}
- cspell-dictionary@9.6.4:
- resolution: {integrity: sha512-Ik9ZQVqV/fJfMt5X6IkC7yHGVH46/qjcqCNWwrMSwvROLM3SemNxxZoLvh0wi0GXz9WF1lHcxLJVdeKUk6QB8g==}
+ cspell-dictionary@9.7.0:
+ resolution: {integrity: sha512-k/Wz0so32+0QEqQe21V9m4BNXM5ZN6lz3Ix/jLCbMxFIPl6wT711ftjOWIEMFhvUOP0TWXsbzcuE9mKtS5mTig==}
engines: {node: '>=20'}
- cspell-gitignore@9.6.4:
- resolution: {integrity: sha512-a8asE9BsjJgJ506WUGh5VHrTdVEE8hWELjCJB2atPrW6iY5e4aCIugy0gkRC1ZH9/TseadlmMLrFzHUkJUjzsg==}
+ cspell-gitignore@9.7.0:
+ resolution: {integrity: sha512-MtoYuH4ah4K6RrmaF834npMcRsTKw0658mC6yvmBacUQOmwB/olqyuxF3fxtbb55HDb7cXDQ35t1XuwwGEQeZw==}
engines: {node: '>=20'}
hasBin: true
- cspell-glob@9.6.4:
- resolution: {integrity: sha512-253VrjbR8QU15h8GtpDQLX5Ti9uNSuNod2T7f8YEElQOb9I/kUXoCj3Cq4P390IC99klqSHIDxHsxd77ex19lA==}
+ cspell-glob@9.7.0:
+ resolution: {integrity: sha512-LUeAoEsoCJ+7E3TnUmWBscpVQOmdwBejMlFn0JkXy6LQzxrybxXBKf65RSdIv1o5QtrhQIMa358xXYQG0sv/tA==}
engines: {node: '>=20'}
- cspell-grammar@9.6.4:
- resolution: {integrity: sha512-rvZyTB45/XSRWx7eAsrvTTAZvBTREr/2G2JWVMdqrptFyq1XReAKHhw/x1HJkNgWC9LKAK3bVQJpjLsNG37U9A==}
+ cspell-grammar@9.7.0:
+ resolution: {integrity: sha512-oEYME+7MJztfVY1C06aGcJgEYyqBS/v/ETkQGPzf/c6ObSAPRcUbVtsXZgnR72Gru9aBckc70xJcD6bELdoWCA==}
engines: {node: '>=20'}
hasBin: true
- cspell-io@9.6.4:
- resolution: {integrity: sha512-bmvJ4yn5QK2FZWTkZA4sx2qJqIi8BrUUUV7W209drSwkYjhJtXqP0RyF6Qx4Xuu2D1s0UilEtO5Jd+E9UJkQ6w==}
+ cspell-io@9.7.0:
+ resolution: {integrity: sha512-V7x0JHAUCcJPRCH8c0MQkkaKmZD2yotxVyrNEx2SZTpvnKrYscLEnUUTWnGJIIf9znzISqw116PLnYu2c+zd6Q==}
engines: {node: '>=20'}
- cspell-lib@9.6.4:
- resolution: {integrity: sha512-fUodKcIHTwvokuowB25XyFzBxlk73yj1QRw2por3BxDz9fAim1zAIohAPAnGuzj3LowYnTMjHLYE7RFDUSxy5A==}
+ cspell-lib@9.7.0:
+ resolution: {integrity: sha512-aTx/aLRpnuY1RJnYAu+A8PXfm1oIUdvAQ4W9E66bTgp1LWI+2G2++UtaPxRIgI0olxE9vcXqUnKpjOpO+5W9bQ==}
engines: {node: '>=20'}
- cspell-trie-lib@9.6.4:
- resolution: {integrity: sha512-JKwyRtyybbaTrixwI1OgU5Hvva2Z5zHVWl92WBa9U7KijAyiD/Ehp3T3DCYuBwGks7egw7MgWPySkXXnpme6mw==}
+ cspell-trie-lib@9.7.0:
+ resolution: {integrity: sha512-a2YqmcraL3g6I/4gY7SYWEZfP73oLluUtxO7wxompk/kOG2K1FUXyQfZXaaR7HxVv10axT1+NrjhOmXpfbI6LA==}
engines: {node: '>=20'}
peerDependencies:
- '@cspell/cspell-types': 9.6.4
+ '@cspell/cspell-types': 9.7.0
- cspell@9.6.4:
- resolution: {integrity: sha512-rZJmgcyBGKX3KcJ3KC9JYVHeKhDEVbmCheSp8eRGMYw6MCG9o7FHqQjGA/u4lEu4A0psr7ACP/5ym/QHyntRbA==}
+ cspell@9.7.0:
+ resolution: {integrity: sha512-ftxOnkd+scAI7RZ1/ksgBZRr0ouC7QRKtPQhD/PbLTKwAM62sSvRhE1bFsuW3VKBn/GilWzTjkJ40WmnDqH5iQ==}
engines: {node: '>=20.18'}
hasBin: true
- css-blank-pseudo@7.0.1:
- resolution: {integrity: sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
css-declaration-sorter@7.3.1:
resolution: {integrity: sha512-gz6x+KkgNCjxq3Var03pRYLhyNfwhkKF1g/yoLgDNtFvVu0/fOLV9C8fFEZRjACp/XQLumjAYo7JVjzH3wLbxA==}
engines: {node: ^14 || ^16 || >=18}
@@ -6776,18 +6825,6 @@ packages:
resolution: {integrity: sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==}
engines: {node: '>=12'}
- css-has-pseudo@7.0.3:
- resolution: {integrity: sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- css-prefers-color-scheme@10.0.0:
- resolution: {integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
css-render@0.15.14:
resolution: {integrity: sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==}
@@ -6801,24 +6838,21 @@ packages:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- css-tree@3.1.0:
- resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
+ css-tree@3.2.1:
+ resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
css-what@6.2.2:
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
- cssdb@8.7.1:
- resolution: {integrity: sha512-+F6LKx48RrdGOtE4DT5jz7Uo+VeyKXpK797FAevIkzjV8bMHz6xTO5F7gNDcRCHmPgD5jj2g6QCsY9zmVrh38A==}
-
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.10:
- resolution: {integrity: sha512-6ZBjW0Lf1K1Z+0OKUAUpEN62tSXmYChXWi2NAA0afxEVsj9a+MbcB1l5qel6BHJHmULai2fCGRthCeKSFbScpA==}
+ cssnano-preset-default@7.0.11:
+ resolution: {integrity: sha512-waWlAMuCakP7//UCY+JPrQS1z0OSLeOXk2sKWJximKWGupVxre50bzPlvpbUwZIDylhf/ptf0Pk+Yf7C+hoa3g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -6829,8 +6863,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- cssnano@7.1.2:
- resolution: {integrity: sha512-HYOPBsNvoiFeR1eghKD5C3ASm64v9YVyJB4Ivnl2gqKoQYvjjN/G0rztvKQq8OxocUtC6sjqY8jwYngIB4AByA==}
+ cssnano@7.1.3:
+ resolution: {integrity: sha512-mLFHQAzyapMVFLiJIn7Ef4C2UCEvtlTlbyILR6B5ZsUAV3D/Pa761R5uC1YPhyBkRd3eqaDm2ncaNrD7R4mTRg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -6987,10 +7021,6 @@ packages:
resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
engines: {node: '>=12'}
- dargs@8.1.0:
- resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
- engines: {node: '>=12'}
-
data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
@@ -7018,8 +7048,8 @@ packages:
date-fns@4.1.0:
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
- dayjs@1.11.19:
- resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
+ dayjs@1.11.20:
+ resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
db0@0.3.4:
resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==}
@@ -7060,10 +7090,6 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- deep-eql@5.0.2:
- resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
- engines: {node: '>=6'}
-
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -7150,8 +7176,8 @@ packages:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- devalue@5.6.2:
- resolution: {integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==}
+ devalue@5.6.4:
+ resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==}
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
@@ -7174,12 +7200,9 @@ packages:
didi@9.0.2:
resolution: {integrity: sha512-q2+aj+lnJcUweV7A9pdUrwFr4LHVmRPwTmQLtHPFz4aT7IBoryN6Iy+jmFku+oIzr5ebBkvtBCOb87+dJhb7bg==}
- didyoumean@1.2.2:
- resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
-
- diff-sequences@27.5.1:
- resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
diff@8.0.3:
resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==}
@@ -7192,9 +7215,6 @@ packages:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
- dlv@1.1.3:
- resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
-
dom-align@1.12.4:
resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==}
@@ -7227,12 +7247,12 @@ packages:
domify@1.4.2:
resolution: {integrity: sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==}
- domify@2.0.0:
- resolution: {integrity: sha512-rmvrrmWQPD/X1A/nPBfIVg4r05792QdG9Z4Prk6oQG0F9zBMDkr0GKAdds1wjb2dq1rTz/ywc4ZxpZbgz0tttg==}
- engines: {node: '>=18'}
+ domify@3.0.0:
+ resolution: {integrity: sha512-bs2yO68JDFOm6rKv8f0EnrM2cENduhRkpqOtt/s5l5JBA/eqGBZCzLPmdYoHtJ6utgLGgcBajFsEQbl12pT0lQ==}
+ engines: {node: '>=20'}
- dompurify@3.3.1:
- resolution: {integrity: sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==}
+ dompurify@3.3.3:
+ resolution: {integrity: sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==}
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
@@ -7267,8 +7287,8 @@ packages:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
- dotenv@17.2.4:
- resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
+ dotenv@17.3.1:
+ resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==}
engines: {node: '>=12'}
dotenv@8.6.0:
@@ -7288,8 +7308,8 @@ packages:
echarts@6.0.0:
resolution: {integrity: sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==}
- editorconfig@1.0.4:
- resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
+ editorconfig@1.0.7:
+ resolution: {integrity: sha512-e0GOtq/aTQhVdNyDU9e02+wz9oDDM+SIOQxWME2QRjzRX5yyLAuHDE+0aE8vHb9XRC8XD37eO2u57+F09JqFhw==}
engines: {node: '>=14'}
hasBin: true
@@ -7301,13 +7321,13 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.286:
- resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
+ electron-to-chromium@1.5.313:
+ resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==}
- element-plus@2.13.2:
- resolution: {integrity: sha512-Zjzm1NnFXGhV4LYZ6Ze9skPlYi2B4KAmN18FL63A3PZcjhDfroHwhtM6RE8BonlOPHXUnPQynH0BgaoEfvhrGw==}
+ element-plus@2.13.5:
+ resolution: {integrity: sha512-dmY24fhSREfZN/PuUt0YZigMso7wWzl+B5o+YKNN15kQIn/0hzamsPU+ebj9SES0IbUqsLX1wkrzYmzU8VrVOQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
@@ -7332,8 +7352,8 @@ packages:
encoding-sniffer@0.2.1:
resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==}
- enhanced-resolve@5.19.0:
- resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
+ enhanced-resolve@5.20.0:
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -7410,14 +7430,11 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- es-toolkit@1.43.0:
- resolution: {integrity: sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==}
+ es-toolkit@1.45.1:
+ resolution: {integrity: sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==}
- es-toolkit@1.44.0:
- resolution: {integrity: sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==}
-
- esbuild@0.25.12:
- resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
+ esbuild@0.27.4:
+ resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==}
engines: {node: '>=18'}
hasBin: true
@@ -7455,41 +7472,42 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-compat-utils@0.6.5:
- resolution: {integrity: sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ==}
- engines: {node: '>=12'}
- peerDependencies:
- eslint: '>=6.0.0'
-
- eslint-config-turbo@2.8.5:
- resolution: {integrity: sha512-H4A/Upj+s7lD/HQlwZyryjss149U5XYKmheXHFtorMyEFzuVbZD1JN4o7ZPoBFX7khgGT1vDHla6YIKLN6JHJA==}
+ eslint-config-turbo@2.8.17:
+ resolution: {integrity: sha512-sLjl8LT+NHy825rWW5W5whiJDh2mncf+i1RMgw52mioSy+1kithfKpVsZ68Ah/4nnE2rhGQGlrhCZXcmWM/duw==}
peerDependencies:
eslint: '>6.6.0'
turbo: '>2.0.0'
- eslint-import-context@0.1.9:
- resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- peerDependencies:
- unrs-resolver: ^1.0.0
- peerDependenciesMeta:
- unrs-resolver:
- optional: true
-
- eslint-json-compat-utils@0.2.1:
- resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==}
+ eslint-json-compat-utils@0.2.3:
+ resolution: {integrity: sha512-RbBmDFyu7FqnjE8F0ZxPNzx5UaptdeS9Uu50r7A+D7s/+FCX+ybiyViYEgFUaFIFqSWJgZRTpL5d8Kanxxl2lQ==}
engines: {node: '>=12'}
peerDependencies:
'@eslint/json': '*'
eslint: '*'
- jsonc-eslint-parser: ^2.4.0
+ jsonc-eslint-parser: ^2.4.0 || ^3.0.0
peerDependenciesMeta:
'@eslint/json':
optional: true
- eslint-plugin-command@3.4.0:
- resolution: {integrity: sha512-EW4eg/a7TKEhG0s5IEti72kh3YOTlnhfFNuctq5WnB1fst37/IHTd5OkD+vnlRf3opTvUcSRihAateP6bT5ZcA==}
+ eslint-plugin-better-tailwindcss@4.3.2:
+ resolution: {integrity: sha512-1DLX2QmHmOj3u667f8vEI0zKoRc0Y1qJt33tfIeIkpTyzWaz9b2GzWBLD4bR+WJ/kxzC0Skcbx7cMerRWQ6OYg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23.0.0}
peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0
+ oxlint: ^1.35.0
+ tailwindcss: ^3.3.0 || ^4.1.17
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ oxlint:
+ optional: true
+
+ eslint-plugin-command@3.5.2:
+ resolution: {integrity: sha512-PA59QAkQDwvcCMEt5lYLJLI3zDGVKJeC4id/pcRY2XdRYhSGW7iyYT1VC1N3bmpuvu6Qb/9QptiS3GJMjeGTJg==}
+ peerDependencies:
+ '@typescript-eslint/rule-tester': '*'
+ '@typescript-eslint/typescript-estree': '*'
+ '@typescript-eslint/utils': '*'
eslint: '*'
eslint-plugin-es-x@7.8.0:
@@ -7498,86 +7516,40 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-eslint-comments@3.2.0:
- resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
- engines: {node: '>=6.5.0'}
+ eslint-plugin-jsonc@3.1.2:
+ resolution: {integrity: sha512-dopTxdB22iuOkgKyJCupEC5IYBItUT4J/teq1H5ddUObcaYhOURxtJElZczdcYnnKCghNU/vccuyPkliy2Wxsg==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
peerDependencies:
- eslint: '>=4.19.1'
+ eslint: '>=9.38.0'
- eslint-plugin-import-x@4.16.1:
- resolution: {integrity: sha512-vPZZsiOKaBAIATpFE2uMI4w5IRwdv/FpQ+qZZMR4E+PeOcM4OeoEbqxRMnywdxP19TyB/3h6QBB0EWon7letSQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- '@typescript-eslint/utils': ^8.0.0
- eslint: ^8.57.0 || ^9.0.0
- eslint-import-resolver-node: '*'
- peerDependenciesMeta:
- '@typescript-eslint/utils':
- optional: true
- eslint-import-resolver-node:
- optional: true
-
- eslint-plugin-jsdoc@61.7.1:
- resolution: {integrity: sha512-36DpldF95MlTX//n3/naULFVt8d1cV4jmSkx7ZKrE9ikkKHAgMLesuWp1SmwpVwAs5ndIM6abKd6PeOYZUgdWg==}
- engines: {node: '>=20.11.0'}
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
-
- eslint-plugin-jsonc@2.21.1:
- resolution: {integrity: sha512-dbNR5iEnQeORwsK2WZzr3QaMtFCY3kKJVMRHPzUpKzMhmVy2zIpVgFDpX8MNoIdoqz6KCpCfOJavhfiSbZbN+w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '>=6.0.0'
-
- eslint-plugin-n@17.23.2:
- resolution: {integrity: sha512-RhWBeb7YVPmNa2eggvJooiuehdL76/bbfj/OJewyoGT80qn5PXdz8zMOTO6YHOsI7byPt7+Ighh/i/4a5/v7hw==}
+ eslint-plugin-n@17.24.0:
+ resolution: {integrity: sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
- eslint-plugin-no-only-tests@3.3.0:
- resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
- engines: {node: '>=5.0.0'}
+ eslint-plugin-oxlint@1.55.0:
+ resolution: {integrity: sha512-5ng7DOuikSE64e7hX2HBqEWdmql+Q4FWppBoBkxKKflLt1j9LXhab5BN3bYJKyrAihuK1/VH2JvfNefeOZAqpA==}
- eslint-plugin-perfectionist@4.15.1:
- resolution: {integrity: sha512-MHF0cBoOG0XyBf7G0EAFCuJJu4I18wy0zAoT1OHfx2o6EOx1EFTIzr2HGeuZa1kDcusoX0xJ9V7oZmaeFd773Q==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ eslint-plugin-perfectionist@5.6.0:
+ resolution: {integrity: sha512-pxrLrfRp5wl1Vol1fAEa/G5yTXxefTPJjz07qC7a8iWFXcOZNuWBItMQ2OtTzfQIvMq6bMyYcrzc3Wz++na55Q==}
+ engines: {node: ^20.0.0 || >=22.0.0}
peerDependencies:
- eslint: '>=8.45.0'
+ eslint: ^8.45.0 || ^9.0.0 || ^10.0.0
- eslint-plugin-pnpm@1.5.0:
- resolution: {integrity: sha512-ayMo1GvrQ/sF/bz1aOAiH0jv9eAqU2Z+a1ycoWz/uFFK5NxQDq49BDKQtBumcOUBf2VHyiTW4a8u+6KVqoIWzQ==}
+ eslint-plugin-pnpm@1.6.0:
+ resolution: {integrity: sha512-dxmt9r3zvPaft6IugS4i0k16xag3fTbOvm/road5uV9Y8qUCQT0xzheSh3gMlYAlC6vXRpfArBDsTZ7H7JKCbg==}
peerDependencies:
- eslint: ^9.0.0
+ eslint: ^9.0.0 || ^10.0.0
- eslint-plugin-prettier@5.5.5:
- resolution: {integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- '@types/eslint': '>=8.0.0'
- eslint: '>=8.0.0'
- eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0'
- prettier: '>=3.0.0'
- peerDependenciesMeta:
- '@types/eslint':
- optional: true
- eslint-config-prettier:
- optional: true
-
- eslint-plugin-regexp@2.10.0:
- resolution: {integrity: sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==}
- engines: {node: ^18 || >=20}
- peerDependencies:
- eslint: '>=8.44.0'
-
- eslint-plugin-turbo@2.8.5:
- resolution: {integrity: sha512-6PaUEaIuh6absmV0v69dSvh//p1rcNiOtK1KXqYXqp8DUP57Jif6uQF0qxziV5XnyNu+A9Viytq8mAyj64kryg==}
+ eslint-plugin-turbo@2.8.17:
+ resolution: {integrity: sha512-ueZdnMyqZ6Q8dntbG98Ylyu6dqYt3MgoRELKGfDQDhPmwtxWwtimas0BDx8x/Ex4nnfg1pvr9HKxew/rHdvHIw==}
peerDependencies:
eslint: '>6.6.0'
turbo: '>2.0.0'
- eslint-plugin-unicorn@62.0.0:
- resolution: {integrity: sha512-HIlIkGLkvf29YEiS/ImuDZQbP12gWyx5i3C6XrRxMvVdqMroCI9qoVYCoIl17ChN+U89pn9sVwLxhIWj5nEc7g==}
+ eslint-plugin-unicorn@63.0.0:
+ resolution: {integrity: sha512-Iqecl9118uQEXYh7adylgEmGfkn5es3/mlQTLLkd4pXkIk9CTGrAbeUux+YljSa2ohXCBmQQ0+Ej1kZaFgcfkA==}
engines: {node: ^20.10.0 || >=21.0.0}
peerDependencies:
eslint: '>=9.38.0'
@@ -7591,26 +7563,13 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vitest@0.5.4:
- resolution: {integrity: sha512-um+odCkccAHU53WdKAw39MY61+1x990uXjSPguUCq3VcEHdqJrOb8OTMrbYlY6f9jAKx7x98kLVlIe3RJeJqoQ==}
- engines: {node: ^18.0.0 || >= 20.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': '*'
- eslint: ^8.57.0 || ^9.0.0
- vitest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- vitest:
- optional: true
-
- eslint-plugin-vue@10.7.0:
- resolution: {integrity: sha512-r2XFCK4qlo1sxEoAMIoTTX0PZAdla0JJDt1fmYiworZUX67WeEGqm+JbyAg3M+pGiJ5U6Mp5WQbontXWtIW7TA==}
+ eslint-plugin-vue@10.8.0:
+ resolution: {integrity: sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
'@typescript-eslint/parser': ^7.0.0 || ^8.0.0
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
vue-eslint-parser: ^10.0.0
peerDependenciesMeta:
'@stylistic/eslint-plugin':
@@ -7618,34 +7577,30 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-yml@1.19.1:
- resolution: {integrity: sha512-bYkOxyEiXh9WxUhVYPELdSHxGG5pOjCSeJOVkfdIyj6tuiHDxrES2WAW1dBxn3iaZQey57XflwLtCYRcNPOiOg==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ eslint-plugin-yml@3.3.1:
+ resolution: {integrity: sha512-isntsZchaTqDMNNkD+CakrgA/pdUoJ45USWBKpuqfAW1MCuw731xX/vrXfoJFZU3tTFr24nCbDYmDfT2+g4QtQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0}
peerDependencies:
- eslint: '>=6.0.0'
+ eslint: '>=9.38.0'
- eslint-scope@8.4.0:
- resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-scope@9.1.2:
+ resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.2.1:
- resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- eslint-visitor-keys@5.0.0:
- resolution: {integrity: sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==}
+ eslint-visitor-keys@5.0.1:
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- eslint@9.39.2:
- resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint@10.0.3:
+ resolution: {integrity: sha512-COV33RzXZkqhG9P2rZCFl9ZmJ7WL+gQSCRzE7RhkbclbQPtLAWReL7ysA0Sh4c8Im2U9ynybdR56PV0XcKvqaQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
hasBin: true
peerDependencies:
- jiti: ^2.6.1
+ jiti: '*'
peerDependenciesMeta:
jiti:
optional: true
@@ -7653,12 +7608,8 @@ packages:
esm-env@1.2.2:
resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==}
- espree@10.4.0:
- resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- espree@11.1.0:
- resolution: {integrity: sha512-WFWYhO1fV4iYkqOOvq8FbqIhr2pYfoDY0kCotMkDeNtGpiGGkZ1iov2u8ydjtgM8yF8rzK7oaTbw2NAzbAbehw==}
+ espree@11.2.0:
+ resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
espree@9.6.1:
@@ -7674,8 +7625,8 @@ packages:
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
- esrap@2.2.3:
- resolution: {integrity: sha512-8fOS+GIGCQZl/ZIlhl59htOlms6U8NvX6ZYgYHpRU/b6tVSh3uHkOHZikl3D4cMbYM0JlpBe+p/BkZEi8J9XIQ==}
+ esrap@2.2.4:
+ resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==}
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
@@ -7748,9 +7699,6 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-diff@1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
-
fast-equals@6.0.0:
resolution: {integrity: sha512-PFhhIGgdM79r5Uztdj9Zb6Tt1zKafqVfdMGwVca1z5z6fbX7DmsySSuJd8HiP6I1j505DCS83cLxo5rmSNeVEA==}
engines: {node: '>=6.0.0'}
@@ -7768,15 +7716,11 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-string-compare@3.0.0:
- resolution: {integrity: sha512-PY66/8HelapGo5nqMN17ZTKqJj1nppuS1OoC9Y0aI2jsUDlZDEYhMODTpb68wVCq+xMbaEbPGXRd7qutHzkRXA==}
- engines: {node: ^14.13.1 || >=16.0.0}
-
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
- fast-xml-parser@4.5.3:
- resolution: {integrity: sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==}
+ fast-xml-parser@4.5.4:
+ resolution: {integrity: sha512-jE8ugADnYOBsu1uaoayVl1tVKAMNOXyjwvv2U6udEA2ORBhDooJDWoGxTkhd4Qn4yh59JVVt/pKXtjPwx9OguQ==}
hasBin: true
fastest-levenshtein@1.0.16:
@@ -7802,6 +7746,9 @@ packages:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
+ fflate@0.8.2:
+ resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+
figures@6.1.0:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
@@ -7816,8 +7763,8 @@ packages:
file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- filelist@1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ filelist@1.0.6:
+ resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==}
fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
@@ -7835,9 +7782,9 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- find-up@7.0.0:
- resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
- engines: {node: '>=18'}
+ find-up@8.0.0:
+ resolution: {integrity: sha512-JGG8pvDi2C+JxidYdIwQDyS/CgcrIdh18cvgxcBge3wSHRQOrooMD3GlFBcmMJAN9M42SAZjDp5zv1dglJjwww==}
+ engines: {node: '>=20'}
findup-sync@5.0.0:
resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==}
@@ -7853,12 +7800,15 @@ packages:
flat-cache@6.1.20:
resolution: {integrity: sha512-AhHYqwvN62NVLp4lObVXGVluiABTHapoB57EyegZVmazN+hhGhLTn3uZbOofoTw4DSDvVCadzzyChXhOAvy8uQ==}
- flatted@3.3.3:
- resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+ flatted@3.4.1:
+ resolution: {integrity: sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==}
focus-trap@7.8.0:
resolution: {integrity: sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==}
+ focus-trap@8.0.0:
+ resolution: {integrity: sha512-Aa84FOGHs99vVwufDMdq2qgOwXPC2e9U66GcqBhn1/jEHPDhJaP8PYhkIbqG9lhfL5Kddk/567lj46LLHYCRUw==}
+
follow-redirects@1.15.11:
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
@@ -7902,8 +7852,8 @@ packages:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
- fs-extra@11.3.3:
- resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
+ fs-extra@11.3.4:
+ resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==}
engines: {node: '>=14.14'}
fs-extra@7.0.1:
@@ -7958,8 +7908,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.4.0:
- resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
+ get-east-asian-width@1.5.0:
+ resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -7999,9 +7949,9 @@ packages:
resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
hasBin: true
- git-raw-commits@4.0.0:
- resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==}
- engines: {node: '>=16'}
+ git-raw-commits@5.0.1:
+ resolution: {integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ==}
+ engines: {node: '>=18'}
hasBin: true
glob-parent@5.1.2:
@@ -8021,14 +7971,18 @@ packages:
engines: {node: 20 || >=22}
hasBin: true
- glob@13.0.2:
- resolution: {integrity: sha512-035InabNu/c1lW0tzPhAgapKctblppqsKKG9ZaNzbr+gXwWMjXoiyGSyB9sArzrjG7jY+zntRq5ZSUYemrnWVQ==}
- engines: {node: 20 || >=22}
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
global-directory@4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
+ global-directory@5.0.0:
+ resolution: {integrity: sha512-1pgFdhK3J2LeM+dVf2Pd424yHx2ou338lC0ErNP2hPx4j8eW1Sp0XqSjNxtk6Tc4Kr5wlWtSvz8cn2yb7/SG/w==}
+ engines: {node: '>=20'}
+
global-modules@1.0.0:
resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
engines: {node: '>=0.10.0'}
@@ -8048,10 +8002,6 @@ packages:
global@4.4.0:
resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
- globals@14.0.0:
- resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
- engines: {node: '>=18'}
-
globals@15.15.0:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
@@ -8060,6 +8010,10 @@ packages:
resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
engines: {node: '>=18'}
+ globals@17.4.0:
+ resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
+ engines: {node: '>=18'}
+
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
@@ -8072,8 +8026,8 @@ packages:
resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
- globby@16.1.0:
- resolution: {integrity: sha512-+A4Hq7m7Ze592k9gZRy4gJ27DrXRNnC1vPjxTt1qQxEY8RxagBkBxivkCwg7FxSTG0iLLEMaUx13oOr0R2/qcQ==}
+ globby@16.1.1:
+ resolution: {integrity: sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==}
engines: {node: '>=20'}
globjoin@0.1.4:
@@ -8095,13 +8049,6 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graph-cycles@3.0.0:
- resolution: {integrity: sha512-9qxd8BQK0tZJ3cRUW0Yn2q6P/9h+bgz/4UYuscpdxPz6851NNBA1IwoYDRHDpKzCqmr1UHlGHcp5+0WzpY9F7A==}
- engines: {node: ^14.13.1 || >=16.0.0}
-
- graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
-
gray-matter@4.0.3:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
@@ -8110,15 +8057,15 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- h3@1.15.5:
- resolution: {integrity: sha512-xEyq3rSl+dhGX2Lm0+eFQIAzlDN6Fs0EcC4f7BNUmzaRX/PTzeuM+Tr2lHB8FoXggsQIeXLj8EDVgs5ywxyxmg==}
+ h3@1.15.6:
+ resolution: {integrity: sha512-oi15ESLW5LRthZ+qPCi5GNasY/gvynSKUQxgiovrY63bPAtG59wtM+LSrlcwvOHAXzGrXVLnI97brbkdPF9WoQ==}
hammerjs@2.0.8:
resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==}
engines: {node: '>=0.8.0'}
- happy-dom@17.6.3:
- resolution: {integrity: sha512-UVIHeVhxmxedbWPCfgS55Jg2rDfwf2BCKeylcPSqazLz5w3Kri7Q4xdBJubsr/+VUzFLh0VjIvh13RaDA2/Xug==}
+ happy-dom@20.8.4:
+ resolution: {integrity: sha512-GKhjq4OQCYB4VLFBzv8mmccUadwlAusOZOI7hC1D9xDIT5HhzkJK17c4el2f6R6C715P9xB4uiMxeKUa2nHMwQ==}
engines: {node: '>=20.0.0'}
has-bigints@1.1.0:
@@ -8129,6 +8076,10 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
+ has-flag@5.0.1:
+ resolution: {integrity: sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA==}
+ engines: {node: '>=12'}
+
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -8144,8 +8095,8 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- hashery@1.4.0:
- resolution: {integrity: sha512-Wn2i1In6XFxl8Az55kkgnFRiAlIAushzh26PTjL2AKtQcEfXrcLa7Hn5QOWGZEf3LU057P9TwwZjFyxfS1VuvQ==}
+ hashery@1.5.0:
+ resolution: {integrity: sha512-nhQ6ExaOIqti2FDWoEMWARUqIKyjr2VcZzXShrI+A3zpeiuPWzx6iPftt44LhP74E5sW36B75N6VHbvRtpvO6Q==}
engines: {node: '>=20'}
hasown@2.0.2:
@@ -8182,9 +8133,6 @@ packages:
htm@3.1.1:
resolution: {integrity: sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ==}
- html-entities@2.6.0:
- resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==}
-
html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
@@ -8195,9 +8143,9 @@ packages:
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
+ html-tags@5.1.0:
+ resolution: {integrity: sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==}
+ engines: {node: '>=20.10'}
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
@@ -8249,8 +8197,8 @@ packages:
ids@1.0.5:
resolution: {integrity: sha512-XQ0yom/4KWTL29sLG+tyuycy7UmeaM/79GRtSJq6IG9cJGIPeBz5kwDCguie3TwxaMNIc3WtPi0cTa1XYHicpw==}
- ids@3.0.1:
- resolution: {integrity: sha512-mr0zAgpgA/hzCrHB0DnoTG6xZjNC3ABs4eaksXrpVtfaDatA2SVdDb1ZPLjmKjqzp4kexQRuHXwDWQILVK8FZQ==}
+ ids@3.0.2:
+ resolution: {integrity: sha512-t6YJP4mdC+GHF96Nbis/4FEANhP/8VWmYMvUuYpXvSdrhg5hpIVbq2XZlOA3UWTbtdwPCi0q7jEXOdHkAnqOnw==}
engines: {node: '>= 20.12'}
ieee754@1.2.1:
@@ -8269,8 +8217,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- immutable@5.1.4:
- resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==}
+ immutable@5.1.5:
+ resolution: {integrity: sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==}
import-fresh@3.3.1:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
@@ -8307,6 +8255,10 @@ packages:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ ini@6.0.0:
+ resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -8315,8 +8267,8 @@ packages:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
- ioredis@5.9.2:
- resolution: {integrity: sha512-tAAg/72/VxOUW7RQSX1pIxJVucYKcjFjfvj60L57jrZpYCHC3XN0WCQ3sNYL4Gmvv+7GPvTAjc+KSdeNuE8oWQ==}
+ ioredis@5.10.0:
+ resolution: {integrity: sha512-HVBe9OFuqs+Z6n64q09PQvP1/R4Bm+30PAyyD4wIEqssh3v9L21QjCVk4kRLucMBcDokJTcLjsGeVRlq/nH6DA==}
engines: {node: '>=12.22.0'}
iron-webcrypto@1.2.1:
@@ -8337,10 +8289,6 @@ packages:
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
engines: {node: '>= 0.4'}
- is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
-
is-boolean-object@1.2.2:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
@@ -8399,10 +8347,6 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-fullwidth-code-point@4.0.0:
- resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
- engines: {node: '>=12'}
-
is-fullwidth-code-point@5.1.0:
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
@@ -8423,6 +8367,10 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ is-in-ssh@1.0.0:
+ resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==}
+ engines: {node: '>=20'}
+
is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
@@ -8533,18 +8481,10 @@ packages:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
- is-text-path@2.0.0:
- resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==}
- engines: {node: '>=8'}
-
is-typed-array@1.1.15:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
- is-unicode-supported@1.3.0:
- resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
- engines: {node: '>=12'}
-
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
@@ -8561,8 +8501,9 @@ packages:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
- is-what@3.14.1:
- resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
+ is-what@4.1.16:
+ resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
+ engines: {node: '>=12.13'}
is-what@5.5.0:
resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
@@ -8576,8 +8517,8 @@ packages:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- is-wsl@3.1.0:
- resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ is-wsl@3.1.1:
+ resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
engines: {node: '>=16'}
is64bit@2.0.0:
@@ -8605,6 +8546,10 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ jiti@1.21.7:
+ resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
+ hasBin: true
+
jiti@2.6.1:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
@@ -8635,12 +8580,8 @@ packages:
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
- jsdoc-type-pratt-parser@4.8.0:
- resolution: {integrity: sha512-iZ8Bdb84lWRuGHamRXFyML07r21pcwBrLkHEuHgEY5UbCouBwv7ECknDRKzsQIXMiqpPymqtIf8TC/shYKB5rw==}
- engines: {node: '>=12.0.0'}
-
- jsdoc-type-pratt-parser@7.0.0:
- resolution: {integrity: sha512-c7YbokssPOSHmqTbSAmTtnVgAVa/7lumWNYqomgd5KOMyPrRve2anx6lonfOsXEQacqF9FKVUj7bLg4vRSvdYA==}
+ jsdoc-type-pratt-parser@7.1.1:
+ resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
engines: {node: '>=20.0.0'}
jsencrypt@3.5.4:
@@ -8681,22 +8622,25 @@ packages:
resolution: {integrity: sha512-1e4qoRgnn448pRuMvKGsFFymUCquZV0mpGgOyIKNgD3JVDTsVJyRBGH/Fm0tBb8WsWGgmB1mDe6/yJMQM37DUA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ jsonc-eslint-parser@3.1.0:
+ resolution: {integrity: sha512-75EA7EWZExL/j+MDKQrRbdzcRI2HOkRlmUw8fZJc1ioqFEOvBsq7Rt+A6yCxOt9w/TYNpkt52gC6nm/g5tFIng==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ jsonc-parser@3.3.1:
+ resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
+
jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
jsonfile@6.2.0:
resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
- jsonparse@1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
- engines: {'0': node >= 0.2.0}
-
jsonpointer@5.0.1:
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
- katex@0.16.28:
- resolution: {integrity: sha512-YHzO7721WbmAL6Ov1uzN/l5mY5WWWhJBSW+jq4tkfZfsxmo1hu6frS0EOswvjBUnWE6NtjEs48SFn5CQESRLZg==}
+ katex@0.16.38:
+ resolution: {integrity: sha512-cjHooZUmIAUmDsHBN+1n8LaZdpmbj03LtYeYPyuYB7OuloiaeaV6N4LcfjcnHVzGWjVQmKrxxTrpDcmSzEZQwQ==}
hasBin: true
keycode@2.2.1:
@@ -8741,63 +8685,63 @@ packages:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
- lefthook-darwin-arm64@2.1.0:
- resolution: {integrity: sha512-u2hjHLQXWSFfzO7ln2n/uEydSzfC9sc5cDC7tvKSuOdhvBwaJ0AQ7ZeuqqCQ4YfVIJfYOom1SVE9CBd10FVyig==}
+ lefthook-darwin-arm64@2.1.4:
+ resolution: {integrity: sha512-BUAAE9+rUrjr39a+wH/1zHmGrDdwUQ2Yq/z6BQbM/yUb9qtXBRcQ5eOXxApqWW177VhGBpX31aqIlfAZ5Q7wzw==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@2.1.0:
- resolution: {integrity: sha512-zz5rcyrtOZpxon7uE+c0KC/o2ypJeLZql5CL0Y9oaTuECbmhfokm8glsGnyWstW/++PuMpZYYr/qsCJA5elxkQ==}
+ lefthook-darwin-x64@2.1.4:
+ resolution: {integrity: sha512-K1ncIMEe84fe+ss1hQNO7rIvqiKy2TJvTFpkypvqFodT7mJXZn7GLKYTIXdIuyPAYthRa9DwFnx5uMoHwD2F1Q==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@2.1.0:
- resolution: {integrity: sha512-+mXNCNuFHNGYLrDqYWDeHH7kWCLCJFPpspx5PAAm+PD37PRMZJrTqDbaNK9qCghC1tdmT4/Lvilf/ewXHPlaKw==}
+ lefthook-freebsd-arm64@2.1.4:
+ resolution: {integrity: sha512-PVUhjOhVN71YaYsVdQyNbFZ4a2jFB2Tg5hKrrn9kaWpx64aLz/XivLjwr8sEuTaP1GRlEWBpW6Bhrcsyo39qFw==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@2.1.0:
- resolution: {integrity: sha512-+AU2HD7szuDsUdHue/E3OnF84B2ae/h7CGKpuIUHJntgoJ4kxf89oDvq2/xl8kDCn9cT76UUjgeZUgFYLRj+6Q==}
+ lefthook-freebsd-x64@2.1.4:
+ resolution: {integrity: sha512-ZWV9o/LeyWNEBoVO+BhLqxH3rGTba05nkm5NvMjEFSj7LbUNUDbQmupZwtHl1OMGJO66eZP0CalzRfUH6GhBxQ==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@2.1.0:
- resolution: {integrity: sha512-KM70eV1tsEib1/tk+3TFxIdH84EaYlIg5KTQWAg+LB1N23nTQ7lL4Dnh1je6f6KW4tf21nmoMUqsh0xvMkQk8Q==}
+ lefthook-linux-arm64@2.1.4:
+ resolution: {integrity: sha512-iWN0pGnTjrIvNIcSI1vQBJXUbybTqJ5CLMniPA0olabMXQfPDrdMKVQe+mgdwHK+E3/Y0H0ZNL3lnOj6Sk6szA==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@2.1.0:
- resolution: {integrity: sha512-6Bxmv+l7LiYq9W0IE6v2lmlRtBp6pisnlzhcouMGvH3rDwEGw11NAyRJZA3IPGEMAkIuhnlnVTUwAUzKomfJLg==}
+ lefthook-linux-x64@2.1.4:
+ resolution: {integrity: sha512-96bTBE/JdYgqWYAJDh+/e/0MaxJ25XTOAk7iy/fKoZ1ugf6S0W9bEFbnCFNooXOcxNVTan5xWKfcjJmPIKtsJA==}
cpu: [x64]
os: [linux]
- lefthook-openbsd-arm64@2.1.0:
- resolution: {integrity: sha512-ppJNK0bBSPLC8gqksRw5zI/0uLeMA5cK+hmZ4ofcuGNmdrN1dfl2Tx84fdeef0NcQY0ii9Y3j3icIKngIoid/g==}
+ lefthook-openbsd-arm64@2.1.4:
+ resolution: {integrity: sha512-oYUoK6AIJNEr9lUSpIMj6g7sWzotvtc3ryw7yoOyQM6uqmEduw73URV/qGoUcm4nqqmR93ZalZwR2r3Gd61zvw==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@2.1.0:
- resolution: {integrity: sha512-8k9lQsMYqQGu4spaQ8RNSOJidxIcOyfaoF2FPZhthtBfRV3cgVFGrsQ0hbIi5pvQRGUlCqYuCN79qauXHmnL3Q==}
+ lefthook-openbsd-x64@2.1.4:
+ resolution: {integrity: sha512-i/Dv9Jcm68y9cggr1PhyUhOabBGP9+hzQPoiyOhKks7y9qrJl79A8XfG6LHekSuYc2VpiSu5wdnnrE1cj2nfTg==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@2.1.0:
- resolution: {integrity: sha512-0WN+grrxt9zP9NGRcztoPXcz25tteem91rfLWgQFab+50csJ47zldlsB7/eOS/eHG5mUg5g5NPR4XefnXtjOcQ==}
+ lefthook-windows-arm64@2.1.4:
+ resolution: {integrity: sha512-hSww7z+QX4YMnw2lK7DMrs3+w7NtxksuMKOkCKGyxUAC/0m1LAICo0ZbtdDtZ7agxRQQQ/SEbzFRhU5ysNcbjA==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@2.1.0:
- resolution: {integrity: sha512-XbO/5nAZQLpUn0tPpgCYfFBFJHnymSglQ73jD6wymNrR1j8I5EcXGlP6YcLhnZ83yzsdLC+gup+N6IqUeiyRdw==}
+ lefthook-windows-x64@2.1.4:
+ resolution: {integrity: sha512-eE68LwnogxwcPgGsbVGPGxmghyMGmU9SdGwcc+uhGnUxPz1jL89oECMWJNc36zjVK24umNeDAzB5KA3lw1MuWw==}
cpu: [x64]
os: [win32]
- lefthook@2.1.0:
- resolution: {integrity: sha512-+vS+yywGQW6CN1J1hbGkez//6ixGHIQqfxDN/d3JDm531w9GfGt2lAWTDfZTw/CEl80XsN0raFcnEraR3ldw9g==}
+ lefthook@2.1.4:
+ resolution: {integrity: sha512-JNfJ5gAn0KADvJ1I6/xMcx70+/6TL6U9gqGkKvPw5RNMfatC7jIg0Evl97HN846xmfz959BV70l8r3QsBJk30w==}
hasBin: true
- less@4.5.1:
- resolution: {integrity: sha512-UKgI3/KON4u6ngSsnDADsUERqhZknsVZbnuzlRZXLQCmfC/MDld42fTydUE9B+Mla1AL6SJ/Pp6SlEFi/AVGfw==}
- engines: {node: '>=14'}
+ less@4.6.4:
+ resolution: {integrity: sha512-OJmO5+HxZLLw0RLzkqaNHzcgEAQG7C0y3aMbwtCzIUFZsLMNNq/1IdAdHEycQ58CwUO3jPTHmoN+tE5I7FQxNg==}
+ engines: {node: '>=18'}
hasBin: true
leven@3.1.0:
@@ -8808,6 +8752,154 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ lightningcss-android-arm64@1.31.1:
+ resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-android-arm64@1.32.0:
+ resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.31.1:
+ resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-arm64@1.32.0:
+ resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.31.1:
+ resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.32.0:
+ resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.31.1:
+ resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-freebsd-x64@1.32.0:
+ resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.31.1:
+ resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm64-gnu@1.31.1:
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-arm64-musl@1.31.1:
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-gnu@1.31.1:
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ lightningcss-linux-x64-musl@1.31.1:
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-linux-x64-musl@1.32.0:
+ resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ lightningcss-win32-arm64-msvc@1.31.1:
+ resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.31.1:
+ resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss@1.31.1:
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
+ engines: {node: '>= 12.0.0'}
+
+ lightningcss@1.32.0:
+ resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
+ engines: {node: '>= 12.0.0'}
+
lilconfig@3.1.3:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
@@ -8822,9 +8914,9 @@ packages:
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
hasBin: true
- listr2@8.3.3:
- resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.5:
+ resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
+ engines: {node: '>=20.0.0'}
local-pkg@1.1.2:
resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
@@ -8841,9 +8933,9 @@ packages:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- locate-path@7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ locate-path@8.0.0:
+ resolution: {integrity: sha512-XT9ewWAC43tiAV7xDAPflMkG0qOPn2QjHqlgX8FOqmWa/rxnyYDulF9T0F7tRy1u+TVTmK/M//6VIOye+2zDXg==}
+ engines: {node: '>=20'}
locko@1.1.0:
resolution: {integrity: sha512-pYB2dzRY93fJkg2RIl41AMNgTQftEjyTK9vlPrGOJvuGQsOjb267VJBw15BjiN3RBd1oBoKkOu9E2dRdFKIfAA==}
@@ -8873,9 +8965,6 @@ packages:
lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
- lodash.isplainobject@4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
-
lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
@@ -8909,8 +8998,8 @@ packages:
lodash@4.17.23:
resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
- log-symbols@6.0.0:
- resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
engines: {node: '>=18'}
log-update@6.1.0:
@@ -8921,17 +9010,14 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.2.1:
- resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
-
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.2.6:
- resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==}
+ lru-cache@11.2.7:
+ resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -8941,10 +9027,10 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- lucide-vue-next@0.553.0:
- resolution: {integrity: sha512-0tg9XT+VCElTT+7EXXbBRhWe1nU7Doa32Xv/dHP5/LCleFVgV6cAqziM3C7AetqmsYIsfAtNwRYdtvs4Ds7aUg==}
+ lucide-vue-next@0.577.0:
+ resolution: {integrity: sha512-py05bAfv9SHVJqscbiOnjcnLlEmOffA58a+7XhZuFxrs6txe1E8VoR1ngWGTYO+9aVKABAz8l3ee3PqiQN9QPA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
luxon@3.7.2:
resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==}
@@ -8957,6 +9043,10 @@ packages:
m3u8-parser@4.8.0:
resolution: {integrity: sha512-UqA2a/Pw3liR6Df3gwxrqghCP17OpPlQj6RBPLYygf/ZSQ4MoSgvdvhvt35qV+3NaaA0FSZx93Ix+2brT1U7cA==}
+ magic-string-ast@1.0.3:
+ resolution: {integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==}
+ engines: {node: '>=20.19.0'}
+
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
@@ -8973,12 +9063,12 @@ packages:
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- markdown-it@14.1.0:
- resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
+ markdown-it@14.1.1:
+ resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
hasBin: true
- marked@17.0.1:
- resolution: {integrity: sha512-boeBdiS0ghpWcSwoNm/jJBwdpFaMnZWRzjA6SkUMYb40SVaN1x7mmfGKp0jvexGcx+7y2La5zRZsYFZI6Qpypg==}
+ marked@17.0.4:
+ resolution: {integrity: sha512-NOmVMM+KAokHMvjWmC5N/ZOvgmSWuqJB8FoYI019j4ogb/PeRMKoKIjReZ2w3376kkA8dSJIP8uD993Kxc0iRQ==}
engines: {node: '>= 20'}
hasBin: true
@@ -9009,8 +9099,8 @@ packages:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
- mathml-tag-names@2.1.3:
- resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
+ mathml-tag-names@4.0.0:
+ resolution: {integrity: sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==}
mdast-util-to-hast@13.2.1:
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
@@ -9018,11 +9108,11 @@ packages:
mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
- mdn-data@2.12.2:
- resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
+ mdn-data@2.23.0:
+ resolution: {integrity: sha512-786vq1+4079JSeu2XdcDjrhi/Ry7BWtjDl9WtGPWLiIHb2T66GvIVflZTBoSNZ5JqTtJGYEVMuFA/lbQlMOyDQ==}
- mdn-data@2.27.0:
- resolution: {integrity: sha512-/pUmP9UebM48q5BTqZd0yPnDjyRGhITbKh8cwa6/ZwjuDu8xq+VzmugLF7QNxpdaqqNH3J5nnv3yc8oARv096A==}
+ mdn-data@2.27.1:
+ resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
@@ -9033,14 +9123,14 @@ packages:
memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
- meow@12.1.1:
- resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
- engines: {node: '>=16.10'}
-
meow@13.2.0:
resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
engines: {node: '>=18'}
+ meow@14.1.0:
+ resolution: {integrity: sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==}
+ engines: {node: '>=20'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -9113,30 +9203,30 @@ packages:
min-dom@4.2.1:
resolution: {integrity: sha512-TMoL8SEEIhUWYgkj7XMSgxmwSyGI+4fP2KFFGnN3FbHfbGHVdsLYSz8LoIsgPhz4dWRmLvxWWSMgzZMJW5sZuA==}
- min-dom@5.2.0:
- resolution: {integrity: sha512-shfMH1tFbZCVSx3ECaQV1aGu8fYmGnXEWuItudWRd31DpVJzmVKXFH/Aqgf7YjOmZRgRH5BJafk16oeSbohJDg==}
+ min-dom@5.3.0:
+ resolution: {integrity: sha512-0w5FEBgPAyHhmFojW3zxd7we3D+m5XYS3E/06OyvxmbHJoiQVa4Nagj6RWvoAKYRw5xth6cP5TMePc5cR1M9hA==}
- minimatch@10.1.2:
- resolution: {integrity: sha512-fu656aJ0n2kcXwsnwnv9g24tkU5uSmOlTjd6WyyaKm2Z+h1qmY6bAjrcaIxF/BslFqbZ8UBtbJi7KgQOZD2PTw==}
- engines: {node: 20 || >=22}
+ minimatch@10.2.3:
+ resolution: {integrity: sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==}
+ engines: {node: 18 || 20 || >=22}
- minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@10.2.4:
+ resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
+ engines: {node: 18 || 20 || >=22}
- minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ minimatch@3.1.5:
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
+
+ minimatch@5.1.9:
+ resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==}
engines: {node: '>=10'}
- minimatch@7.4.6:
- resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
+ minimatch@7.4.9:
+ resolution: {integrity: sha512-Brg/fp/iAVDOQoHxkuN5bEYhyQlZhxddI78yWsCbeEwTHXQjlNLtiJDUsp1GIptVqMI7/gkJMz4vVAc01mpoBw==}
engines: {node: '>=10'}
- minimatch@9.0.1:
- resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minimatch@9.0.5:
- resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ minimatch@9.0.9:
+ resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
@@ -9158,8 +9248,8 @@ packages:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
engines: {node: '>=16 || 14 >=14.17'}
minisearch@7.2.0:
@@ -9178,7 +9268,7 @@ packages:
peerDependencies:
sass: ^1.92.1
typescript: '>=5.9.2'
- vue: ^3.5.27
+ vue: ^3.5.30
vue-sfc-transformer: ^0.1.1
vue-tsc: ^1.8.27 || ^2.0.21 || ^3.0.0
peerDependenciesMeta:
@@ -9193,8 +9283,8 @@ packages:
vue-tsc:
optional: true
- mlly@1.8.0:
- resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
+ mlly@1.8.1:
+ resolution: {integrity: sha512-SnL6sNutTwRWWR/vcmCYHSADjiEesp5TGQQ0pXyLhW5IoeibRlF/CbSLailbB3CNqJUk9cVJ9dUDnbD7GrcHBQ==}
moddle-xml@10.1.0:
resolution: {integrity: sha512-erWckwLt+dYskewKXJso9u+aAZ5172lOiYxSOqKCPTy7L/xmqH1PoeoA7eVC7oJTt3PqF5TkZzUmbjGH6soQBg==}
@@ -9202,6 +9292,10 @@ packages:
moddle@6.2.3:
resolution: {integrity: sha512-bLVN+ZHL3aKnhxc19XtjUfvdJsS3EsiEJC7bT6YPD11qYmTzvsxrGgyYz1Ouof7TZuGw0lDJ1OLmEnxcpQWk3Q==}
+ modern-tar@0.7.5:
+ resolution: {integrity: sha512-YTefgdpKKFgoTDbEUqXqgUJct2OG6/4hs4XWLsxcHkDLj/x/V8WmKIRppPnXP5feQ7d1vuYWSp3qKkxfwaFaxA==}
+ engines: {node: '>=18.0.0'}
+
mpd-parser@0.22.1:
resolution: {integrity: sha512-fwBebvpyPUU8bOzvhX0VQZgSohncbgYwUyJJoTSNpmy7ccD2ryiCvM7oRkn/xQH5cv73/xU7rJSNCLjdGFor0Q==}
hasBin: true
@@ -9229,32 +9323,20 @@ packages:
engines: {node: '>=8', npm: '>=5'}
hasBin: true
- mz@2.7.0:
- resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
-
- naive-ui@2.43.2:
- resolution: {integrity: sha512-YlLMnGrwGTOc+zMj90sG3ubaH5/7czsgLgGcjTLA981IUaz8r6t4WIujNt8r9PNr+dqv6XNEr0vxkARgPPjfBQ==}
+ naive-ui@2.44.1:
+ resolution: {integrity: sha512-reo8Esw0p58liZwbUutC7meW24Xbn3EwNv91zReWKm2W4JPu+zfgJRn/F7aO0BFmvN+h2brA2M5lRvYqLq4kuA==}
+ engines: {node: '>=20'}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.1.6:
- resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==}
- engines: {node: ^18 || >=20}
- hasBin: true
-
nanopop@2.4.2:
resolution: {integrity: sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==}
- napi-postinstall@0.3.4:
- resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- hasBin: true
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -9262,8 +9344,8 @@ packages:
resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
engines: {node: '>=18'}
- needle@3.3.1:
- resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
+ needle@3.5.0:
+ resolution: {integrity: sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==}
engines: {node: '>= 4.4.x'}
hasBin: true
@@ -9325,8 +9407,8 @@ packages:
node-mock-http@1.0.4:
resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
- node-releases@2.0.27:
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+ node-releases@2.0.36:
+ resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
@@ -9367,17 +9449,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- object-assign@4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
-
- object-deep-merge@2.0.0:
- resolution: {integrity: sha512-3DC3UMpeffLTHiuXSy/UG4NOIYTLlY9u3V82+djSCLYClWobZiS4ivYzpIUWrRY/nfsJ8cWsKyG3QfyLePmhvg==}
-
- object-hash@3.0.0:
- resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
- engines: {node: '>= 6'}
-
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
@@ -9396,6 +9467,9 @@ packages:
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
+ obug@2.1.1:
+ resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
+
ofetch@1.5.1:
resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
@@ -9421,6 +9495,10 @@ packages:
resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
+ open@11.0.0:
+ resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==}
+ engines: {node: '>=20'}
+
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -9429,9 +9507,9 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- ora@8.2.0:
- resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
- engines: {node: '>=18'}
+ ora@9.3.0:
+ resolution: {integrity: sha512-lBX72MWFduWEf7v7uWf5DHp9Jn5BI8bNPGuFgtXMmr2uDz2Gz2749y3am3agSDdkhHPHYmmxEGSKH85ZLGzgXw==}
+ engines: {node: '>=20'}
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
@@ -9440,6 +9518,25 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
+ oxfmt@0.40.0:
+ resolution: {integrity: sha512-g0C3I7xUj4b4DcagevM9kgH6+pUHytikxUcn3/VUkvzTNaaXBeyZqb7IBsHwojeXm4mTBEC/aBjBTMVUkZwWUQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
+ oxlint-tsgolint@0.16.0:
+ resolution: {integrity: sha512-4RuJK2jP08XwqtUu+5yhCbxEauCm6tv2MFHKEMsjbosK2+vy5us82oI3VLuHwbNyZG7ekZA26U2LLHnGR4frIA==}
+ hasBin: true
+
+ oxlint@1.55.0:
+ resolution: {integrity: sha512-T+FjepiyWpaZMhekqRpH8Z3I4vNM610p6w+Vjfqgj5TZUxHXl7N8N5IPvmOU8U4XdTRxqtNNTh9Y4hLtr7yvFg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ oxlint-tsgolint: '>=0.15.0'
+ peerDependenciesMeta:
+ oxlint-tsgolint:
+ optional: true
+
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
@@ -9507,9 +9604,6 @@ packages:
resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
engines: {node: '>=8'}
- parse-imports-exports@0.2.4:
- resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==}
-
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -9526,9 +9620,6 @@ packages:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
- parse-statements@1.0.11:
- resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==}
-
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
@@ -9552,10 +9643,6 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
path-intersection@2.2.1:
resolution: {integrity: sha512-9u8xvMcSfuOiStv9bPdnRJQhGQXLKurew94n4GPQCdH1nj9QKC9ObbNoIpiRq8skiOBxKkt277PgOoFgAt3/rA==}
@@ -9578,9 +9665,9 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-scurry@2.0.1:
- resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
- engines: {node: 20 || >=22}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -9599,10 +9686,6 @@ packages:
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@2.0.1:
- resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
- engines: {node: '>= 14.16'}
-
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
@@ -9620,10 +9703,6 @@ packages:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
- pify@2.3.0:
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
- engines: {node: '>=0.10.0'}
-
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -9646,15 +9725,11 @@ packages:
resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
peerDependencies:
typescript: '>=4.5.0'
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
typescript:
optional: true
- pirates@4.0.7:
- resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
- engines: {node: '>= 6'}
-
pkcs7@1.0.4:
resolution: {integrity: sha512-afRERtHn54AlwaF2/+LFszyAANTCggGilmcmILUzEjvs3XgFZT+xE6+QWQcAGmu4xajy+Xtj7acLOPdx5/eXWQ==}
hasBin: true
@@ -9686,8 +9761,8 @@ packages:
resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
engines: {node: '>=10.13.0'}
- pnpm-workspace-yaml@1.5.0:
- resolution: {integrity: sha512-PxdyJuFvq5B0qm3s9PaH/xOtSxrcvpBRr+BblhucpWjs8c79d4b7/cXhyY4AyHOHCnqklCYZTjfl0bT/mFVTRw==}
+ pnpm-workspace-yaml@1.6.0:
+ resolution: {integrity: sha512-uUy4dK3E11sp7nK+hnT7uAWfkBMe00KaUw8OG3NuNlYQoTk4sc9pcdIy1+XIP85v9Tvr02mK3JPaNNrP0QyRaw==}
popmotion@11.0.5:
resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
@@ -9696,85 +9771,26 @@ packages:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
- postcss-antd-fixes@0.2.0:
- resolution: {integrity: sha512-WuV4Ip5DnLg8q+wmNXUq13wZZcA5Lrj+em3Jznl4cxItZDgFp4wEh+5ba59TvFeHfwNuTEZ6YNDsYP9DG6NurQ==}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-attribute-case-insensitive@7.0.1:
- resolution: {integrity: sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-calc@10.1.1:
resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==}
engines: {node: ^18.12 || ^20.9 || >=22.0}
peerDependencies:
postcss: ^8.4.38
- postcss-clamp@4.1.0:
- resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
- engines: {node: '>=7.6.0'}
- peerDependencies:
- postcss: ^8.4.6
-
- postcss-color-functional-notation@7.0.12:
- resolution: {integrity: sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-color-hex-alpha@10.0.0:
- resolution: {integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-color-rebeccapurple@10.0.0:
- resolution: {integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-colormin@7.0.5:
- resolution: {integrity: sha512-ekIBP/nwzRWhEMmIxHHbXHcMdzd1HIUzBECaj5KEdLz9DVP2HzT065sEhvOx1dkLjYW7jyD0CngThx6bpFi2fA==}
+ postcss-colormin@7.0.6:
+ resolution: {integrity: sha512-oXM2mdx6IBTRm39797QguYzVEWzbdlFiMNfq88fCCN1Wepw3CYmJ/1/Ifa/KjWo+j5ZURDl2NTldLJIw51IeNQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
- postcss-convert-values@7.0.8:
- resolution: {integrity: sha512-+XNKuPfkHTCEo499VzLMYn94TiL3r9YqRE3Ty+jP7UX4qjewUONey1t7CG21lrlTLN07GtGM8MqFVp86D4uKJg==}
+ postcss-convert-values@7.0.9:
+ resolution: {integrity: sha512-l6uATQATZaCa0bckHV+r6dLXfWtUBKXxO3jK+AtxxJJtgMPD+VhhPCCx51I4/5w8U5uHV67g3w7PXj+V3wlMlg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
- postcss-custom-media@11.0.6:
- resolution: {integrity: sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-custom-properties@14.0.6:
- resolution: {integrity: sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-custom-selectors@8.0.5:
- resolution: {integrity: sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-dir-pseudo-class@9.0.1:
- resolution: {integrity: sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-discard-comments@7.0.5:
- resolution: {integrity: sha512-IR2Eja8WfYgN5n32vEGSctVQ1+JARfu4UH8M7bgGh1bC+xI/obsPJXaBpQF7MAByvgwZinhpHpdrmXtvVVlKcQ==}
+ postcss-discard-comments@7.0.6:
+ resolution: {integrity: sha512-Sq+Fzj1Eg5/CPf1ERb0wS1Im5cvE2gDXCE+si4HCn1sf+jpQZxDI4DXEp8t77B/ImzDceWE2ebJQFXdqZ6GRJw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -9797,93 +9813,10 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-double-position-gradients@6.0.4:
- resolution: {integrity: sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-focus-visible@10.0.1:
- resolution: {integrity: sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-focus-within@9.0.1:
- resolution: {integrity: sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-font-variant@5.0.0:
- resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-gap-properties@6.0.0:
- resolution: {integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-html@1.8.1:
resolution: {integrity: sha512-OLF6P7qctfAWayOhLpcVnTGqVeJzu2W3WpIYelfz2+JV5oGxfkcEvweN9U4XpeqE0P98dcD9ssusGwlF0TK0uQ==}
engines: {node: ^12 || >=14}
- postcss-image-set-function@7.0.0:
- resolution: {integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-import@15.1.0:
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-import@16.1.1:
- resolution: {integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- postcss: ^8.0.0
-
- postcss-js@4.1.0:
- resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
- engines: {node: ^12 || ^14 || >= 16}
- peerDependencies:
- postcss: ^8.4.21
-
- postcss-lab-function@7.0.12:
- resolution: {integrity: sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-load-config@6.0.1:
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
- engines: {node: '>= 18'}
- peerDependencies:
- jiti: ^2.6.1
- postcss: '>=8.0.9'
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- jiti:
- optional: true
- postcss:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- postcss-logical@8.1.0:
- resolution: {integrity: sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
@@ -9893,8 +9826,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-merge-rules@7.0.7:
- resolution: {integrity: sha512-njWJrd/Ms6XViwowaaCc+/vqhPG3SmXn725AGrnl+BgTuRPEacjiLEaGq16J6XirMJbtKkTwnt67SS+e2WGoew==}
+ postcss-merge-rules@7.0.8:
+ resolution: {integrity: sha512-BOR1iAM8jnr7zoQSlpeBmCsWV5Uudi/+5j7k05D0O/WP3+OFMPD86c1j/20xiuRtyt45bhxw/7hnhZNhW2mNFA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -9911,42 +9844,24 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-minify-params@7.0.5:
- resolution: {integrity: sha512-FGK9ky02h6Ighn3UihsyeAH5XmLEE2MSGH5Tc4tXMFtEDx7B+zTG6hD/+/cT+fbF7PbYojsmmWjyTwFwW1JKQQ==}
+ postcss-minify-params@7.0.6:
+ resolution: {integrity: sha512-YOn02gC68JijlaXVuKvFSCvQOhTpblkcfDre2hb/Aaa58r2BIaK4AtE/cyZf2wV7YKAG+UlP9DT+By0ry1E4VQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
- postcss-minify-selectors@7.0.5:
- resolution: {integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==}
+ postcss-minify-selectors@7.0.6:
+ resolution: {integrity: sha512-lIbC0jy3AAwDxEgciZlBullDiMBeBCT+fz5G8RcA9MWqh/hfUkpOI3vNDUNEZHgokaoiv0juB9Y8fGcON7rU/A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
- postcss-nested@5.0.6:
- resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
-
- postcss-nested@6.2.0:
- resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.2.14
-
postcss-nested@7.0.2:
resolution: {integrity: sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==}
engines: {node: '>=18.0'}
peerDependencies:
postcss: ^8.2.14
- postcss-nesting@13.0.2:
- resolution: {integrity: sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-normalize-charset@7.0.1:
resolution: {integrity: sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -9983,8 +9898,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-normalize-unicode@7.0.5:
- resolution: {integrity: sha512-X6BBwiRxVaFHrb2WyBMddIeB5HBjJcAaUHyhLrM2FsxSq5TFqcHSsK7Zu1otag+o0ZphQGJewGH1tAyrD0zX1Q==}
+ postcss-normalize-unicode@7.0.6:
+ resolution: {integrity: sha512-z6bwTV84YW6ZvvNoaNLuzRW4/uWxDKYI1iIDrzk6D2YTL7hICApy+Q1LP6vBEsljX8FM7YSuV9qI79XESd4ddQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -10001,49 +9916,14 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-opacity-percentage@3.0.0:
- resolution: {integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-ordered-values@7.0.2:
resolution: {integrity: sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
- postcss-overflow-shorthand@6.0.0:
- resolution: {integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-page-break@3.0.4:
- resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
- peerDependencies:
- postcss: ^8
-
- postcss-place@10.0.0:
- resolution: {integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-preset-env@10.6.1:
- resolution: {integrity: sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-pseudo-class-any-link@10.0.1:
- resolution: {integrity: sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
- postcss-reduce-initial@7.0.5:
- resolution: {integrity: sha512-RHagHLidG8hTZcnr4FpyMB2jtgd/OcyAazjMhoy5qmWJOx1uxKh4ntk0Pb46ajKM0rkf32lRH4C8c9qQiPR6IA==}
+ postcss-reduce-initial@7.0.6:
+ resolution: {integrity: sha512-G6ZyK68AmrPdMB6wyeA37ejnnRG2S8xinJrZJnOv+IaRKf6koPAVbQsiC7MfkmXaGmF1UO+QCijb27wfpxuRNg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -10054,11 +9934,6 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-replace-overflow-wrap@4.0.0:
- resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
- peerDependencies:
- postcss: ^8.0.3
-
postcss-resolve-nested-selector@0.1.6:
resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
@@ -10080,37 +9955,27 @@ packages:
peerDependencies:
postcss: ^8.4.29
- postcss-selector-not@8.0.1:
- resolution: {integrity: sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==}
- engines: {node: '>=18'}
- peerDependencies:
- postcss: ^8.4
-
postcss-selector-parser@6.0.10:
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
- postcss-selector-parser@6.1.2:
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
- engines: {node: '>=4'}
-
postcss-selector-parser@7.1.1:
resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
engines: {node: '>=4'}
- postcss-sorting@9.1.0:
- resolution: {integrity: sha512-Mn8KJ45HNNG6JBpBizXcyf6LqY/qyqetGcou/nprDnFwBFBLGj0j/sNKV2lj2KMOVOwdXu14aEzqJv8CIV6e8g==}
+ postcss-sorting@10.0.0:
+ resolution: {integrity: sha512-TXbU+h6vVRW+86c/+ewhWq9k7pr7ijASTnepVhCQiC87zAOTkvB1v2dHyWP+ggstSTX/PNvjzS+IOqzejndz9w==}
peerDependencies:
postcss: ^8.4.20
- postcss-svgo@7.1.0:
- resolution: {integrity: sha512-KnAlfmhtoLz6IuU3Sij2ycusNs4jPW+QoFE5kuuUOK8awR6tMxZQrs5Ey3BUz7nFCzT3eqyFgqkyrHiaU2xx3w==}
+ postcss-svgo@7.1.1:
+ resolution: {integrity: sha512-zU9H9oEDrUFKa0JB7w+IYL7Qs9ey1mZyjhbf0KLxwJDdDRtoPvCmaEfknzqfHj44QS9VD6c5sJnBAVYTLRg/Sg==}
engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
peerDependencies:
postcss: ^8.4.32
- postcss-unique-selectors@7.0.4:
- resolution: {integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==}
+ postcss-unique-selectors@7.0.5:
+ resolution: {integrity: sha512-3QoYmEt4qg/rUWDn6Tc8+ZVPmbp4G1hXDtCNWDx0st8SjtCbRcxRXDDM1QrEiXGG3A45zscSJFb4QH90LViyxg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -10118,86 +9983,26 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.5.6:
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ postcss@8.5.8:
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.28.3:
- resolution: {integrity: sha512-tCmoRkPQLpBeWzpmbhryairGnhW9tKV6c6gr/w+RhoRoKEJwsjzipwp//1oCpGPOchvSLaAPlpcJi9MwMmoPyA==}
+ powershell-utils@0.1.0:
+ resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==}
+ engines: {node: '>=20'}
+
+ preact@10.29.0:
+ resolution: {integrity: sha512-wSAGyk2bYR1c7t3SZ3jHcM6xy0lcBcDel6lODcs9ME6Th++Dx2KU+6D3HD8wMMKGA8Wpw7OMd3/4RGzYRpzwRg==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier-linter-helpers@1.0.1:
- resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==}
- engines: {node: '>=6.0.0'}
-
- prettier-plugin-tailwindcss@0.7.2:
- resolution: {integrity: sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA==}
- engines: {node: '>=20.19'}
- peerDependencies:
- '@ianvs/prettier-plugin-sort-imports': '*'
- '@prettier/plugin-hermes': '*'
- '@prettier/plugin-oxc': '*'
- '@prettier/plugin-pug': '*'
- '@shopify/prettier-plugin-liquid': '*'
- '@trivago/prettier-plugin-sort-imports': '*'
- '@zackad/prettier-plugin-twig': '*'
- prettier: ^3.0
- prettier-plugin-astro: '*'
- prettier-plugin-css-order: '*'
- prettier-plugin-jsdoc: '*'
- prettier-plugin-marko: '*'
- prettier-plugin-multiline-arrays: '*'
- prettier-plugin-organize-attributes: '*'
- prettier-plugin-organize-imports: '*'
- prettier-plugin-sort-imports: '*'
- prettier-plugin-svelte: '*'
- peerDependenciesMeta:
- '@ianvs/prettier-plugin-sort-imports':
- optional: true
- '@prettier/plugin-hermes':
- optional: true
- '@prettier/plugin-oxc':
- optional: true
- '@prettier/plugin-pug':
- optional: true
- '@shopify/prettier-plugin-liquid':
- optional: true
- '@trivago/prettier-plugin-sort-imports':
- optional: true
- '@zackad/prettier-plugin-twig':
- optional: true
- prettier-plugin-astro:
- optional: true
- prettier-plugin-css-order:
- optional: true
- prettier-plugin-jsdoc:
- optional: true
- prettier-plugin-marko:
- optional: true
- prettier-plugin-multiline-arrays:
- optional: true
- prettier-plugin-organize-attributes:
- optional: true
- prettier-plugin-organize-imports:
- optional: true
- prettier-plugin-sort-imports:
- optional: true
- prettier-plugin-svelte:
- optional: true
-
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.8.1:
- resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
- engines: {node: '>=14'}
- hasBin: true
-
pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
@@ -10237,8 +10042,8 @@ packages:
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
- publint@0.3.17:
- resolution: {integrity: sha512-Q3NLegA9XM6usW+dYQRG1g9uEHiYUzcCVBJDJ7yMcWRqVU9LYZUWdqbwMZfmTCFC5PZLQpLAmhvRcQRl3exqkw==}
+ publint@0.3.18:
+ resolution: {integrity: sha512-JRJFeBTrfx4qLwEuGFPk+haJOJN97KnPuK01yj+4k/Wj5BgoOK5uNsivporiqBjk2JDaslg7qJOhGRnpltGeog==}
engines: {node: '>=18'}
hasBin: true
@@ -10263,8 +10068,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- qs@6.14.1:
- resolution: {integrity: sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==}
+ qs@6.15.0:
+ resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
engines: {node: '>=0.6'}
quansync@0.2.11:
@@ -10296,9 +10101,6 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- read-cache@1.0.0:
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
-
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -10337,10 +10139,6 @@ packages:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
- refa@0.12.1:
- resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
-
reflect.getprototypeof@1.0.10:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
@@ -10361,10 +10159,6 @@ packages:
regex@6.1.0:
resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
- regexp-ast-analysis@0.7.1:
- resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
-
regexp-tree@0.1.27:
resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
hasBin: true
@@ -10392,10 +10186,10 @@ packages:
resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
- reka-ui@2.8.0:
- resolution: {integrity: sha512-N4JOyIrmDE7w2i06WytqcV2QICubtS2PsK5Uo8FIMAgmO13KhUAgAByP26cXjjm2oF/w7rTyRs8YaqtvaBT+SA==}
+ reka-ui@2.9.2:
+ resolution: {integrity: sha512-/t4e6y1hcG+uDuRfpg6tbMz3uUEvRzNco6NeYTufoJeUghy5Iosxos5YL/p+ieAsid84sdMX9OrgDqpEuCJhBw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
@@ -10423,10 +10217,6 @@ packages:
require-package-name@2.0.1:
resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==}
- reserved-identifiers@1.2.0:
- resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==}
- engines: {node: '>=18'}
-
resize-observer-polyfill@1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
@@ -10465,8 +10255,8 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@6.1.2:
- resolution: {integrity: sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==}
+ rimraf@6.1.3:
+ resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==}
engines: {node: 20 || >=22}
hasBin: true
@@ -10477,28 +10267,20 @@ packages:
resolution: {integrity: sha512-7H8oH5A8+L96pbBTPCt/rZrwayEhZY5/ejhdk9nRODH32H1v7+bfkaCr+kS15DcGQ7VC1HcWdQVNABFYgrMOzg==}
engines: {node: '>=20.19.0'}
- rollup-plugin-dts@6.3.0:
- resolution: {integrity: sha512-d0UrqxYd8KyZ6i3M2Nx7WOMy708qsV/7fTHMHxCMCBOAe3V/U7OMPu5GkX8hC+cmkHhzGnfeYongl1IgiooddA==}
+ rolldown@1.0.0-rc.9:
+ resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
+ rollup-plugin-dts@6.4.0:
+ resolution: {integrity: sha512-2i00A5UoPCoDecLEs13Eu105QegSGfrbp1sDeUj/54LKGmv6XFHDxWKC6Wsb4BobGUWYVCWWjmjAc8bXXbXH/Q==}
engines: {node: '>=16'}
peerDependencies:
rollup: ^3.29.4 || ^4
- typescript: ^4.5 || ^5.0
+ typescript: ^4.5 || ^5.0 || ^6.0
- rollup-plugin-visualizer@5.14.0:
- resolution: {integrity: sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==}
- engines: {node: '>=18'}
- hasBin: true
- peerDependencies:
- rolldown: 1.x
- rollup: 2.x || 3.x || 4.x
- peerDependenciesMeta:
- rolldown:
- optional: true
- rollup:
- optional: true
-
- rollup-plugin-visualizer@6.0.5:
- resolution: {integrity: sha512-9+HlNgKCVbJDs8tVtjQ43US12eqaiHyyiLMdBwQ7vSZPiHMysGNo2E88TAp1si5wx8NAoYriI2A5kuKfIakmJg==}
+ rollup-plugin-visualizer@6.0.11:
+ resolution: {integrity: sha512-TBwVHVY7buHjIKVLqr9scTVFwqZqMXINcCphPwIWKPDCOBIa+jCQfafvbjRJDZgXdq/A996Dy6yGJ/+/NtAXDQ==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -10510,20 +10292,29 @@ packages:
rollup:
optional: true
- rollup@2.79.2:
- resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
+ rollup-plugin-visualizer@7.0.1:
+ resolution: {integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg==}
+ engines: {node: '>=22'}
+ hasBin: true
+ peerDependencies:
+ rolldown: 1.x || ^1.0.0-beta || ^1.0.0-rc
+ rollup: 2.x || 3.x || 4.x
+ peerDependenciesMeta:
+ rolldown:
+ optional: true
+ rollup:
+ optional: true
+
+ rollup@2.80.0:
+ resolution: {integrity: sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==}
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.57.1:
- resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==}
+ rollup@4.59.0:
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rotated-array-set@3.0.0:
- resolution: {integrity: sha512-G7689wvCM0szMFXUAhi3GfNGcSPlndg077cdRWoq7UegOAwfU2MJ0jD7s7jB+2ppKA75Kr/O0HwAP9+rRdBctg==}
- engines: {node: ^14.13.1 || >=16.0.0}
-
run-applescript@7.1.0:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
@@ -10537,6 +10328,9 @@ packages:
rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
+ rxjs@7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
+
sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
@@ -10565,13 +10359,130 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.97.3:
- resolution: {integrity: sha512-fDz1zJpd5GycprAbu4Q2PV/RprsRtKC/0z82z0JLgdytmcq0+ujJbJ/09bPGDxCLkKY3Np5cRAOcWiVkLXJURg==}
+ sass-embedded-all-unknown@1.98.0:
+ resolution: {integrity: sha512-6n4RyK7/1mhdfYvpP3CClS3fGoYqDvRmLClCESS6I7+SAzqjxvGG6u5Fo+cb1nrPNbbilgbM4QKdgcgWHO9NCA==}
+ cpu: ['!arm', '!arm64', '!riscv64', '!x64']
+
+ sass-embedded-android-arm64@1.98.0:
+ resolution: {integrity: sha512-M9Ra98A6vYJHpwhoC/5EuH1eOshQ9ZyNwC8XifUDSbRl/cGeQceT1NReR9wFj3L7s1pIbmes1vMmaY2np0uAKQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ sass-embedded-android-arm@1.98.0:
+ resolution: {integrity: sha512-LjGiMhHgu7VL1n7EJxTCre1x14bUsWd9d3dnkS2rku003IWOI/fxc7OXgaKagoVzok1kv09rzO3vFXJR5ZeONQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [android]
+
+ sass-embedded-android-riscv64@1.98.0:
+ resolution: {integrity: sha512-WPe+0NbaJIZE1fq/RfCZANMeIgmy83x4f+SvFOG7LhUthHpZWcOcrPTsCKKmN3xMT3iw+4DXvqTYOCYGRL3hcQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [android]
+
+ sass-embedded-android-x64@1.98.0:
+ resolution: {integrity: sha512-zrD25dT7OHPEgLWuPEByybnIfx4rnCtfge4clBgjZdZ3lF6E7qNLRBtSBmoFflh6Vg0RlEjJo5VlpnTMBM5MQQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [android]
+
+ sass-embedded-darwin-arm64@1.98.0:
+ resolution: {integrity: sha512-cgr1z9rBnCdMf8K+JabIaYd9Rag2OJi5mjq08XJfbJGMZV/TA6hFJCLGkr5/+ZOn4/geTM5/3aSfQ8z5EIJAOg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ sass-embedded-darwin-x64@1.98.0:
+ resolution: {integrity: sha512-OLBOCs/NPeiMqTdOrMFbVHBQFj19GS3bSVSxIhcCq16ZyhouUkYJEZjxQgzv9SWA2q6Ki8GCqp4k6jMeUY9dcA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ sass-embedded-linux-arm64@1.98.0:
+ resolution: {integrity: sha512-axOE3t2MTBwCtkUCbrdM++Gj0gC0fdHJPrgzQ+q1WUmY9NoNMGqflBtk5mBZaWUeha2qYO3FawxCB8lctFwCtw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: glibc
+
+ sass-embedded-linux-arm@1.98.0:
+ resolution: {integrity: sha512-03baQZCxVyEp8v1NWBRlzGYrmVT/LK7ZrHlF1piscGiGxwfdxoLXVuxsylx3qn/dD/4i/rh7Bzk7reK1br9jvQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+ libc: glibc
+
+ sass-embedded-linux-musl-arm64@1.98.0:
+ resolution: {integrity: sha512-LeqNxQA8y4opjhe68CcFvMzCSrBuJqYVFbwElEj9bagHXQHTp9xVPJRn6VcrC+0VLEDq13HVXMv7RslIuU0zmA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: musl
+
+ sass-embedded-linux-musl-arm@1.98.0:
+ resolution: {integrity: sha512-OBkjTDPYR4hSaueOGIM6FDpl9nt/VZwbSRpbNu9/eEJcxE8G/vynRugW8KRZmCFjPy8j/jkGBvvS+k9iOqKV3g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+ libc: musl
+
+ sass-embedded-linux-musl-riscv64@1.98.0:
+ resolution: {integrity: sha512-7w6hSuOHKt8FZsmjRb3iGSxEzM87fO9+M8nt5JIQYMhHTj5C+JY/vcske0v715HCVj5e1xyTnbGXf8FcASeAIw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [linux]
+ libc: musl
+
+ sass-embedded-linux-musl-x64@1.98.0:
+ resolution: {integrity: sha512-QikNyDEJOVqPmxyCFkci8ZdCwEssdItfjQFJB+D+Uy5HFqcS5Lv3d3GxWNX/h1dSb23RPyQdQc267ok5SbEyJw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: musl
+
+ sass-embedded-linux-riscv64@1.98.0:
+ resolution: {integrity: sha512-E7fNytc/v4xFBQKzgzBddV/jretA4ULAPO6XmtBiQu4zZBdBozuSxsQLe2+XXeb0X4S2GIl72V7IPABdqke/vA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [linux]
+ libc: glibc
+
+ sass-embedded-linux-x64@1.98.0:
+ resolution: {integrity: sha512-VsvP0t/uw00mMNPv3vwyYKUrFbqzxQHnRMO+bHdAMjvLw4NFf6mscpym9Bzf+NXwi1ZNKnB6DtXjmcpcvqFqYg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: glibc
+
+ sass-embedded-unknown-all@1.98.0:
+ resolution: {integrity: sha512-C4MMzcAo3oEDQnW7L8SBgB9F2Fq5qHPnaYTZRMOH3Mp/7kM4OooBInXpCiiFjLnjY95hzP4KyctVx0uYR6MYlQ==}
+ os: ['!android', '!darwin', '!linux', '!win32']
+
+ sass-embedded-win32-arm64@1.98.0:
+ resolution: {integrity: sha512-nP/10xbAiPbhQkMr3zQfXE4TuOxPzWRQe1Hgbi90jv2R4TbzbqQTuZVOaJf7KOAN4L2Bo6XCTRjK5XkVnwZuwQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ sass-embedded-win32-x64@1.98.0:
+ resolution: {integrity: sha512-/lbrVsfbcbdZQ5SJCWcV0NVPd6YRs+FtAnfedp4WbCkO/ZO7Zt/58MvI4X2BVpRY/Nt5ZBo1/7v2gYcQ+J4svQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ sass-embedded@1.98.0:
+ resolution: {integrity: sha512-Do7u6iRb6K+lrllcTkB1BXcHwOxcKe3rEfOF/GcCLE2w3WpddakRAosJOHFUR37DpsvimQXEt5abs3NzUjEIqg==}
+ engines: {node: '>=16.0.0'}
+ hasBin: true
+
+ sass@1.98.0:
+ resolution: {integrity: sha512-+4N/u9dZ4PrgzGgPlKnaaRQx64RO0JBKs9sDhQ2pLgN6JQZ25uPQZKQYaBJU48Kd5BxgXoJ4e09Dq7nMcOUW3A==}
engines: {node: '>=14.0.0'}
hasBin: true
- sax@1.4.4:
- resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==}
+ sax@1.5.0:
+ resolution: {integrity: sha512-21IYA3Q5cQf089Z6tgaUTr7lDAyzoTPx5HRtbhsME8Udispad8dC/+sziTNugOEx54ilvatQ9YCzl4KQLPcRHA==}
engines: {node: '>=11.0.0'}
saxen@8.1.2:
@@ -10583,10 +10494,6 @@ packages:
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
- scslre@0.3.0:
- resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
- engines: {node: ^14.0.0 || >=16.0.0}
-
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
@@ -10674,10 +10581,6 @@ packages:
shiki@2.5.0:
resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==}
- short-tree@3.0.0:
- resolution: {integrity: sha512-Yd9NFs/o9QSoH4/wTjxk4Xe0+CIzitDRN1Qg7iBeTSejKjlCg/3PbgiRwDUVuaIxD0RRdv7Iz9jKr7e0HljtUg==}
- engines: {node: ^14.13.1 || >=16.0.0}
-
side-channel-list@1.0.0:
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
engines: {node: '>= 0.4'}
@@ -10726,16 +10629,17 @@ packages:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
- slice-ansi@5.0.0:
- resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
- engines: {node: '>=12'}
-
slice-ansi@7.1.2:
resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
engines: {node: '>=18'}
- smob@1.5.0:
- resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
+ slice-ansi@8.0.0:
+ resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
+ engines: {node: '>=20'}
+
+ smob@1.6.1:
+ resolution: {integrity: sha512-KAkBqZl3c2GvNgNhcoyJae1aKldDW0LO279wF9bk1PnluRTETKBq0WyzRXxEhoQLk56yHaOY4JCBEKDuJIET5g==}
+ engines: {node: '>=20.0.0'}
smol-toml@1.6.0:
resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==}
@@ -10744,8 +10648,8 @@ packages:
sortablejs@1.14.0:
resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==}
- sortablejs@1.15.6:
- resolution: {integrity: sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A==}
+ sortablejs@1.15.7:
+ resolution: {integrity: sha512-Kk8wLQPlS+yi1ZEf48a4+fzHa4yxjC30M/Sr2AnQu+f/MPwvvX9XjZ6OWejiz8crBsLwSq8GHqaxaET7u6ux0A==}
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
@@ -10777,23 +10681,10 @@ packages:
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
-
- spdx-expression-parse@4.0.0:
- resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
-
- spdx-license-ids@3.0.22:
- resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
-
speakingurl@14.0.1:
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
engines: {node: '>=0.10.0'}
- split2@4.2.0:
- resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
- engines: {node: '>= 10.x'}
-
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -10801,10 +10692,6 @@ packages:
resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==}
engines: {node: ^20.17.0 || >=22.9.0}
- stable-hash-x@0.2.0:
- resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
- engines: {node: '>=12.0.0'}
-
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
@@ -10818,8 +10705,11 @@ packages:
std-env@3.10.0:
resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
- stdin-discarder@0.2.2:
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ std-env@4.0.0:
+ resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==}
+
+ stdin-discarder@0.3.1:
+ resolution: {integrity: sha512-reExS1kSGoElkextOcPkel4NE99S0BWxjUHQeDFnR8S993JxpPX7KU4MNmO19NXhlJp+8dmdCbKQVNgLJh2teA==}
engines: {node: '>=18'}
steady-xml@0.1.0:
@@ -10849,6 +10739,10 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
+ string-width@8.2.0:
+ resolution: {integrity: sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==}
+ engines: {node: '>=20'}
+
string.prototype.matchall@4.0.12:
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
@@ -10882,8 +10776,8 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.2:
- resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
+ strip-ansi@7.2.0:
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
engines: {node: '>=12'}
strip-bom-string@1.0.0:
@@ -10943,8 +10837,8 @@ packages:
style-value-types@5.1.2:
resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
- stylehacks@7.0.7:
- resolution: {integrity: sha512-bJkD0JkEtbRrMFtwgpJyBbFIwfDDONQ1Ov3sDLZQP8HuJ73kBOyx66H4bOcAbVWmnfLdvQ0AJwXxOMkpujcO6g==}
+ stylehacks@7.0.8:
+ resolution: {integrity: sha512-I3f053GBLIiS5Fg6OMFhq/c+yW+5Hc2+1fgq7gElDMMSqwlRb3tBf2ef6ucLStYRpId4q//bQO1FjcyNyy4yDQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -10962,12 +10856,12 @@ packages:
stylelint: ^16.18.0 || ^17.0.0
stylelint-order: ^7.0.0
- stylelint-config-recommended-scss@16.0.2:
- resolution: {integrity: sha512-aUTHhPPWCvFyWaxtckJlCPaXTDFsp4pKO8evXNCsW9OwsaUWyMd6jvcUhSmfGWPrTddvzNqK4rS/UuSLcbVGdQ==}
+ stylelint-config-recommended-scss@17.0.0:
+ resolution: {integrity: sha512-VkVD9r7jfUT/dq3mA3/I1WXXk2U71rO5wvU2yIil9PW5o1g3UM7Xc82vHmuVJHV7Y8ok5K137fmW5u3HbhtTOA==}
engines: {node: '>=20'}
peerDependencies:
postcss: ^8.3.3
- stylelint: ^16.24.0
+ stylelint: ^17.0.0
peerDependenciesMeta:
postcss:
optional: true
@@ -10979,50 +10873,38 @@ packages:
postcss-html: ^1.0.0
stylelint: '>=14.0.0'
- stylelint-config-recommended@17.0.0:
- resolution: {integrity: sha512-WaMSdEiPfZTSFVoYmJbxorJfA610O0tlYuU2aEwY33UQhSPgFbClrVJYWvy3jGJx+XW37O+LyNLiZOEXhKhJmA==}
- engines: {node: '>=18.12.0'}
+ stylelint-config-recommended@18.0.0:
+ resolution: {integrity: sha512-mxgT2XY6YZ3HWWe3Di8umG6aBmWmHTblTgu/f10rqFXnyWxjKWwNdjSWkgkwCtxIKnqjSJzvFmPT5yabVIRxZg==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- stylelint: ^16.23.0
+ stylelint: ^17.0.0
- stylelint-config-standard@39.0.1:
- resolution: {integrity: sha512-b7Fja59EYHRNOTa3aXiuWnhUWXFU2Nfg6h61bLfAb5GS5fX3LMUD0U5t4S8N/4tpHQg3Acs2UVPR9jy2l1g/3A==}
- engines: {node: '>=18.12.0'}
+ stylelint-config-standard@40.0.0:
+ resolution: {integrity: sha512-EznGJxOUhtWck2r6dJpbgAdPATIzvpLdK9+i5qPd4Lx70es66TkBPljSg4wN3Qnc6c4h2n+WbUrUynQ3fanjHw==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- stylelint: ^16.23.0
+ stylelint: ^17.0.0
- stylelint-order@7.0.1:
- resolution: {integrity: sha512-GWPei1zBVDDjxM+/BmcSCiOcHNd8rSqW6FUZtqQGlTRpD0Z5nSzspzWD8rtKif5KPdzUG68DApKEV/y/I9VbTw==}
+ stylelint-order@8.1.0:
+ resolution: {integrity: sha512-ao2+VzToCqbAVGaEYEeSR2zNurvQx+86Kw1d0//kZDx3zlyjvb24dE4J0e4HQgOTruOwZpfaHHRtK58+lrsTAQ==}
engines: {node: '>=20.19.0'}
peerDependencies:
stylelint: ^16.18.0 || ^17.0.0
- stylelint-prettier@5.0.3:
- resolution: {integrity: sha512-B6V0oa35ekRrKZlf+6+jA+i50C4GXJ7X1PPmoCqSUoXN6BrNF6NhqqhanvkLjqw2qgvrS0wjdpeC+Tn06KN3jw==}
- engines: {node: '>=18.12.0'}
+ stylelint-scss@7.0.0:
+ resolution: {integrity: sha512-H88kCC+6Vtzj76NsC8rv6x/LW8slBzIbyeSjsKVlS+4qaEJoDrcJR4L+8JdrR2ORdTscrBzYWiiT2jq6leYR1Q==}
+ engines: {node: '>=20.19.0'}
peerDependencies:
- prettier: '>=3.0.0'
- stylelint: '>=16.0.0'
+ stylelint: ^16.8.2 || ^17.0.0
- stylelint-scss@6.14.0:
- resolution: {integrity: sha512-ZKmHMZolxeuYsnB+PCYrTpFce0/QWX9i9gh0hPXzp73WjuIMqUpzdQaBCrKoLWh6XtCFSaNDErkMPqdjy1/8aA==}
- engines: {node: '>=18.12.0'}
- peerDependencies:
- stylelint: ^16.8.2
-
- stylelint@16.26.1:
- resolution: {integrity: sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw==}
- engines: {node: '>=18.12.0'}
+ stylelint@17.4.0:
+ resolution: {integrity: sha512-3kQ2/cHv3Zt8OBg+h2B8XCx9evEABQIrv4hh3uXahGz/ZEHrTR80zxBiK2NfXNaSoyBzxO1pjsz1Vhdzwn5XSw==}
+ engines: {node: '>=20.19.0'}
hasBin: true
stylis@4.3.6:
resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
- sucrase@3.35.1:
- resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
superjson@2.2.6:
resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
engines: {node: '>=16'}
@@ -11039,16 +10921,16 @@ packages:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
- supports-hyperlinks@3.2.0:
- resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==}
- engines: {node: '>=14.18'}
+ supports-hyperlinks@4.4.0:
+ resolution: {integrity: sha512-UKbpT93hN5Nr9go5UY7bopIB9YQlMz9nm/ct4IXt/irb5YRkn9WaqrOBJGZ5Pwvsd5FQzSVeYlGdXoCAPQZrPg==}
+ engines: {node: '>=20'}
supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte@5.50.1:
- resolution: {integrity: sha512-/Jlom4ddkISyVHXpM2O5dXP9pYnaiFrVQzPbIL1/pEoOa77ZunCb6nDgUCTNCQ/X3t64z9ukrK6R+BbB3kPR3A==}
+ svelte@5.53.11:
+ resolution: {integrity: sha512-GYmqRjRhJYLQBonfdfGAt28gkfWEShrtXKGXcFGneXi502aBE+I1dJcs/YQriByvP6xqXRz/OdBGC6tfvUQHyQ==}
engines: {node: '>=18'}
sver@2.0.1:
@@ -11057,11 +10939,19 @@ packages:
svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- svgo@4.0.0:
- resolution: {integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==}
+ svgo@4.0.1:
+ resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==}
engines: {node: '>=16'}
hasBin: true
+ sync-child-process@1.0.2:
+ resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==}
+ engines: {node: '>=16.0.0'}
+
+ sync-message-port@1.2.0:
+ resolution: {integrity: sha512-gAQ9qrUN/UCypHtGFbbe7Rc/f9bzO88IwrG8TDo/aMKAApKyD6E3W4Cm0EfhfBb6Z6SKt59tTCTfD+n1xmAvMg==}
+ engines: {node: '>=16.0.0'}
+
synckit@0.11.12:
resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -11081,40 +10971,40 @@ packages:
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
engines: {node: '>=20'}
- tailwind-merge@2.6.1:
- resolution: {integrity: sha512-Oo6tHdpZsGpkKG88HJ8RR1rg/RdnEkQEfMoEk2x1XRI3F1AxeU+ijRXpiVUF4UbLfcxxRGw6TbUINKYdWVsQTQ==}
+ tailwind-csstree@0.1.4:
+ resolution: {integrity: sha512-FzD187HuFIZEyeR7Xy6sJbJll2d4SybS90satC8SKIuaNRC05CxMvdzN7BUsfDQffcnabckRM5OIcfArjsZ0mg==}
+ engines: {node: '>=18.18'}
- tailwindcss-animate@1.0.7:
- resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
- peerDependencies:
- tailwindcss: '>=3.0.0 || insiders'
+ tailwind-merge@3.5.0:
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
- tailwindcss@3.4.19:
- resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
- engines: {node: '>=14.0.0'}
- hasBin: true
+ tailwindcss@4.2.1:
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
tapable@2.3.0:
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
- tar-stream@3.1.7:
- resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
+ tar-stream@3.1.8:
+ resolution: {integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==}
- tar@7.5.7:
- resolution: {integrity: sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==}
+ tar@7.5.11:
+ resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==}
engines: {node: '>=18'}
tdesign-icons-vue-next@0.4.2:
resolution: {integrity: sha512-mTPk1ApcCA9oxDiSs9ttMdd09H8ICBooZIr2bwDEELnYr60sYSUbvWojQ2tp84MUAMuw21HgyVyGkT49db0GFg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- tdesign-vue-next@1.18.2:
- resolution: {integrity: sha512-Y7hpEHNQPft7TP0TfgZoBMcXUkILOxZRtV0es7ZFcGmsFqkOl4W2p2amYx78Id4W40VizJXzxP1HzFXRI0MYqw==}
+ tdesign-vue-next@1.18.5:
+ resolution: {integrity: sha512-lc/zhb7sWH6wB4YNbLzNPhwhxYdWqdZpBBgjk9umAomJaPsKW1Y7eLLRFuBuvIopsjvWDE9gvFfI5K6vEZUFnw==}
engines: {node: '>= 18'}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
+
+ teex@1.0.1:
+ resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==}
temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
@@ -11133,30 +11023,16 @@ packages:
engines: {node: '>=10'}
hasBin: true
- text-decoder@1.2.3:
- resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
-
- text-extensions@2.4.0:
- resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
- engines: {node: '>=8'}
+ text-decoder@1.2.7:
+ resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==}
theme-colors@0.1.0:
resolution: {integrity: sha512-6gTEHQqWlQNiOEGHCSSQmU//E5SnXHJ4H7oHQOD8x77CvNYNQAmt73dqR71mzw5ULV87zaHLxK5pIBnsToFuZw==}
- thenify-all@1.6.0:
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
- engines: {node: '>=0.8'}
-
- thenify@3.3.1:
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
-
throttle-debounce@5.0.2:
resolution: {integrity: sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==}
engines: {node: '>=12.22'}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
tiny-emitter@2.1.0:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
@@ -11169,30 +11045,23 @@ packages:
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- tinyexec@0.3.2:
- resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
-
- tinyexec@1.0.2:
- resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
+ tinyexec@1.0.4:
+ resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
engines: {node: '>=18'}
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
- tinymce@7.9.1:
- resolution: {integrity: sha512-zaOHwmiP1EqTeLRXAvVriDb00JYnfEjWGPdKEuac7MiZJ5aiDMZ4Unc98Gmajn+PBljOmO1GKV6G0KwWn3+k8A==}
+ tinymce@7.9.2:
+ resolution: {integrity: sha512-zS2gn2CPQmZhUqLzkhwYH+WGsx/DIRY/mS18RVzsIcuQg2lN2uzaqoHSJU6DdMUpvXBtBFnLNpumC3QrDwLBzA==}
- tinypool@1.1.1:
- resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ tinypool@2.1.0:
+ resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==}
+ engines: {node: ^20.0.0 || >=22.0.0}
- tinyrainbow@2.0.0:
- resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
- engines: {node: '>=14.0.0'}
-
- tinyspy@4.0.4:
- resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
+ tinyrainbow@3.1.0:
+ resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==}
engines: {node: '>=14.0.0'}
tippy.js@6.3.7:
@@ -11202,10 +11071,6 @@ packages:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- to-valid-identifier@1.0.0:
- resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==}
- engines: {node: '>=20'}
-
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
@@ -11226,12 +11091,6 @@ packages:
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- ts-api-utils@1.4.3:
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
- engines: {node: '>=16'}
- peerDependencies:
- typescript: '>=4.2.0'
-
ts-api-utils@2.4.0:
resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
engines: {node: '>=18.12'}
@@ -11243,8 +11102,13 @@ packages:
peerDependencies:
typescript: '>=4.0.0'
- ts-interface-checker@0.1.13:
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ tsconfig-paths-webpack-plugin@4.2.0:
+ resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==}
+ engines: {node: '>=10.13.0'}
+
+ tsconfig-paths@4.2.0:
+ resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
+ engines: {node: '>=6'}
tslib@2.3.0:
resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
@@ -11255,40 +11119,43 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- turbo-darwin-64@2.8.5:
- resolution: {integrity: sha512-3wngnZrjRh6nXjNFURY9yKV7ysTF2gibpzkQjo4/c4eWjGt39q5p/A/wpxpnVBzyT1/auaPuzxJA98Sv1ZCOJg==}
+ turbo-darwin-64@2.8.17:
+ resolution: {integrity: sha512-ZFkv2hv7zHpAPEXBF6ouRRXshllOavYc+jjcrYyVHvxVTTwJWsBZwJ/gpPzmOKGvkSjsEyDO5V6aqqtZzwVF+Q==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.8.5:
- resolution: {integrity: sha512-QAFH6X9h8M4G8uTVRBQFw6EN0LmvYYyNEA2EKJOEogyeULSUA04M+FzYuSScl6uS9P78fzOCC0hhzk/Eqo4GQg==}
+ turbo-darwin-arm64@2.8.17:
+ resolution: {integrity: sha512-5DXqhQUt24ycEryXDfMNKEkW5TBHs+QmU23a2qxXwwFDaJsWcPo2obEhBxxdEPOv7qmotjad+09RGeWCcJ9JDw==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.8.5:
- resolution: {integrity: sha512-o01d5g3CZWavW6vP0KD8wJwdqoHaLuOAb3PvuWY95JEcyPRAKGKNxsTW2xNifY4UYENwSVktFZXZlIO2qnrEmg==}
+ turbo-linux-64@2.8.17:
+ resolution: {integrity: sha512-KLUbz6w7F73D/Ihh51hVagrKR0/CTsPEbRkvXLXvoND014XJ4BCrQUqSxlQ4/hu+nqp1v5WlM85/h3ldeyujuA==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.8.5:
- resolution: {integrity: sha512-YSNVEUeFVGsA2pmPOokiximJOhKQnrg/M7JlJZzefjmp+j4Raj7YqLwK8pQRbAO4XDoojkf4tvmy+mRVW9O0gQ==}
+ turbo-linux-arm64@2.8.17:
+ resolution: {integrity: sha512-pJK67XcNJH40lTAjFu7s/rUlobgVXyB3A3lDoq+/JccB3hf+SysmkpR4Itlc93s8LEaFAI4mamhFuTV17Z6wOg==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@2.8.5:
- resolution: {integrity: sha512-X0MMT+IwWS+veX8h9/SO3+gkorcuGi0nu8CIg0kBhaqbC6Me0tChvHYQpkXj/+5qG5oFpjgkCSCip4/KYesZtg==}
+ turbo-windows-64@2.8.17:
+ resolution: {integrity: sha512-EijeQ6zszDMmGZLP2vT2RXTs/GVi9rM0zv2/G4rNu2SSRSGFapgZdxgW4b5zUYLVaSkzmkpWlGfPfj76SW9yUg==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.8.5:
- resolution: {integrity: sha512-YBHZ1a0y8J0ITKv4TgujMFk04y84KimPDg8Br2lQaywrj3i2eRXLVuxhPi0Sqw+QuoqBVNKsHigxShA/w+rLLQ==}
+ turbo-windows-arm64@2.8.17:
+ resolution: {integrity: sha512-crpfeMPkfECd4V1PQ/hMoiyVcOy04+bWedu/if89S15WhOalHZ2BYUi6DOJhZrszY+mTT99OwpOsj4wNfb/GHQ==}
cpu: [arm64]
os: [win32]
- turbo@2.8.5:
- resolution: {integrity: sha512-pUhV1czFZNGOwnwCLaO727uSDH4botIrhOb/AAFqzfi3x4eeRZoOcAjoidnXD/dwCAw0HJf3+Sy4c2e8SlQKxQ==}
+ turbo@2.8.17:
+ resolution: {integrity: sha512-YwPsNSqU2f/RXU/+Kcb7cPkPZARxom4+me7LKEdN5jsvy2tpfze3zDZ4EiGrJnvOm9Avu9rK0aaYsP7qZ3iz7A==}
hasBin: true
+ tw-animate-css@1.4.0:
+ resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -11359,11 +11226,11 @@ packages:
unctx@2.5.0:
resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
- undici-types@7.16.0:
- resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
- undici@7.21.0:
- resolution: {integrity: sha512-Hn2tCQpoDt1wv23a68Ctc8Cr/BHpUSfaPYrkajTXOS9IKpxVRx/X5m1K2YkbK2ipgZgxXSgsUinl3x+2YdSSfg==}
+ undici@7.24.1:
+ resolution: {integrity: sha512-5xoBibbmnjlcR3jdqtY2Lnx7WbrD/tHlT01TmvqZUFVc9Q1w4+j5hbnapTqbcXITMH1ovjq/W7BkqBilHiVAaA==}
engines: {node: '>=20.18.1'}
unenv@2.0.0-rc.24:
@@ -11385,10 +11252,6 @@ packages:
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
- unicorn-magic@0.1.0:
- resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
- engines: {node: '>=18'}
-
unicorn-magic@0.3.0:
resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
engines: {node: '>=18'}
@@ -11397,8 +11260,8 @@ packages:
resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==}
engines: {node: '>=20'}
- unimport@5.6.0:
- resolution: {integrity: sha512-8rqAmtJV8o60x46kBAJKtHpJDJWkA2xcBqWKPI14MgUb05o1pnpnCnXSxedUXyeq7p8fR5g3pTo2BaswZ9lD9A==}
+ unimport@5.7.0:
+ resolution: {integrity: sha512-njnL6sp8lEA8QQbZrt+52p/g4X0rw3bnGGmUcJnt1jeG8+iiqO779aGz0PirCtydAIVcuTBRlJ52F0u46z309Q==}
engines: {node: '>=18.12.0'}
unique-filename@5.0.0:
@@ -11444,16 +11307,13 @@ packages:
resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==}
engines: {node: '>=20.19.0'}
- unplugin@1.16.1:
- resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==}
- engines: {node: '>=14.0.0'}
-
unplugin@2.3.11:
resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
engines: {node: '>=18.12.0'}
- unrs-resolver@1.11.1:
- resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
+ unplugin@3.0.0:
+ resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
unstorage@1.17.4:
resolution: {integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==}
@@ -11554,19 +11414,30 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ valibot@1.2.0:
+ resolution: {integrity: sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==}
+ peerDependencies:
+ typescript: '>=5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
validator@13.15.26:
resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==}
engines: {node: '>= 0.10'}
+ varint@6.0.0:
+ resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
+
vdirs@0.1.8:
resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vee-validate@4.15.1:
resolution: {integrity: sha512-DkFsiTwEKau8VIxyZBGdO6tOudD+QoUBPuHj3e6QFqmbfCRj1ArmYWue9lEp6jLSWBIw4XPlDLjFIZNLdRAMSg==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vfile-message@4.0.3:
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
@@ -11593,11 +11464,6 @@ packages:
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
- vite-node@3.2.4:
- resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
-
vite-plugin-compression@0.5.1:
resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==}
peerDependencies:
@@ -11642,16 +11508,16 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- vite-plugin-vue-devtools@8.0.6:
- resolution: {integrity: sha512-IiTCIJDb1ZliOT8fPbYXllyfgARzz1+R1r8RN9ScGIDzAB6o8bDME1a9JjrfdSJibL7i8DIPQH+pGv0U7haBeA==}
+ vite-plugin-vue-devtools@8.1.0:
+ resolution: {integrity: sha512-4AvNRePfni3+PqOunACmAImC6SJVpUv6f7/g4oakyre9hYdEMrvDYlNmTZQsJPzVLMcGzn1FvSEqJ/n4HQ9cDg==}
engines: {node: '>=v14.21.3'}
peerDependencies:
- vite: ^6.0.0 || ^7.0.0-0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
- vite-plugin-vue-inspector@5.3.2:
- resolution: {integrity: sha512-YvEKooQcSiBTAs0DoYLfefNja9bLgkFM7NI2b07bE2SruuvX0MEa9cMaxjKVMkeCp5Nz9FRIdcN1rOdFVBeL6Q==}
+ vite-plugin-vue-inspector@5.4.0:
+ resolution: {integrity: sha512-Iq/024CydcE46FZqWPU4t4lw4uYOdLnFSO1RNxJVt2qY9zxIjmnkBqhHnYaReWM82kmNnaXs7OkfgRrV2GEjyw==}
peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
vite@5.4.21:
resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
@@ -11684,15 +11550,16 @@ packages:
terser:
optional: true
- vite@7.3.1:
- resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
+ vite@8.0.0:
+ resolution: {integrity: sha512-fPGaRNj9Zytaf8LEiBhY7Z6ijnFKdzU/+mL8EFBaKr7Vw1/FWcTBAMW0wLPJAGMPX38ZPVCVgLceWiEqeoqL2Q==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
'@types/node': ^20.19.0 || >=22.12.0
- jiti: ^2.6.1
+ '@vitejs/devtools': ^0.0.0-alpha.31
+ esbuild: ^0.27.4
+ jiti: '>=1.21.0'
less: ^4.0.0
- lightningcss: ^1.21.0
sass: ^1.70.0
sass-embedded: ^1.70.0
stylus: '>=0.54.8'
@@ -11703,12 +11570,14 @@ packages:
peerDependenciesMeta:
'@types/node':
optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
jiti:
optional: true
less:
optional: true
- lightningcss:
- optional: true
sass:
optional: true
sass-embedded:
@@ -11744,26 +11613,33 @@ packages:
postcss:
optional: true
- vitest@3.2.4:
- resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ vitest@4.1.0:
+ resolution: {integrity: sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==}
+ engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
- '@types/debug': ^4.1.12
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
- '@vitest/browser': 3.2.4
- '@vitest/ui': 3.2.4
+ '@opentelemetry/api': ^1.9.0
+ '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
+ '@vitest/browser-playwright': 4.1.0
+ '@vitest/browser-preview': 4.1.0
+ '@vitest/browser-webdriverio': 4.1.0
+ '@vitest/ui': 4.1.0
happy-dom: '*'
jsdom: '*'
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
- '@types/debug':
+ '@opentelemetry/api':
optional: true
'@types/node':
optional: true
- '@vitest/browser':
+ '@vitest/browser-playwright':
+ optional: true
+ '@vitest/browser-preview':
+ optional: true
+ '@vitest/browser-webdriverio':
optional: true
'@vitest/ui':
optional: true
@@ -11775,7 +11651,7 @@ packages:
vooks@0.2.12:
resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vscode-languageserver-textdocument@1.0.12:
resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
@@ -11792,7 +11668,7 @@ packages:
hasBin: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.5.27
+ vue: ^3.5.30
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -11800,37 +11676,47 @@ packages:
vue-dompurify-html@5.3.0:
resolution: {integrity: sha512-HJQGBHbfSPcb6Mu97McdKbX7TqRHZa6Ji8OCpCNyuHca5QvQZ8IiuwghFPSO8OkSQfqXPNPKFMZdCOrnGGmOSQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- vue-eslint-parser@10.2.0:
- resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==}
+ vue-eslint-parser@10.4.0:
+ resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- vue-i18n@11.2.8:
- resolution: {integrity: sha512-vJ123v/PXCZntd6Qj5Jumy7UBmIuE92VrtdX+AXr+1WzdBHojiBxnAxdfctUFL+/JIN+VQH4BhsfTtiGsvVObg==}
+ vue-i18n@11.3.0:
+ resolution: {integrity: sha512-1J+xDfDJTLhDxElkd3+XUhT7FYSZd2b8pa7IRKGxhWH/8yt6PTvi3xmWhGwhYT5EaXdatui11pF2R6tL73/zPA==}
engines: {node: '>= 16'}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vue-json-viewer@3.0.4:
resolution: {integrity: sha512-pnC080rTub6YjccthVSNQod2z9Sl5IUUq46srXtn6rxwhW8QM4rlYn+CTSLFKXWfw+N3xv77Cioxw7B4XUKIbQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- vue-router@4.6.4:
- resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==}
+ vue-router@5.0.3:
+ resolution: {integrity: sha512-nG1c7aAFac7NYj8Hluo68WyWfc41xkEjaR0ViLHCa3oDvTQ/nIuLJlXJX1NUPw/DXzx/8+OKMng045HHQKQKWw==}
peerDependencies:
- vue: ^3.5.27
+ '@pinia/colada': '>=0.21.2'
+ '@vue/compiler-sfc': ^3.5.17
+ pinia: ^3.0.4
+ vue: ^3.5.30
+ peerDependenciesMeta:
+ '@pinia/colada':
+ optional: true
+ '@vue/compiler-sfc':
+ optional: true
+ pinia:
+ optional: true
vue-tippy@6.7.1:
resolution: {integrity: sha512-gdHbBV5/Vc8gH87hQHLA7TN1K4BlLco3MAPrTb70ZYGXxx+55rAU4a4mt0fIoP+gB3etu1khUZ6c29Br1n0CiA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- vue-tsc@3.2.4:
- resolution: {integrity: sha512-xj3YCvSLNDKt1iF9OcImWHhmYcihVu9p4b9s4PGR/qp6yhW+tZJaypGxHScRyOrdnHvaOeF+YkZOdKwbgGvp5g==}
+ vue-tsc@3.2.5:
+ resolution: {integrity: sha512-/htfTCMluQ+P2FISGAooul8kO4JMheOTCbCy4M6dYnYYjqLe3BExZudAua6MSIKSFYQtFOYAll7XobYwcpokGA==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
@@ -11839,7 +11725,7 @@ packages:
resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==}
engines: {node: '>=10.15.0'}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vue3-print-nb@0.1.4:
resolution: {integrity: sha512-LExI7viEzplR6ZKQ2b+V4U0cwGYbVD4fut/XHvk3UPGlT5CcvIGs6VlwGp107aKgk6P8Pgx4rco3Rehv2lti3A==}
@@ -11847,10 +11733,10 @@ packages:
vue3-signature@0.2.4:
resolution: {integrity: sha512-XFwwFVK9OG3F085pKIq2SlNVqx32WdFH+TXbGEWc5FfEKpx8oMmZuAwZZ50K/pH2FgmJSE8IRwU9DDhrLpd6iA==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- vue@3.5.28:
- resolution: {integrity: sha512-BRdrNfeoccSoIZeIhyPBfvWSLFP4q8J3u8Ju8Ug5vu3LdD+yTM13Sg4sKtljxozbnuMu1NB1X5HBHRYUzFocKg==}
+ vue@3.5.30:
+ resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -11860,18 +11746,18 @@ packages:
vuedraggable@4.1.0:
resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
vueuc@0.4.65:
resolution: {integrity: sha512-lXuMl+8gsBmruudfxnMF9HW4be8rFziylXFu1VHVNbLVhRTXXV4njvpRuJapD/8q+oFEMSfQMH16E/85VoWRyQ==}
peerDependencies:
- vue: ^3.5.27
+ vue: ^3.5.30
- vxe-pc-ui@4.12.36:
- resolution: {integrity: sha512-XYTC8aQ26gXY8OZOaiB3zPCf4R29zqUqhMu8Ah7YtjPLrJSE+U5gel07vnNt7UQ78o13QBCehaf2TVlbH3cAPg==}
+ vxe-pc-ui@4.13.5:
+ resolution: {integrity: sha512-VdKKZjZ3z/ct2VTET5r+3BJ2yXVZKYZXO+F5IxOl/6yG2HzRLzY/nw4ZX8wcaV6qd286e4lwRgHsmexa2n+vRQ==}
- vxe-table@4.17.48:
- resolution: {integrity: sha512-hd2j3FMA5vu3Qc3wyCavwMdsaT5uEq1GCux3eV5VKPkd/MoSdh9DIyMzmqDKh/0QnpVPsoQuIZPJi/govnw2Iw==}
+ vxe-table@4.18.2:
+ resolution: {integrity: sha512-0PW2V0VHrG3IaxBoTrNQPuxq38nhM1ZIHu0mjK7AxqUkls6I5ncy0GYNiP2E1R3qVVxqPQnWRnoKNE8c+tIuVg==}
w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -11895,10 +11781,6 @@ packages:
webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
- webidl-conversions@7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
@@ -12029,14 +11911,30 @@ packages:
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
engines: {node: '>=18'}
- write-file-atomic@5.0.1:
- resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ write-file-atomic@7.0.1:
+ resolution: {integrity: sha512-OTIk8iR8/aCRWBqvxrzxR0hgxWpnYBblY1S5hDWBQfk/VFmJwzmJgQFN3WsoUKHISv2eAwe+PpbUzyL1CKTLXg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ ws@8.19.0:
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
wsl-utils@0.1.0:
resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
engines: {node: '>=18'}
+ wsl-utils@0.3.1:
+ resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==}
+ engines: {node: '>=20'}
+
xdg-basedir@5.1.0:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
@@ -12044,6 +11942,9 @@ packages:
xe-utils@3.9.1:
resolution: {integrity: sha512-Ujk5UmoH6Iaqhgz3oGwfCXVcMdUJKlXnfvLABdnMyseMG0eHsX2mcCvLd/8sGlIXtfwsprI9bW7vgcVognLmqQ==}
+ xe-utils@4.0.4:
+ resolution: {integrity: sha512-1IUuTZRHa5w88Y3kEf0O4Y/99O0hIdh5o8EXqmgqyhY3MaT1xWZgS5iuD7pys6v+9JrJOzECb07+6gxRahDsyw==}
+
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -12094,6 +11995,10 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
@@ -12106,6 +12011,10 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -12121,8 +12030,8 @@ packages:
youch-core@0.3.3:
resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==}
- youch@4.1.0-beta.13:
- resolution: {integrity: sha512-3+AG1Xvt+R7M7PSDudhbfbwiyveW6B8PLBIwTyEC598biEYIjHhC89i6DBEvR0EZUjGY3uGSnC429HpIa2Z09g==}
+ youch@4.1.0:
+ resolution: {integrity: sha512-cYekNh2tUoU+voS11X0D0UQntVCSO6LQ1h10VriQGmfbpf0mnGTruwZICts23UUNiZCXm8H8hQBtRrdsbhuNNg==}
zeebe-bpmn-moddle@1.12.0:
resolution: {integrity: sha512-wYKfgdV5suCNx4IVaq0qOjHRxSQ5XOkxfwC8EBHuGCtmEVk8zv1VRg0opV0kVQe89jvRH3iF3Yl/DoB6qiCV5Q==}
@@ -12155,119 +12064,117 @@ packages:
snapshots:
- '@algolia/abtesting@1.14.0':
+ '@algolia/abtesting@1.15.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)
- '@algolia/client-search': 5.48.0
- algoliasearch: 5.48.0
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)
+ '@algolia/client-search': 5.49.2
+ algoliasearch: 5.49.2
- '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)':
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)':
dependencies:
- '@algolia/client-search': 5.48.0
- algoliasearch: 5.48.0
+ '@algolia/client-search': 5.49.2
+ algoliasearch: 5.49.2
- '@algolia/client-abtesting@5.48.0':
+ '@algolia/client-abtesting@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/client-analytics@5.48.0':
+ '@algolia/client-analytics@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/client-common@5.48.0': {}
+ '@algolia/client-common@5.49.2': {}
- '@algolia/client-insights@5.48.0':
+ '@algolia/client-insights@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/client-personalization@5.48.0':
+ '@algolia/client-personalization@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/client-query-suggestions@5.48.0':
+ '@algolia/client-query-suggestions@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/client-search@5.48.0':
+ '@algolia/client-search@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/ingestion@1.48.0':
+ '@algolia/ingestion@1.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/monitoring@1.48.0':
+ '@algolia/monitoring@1.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/recommend@5.48.0':
+ '@algolia/recommend@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/client-common': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
- '@algolia/requester-browser-xhr@5.48.0':
+ '@algolia/requester-browser-xhr@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
+ '@algolia/client-common': 5.49.2
- '@algolia/requester-fetch@5.48.0':
+ '@algolia/requester-fetch@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
+ '@algolia/client-common': 5.49.2
- '@algolia/requester-node-http@5.48.0':
+ '@algolia/requester-node-http@5.49.2':
dependencies:
- '@algolia/client-common': 5.48.0
-
- '@alloc/quick-lru@5.2.0': {}
+ '@algolia/client-common': 5.49.2
'@ant-design/colors@6.0.0':
dependencies:
@@ -12285,80 +12192,78 @@ snapshots:
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons-vue@7.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@ant-design/icons-vue@7.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@ant-design/colors': 6.0.0
'@ant-design/icons-svg': 4.4.2
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@antdv-next/cssinjs@1.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@antdv-next/cssinjs@1.0.4(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
csstype: 3.2.3
- defu: 6.1.4
stylis: 4.3.6
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@antdv-next/icons@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@antdv-next/icons@1.0.5(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@ant-design/colors': 7.2.1
'@ant-design/icons-svg': 4.4.2
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- es-toolkit: 1.43.0
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
'@antfu/install-pkg@1.1.0':
dependencies:
package-manager-detector: 1.6.0
- tinyexec: 1.0.2
+ tinyexec: 1.0.4
- '@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)':
+ '@apideck/better-ajv-errors@0.3.6(ajv@8.18.0)':
dependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
- '@ast-grep/napi-darwin-arm64@0.39.9':
+ '@ast-grep/napi-darwin-arm64@0.41.1':
optional: true
- '@ast-grep/napi-darwin-x64@0.39.9':
+ '@ast-grep/napi-darwin-x64@0.41.1':
optional: true
- '@ast-grep/napi-linux-arm64-gnu@0.39.9':
+ '@ast-grep/napi-linux-arm64-gnu@0.41.1':
optional: true
- '@ast-grep/napi-linux-arm64-musl@0.39.9':
+ '@ast-grep/napi-linux-arm64-musl@0.41.1':
optional: true
- '@ast-grep/napi-linux-x64-gnu@0.39.9':
+ '@ast-grep/napi-linux-x64-gnu@0.41.1':
optional: true
- '@ast-grep/napi-linux-x64-musl@0.39.9':
+ '@ast-grep/napi-linux-x64-musl@0.41.1':
optional: true
- '@ast-grep/napi-win32-arm64-msvc@0.39.9':
+ '@ast-grep/napi-win32-arm64-msvc@0.41.1':
optional: true
- '@ast-grep/napi-win32-ia32-msvc@0.39.9':
+ '@ast-grep/napi-win32-ia32-msvc@0.41.1':
optional: true
- '@ast-grep/napi-win32-x64-msvc@0.39.9':
+ '@ast-grep/napi-win32-x64-msvc@0.41.1':
optional: true
- '@ast-grep/napi@0.39.9':
+ '@ast-grep/napi@0.41.1':
optionalDependencies:
- '@ast-grep/napi-darwin-arm64': 0.39.9
- '@ast-grep/napi-darwin-x64': 0.39.9
- '@ast-grep/napi-linux-arm64-gnu': 0.39.9
- '@ast-grep/napi-linux-arm64-musl': 0.39.9
- '@ast-grep/napi-linux-x64-gnu': 0.39.9
- '@ast-grep/napi-linux-x64-musl': 0.39.9
- '@ast-grep/napi-win32-arm64-msvc': 0.39.9
- '@ast-grep/napi-win32-ia32-msvc': 0.39.9
- '@ast-grep/napi-win32-x64-msvc': 0.39.9
+ '@ast-grep/napi-darwin-arm64': 0.41.1
+ '@ast-grep/napi-darwin-x64': 0.41.1
+ '@ast-grep/napi-linux-arm64-gnu': 0.41.1
+ '@ast-grep/napi-linux-arm64-musl': 0.41.1
+ '@ast-grep/napi-linux-x64-gnu': 0.41.1
+ '@ast-grep/napi-linux-x64-musl': 0.41.1
+ '@ast-grep/napi-win32-arm64-msvc': 0.41.1
+ '@ast-grep/napi-win32-ia32-msvc': 0.41.1
+ '@ast-grep/napi-win32-x64-msvc': 0.41.1
'@babel/code-frame@7.29.0':
dependencies:
@@ -12428,7 +12333,7 @@ snapshots:
regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.29.0)':
+ '@babel/helper-define-polyfill-provider@0.6.7(@babel/core@7.29.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-compilation-targets': 7.28.6
@@ -13014,9 +12919,9 @@ snapshots:
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
'@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.29.0)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0)
- babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0)
- babel-plugin-polyfill-corejs3: 0.14.0(@babel/core@7.29.0)
- babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0)
+ babel-plugin-polyfill-corejs2: 0.4.16(@babel/core@7.29.0)
+ babel-plugin-polyfill-corejs3: 0.14.1(@babel/core@7.29.0)
+ babel-plugin-polyfill-regenerator: 0.6.7(@babel/core@7.29.0)
core-js-compat: 3.48.0
semver: 6.3.1
transitivePeerDependencies:
@@ -13071,91 +12976,93 @@ snapshots:
'@bpmn-io/cm-theme@0.1.0-alpha.2':
dependencies:
- '@codemirror/language': 6.12.1
- '@codemirror/view': 6.39.13
+ '@codemirror/language': 6.12.2
+ '@codemirror/view': 6.40.0
'@lezer/highlight': 1.2.3
'@bpmn-io/diagram-js-ui@0.2.3':
dependencies:
htm: 3.1.1
- preact: 10.28.3
+ preact: 10.29.0
'@bpmn-io/extract-process-variables@0.8.0':
dependencies:
min-dash: 4.2.3
- '@bpmn-io/feel-editor@2.4.0':
+ '@bpmn-io/feel-editor@2.5.1':
dependencies:
'@bpmn-io/feel-lint': 3.1.0
'@bpmn-io/lang-feel': 3.0.0
- '@camunda/feel-builtins': 0.3.0
- '@codemirror/autocomplete': 6.20.0
- '@codemirror/commands': 6.10.2
- '@codemirror/language': 6.12.1
- '@codemirror/lint': 6.9.3
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@camunda/feel-builtins': 1.0.0
+ '@codemirror/autocomplete': 6.20.1
+ '@codemirror/commands': 6.10.3
+ '@codemirror/language': 6.12.2
+ '@codemirror/lint': 6.9.5
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
'@lezer/highlight': 1.2.3
- min-dom: 5.2.0
+ min-dom: 5.3.0
mitt: 3.0.1
'@bpmn-io/feel-lint@3.1.0':
dependencies:
- '@bpmn-io/lezer-feel': 2.2.1
- '@codemirror/language': 6.12.1
+ '@bpmn-io/lezer-feel': 2.3.0
+ '@codemirror/language': 6.12.2
'@bpmn-io/feelin@6.1.0':
dependencies:
- '@bpmn-io/lezer-feel': 2.2.1
+ '@bpmn-io/lezer-feel': 2.3.0
'@lezer/common': 1.5.1
luxon: 3.7.2
min-dash: 5.0.0
'@bpmn-io/lang-feel@3.0.0':
dependencies:
- '@bpmn-io/lezer-feel': 2.2.1
- '@codemirror/autocomplete': 6.20.0
- '@codemirror/language': 6.12.1
+ '@bpmn-io/lezer-feel': 2.3.0
+ '@codemirror/autocomplete': 6.20.1
+ '@codemirror/language': 6.12.2
'@lezer/common': 1.5.1
- '@bpmn-io/lezer-feel@2.2.1':
+ '@bpmn-io/lezer-feel@2.3.0':
dependencies:
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.8
min-dash: 5.0.0
- '@bpmn-io/properties-panel@3.38.0':
+ '@bpmn-io/properties-panel@3.40.3':
dependencies:
- '@bpmn-io/feel-editor': 2.4.0
- '@carbon/icons': 11.74.0
- '@codemirror/view': 6.39.13
+ '@bpmn-io/feel-editor': 2.5.1
+ '@carbon/icons': 11.76.0
+ '@codemirror/view': 6.40.0
classnames: 2.5.1
feelers: 1.5.1
- focus-trap: 7.8.0
+ focus-trap: 8.0.0
min-dash: 5.0.0
- min-dom: 5.2.0
+ min-dom: 5.3.0
- '@cacheable/memory@2.0.7':
+ '@bufbuild/protobuf@2.11.0': {}
+
+ '@cacheable/memory@2.0.8':
dependencies:
- '@cacheable/utils': 2.3.4
+ '@cacheable/utils': 2.4.0
'@keyv/bigmap': 1.3.1(keyv@5.6.0)
hookified: 1.15.1
keyv: 5.6.0
- '@cacheable/utils@2.3.4':
+ '@cacheable/utils@2.4.0':
dependencies:
- hashery: 1.4.0
+ hashery: 1.5.0
keyv: 5.6.0
- '@camunda/feel-builtins@0.3.0': {}
+ '@camunda/feel-builtins@1.0.0': {}
- '@carbon/icons@11.74.0':
+ '@carbon/icons@11.76.0':
dependencies:
'@ibm/telemetry-js': 1.11.0
- '@changesets/apply-release-plan@7.0.14':
+ '@changesets/apply-release-plan@7.1.0':
dependencies:
- '@changesets/config': 3.1.2
+ '@changesets/config': 3.1.3
'@changesets/get-version-range-type': 0.4.0
'@changesets/git': 3.0.4
'@changesets/should-skip-package': 0.1.2
@@ -13182,38 +13089,36 @@ snapshots:
dependencies:
'@changesets/types': 6.1.0
- '@changesets/changelog-github@0.5.2':
+ '@changesets/changelog-github@0.6.0':
dependencies:
- '@changesets/get-github-info': 0.7.0
+ '@changesets/get-github-info': 0.8.0
'@changesets/types': 6.1.0
dotenv: 8.6.0
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.29.8(@types/node@24.10.13)':
+ '@changesets/cli@2.30.0(@types/node@25.5.0)':
dependencies:
- '@changesets/apply-release-plan': 7.0.14
+ '@changesets/apply-release-plan': 7.1.0
'@changesets/assemble-release-plan': 6.0.9
'@changesets/changelog-git': 0.2.1
- '@changesets/config': 3.1.2
+ '@changesets/config': 3.1.3
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.1.3
- '@changesets/get-release-plan': 4.0.14
+ '@changesets/get-release-plan': 4.0.15
'@changesets/git': 3.0.4
'@changesets/logger': 0.1.1
'@changesets/pre': 2.0.2
- '@changesets/read': 0.6.6
+ '@changesets/read': 0.6.7
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.3(@types/node@24.10.13)
+ '@inquirer/external-editor': 1.0.3(@types/node@25.5.0)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
- ci-info: 3.9.0
enquirer: 2.4.1
fs-extra: 7.0.1
mri: 1.2.0
- p-limit: 2.3.0
package-manager-detector: 0.2.11
picocolors: 1.1.1
resolve-from: 5.0.0
@@ -13223,11 +13128,12 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@changesets/config@3.1.2':
+ '@changesets/config@3.1.3':
dependencies:
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.1.3
'@changesets/logger': 0.1.1
+ '@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
@@ -13244,19 +13150,19 @@ snapshots:
picocolors: 1.1.1
semver: 7.7.4
- '@changesets/get-github-info@0.7.0':
+ '@changesets/get-github-info@0.8.0':
dependencies:
dataloader: 1.4.0
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- '@changesets/get-release-plan@4.0.14':
+ '@changesets/get-release-plan@4.0.15':
dependencies:
'@changesets/assemble-release-plan': 6.0.9
- '@changesets/config': 3.1.2
+ '@changesets/config': 3.1.3
'@changesets/pre': 2.0.2
- '@changesets/read': 0.6.6
+ '@changesets/read': 0.6.7
'@changesets/types': 6.1.0
'@manypkg/get-packages': 1.1.3
@@ -13274,7 +13180,7 @@ snapshots:
dependencies:
picocolors: 1.1.1
- '@changesets/parse@0.4.2':
+ '@changesets/parse@0.4.3':
dependencies:
'@changesets/types': 6.1.0
js-yaml: 4.1.1
@@ -13286,11 +13192,11 @@ snapshots:
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- '@changesets/read@0.6.6':
+ '@changesets/read@0.6.7':
dependencies:
'@changesets/git': 3.0.4
'@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.2
+ '@changesets/parse': 0.4.3
'@changesets/types': 6.1.0
fs-extra: 7.0.1
p-filter: 2.1.0
@@ -13312,192 +13218,202 @@ snapshots:
human-id: 4.1.3
prettier: 2.8.8
- '@clack/core@0.5.0':
+ '@clack/core@1.1.0':
dependencies:
- picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.11.0':
+ '@clack/prompts@1.1.0':
dependencies:
- '@clack/core': 0.5.0
- picocolors: 1.1.1
+ '@clack/core': 1.1.0
sisteransi: 1.0.5
'@cloudflare/kv-asset-handler@0.4.2': {}
- '@codemirror/autocomplete@6.20.0':
+ '@codemirror/autocomplete@6.20.1':
dependencies:
- '@codemirror/language': 6.12.1
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@codemirror/language': 6.12.2
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
'@lezer/common': 1.5.1
- '@codemirror/commands@6.10.2':
+ '@codemirror/commands@6.10.3':
dependencies:
- '@codemirror/language': 6.12.1
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@codemirror/language': 6.12.2
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
'@lezer/common': 1.5.1
- '@codemirror/language@6.12.1':
+ '@codemirror/language@6.12.2':
dependencies:
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
'@lezer/common': 1.5.1
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.8
style-mod: 4.1.3
- '@codemirror/lint@6.9.3':
+ '@codemirror/lint@6.9.5':
dependencies:
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
crelt: 1.0.6
- '@codemirror/state@6.5.4':
+ '@codemirror/state@6.6.0':
dependencies:
'@marijn/find-cluster-break': 1.0.2
- '@codemirror/view@6.39.13':
+ '@codemirror/view@6.40.0':
dependencies:
- '@codemirror/state': 6.5.4
+ '@codemirror/state': 6.6.0
crelt: 1.0.6
style-mod: 4.1.3
w3c-keyname: 2.2.8
- '@commitlint/cli@19.8.1(@types/node@24.10.13)(typescript@5.9.3)':
+ '@commitlint/cli@20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
dependencies:
- '@commitlint/format': 19.8.1
- '@commitlint/lint': 19.8.1
- '@commitlint/load': 19.8.1(@types/node@24.10.13)(typescript@5.9.3)
- '@commitlint/read': 19.8.1
- '@commitlint/types': 19.8.1
- tinyexec: 1.0.2
+ '@commitlint/format': 20.4.4
+ '@commitlint/lint': 20.4.4
+ '@commitlint/load': 20.4.4(@types/node@25.5.0)(typescript@5.9.3)
+ '@commitlint/read': 20.4.4(conventional-commits-parser@6.3.0)
+ '@commitlint/types': 20.4.4
+ tinyexec: 1.0.4
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
+ - conventional-commits-filter
+ - conventional-commits-parser
- typescript
- '@commitlint/config-conventional@19.8.1':
+ '@commitlint/config-conventional@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
- conventional-changelog-conventionalcommits: 7.0.2
+ '@commitlint/types': 20.4.4
+ conventional-changelog-conventionalcommits: 9.3.0
- '@commitlint/config-validator@19.8.1':
+ '@commitlint/config-validator@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
- ajv: 8.17.1
+ '@commitlint/types': 20.4.4
+ ajv: 8.18.0
- '@commitlint/ensure@19.8.1':
+ '@commitlint/ensure@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
+ '@commitlint/types': 20.4.4
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- '@commitlint/execute-rule@19.8.1': {}
+ '@commitlint/execute-rule@20.0.0': {}
- '@commitlint/format@19.8.1':
+ '@commitlint/format@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
- chalk: 5.6.2
+ '@commitlint/types': 20.4.4
+ picocolors: 1.1.1
- '@commitlint/is-ignored@19.8.1':
+ '@commitlint/is-ignored@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
+ '@commitlint/types': 20.4.4
semver: 7.7.4
- '@commitlint/lint@19.8.1':
+ '@commitlint/lint@20.4.4':
dependencies:
- '@commitlint/is-ignored': 19.8.1
- '@commitlint/parse': 19.8.1
- '@commitlint/rules': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/is-ignored': 20.4.4
+ '@commitlint/parse': 20.4.4
+ '@commitlint/rules': 20.4.4
+ '@commitlint/types': 20.4.4
- '@commitlint/load@19.8.1(@types/node@24.10.13)(typescript@5.9.3)':
+ '@commitlint/load@20.4.4(@types/node@25.5.0)(typescript@5.9.3)':
dependencies:
- '@commitlint/config-validator': 19.8.1
- '@commitlint/execute-rule': 19.8.1
- '@commitlint/resolve-extends': 19.8.1
- '@commitlint/types': 19.8.1
- chalk: 5.6.2
- cosmiconfig: 9.0.0(typescript@5.9.3)
- cosmiconfig-typescript-loader: 6.2.0(@types/node@24.10.13)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3)
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- lodash.uniq: 4.5.0
+ '@commitlint/config-validator': 20.4.4
+ '@commitlint/execute-rule': 20.0.0
+ '@commitlint/resolve-extends': 20.4.4
+ '@commitlint/types': 20.4.4
+ cosmiconfig: 9.0.1(typescript@5.9.3)
+ cosmiconfig-typescript-loader: 6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3)
+ is-plain-obj: 4.1.0
+ lodash.mergewith: 4.6.2
+ picocolors: 1.1.1
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/message@19.8.1': {}
+ '@commitlint/message@20.4.3': {}
- '@commitlint/parse@19.8.1':
+ '@commitlint/parse@20.4.4':
dependencies:
- '@commitlint/types': 19.8.1
- conventional-changelog-angular: 7.0.0
- conventional-commits-parser: 5.0.0
+ '@commitlint/types': 20.4.4
+ conventional-changelog-angular: 8.3.0
+ conventional-commits-parser: 6.3.0
- '@commitlint/read@19.8.1':
+ '@commitlint/read@20.4.4(conventional-commits-parser@6.3.0)':
dependencies:
- '@commitlint/top-level': 19.8.1
- '@commitlint/types': 19.8.1
- git-raw-commits: 4.0.0
+ '@commitlint/top-level': 20.4.3
+ '@commitlint/types': 20.4.4
+ git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0)
minimist: 1.2.8
- tinyexec: 1.0.2
+ tinyexec: 1.0.4
+ transitivePeerDependencies:
+ - conventional-commits-filter
+ - conventional-commits-parser
- '@commitlint/resolve-extends@19.8.1':
+ '@commitlint/resolve-extends@20.4.4':
dependencies:
- '@commitlint/config-validator': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/config-validator': 20.4.4
+ '@commitlint/types': 20.4.4
global-directory: 4.0.1
import-meta-resolve: 4.2.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
- '@commitlint/rules@19.8.1':
+ '@commitlint/rules@20.4.4':
dependencies:
- '@commitlint/ensure': 19.8.1
- '@commitlint/message': 19.8.1
- '@commitlint/to-lines': 19.8.1
- '@commitlint/types': 19.8.1
+ '@commitlint/ensure': 20.4.4
+ '@commitlint/message': 20.4.3
+ '@commitlint/to-lines': 20.0.0
+ '@commitlint/types': 20.4.4
- '@commitlint/to-lines@19.8.1': {}
+ '@commitlint/to-lines@20.0.0': {}
- '@commitlint/top-level@19.8.1':
+ '@commitlint/top-level@20.4.3':
dependencies:
- find-up: 7.0.0
+ escalade: 3.2.0
- '@commitlint/types@19.8.1':
+ '@commitlint/types@20.4.4':
dependencies:
- '@types/conventional-commits-parser': 5.0.2
- chalk: 5.6.2
+ conventional-commits-parser: 6.3.0
+ picocolors: 1.1.1
- '@cspell/cspell-bundled-dicts@9.6.4':
+ '@conventional-changelog/git-client@2.6.0(conventional-commits-parser@6.3.0)':
+ dependencies:
+ '@simple-libs/child-process-utils': 1.0.2
+ '@simple-libs/stream-utils': 1.2.0
+ semver: 7.7.4
+ optionalDependencies:
+ conventional-commits-parser: 6.3.0
+
+ '@cspell/cspell-bundled-dicts@9.7.0':
dependencies:
'@cspell/dict-ada': 4.1.1
'@cspell/dict-al': 1.1.1
'@cspell/dict-aws': 4.0.17
'@cspell/dict-bash': 4.2.2
- '@cspell/dict-companies': 3.2.10
+ '@cspell/dict-companies': 3.2.11
'@cspell/dict-cpp': 7.0.2
'@cspell/dict-cryptocurrencies': 5.0.5
'@cspell/dict-csharp': 4.0.8
- '@cspell/dict-css': 4.0.19
+ '@cspell/dict-css': 4.1.1
'@cspell/dict-dart': 2.3.2
'@cspell/dict-data-science': 2.0.13
'@cspell/dict-django': 4.1.6
'@cspell/dict-docker': 1.1.17
- '@cspell/dict-dotnet': 5.0.11
+ '@cspell/dict-dotnet': 5.0.12
'@cspell/dict-elixir': 4.0.8
'@cspell/dict-en-common-misspellings': 2.1.12
- '@cspell/dict-en-gb-mit': 3.1.18
- '@cspell/dict-en_us': 4.4.29
- '@cspell/dict-filetypes': 3.0.15
+ '@cspell/dict-en-gb-mit': 3.1.20
+ '@cspell/dict-en_us': 4.4.31
+ '@cspell/dict-filetypes': 3.0.17
'@cspell/dict-flutter': 1.1.1
- '@cspell/dict-fonts': 4.0.5
+ '@cspell/dict-fonts': 4.0.6
'@cspell/dict-fsharp': 1.1.1
'@cspell/dict-fullstack': 3.2.8
'@cspell/dict-gaming-terms': 1.1.2
@@ -13505,30 +13421,30 @@ snapshots:
'@cspell/dict-golang': 6.0.26
'@cspell/dict-google': 1.0.9
'@cspell/dict-haskell': 4.0.6
- '@cspell/dict-html': 4.0.14
+ '@cspell/dict-html': 4.0.15
'@cspell/dict-html-symbol-entities': 4.0.5
'@cspell/dict-java': 5.0.12
'@cspell/dict-julia': 1.1.1
'@cspell/dict-k8s': 1.0.12
'@cspell/dict-kotlin': 1.1.1
- '@cspell/dict-latex': 5.0.0
+ '@cspell/dict-latex': 5.1.0
'@cspell/dict-lorem-ipsum': 4.0.5
'@cspell/dict-lua': 4.0.8
'@cspell/dict-makefile': 1.0.5
- '@cspell/dict-markdown': 2.0.14(@cspell/dict-css@4.0.19)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.14)(@cspell/dict-typescript@3.2.3)
+ '@cspell/dict-markdown': 2.0.16(@cspell/dict-css@4.1.1)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.15)(@cspell/dict-typescript@3.2.3)
'@cspell/dict-monkeyc': 1.0.12
'@cspell/dict-node': 5.0.9
- '@cspell/dict-npm': 5.2.33
+ '@cspell/dict-npm': 5.2.37
'@cspell/dict-php': 4.1.1
'@cspell/dict-powershell': 5.0.15
- '@cspell/dict-public-licenses': 2.0.15
+ '@cspell/dict-public-licenses': 2.0.16
'@cspell/dict-python': 4.2.25
'@cspell/dict-r': 2.1.1
- '@cspell/dict-ruby': 5.1.0
+ '@cspell/dict-ruby': 5.1.1
'@cspell/dict-rust': 4.1.2
'@cspell/dict-scala': 5.0.9
'@cspell/dict-shell': 1.1.2
- '@cspell/dict-software-terms': 5.1.20
+ '@cspell/dict-software-terms': 5.2.0
'@cspell/dict-sql': 2.2.1
'@cspell/dict-svelte': 1.0.7
'@cspell/dict-swift': 2.0.6
@@ -13537,25 +13453,25 @@ snapshots:
'@cspell/dict-vue': 3.0.5
'@cspell/dict-zig': 1.0.0
- '@cspell/cspell-json-reporter@9.6.4':
+ '@cspell/cspell-json-reporter@9.7.0':
dependencies:
- '@cspell/cspell-types': 9.6.4
+ '@cspell/cspell-types': 9.7.0
- '@cspell/cspell-performance-monitor@9.6.4': {}
+ '@cspell/cspell-performance-monitor@9.7.0': {}
- '@cspell/cspell-pipe@9.6.4': {}
+ '@cspell/cspell-pipe@9.7.0': {}
- '@cspell/cspell-resolver@9.6.4':
+ '@cspell/cspell-resolver@9.7.0':
dependencies:
- global-directory: 4.0.1
+ global-directory: 5.0.0
- '@cspell/cspell-service-bus@9.6.4': {}
+ '@cspell/cspell-service-bus@9.7.0': {}
- '@cspell/cspell-types@9.6.4': {}
+ '@cspell/cspell-types@9.7.0': {}
- '@cspell/cspell-worker@9.6.4':
+ '@cspell/cspell-worker@9.7.0':
dependencies:
- cspell-lib: 9.6.4
+ cspell-lib: 9.7.0
'@cspell/dict-ada@4.1.1': {}
@@ -13567,7 +13483,7 @@ snapshots:
dependencies:
'@cspell/dict-shell': 1.1.2
- '@cspell/dict-companies@3.2.10': {}
+ '@cspell/dict-companies@3.2.11': {}
'@cspell/dict-cpp@7.0.2': {}
@@ -13575,7 +13491,7 @@ snapshots:
'@cspell/dict-csharp@4.0.8': {}
- '@cspell/dict-css@4.0.19': {}
+ '@cspell/dict-css@4.1.1': {}
'@cspell/dict-dart@2.3.2': {}
@@ -13585,21 +13501,21 @@ snapshots:
'@cspell/dict-docker@1.1.17': {}
- '@cspell/dict-dotnet@5.0.11': {}
+ '@cspell/dict-dotnet@5.0.12': {}
'@cspell/dict-elixir@4.0.8': {}
'@cspell/dict-en-common-misspellings@2.1.12': {}
- '@cspell/dict-en-gb-mit@3.1.18': {}
+ '@cspell/dict-en-gb-mit@3.1.20': {}
- '@cspell/dict-en_us@4.4.29': {}
+ '@cspell/dict-en_us@4.4.31': {}
- '@cspell/dict-filetypes@3.0.15': {}
+ '@cspell/dict-filetypes@3.0.17': {}
'@cspell/dict-flutter@1.1.1': {}
- '@cspell/dict-fonts@4.0.5': {}
+ '@cspell/dict-fonts@4.0.6': {}
'@cspell/dict-fsharp@1.1.1': {}
@@ -13617,7 +13533,7 @@ snapshots:
'@cspell/dict-html-symbol-entities@4.0.5': {}
- '@cspell/dict-html@4.0.14': {}
+ '@cspell/dict-html@4.0.15': {}
'@cspell/dict-java@5.0.12': {}
@@ -13627,7 +13543,7 @@ snapshots:
'@cspell/dict-kotlin@1.1.1': {}
- '@cspell/dict-latex@5.0.0': {}
+ '@cspell/dict-latex@5.1.0': {}
'@cspell/dict-lorem-ipsum@4.0.5': {}
@@ -13635,10 +13551,10 @@ snapshots:
'@cspell/dict-makefile@1.0.5': {}
- '@cspell/dict-markdown@2.0.14(@cspell/dict-css@4.0.19)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.14)(@cspell/dict-typescript@3.2.3)':
+ '@cspell/dict-markdown@2.0.16(@cspell/dict-css@4.1.1)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.15)(@cspell/dict-typescript@3.2.3)':
dependencies:
- '@cspell/dict-css': 4.0.19
- '@cspell/dict-html': 4.0.14
+ '@cspell/dict-css': 4.1.1
+ '@cspell/dict-html': 4.0.15
'@cspell/dict-html-symbol-entities': 4.0.5
'@cspell/dict-typescript': 3.2.3
@@ -13646,13 +13562,13 @@ snapshots:
'@cspell/dict-node@5.0.9': {}
- '@cspell/dict-npm@5.2.33': {}
+ '@cspell/dict-npm@5.2.37': {}
'@cspell/dict-php@4.1.1': {}
'@cspell/dict-powershell@5.0.15': {}
- '@cspell/dict-public-licenses@2.0.15': {}
+ '@cspell/dict-public-licenses@2.0.16': {}
'@cspell/dict-python@4.2.25':
dependencies:
@@ -13660,7 +13576,7 @@ snapshots:
'@cspell/dict-r@2.1.1': {}
- '@cspell/dict-ruby@5.1.0': {}
+ '@cspell/dict-ruby@5.1.1': {}
'@cspell/dict-rust@4.1.2': {}
@@ -13668,7 +13584,7 @@ snapshots:
'@cspell/dict-shell@1.1.2': {}
- '@cspell/dict-software-terms@5.1.20': {}
+ '@cspell/dict-software-terms@5.2.0': {}
'@cspell/dict-sql@2.2.1': {}
@@ -13684,346 +13600,65 @@ snapshots:
'@cspell/dict-zig@1.0.0': {}
- '@cspell/dynamic-import@9.6.4':
+ '@cspell/dynamic-import@9.7.0':
dependencies:
- '@cspell/url': 9.6.4
+ '@cspell/url': 9.7.0
import-meta-resolve: 4.2.0
- '@cspell/filetypes@9.6.4': {}
+ '@cspell/filetypes@9.7.0': {}
- '@cspell/rpc@9.6.4': {}
+ '@cspell/rpc@9.7.0': {}
- '@cspell/strong-weak-map@9.6.4': {}
+ '@cspell/strong-weak-map@9.7.0': {}
- '@cspell/url@9.6.4': {}
+ '@cspell/url@9.7.0': {}
'@css-render/plugin-bem@0.15.14(css-render@0.15.14)':
dependencies:
css-render: 0.15.14
- '@css-render/vue3-ssr@0.15.14(vue@3.5.28(typescript@5.9.3))':
+ '@css-render/vue3-ssr@0.15.14(vue@3.5.30(typescript@5.9.3))':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@csstools/cascade-layer-name-parser@2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ '@csstools/css-calc@3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
- '@csstools/color-helpers@5.1.0': {}
-
- '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ '@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0)':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
+ '@csstools/css-tokenizer': 4.0.0
- '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ '@csstools/css-syntax-patches-for-csstree@1.1.0': {}
+
+ '@csstools/css-tokenizer@4.0.0': {}
+
+ '@csstools/media-query-list-parser@5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
- '@csstools/color-helpers': 5.1.0
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
- '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
- dependencies:
- '@csstools/css-tokenizer': 3.0.4
-
- '@csstools/css-syntax-patches-for-csstree@1.0.27': {}
-
- '@csstools/css-tokenizer@3.0.4': {}
-
- '@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
-
- '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.6)':
- dependencies:
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-color-function@4.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.6)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.6)':
- dependencies:
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.6)':
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-initial@2.0.1(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.6)':
- dependencies:
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.6)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.6)':
- dependencies:
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- postcss: 8.5.6
-
- '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.6)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- postcss: 8.5.6
-
- '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.6)':
- dependencies:
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.6)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-random-function@2.0.1(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.6)':
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.6)':
- dependencies:
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.6)':
- dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.6)':
- dependencies:
- '@csstools/color-helpers': 5.1.0
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.6)':
- dependencies:
- '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
-
- '@csstools/postcss-unset-value@4.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
- '@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.1)':
+ '@csstools/selector-resolve-nested@4.0.0(postcss-selector-parser@7.1.1)':
dependencies:
postcss-selector-parser: 7.1.1
- '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.1)':
+ '@csstools/selector-specificity@6.0.0(postcss-selector-parser@7.1.1)':
dependencies:
postcss-selector-parser: 7.1.1
- '@csstools/utilities@2.0.0(postcss@8.5.6)':
- dependencies:
- postcss: 8.5.6
-
'@ctrl/tinycolor@4.2.0': {}
+ '@cyberalien/svg-utils@1.2.6':
+ dependencies:
+ '@iconify/types': 2.0.0
+
'@docsearch/css@3.8.2': {}
- '@docsearch/js@3.8.2(@algolia/client-search@5.48.0)(search-insights@2.17.3)':
+ '@docsearch/js@3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.8.2(@algolia/client-search@5.48.0)(search-insights@2.17.3)
- preact: 10.28.3
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)
+ preact: 10.29.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -14031,35 +13666,33 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.8.2(@algolia/client-search@5.48.0)(search-insights@2.17.3)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.48.0)(algoliasearch@5.48.0)
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)
'@docsearch/css': 3.8.2
- algoliasearch: 5.48.0
+ algoliasearch: 5.49.2
optionalDependencies:
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@dual-bundle/import-meta-resolve@4.2.1': {}
-
- '@element-plus/icons-vue@2.3.2(vue@3.5.28(typescript@5.9.3))':
+ '@element-plus/icons-vue@2.3.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@emnapi/core@1.8.1':
+ '@emnapi/core@1.9.0':
dependencies:
- '@emnapi/wasi-threads': 1.1.0
+ '@emnapi/wasi-threads': 1.2.0
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.8.1':
+ '@emnapi/runtime@1.9.0':
dependencies:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.1.0':
+ '@emnapi/wasi-threads@1.2.0':
dependencies:
tslib: 2.8.1
optional: true
@@ -14074,188 +13707,185 @@ snapshots:
'@epic-web/invariant@1.0.0': {}
- '@es-joy/jsdoccomment@0.78.0':
+ '@es-joy/jsdoccomment@0.84.0':
dependencies:
'@types/estree': 1.0.8
- '@typescript-eslint/types': 8.55.0
- comment-parser: 1.4.1
+ '@typescript-eslint/types': 8.57.0
+ comment-parser: 1.4.5
esquery: 1.7.0
- jsdoc-type-pratt-parser: 7.0.0
+ jsdoc-type-pratt-parser: 7.1.1
- '@es-joy/resolve.exports@1.2.0': {}
-
- '@esbuild/aix-ppc64@0.25.12':
+ '@esbuild/aix-ppc64@0.27.4':
optional: true
- '@esbuild/android-arm64@0.25.12':
+ '@esbuild/android-arm64@0.27.4':
optional: true
- '@esbuild/android-arm@0.25.12':
+ '@esbuild/android-arm@0.27.4':
optional: true
- '@esbuild/android-x64@0.25.12':
+ '@esbuild/android-x64@0.27.4':
optional: true
- '@esbuild/darwin-arm64@0.25.12':
+ '@esbuild/darwin-arm64@0.27.4':
optional: true
- '@esbuild/darwin-x64@0.25.12':
+ '@esbuild/darwin-x64@0.27.4':
optional: true
- '@esbuild/freebsd-arm64@0.25.12':
+ '@esbuild/freebsd-arm64@0.27.4':
optional: true
- '@esbuild/freebsd-x64@0.25.12':
+ '@esbuild/freebsd-x64@0.27.4':
optional: true
- '@esbuild/linux-arm64@0.25.12':
+ '@esbuild/linux-arm64@0.27.4':
optional: true
- '@esbuild/linux-arm@0.25.12':
+ '@esbuild/linux-arm@0.27.4':
optional: true
- '@esbuild/linux-ia32@0.25.12':
+ '@esbuild/linux-ia32@0.27.4':
optional: true
- '@esbuild/linux-loong64@0.25.12':
+ '@esbuild/linux-loong64@0.27.4':
optional: true
- '@esbuild/linux-mips64el@0.25.12':
+ '@esbuild/linux-mips64el@0.27.4':
optional: true
- '@esbuild/linux-ppc64@0.25.12':
+ '@esbuild/linux-ppc64@0.27.4':
optional: true
- '@esbuild/linux-riscv64@0.25.12':
+ '@esbuild/linux-riscv64@0.27.4':
optional: true
- '@esbuild/linux-s390x@0.25.12':
+ '@esbuild/linux-s390x@0.27.4':
optional: true
- '@esbuild/linux-x64@0.25.12':
+ '@esbuild/linux-x64@0.27.4':
optional: true
- '@esbuild/netbsd-arm64@0.25.12':
+ '@esbuild/netbsd-arm64@0.27.4':
optional: true
- '@esbuild/netbsd-x64@0.25.12':
+ '@esbuild/netbsd-x64@0.27.4':
optional: true
- '@esbuild/openbsd-arm64@0.25.12':
+ '@esbuild/openbsd-arm64@0.27.4':
optional: true
- '@esbuild/openbsd-x64@0.25.12':
+ '@esbuild/openbsd-x64@0.27.4':
optional: true
- '@esbuild/openharmony-arm64@0.25.12':
+ '@esbuild/openharmony-arm64@0.27.4':
optional: true
- '@esbuild/sunos-x64@0.25.12':
+ '@esbuild/sunos-x64@0.27.4':
optional: true
- '@esbuild/win32-arm64@0.25.12':
+ '@esbuild/win32-arm64@0.27.4':
optional: true
- '@esbuild/win32-ia32@0.25.12':
+ '@esbuild/win32-ia32@0.27.4':
optional: true
- '@esbuild/win32-x64@0.25.12':
+ '@esbuild/win32-x64@0.27.4':
optional: true
- '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.0.3(jiti@2.6.1))':
dependencies:
- eslint: 9.39.2(jiti@2.6.1)
+ escape-string-regexp: 4.0.0
+ eslint: 10.0.3(jiti@2.6.1)
+ ignore: 7.0.5
+
+ '@eslint-community/eslint-utils@4.9.1(eslint@10.0.3(jiti@2.6.1))':
+ dependencies:
+ eslint: 10.0.3(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.2': {}
- '@eslint/config-array@0.21.1':
+ '@eslint/config-array@0.23.3':
dependencies:
- '@eslint/object-schema': 2.1.7
+ '@eslint/object-schema': 3.0.3
debug: 4.4.3
- minimatch: 3.1.2
+ minimatch: 10.2.4
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.4.2':
+ '@eslint/config-helpers@0.5.3':
dependencies:
- '@eslint/core': 0.17.0
+ '@eslint/core': 1.1.1
- '@eslint/core@0.17.0':
+ '@eslint/core@1.1.1':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.3':
+ '@eslint/css-tree@3.6.9':
dependencies:
- ajv: 6.12.6
- debug: 4.4.3
- espree: 10.4.0
- globals: 14.0.0
- ignore: 5.3.2
- import-fresh: 3.3.1
- js-yaml: 4.1.1
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
+ mdn-data: 2.23.0
+ source-map-js: 1.2.1
- '@eslint/js@9.39.2': {}
+ '@eslint/js@10.0.1(eslint@10.0.3(jiti@2.6.1))':
+ optionalDependencies:
+ eslint: 10.0.3(jiti@2.6.1)
- '@eslint/object-schema@2.1.7': {}
+ '@eslint/object-schema@3.0.3': {}
- '@eslint/plugin-kit@0.4.1':
+ '@eslint/plugin-kit@0.6.1':
dependencies:
- '@eslint/core': 0.17.0
+ '@eslint/core': 1.1.1
levn: 0.4.1
- '@floating-ui/core@1.7.4':
+ '@floating-ui/core@1.7.5':
dependencies:
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/utils': 0.2.11
- '@floating-ui/dom@1.7.5':
+ '@floating-ui/dom@1.7.6':
dependencies:
- '@floating-ui/core': 1.7.4
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/core': 1.7.5
+ '@floating-ui/utils': 0.2.11
- '@floating-ui/utils@0.2.10': {}
+ '@floating-ui/utils@0.2.11': {}
- '@floating-ui/vue@1.1.10(vue@3.5.28(typescript@5.9.3))':
+ '@floating-ui/vue@1.1.11(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@floating-ui/dom': 1.7.5
- '@floating-ui/utils': 0.2.10
- vue-demi: 0.14.10(vue@3.5.28(typescript@5.9.3))
+ '@floating-ui/dom': 1.7.6
+ '@floating-ui/utils': 0.2.11
+ vue-demi: 0.14.10(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@form-create/ant-design-vue@3.2.37(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/ant-design-vue@3.2.38(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@form-create/component-antdv-frame': 3.2.31
- '@form-create/component-antdv-group': 3.2.34
+ '@form-create/component-antdv-group': 3.2.38
'@form-create/component-antdv-upload': 3.2.31
'@form-create/component-subform': 3.2.34
- '@form-create/core': 3.2.37(vue@3.5.28(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.30(typescript@5.9.3))
'@form-create/utils': 3.2.31
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@form-create/antd-designer@3.4.0(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/antd-designer@3.4.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@form-create/ant-design-vue': 3.2.37(vue@3.5.28(typescript@5.9.3))
+ '@form-create/ant-design-vue': 3.2.38(vue@3.5.30(typescript@5.9.3))
'@form-create/component-wangeditor': 3.2.14
'@form-create/utils': 3.2.31
- ant-design-vue: 4.2.6(vue@3.5.28(typescript@5.9.3))
+ ant-design-vue: 4.2.6(vue@3.5.30(typescript@5.9.3))
codemirror: 6.65.7
js-beautify: 1.15.4
- marked: 17.0.1
+ marked: 17.0.4
signature_pad: 5.1.3
- vue: 3.5.28(typescript@5.9.3)
- vuedraggable: 4.1.0(vue@3.5.28(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
+ vuedraggable: 4.1.0(vue@3.5.30(typescript@5.9.3))
'@form-create/component-antdv-frame@3.2.31':
dependencies:
'@form-create/utils': 3.2.31
- '@form-create/component-antdv-group@3.2.34':
+ '@form-create/component-antdv-group@3.2.38':
dependencies:
'@form-create/utils': 3.2.31
@@ -14271,7 +13901,7 @@ snapshots:
dependencies:
'@form-create/utils': 3.2.31
- '@form-create/component-elm-group@3.2.34':
+ '@form-create/component-elm-group@3.2.38':
dependencies:
'@form-create/utils': 3.2.31
@@ -14299,7 +13929,7 @@ snapshots:
dependencies:
'@form-create/utils': 3.2.31
- '@form-create/component-naive-group@3.2.34':
+ '@form-create/component-naive-group@3.2.38':
dependencies:
'@form-create/utils': 3.2.31
@@ -14317,51 +13947,51 @@ snapshots:
dependencies:
wangeditor: 4.7.15
- '@form-create/core@3.2.37(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/core@3.2.37(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@form-create/utils': 3.2.31
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@form-create/designer@3.4.0(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/designer@3.4.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@form-create/component-wangeditor': 3.2.14
- '@form-create/element-ui': 3.2.37(vue@3.5.28(typescript@5.9.3))
+ '@form-create/element-ui': 3.2.38(vue@3.5.30(typescript@5.9.3))
'@form-create/utils': 3.2.31
codemirror: 6.65.7
- element-plus: 2.13.2(vue@3.5.28(typescript@5.9.3))
+ element-plus: 2.13.5(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
js-beautify: 1.15.4
- marked: 17.0.1
+ marked: 17.0.4
signature_pad: 5.1.3
- vue: 3.5.28(typescript@5.9.3)
- vuedraggable: 4.1.0(vue@3.5.28(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
+ vuedraggable: 4.1.0(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- - '@vue/composition-api'
+ - typescript
- '@form-create/element-ui@3.2.37(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/element-ui@3.2.38(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@form-create/component-elm-checkbox': 3.2.31
'@form-create/component-elm-frame': 3.2.31
- '@form-create/component-elm-group': 3.2.34
+ '@form-create/component-elm-group': 3.2.38
'@form-create/component-elm-radio': 3.2.31
'@form-create/component-elm-select': 3.2.37
'@form-create/component-elm-tree': 3.2.31
'@form-create/component-elm-upload': 3.2.31
'@form-create/component-subform': 3.2.34
- '@form-create/core': 3.2.37(vue@3.5.28(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.30(typescript@5.9.3))
'@form-create/utils': 3.2.31
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@form-create/naive-ui@3.2.37(vue@3.5.28(typescript@5.9.3))':
+ '@form-create/naive-ui@3.2.38(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@form-create/component-naive-checkbox': 3.2.31
'@form-create/component-naive-frame': 3.2.31
- '@form-create/component-naive-group': 3.2.34
+ '@form-create/component-naive-group': 3.2.38
'@form-create/component-naive-radio': 3.2.31
'@form-create/component-naive-upload': 3.2.31
'@form-create/component-subform': 3.2.34
- '@form-create/core': 3.2.37(vue@3.5.28(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.30(typescript@5.9.3))
'@form-create/utils': 3.2.31
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
'@form-create/utils@3.2.31': {}
@@ -14386,26 +14016,39 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/octicon@1.2.20':
+ '@iconify-json/octicon@1.2.21':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.70':
+ '@iconify-json/simple-icons@1.2.73':
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/vscode-icons@1.2.41':
+ '@iconify-json/vscode-icons@1.2.45':
dependencies:
'@iconify/types': 2.0.0
- '@iconify/json@2.2.438':
+ '@iconify/json@2.2.449':
dependencies:
'@iconify/types': 2.0.0
pathe: 2.0.3
- '@iconify/tailwind@1.2.0':
+ '@iconify/tailwind4@1.2.3(tailwindcss@4.2.1)':
dependencies:
+ '@iconify/tools': 5.0.5
'@iconify/types': 2.0.0
+ '@iconify/utils': 3.1.0
+ tailwindcss: 4.2.1
+
+ '@iconify/tools@5.0.5':
+ dependencies:
+ '@cyberalien/svg-utils': 1.2.6
+ '@iconify/types': 2.0.0
+ '@iconify/utils': 3.1.0
+ fflate: 0.8.2
+ modern-tar: 0.7.5
+ pathe: 2.0.3
+ svgo: 4.0.1
'@iconify/types@2.0.0': {}
@@ -14413,74 +14056,77 @@ snapshots:
dependencies:
'@antfu/install-pkg': 1.1.0
'@iconify/types': 2.0.0
- mlly: 1.8.0
+ mlly: 1.8.1
- '@iconify/vue@5.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@iconify/vue@5.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@inquirer/external-editor@1.0.3(@types/node@24.10.13)':
+ '@inquirer/external-editor@1.0.3(@types/node@25.5.0)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 24.10.13
+ '@types/node': 25.5.0
- '@internationalized/date@3.11.0':
+ '@internationalized/date@3.12.0':
dependencies:
- '@swc/helpers': 0.5.18
+ '@swc/helpers': 0.5.19
'@internationalized/number@3.6.5':
dependencies:
- '@swc/helpers': 0.5.18
+ '@swc/helpers': 0.5.19
- '@intlify/bundle-utils@10.0.1(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))':
+ '@intlify/bundle-utils@11.0.7(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))':
dependencies:
- '@intlify/message-compiler': 11.2.8
- '@intlify/shared': 11.2.8
- acorn: 8.15.0
+ '@intlify/message-compiler': 11.3.0
+ '@intlify/shared': 11.3.0
+ acorn: 8.16.0
+ esbuild: 0.27.4
escodegen: 2.1.0
estree-walker: 2.0.2
jsonc-eslint-parser: 2.4.2
- mlly: 1.8.0
source-map-js: 1.2.1
yaml-eslint-parser: 1.3.2
optionalDependencies:
- vue-i18n: 11.2.8(vue@3.5.28(typescript@5.9.3))
+ vue-i18n: 11.3.0(vue@3.5.30(typescript@5.9.3))
- '@intlify/core-base@11.2.8':
+ '@intlify/core-base@11.3.0':
dependencies:
- '@intlify/message-compiler': 11.2.8
- '@intlify/shared': 11.2.8
+ '@intlify/devtools-types': 11.3.0
+ '@intlify/message-compiler': 11.3.0
+ '@intlify/shared': 11.3.0
- '@intlify/message-compiler@11.2.8':
+ '@intlify/devtools-types@11.3.0':
dependencies:
- '@intlify/shared': 11.2.8
+ '@intlify/core-base': 11.3.0
+ '@intlify/shared': 11.3.0
+
+ '@intlify/message-compiler@11.3.0':
+ dependencies:
+ '@intlify/shared': 11.3.0
source-map-js: 1.2.1
- '@intlify/shared@11.2.8': {}
+ '@intlify/shared@11.3.0': {}
- '@intlify/unplugin-vue-i18n@6.0.8(@vue/compiler-dom@3.5.28)(eslint@9.39.2(jiti@2.6.1))(rollup@4.57.1)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))':
+ '@intlify/unplugin-vue-i18n@11.0.7(@vue/compiler-dom@3.5.30)(eslint@10.0.3(jiti@2.6.1))(rollup@4.59.0)(typescript@5.9.3)(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- '@intlify/bundle-utils': 10.0.1(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))
- '@intlify/shared': 11.2.8
- '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.2.8)(@vue/compiler-dom@3.5.28)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
- '@typescript-eslint/scope-manager': 8.55.0
- '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
+ '@intlify/bundle-utils': 11.0.7(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))
+ '@intlify/shared': 11.3.0
+ '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.3.0)(@vue/compiler-dom@3.5.30)(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
debug: 4.4.3
fast-glob: 3.3.3
- js-yaml: 4.1.1
- json5: 2.2.3
- pathe: 1.1.2
+ pathe: 2.0.3
picocolors: 1.1.1
- source-map-js: 1.2.1
- unplugin: 1.16.1
- vue: 3.5.28(typescript@5.9.3)
+ unplugin: 2.3.11
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
- vue-i18n: 11.2.8(vue@3.5.28(typescript@5.9.3))
+ vue-i18n: 11.3.0(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- '@vue/compiler-dom'
- eslint
@@ -14488,28 +14134,22 @@ snapshots:
- supports-color
- typescript
- '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.2.8)(@vue/compiler-dom@3.5.28)(vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))':
+ '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.3.0)(@vue/compiler-dom@3.5.30)(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@babel/parser': 7.29.0
optionalDependencies:
- '@intlify/shared': 11.2.8
- '@vue/compiler-dom': 3.5.28
- vue: 3.5.28(typescript@5.9.3)
- vue-i18n: 11.2.8(vue@3.5.28(typescript@5.9.3))
+ '@intlify/shared': 11.3.0
+ '@vue/compiler-dom': 3.5.30
+ vue: 3.5.30(typescript@5.9.3)
+ vue-i18n: 11.3.0(vue@3.5.30(typescript@5.9.3))
- '@ioredis/commands@1.5.0': {}
-
- '@isaacs/balanced-match@4.0.1': {}
-
- '@isaacs/brace-expansion@5.0.1':
- dependencies:
- '@isaacs/balanced-match': 4.0.1
+ '@ioredis/commands@1.5.1': {}
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
strip-ansi-cjs: strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
@@ -14518,7 +14158,7 @@ snapshots:
'@isaacs/fs-minipass@4.0.1':
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
'@jridgewell/gen-mapping@0.3.13':
dependencies:
@@ -14544,30 +14184,31 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
- '@jspm/generator@2.10.0':
+ '@jspm/generator@2.11.0':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
'@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
- '@jspm/import-map': 1.2.2
+ '@jspm/import-map': 1.3.0
es-module-lexer: 1.7.0
- minimatch: 10.1.2
+ minimatch: 10.2.4
node-fetch-cache: 5.1.0
pako: 2.1.0
sver: 2.0.1
- tar-stream: 3.1.7
+ tar-stream: 3.1.8
transitivePeerDependencies:
- bare-abort-controller
+ - bare-buffer
- react-native-b4a
- supports-color
- '@jspm/import-map@1.2.2': {}
+ '@jspm/import-map@1.3.0': {}
'@juggle/resize-observer@3.4.0': {}
'@keyv/bigmap@1.3.1(keyv@5.6.0)':
dependencies:
- hashery: 1.4.0
+ hashery: 1.5.0
hookified: 1.15.1
keyv: 5.6.0
@@ -14627,33 +14268,33 @@ snapshots:
node-fetch: 2.7.0
nopt: 8.1.0
semver: 7.7.4
- tar: 7.5.7
+ tar: 7.5.11
transitivePeerDependencies:
- encoding
- supports-color
'@marijn/find-cluster-break@1.0.2': {}
- '@microsoft/api-extractor-model@7.32.2(@types/node@25.2.3)':
+ '@microsoft/api-extractor-model@7.33.4(@types/node@25.5.0)':
dependencies:
'@microsoft/tsdoc': 0.16.0
- '@microsoft/tsdoc-config': 0.18.0
- '@rushstack/node-core-library': 5.19.1(@types/node@25.2.3)
+ '@microsoft/tsdoc-config': 0.18.1
+ '@rushstack/node-core-library': 5.20.3(@types/node@25.5.0)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.56.3(@types/node@25.2.3)':
+ '@microsoft/api-extractor@7.57.7(@types/node@25.5.0)':
dependencies:
- '@microsoft/api-extractor-model': 7.32.2(@types/node@25.2.3)
+ '@microsoft/api-extractor-model': 7.33.4(@types/node@25.5.0)
'@microsoft/tsdoc': 0.16.0
- '@microsoft/tsdoc-config': 0.18.0
- '@rushstack/node-core-library': 5.19.1(@types/node@25.2.3)
- '@rushstack/rig-package': 0.6.0
- '@rushstack/terminal': 0.21.0(@types/node@25.2.3)
- '@rushstack/ts-command-line': 5.2.0(@types/node@25.2.3)
+ '@microsoft/tsdoc-config': 0.18.1
+ '@rushstack/node-core-library': 5.20.3(@types/node@25.5.0)
+ '@rushstack/rig-package': 0.7.2
+ '@rushstack/terminal': 0.22.3(@types/node@25.5.0)
+ '@rushstack/ts-command-line': 5.3.3(@types/node@25.5.0)
diff: 8.0.3
lodash: 4.17.23
- minimatch: 10.1.2
+ minimatch: 10.2.3
resolve: 1.22.11
semver: 7.5.4
source-map: 0.6.1
@@ -14663,19 +14304,19 @@ snapshots:
'@microsoft/fetch-event-source@2.0.1': {}
- '@microsoft/tsdoc-config@0.18.0':
+ '@microsoft/tsdoc-config@0.18.1':
dependencies:
'@microsoft/tsdoc': 0.16.0
- ajv: 8.12.0
+ ajv: 8.18.0
jju: 1.4.0
resolve: 1.22.11
'@microsoft/tsdoc@0.16.0': {}
- '@napi-rs/wasm-runtime@0.2.12':
+ '@napi-rs/wasm-runtime@1.1.1':
dependencies:
- '@emnapi/core': 1.8.1
- '@emnapi/runtime': 1.8.1
+ '@emnapi/core': 1.9.0
+ '@emnapi/runtime': 1.9.0
'@tybys/wasm-util': 0.10.1
optional: true
@@ -14691,27 +14332,27 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))':
+ '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@iconify-json/octicon': 1.2.20
- less: 4.5.1
- vitepress: 1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3)
- vue: 3.5.28(typescript@5.9.3)
+ '@iconify-json/octicon': 1.2.21
+ less: 4.6.4
+ vitepress: 1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@nolebase/vitepress-plugin-git-changelog@2.18.2(vitepress@1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))':
+ '@nolebase/vitepress-plugin-git-changelog@2.18.2(vitepress@1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@iconify-json/octicon': 1.2.20
- '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))
+ '@iconify-json/octicon': 1.2.21
+ '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
colorette: 2.0.20
date-fns: 4.1.0
defu: 6.1.4
- es-toolkit: 1.44.0
+ es-toolkit: 1.45.1
execa: 9.6.1
globby: 14.1.0
gray-matter: 4.0.3
- less: 4.5.1
+ less: 4.6.4
uncrypto: 0.1.3
- vitepress: 1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3)
+ vitepress: 1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3)
transitivePeerDependencies:
- vue
@@ -14719,7 +14360,7 @@ snapshots:
dependencies:
semver: 7.7.4
- '@nuxt/kit@3.21.1(magicast@0.5.2)':
+ '@nuxt/kit@3.21.2(magicast@0.5.2)':
dependencies:
c12: 3.3.3(magicast@0.5.2)
consola: 3.4.2
@@ -14731,7 +14372,7 @@ snapshots:
jiti: 2.6.1
klona: 2.0.6
knitwork: 1.3.0
- mlly: 1.8.0
+ mlly: 1.8.1
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
@@ -14746,7 +14387,7 @@ snapshots:
- magicast
optional: true
- '@nuxt/kit@4.3.1(magicast@0.5.2)':
+ '@nuxt/kit@4.4.2(magicast@0.5.2)':
dependencies:
c12: 3.3.3(magicast@0.5.2)
consola: 3.4.2
@@ -14757,7 +14398,7 @@ snapshots:
ignore: 7.0.5
jiti: 2.6.1
klona: 2.0.6
- mlly: 1.8.0
+ mlly: 1.8.1
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
@@ -14773,6 +14414,144 @@ snapshots:
'@one-ini/wasm@0.1.1': {}
+ '@ota-meshi/ast-token-store@0.3.0': {}
+
+ '@oxc-project/runtime@0.115.0': {}
+
+ '@oxc-project/types@0.115.0': {}
+
+ '@oxfmt/binding-android-arm-eabi@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-android-arm64@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-darwin-arm64@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-darwin-x64@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-freebsd-x64@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm-gnueabihf@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm-musleabihf@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm64-gnu@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-arm64-musl@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-ppc64-gnu@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-riscv64-gnu@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-riscv64-musl@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-s390x-gnu@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-x64-gnu@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-linux-x64-musl@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-openharmony-arm64@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-win32-arm64-msvc@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-win32-ia32-msvc@0.40.0':
+ optional: true
+
+ '@oxfmt/binding-win32-x64-msvc@0.40.0':
+ optional: true
+
+ '@oxlint-tsgolint/darwin-arm64@0.16.0':
+ optional: true
+
+ '@oxlint-tsgolint/darwin-x64@0.16.0':
+ optional: true
+
+ '@oxlint-tsgolint/linux-arm64@0.16.0':
+ optional: true
+
+ '@oxlint-tsgolint/linux-x64@0.16.0':
+ optional: true
+
+ '@oxlint-tsgolint/win32-arm64@0.16.0':
+ optional: true
+
+ '@oxlint-tsgolint/win32-x64@0.16.0':
+ optional: true
+
+ '@oxlint/binding-android-arm-eabi@1.55.0':
+ optional: true
+
+ '@oxlint/binding-android-arm64@1.55.0':
+ optional: true
+
+ '@oxlint/binding-darwin-arm64@1.55.0':
+ optional: true
+
+ '@oxlint/binding-darwin-x64@1.55.0':
+ optional: true
+
+ '@oxlint/binding-freebsd-x64@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm-gnueabihf@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm-musleabihf@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm64-gnu@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-arm64-musl@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-ppc64-gnu@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-riscv64-gnu@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-riscv64-musl@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-s390x-gnu@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-x64-gnu@1.55.0':
+ optional: true
+
+ '@oxlint/binding-linux-x64-musl@1.55.0':
+ optional: true
+
+ '@oxlint/binding-openharmony-arm64@1.55.0':
+ optional: true
+
+ '@oxlint/binding-win32-arm64-msvc@1.55.0':
+ optional: true
+
+ '@oxlint/binding-win32-ia32-msvc@1.55.0':
+ optional: true
+
+ '@oxlint/binding-win32-x64-msvc@1.55.0':
+ optional: true
+
'@parcel/watcher-android-arm64@2.5.6':
optional: true
@@ -14867,7 +14646,7 @@ snapshots:
'@pnpm/types@1001.3.0': {}
- '@pnpm/workspace.read-manifest@1000.2.10':
+ '@pnpm/workspace.read-manifest@1000.3.0':
dependencies:
'@pnpm/constants': 1001.3.1
'@pnpm/error': 1000.0.5
@@ -14882,7 +14661,7 @@ snapshots:
dependencies:
kleur: 4.1.5
- '@poppinss/dumper@0.6.5':
+ '@poppinss/dumper@0.7.0':
dependencies:
'@poppinss/colors': 4.1.6
'@sindresorhus/is': 7.2.0
@@ -14892,30 +14671,77 @@ snapshots:
'@publint/pack@0.1.4': {}
+ '@rolldown/binding-android-arm64@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-darwin-x64@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
+ dependencies:
+ '@napi-rs/wasm-runtime': 1.1.1
+ optional: true
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
+ optional: true
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
+ optional: true
+
'@rolldown/pluginutils@1.0.0-rc.2': {}
- '@rolldown/pluginutils@1.0.0-rc.3': {}
+ '@rolldown/pluginutils@1.0.0-rc.9': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.57.1)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.59.0)':
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-alias@6.0.0(rollup@4.57.1)':
+ '@rollup/plugin-alias@6.0.0(rollup@4.59.0)':
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(rollup@2.79.2)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(rollup@2.80.0)':
dependencies:
'@babel/core': 7.29.0
'@babel/helper-module-imports': 7.28.6
- '@rollup/pluginutils': 3.1.0(rollup@2.79.2)
- rollup: 2.79.2
+ '@rollup/pluginutils': 3.1.0(rollup@2.80.0)
+ rollup: 2.80.0
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@28.0.9(rollup@4.57.1)':
+ '@rollup/plugin-commonjs@28.0.9(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.5.0(picomatch@4.0.3)
@@ -14923,11 +14749,11 @@ snapshots:
magic-string: 0.30.21
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-commonjs@29.0.0(rollup@4.57.1)':
+ '@rollup/plugin-commonjs@29.0.2(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.5.0(picomatch@4.0.3)
@@ -14935,207 +14761,207 @@ snapshots:
magic-string: 0.30.21
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-inject@5.0.5(rollup@4.57.1)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
estree-walker: 2.0.2
magic-string: 0.30.21
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-json@6.1.0(rollup@4.57.1)':
+ '@rollup/plugin-json@6.1.0(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)':
+ '@rollup/plugin-node-resolve@15.3.1(rollup@2.80.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@2.79.2)
+ '@rollup/pluginutils': 5.3.0(rollup@2.80.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.11
optionalDependencies:
- rollup: 2.79.2
+ rollup: 2.80.0
- '@rollup/plugin-node-resolve@16.0.3(rollup@4.57.1)':
+ '@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.11
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-replace@2.4.2(rollup@2.79.2)':
+ '@rollup/plugin-replace@2.4.2(rollup@2.80.0)':
dependencies:
- '@rollup/pluginutils': 3.1.0(rollup@2.79.2)
+ '@rollup/pluginutils': 3.1.0(rollup@2.80.0)
magic-string: 0.25.9
- rollup: 2.79.2
+ rollup: 2.80.0
- '@rollup/plugin-replace@6.0.3(rollup@4.57.1)':
+ '@rollup/plugin-replace@6.0.3(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
magic-string: 0.30.21
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/plugin-terser@0.4.4(rollup@2.79.2)':
+ '@rollup/plugin-terser@0.4.4(rollup@2.80.0)':
dependencies:
serialize-javascript: 6.0.2
- smob: 1.5.0
+ smob: 1.6.1
terser: 5.46.0
optionalDependencies:
- rollup: 2.79.2
+ rollup: 2.80.0
- '@rollup/plugin-terser@0.4.4(rollup@4.57.1)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.59.0)':
dependencies:
serialize-javascript: 6.0.2
- smob: 1.5.0
+ smob: 1.6.1
terser: 5.46.0
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/pluginutils@3.1.0(rollup@2.79.2)':
+ '@rollup/pluginutils@3.1.0(rollup@2.80.0)':
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
picomatch: 2.3.1
- rollup: 2.79.2
+ rollup: 2.80.0
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.3.0(rollup@2.79.2)':
+ '@rollup/pluginutils@5.3.0(rollup@2.80.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 2.79.2
+ rollup: 2.80.0
- '@rollup/pluginutils@5.3.0(rollup@4.57.1)':
+ '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.57.1
+ rollup: 4.59.0
- '@rollup/rollup-android-arm-eabi@4.57.1':
+ '@rollup/rollup-android-arm-eabi@4.59.0':
optional: true
- '@rollup/rollup-android-arm64@4.57.1':
+ '@rollup/rollup-android-arm64@4.59.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.57.1':
+ '@rollup/rollup-darwin-arm64@4.59.0':
optional: true
- '@rollup/rollup-darwin-x64@4.57.1':
+ '@rollup/rollup-darwin-x64@4.59.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.57.1':
+ '@rollup/rollup-freebsd-arm64@4.59.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.57.1':
+ '@rollup/rollup-freebsd-x64@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.57.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.57.1':
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.57.1':
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-loong64-gnu@4.57.1':
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-loong64-musl@4.57.1':
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.57.1':
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-ppc64-musl@4.57.1':
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.57.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.57.1':
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.57.1':
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.57.1':
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.57.1':
+ '@rollup/rollup-linux-x64-musl@4.59.0':
optional: true
- '@rollup/rollup-openbsd-x64@4.57.1':
+ '@rollup/rollup-openbsd-x64@4.59.0':
optional: true
- '@rollup/rollup-openharmony-arm64@4.57.1':
+ '@rollup/rollup-openharmony-arm64@4.59.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.57.1':
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.57.1':
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
optional: true
- '@rollup/rollup-win32-x64-gnu@4.57.1':
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.57.1':
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
optional: true
- '@rushstack/node-core-library@5.19.1(@types/node@25.2.3)':
+ '@rushstack/node-core-library@5.20.3(@types/node@25.5.0)':
dependencies:
- ajv: 8.13.0
- ajv-draft-04: 1.0.0(ajv@8.13.0)
- ajv-formats: 3.0.1(ajv@8.13.0)
- fs-extra: 11.3.3
+ ajv: 8.18.0
+ ajv-draft-04: 1.0.0(ajv@8.18.0)
+ ajv-formats: 3.0.1(ajv@8.18.0)
+ fs-extra: 11.3.4
import-lazy: 4.0.0
jju: 1.4.0
resolve: 1.22.11
semver: 7.5.4
optionalDependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
- '@rushstack/problem-matcher@0.1.1(@types/node@25.2.3)':
+ '@rushstack/problem-matcher@0.2.1(@types/node@25.5.0)':
optionalDependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
- '@rushstack/rig-package@0.6.0':
+ '@rushstack/rig-package@0.7.2':
dependencies:
resolve: 1.22.11
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.21.0(@types/node@25.2.3)':
+ '@rushstack/terminal@0.22.3(@types/node@25.5.0)':
dependencies:
- '@rushstack/node-core-library': 5.19.1(@types/node@25.2.3)
- '@rushstack/problem-matcher': 0.1.1(@types/node@25.2.3)
+ '@rushstack/node-core-library': 5.20.3(@types/node@25.5.0)
+ '@rushstack/problem-matcher': 0.2.1(@types/node@25.5.0)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
- '@rushstack/ts-command-line@5.2.0(@types/node@25.2.3)':
+ '@rushstack/ts-command-line@5.3.3(@types/node@25.5.0)':
dependencies:
- '@rushstack/terminal': 0.21.0(@types/node@25.2.3)
+ '@rushstack/terminal': 0.22.3(@types/node@25.5.0)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -15189,7 +15015,11 @@ snapshots:
core-js: 3.48.0
nanopop: 2.4.2
- '@sindresorhus/base62@1.0.0': {}
+ '@simple-libs/child-process-utils@1.0.2':
+ dependencies:
+ '@simple-libs/stream-utils': 1.2.0
+
+ '@simple-libs/stream-utils@1.2.0': {}
'@sindresorhus/is@7.2.0': {}
@@ -15199,16 +15029,18 @@ snapshots:
'@speed-highlight/core@1.2.14': {}
- '@stylistic/stylelint-plugin@4.0.1(stylelint@16.26.1(typescript@5.9.3))':
+ '@standard-schema/spec@1.1.0': {}
+
+ '@stylistic/stylelint-plugin@5.0.1(stylelint@17.4.0(typescript@5.9.3))':
dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- postcss: 8.5.6
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
+ '@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
style-search: 0.1.0
- stylelint: 16.26.1(typescript@5.9.3)
+ stylelint: 17.4.0(typescript@5.9.3)
'@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
@@ -15217,64 +15049,127 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.12
- '@svelte-put/shortcut@4.1.0(svelte@5.50.1)':
+ '@svelte-put/shortcut@4.1.0(svelte@5.53.11)':
dependencies:
- svelte: 5.50.1
+ svelte: 5.53.11
- '@sveltejs/acorn-typescript@1.0.8(acorn@8.15.0)':
+ '@sveltejs/acorn-typescript@1.0.9(acorn@8.16.0)':
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
- '@swc/helpers@0.5.18':
+ '@swc/helpers@0.5.19':
dependencies:
tslib: 2.8.1
'@sxzz/popperjs-es@2.11.8': {}
- '@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.5.6)':
+ '@tailwindcss/node@4.2.1':
dependencies:
- postcss: 8.5.6
- postcss-nested: 5.0.6(postcss@8.5.6)
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.20.0
+ jiti: 2.6.1
+ lightningcss: 1.31.1
+ magic-string: 0.30.21
+ source-map-js: 1.2.1
+ tailwindcss: 4.2.1
- '@tailwindcss/typography@0.5.19(tailwindcss@3.4.19(yaml@2.8.2))':
+ '@tailwindcss/oxide-android-arm64@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
+ optional: true
+
+ '@tailwindcss/oxide@4.2.1':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.2.1
+ '@tailwindcss/oxide-darwin-arm64': 4.2.1
+ '@tailwindcss/oxide-darwin-x64': 4.2.1
+ '@tailwindcss/oxide-freebsd-x64': 4.2.1
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
+ '@tailwindcss/oxide-linux-arm64-musl': 4.2.1
+ '@tailwindcss/oxide-linux-x64-gnu': 4.2.1
+ '@tailwindcss/oxide-linux-x64-musl': 4.2.1
+ '@tailwindcss/oxide-wasm32-wasi': 4.2.1
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
+ '@tailwindcss/oxide-win32-x64-msvc': 4.2.1
+
+ '@tailwindcss/typography@0.5.19(tailwindcss@4.2.1)':
dependencies:
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.19(yaml@2.8.2)
+ tailwindcss: 4.2.1
- '@tanstack/store@0.8.0': {}
-
- '@tanstack/virtual-core@3.13.18': {}
-
- '@tanstack/vue-store@0.8.0(vue@3.5.28(typescript@5.9.3))':
+ '@tailwindcss/vite@4.2.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))':
dependencies:
- '@tanstack/store': 0.8.0
- vue: 3.5.28(typescript@5.9.3)
- vue-demi: 0.14.10(vue@3.5.28(typescript@5.9.3))
+ '@tailwindcss/node': 4.2.1
+ '@tailwindcss/oxide': 4.2.1
+ tailwindcss: 4.2.1
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
- '@tanstack/vue-virtual@3.13.18(vue@3.5.28(typescript@5.9.3))':
- dependencies:
- '@tanstack/virtual-core': 3.13.18
- vue: 3.5.28(typescript@5.9.3)
+ '@tanstack/store@0.9.2': {}
- '@tinyflow-ai/ui@1.1.10(svelte@5.50.1)':
+ '@tanstack/virtual-core@3.13.22': {}
+
+ '@tanstack/vue-store@0.9.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@floating-ui/dom': 1.7.5
- '@xyflow/svelte': 1.5.0(svelte@5.50.1)
+ '@tanstack/store': 0.9.2
+ vue: 3.5.30(typescript@5.9.3)
+ vue-demi: 0.14.10(vue@3.5.30(typescript@5.9.3))
+
+ '@tanstack/vue-virtual@3.13.22(vue@3.5.30(typescript@5.9.3))':
+ dependencies:
+ '@tanstack/virtual-core': 3.13.22
+ vue: 3.5.30(typescript@5.9.3)
+
+ '@tinyflow-ai/ui@1.1.10(svelte@5.53.11)':
+ dependencies:
+ '@floating-ui/dom': 1.7.6
+ '@xyflow/svelte': 1.5.1(svelte@5.53.11)
transitivePeerDependencies:
- svelte
- '@tinyflow-ai/vue@1.1.10(svelte@5.50.1)(vue@3.5.28(typescript@5.9.3))':
+ '@tinyflow-ai/vue@1.1.10(svelte@5.53.11)(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@tinyflow-ai/ui': 1.1.10(svelte@5.50.1)
- vue: 3.5.28(typescript@5.9.3)
+ '@tinyflow-ai/ui': 1.1.10(svelte@5.53.11)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- svelte
- '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.1)(vue@3.5.28(typescript@5.9.3))':
+ '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
- tinymce: 7.9.1
+ tinymce: 7.9.2
'@tybys/wasm-util@0.10.1':
dependencies:
@@ -15287,8 +15182,6 @@ snapshots:
'@types/argparse@1.0.38': {}
- '@types/bintrees@1.0.6': {}
-
'@types/chai@5.2.3':
dependencies:
'@types/deep-eql': 4.0.2
@@ -15298,10 +15191,6 @@ snapshots:
dependencies:
'@types/tern': 0.23.9
- '@types/conventional-commits-parser@5.0.2':
- dependencies:
- '@types/node': 25.2.3
-
'@types/crypto-js@4.2.2': {}
'@types/d3-array@3.2.2': {}
@@ -15423,10 +15312,7 @@ snapshots:
'@types/deep-eql@4.0.2': {}
- '@types/eslint@9.6.1':
- dependencies:
- '@types/estree': 1.0.8
- '@types/json-schema': 7.0.15
+ '@types/esrecurse@4.3.1': {}
'@types/estree@0.0.39': {}
@@ -15440,21 +15326,21 @@ snapshots:
'@types/html-minifier-terser@7.0.2': {}
- '@types/json-schema@7.0.15': {}
+ '@types/json-bigint@1.0.4': {}
- '@types/katex@0.16.8': {}
+ '@types/json-schema@7.0.15': {}
'@types/linkify-it@5.0.0': {}
'@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.17.23
+ '@types/lodash': 4.17.24
'@types/lodash.clonedeep@4.5.9':
dependencies:
- '@types/lodash': 4.17.23
+ '@types/lodash': 4.17.24
- '@types/lodash@4.17.23': {}
+ '@types/lodash@4.17.24': {}
'@types/markdown-it@14.1.2':
dependencies:
@@ -15471,31 +15357,23 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@24.10.13':
+ '@types/node@25.5.0':
dependencies:
- undici-types: 7.16.0
-
- '@types/node@25.2.3':
- dependencies:
- undici-types: 7.16.0
+ undici-types: 7.18.2
'@types/nprogress@0.2.3': {}
'@types/parse-json@4.0.2': {}
- '@types/postcss-import@14.0.3':
- dependencies:
- postcss: 8.5.6
-
'@types/qrcode@1.5.6':
dependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
- '@types/qs@6.14.0': {}
+ '@types/qs@6.15.0': {}
'@types/readdir-glob@1.1.5':
dependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
'@types/resolve@1.20.2': {}
@@ -15519,15 +15397,21 @@ snapshots:
'@types/web-bluetooth@0.0.21': {}
- '@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
+ '@types/whatwg-mimetype@3.0.2': {}
+
+ '@types/ws@8.18.1':
+ dependencies:
+ '@types/node': 25.5.0
+
+ '@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/scope-manager': 8.55.0
- '@typescript-eslint/type-utils': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.55.0
- eslint: 9.39.2(jiti@2.6.1)
+ '@typescript-eslint/parser': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/type-utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.57.0
+ eslint: 10.0.3(jiti@2.6.1)
ignore: 7.0.5
natural-compare: 1.4.0
ts-api-utils: 2.4.0(typescript@5.9.3)
@@ -15535,80 +15419,72 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.55.0
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.55.0
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.57.0
debug: 4.4.3
- eslint: 9.39.2(jiti@2.6.1)
+ eslint: 10.0.3(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.55.0(typescript@5.9.3)':
+ '@typescript-eslint/project-service@8.57.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.9.3)
- '@typescript-eslint/types': 8.55.0
+ '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
debug: 4.4.3
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.18.0':
+ '@typescript-eslint/rule-tester@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
+ '@typescript-eslint/parser': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ ajv: 6.14.0
+ eslint: 10.0.3(jiti@2.6.1)
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ semver: 7.7.4
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
- '@typescript-eslint/scope-manager@8.55.0':
+ '@typescript-eslint/scope-manager@8.57.0':
dependencies:
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/visitor-keys': 8.55.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/visitor-keys': 8.57.0
- '@typescript-eslint/tsconfig-utils@8.55.0(typescript@5.9.3)':
+ '@typescript-eslint/tsconfig-utils@8.57.0(typescript@5.9.3)':
dependencies:
typescript: 5.9.3
- '@typescript-eslint/type-utils@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
- '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
debug: 4.4.3
- eslint: 9.39.2(jiti@2.6.1)
+ eslint: 10.0.3(jiti@2.6.1)
ts-api-utils: 2.4.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.18.0': {}
+ '@typescript-eslint/types@8.57.0': {}
- '@typescript-eslint/types@8.55.0': {}
-
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
+ '@typescript-eslint/project-service': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/visitor-keys': 8.57.0
debug: 4.4.3
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.4
- ts-api-utils: 1.4.3(typescript@5.9.3)
- optionalDependencies:
- typescript: 5.9.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@8.55.0(typescript@5.9.3)':
- dependencies:
- '@typescript-eslint/project-service': 8.55.0(typescript@5.9.3)
- '@typescript-eslint/tsconfig-utils': 8.55.0(typescript@5.9.3)
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/visitor-keys': 8.55.0
- debug: 4.4.3
- minimatch: 9.0.5
+ minimatch: 10.2.4
semver: 7.7.4
tinyglobby: 0.2.15
ts-api-utils: 2.4.0(typescript@5.9.3)
@@ -15616,361 +15492,290 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.18.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
- eslint: 9.39.2(jiti@2.6.1)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- '@typescript-eslint/scope-manager': 8.55.0
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/typescript-estree': 8.55.0(typescript@5.9.3)
- eslint: 9.39.2(jiti@2.6.1)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.57.0
+ '@typescript-eslint/types': 8.57.0
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ eslint: 10.0.3(jiti@2.6.1)
typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@7.18.0':
+ '@typescript-eslint/visitor-keys@8.57.0':
dependencies:
- '@typescript-eslint/types': 7.18.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@8.55.0':
- dependencies:
- '@typescript-eslint/types': 8.55.0
- eslint-visitor-keys: 4.2.1
+ '@typescript-eslint/types': 8.57.0
+ eslint-visitor-keys: 5.0.1
'@ungap/structured-clone@1.3.0': {}
- '@unrs/resolver-binding-android-arm-eabi@1.11.1':
- optional: true
+ '@v-c/async-validator@1.0.1': {}
- '@unrs/resolver-binding-android-arm64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-darwin-arm64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-darwin-x64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-freebsd-x64@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-arm64-musl@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-x64-gnu@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-linux-x64-musl@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-wasm32-wasi@1.11.1':
+ '@v-c/cascader@1.0.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.12
- optional: true
+ '@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tree': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
- optional: true
-
- '@unrs/resolver-binding-win32-x64-msvc@1.11.1':
- optional: true
-
- '@v-c/async-validator@1.0.0': {}
-
- '@v-c/cascader@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/checkbox@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/select': 1.0.9(vue@3.5.28(typescript@5.9.3))
- '@v-c/tree': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/checkbox@1.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/collapse@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/collapse@1.0.0(vue@3.5.28(typescript@5.9.3))':
- dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
-
- '@v-c/color-picker@1.0.5(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/color-picker@1.0.6(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@ant-design/fast-color': 3.0.1
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/dialog@1.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/dialog@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/portal': 1.0.7(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/drawer@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/drawer@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/portal': 1.0.7(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/dropdown@1.0.2(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/dropdown@1.0.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/image@1.0.2(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/image@1.0.5(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/portal': 1.0.7(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/input-number@1.0.2(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/input-number@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/input': 1.0.2(vue@3.5.28(typescript@5.9.3))
+ '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
'@v-c/mini-decimal': 1.0.1
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/input@1.0.2(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/input@1.0.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/mentions@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/mentions@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/input': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/menu': 1.0.10(vue@3.5.28(typescript@5.9.3))
- '@v-c/textarea': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/menu': 1.0.11(vue@3.5.30(typescript@5.9.3))
+ '@v-c/textarea': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/menu@1.0.10(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/menu@1.0.11(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/overflow': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
'@v-c/mini-decimal@1.0.1': {}
- '@v-c/mutate-observer@1.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/mutate-observer@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/notification@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/notification@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/overflow@1.0.3(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/overflow@1.0.4(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/pagination@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/pagination@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/picker@1.0.2(date-fns@4.1.0)(dayjs@1.11.19)(luxon@3.7.2)(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/picker@1.0.4(date-fns@4.1.0)(dayjs@1.11.20)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/overflow': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
date-fns: 4.1.0
- dayjs: 1.11.19
+ dayjs: 1.11.20
luxon: 3.7.2
- '@v-c/portal@1.0.7(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/portal@1.0.8(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/progress@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/progress@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/qrcode@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/qrcode@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/rate@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/rate@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/resize-observer@1.0.8(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/resize-observer@1.0.8(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
resize-observer-polyfill: 1.5.1
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/segmented@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/segmented@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/select@1.0.9(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/select@1.0.19(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/overflow': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- '@v-c/virtual-list': 1.0.5(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/slick@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/slick@1.0.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- es-toolkit: 1.43.0
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ es-toolkit: 1.45.1
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/slider@1.0.10(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/slider@1.0.10(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/steps@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/steps@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/switch@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/switch@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/table@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/table@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- '@v-c/virtual-list': 1.0.5(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/tabs@1.0.1(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/tabs@1.0.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/dropdown': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/menu': 1.0.10(vue@3.5.28(typescript@5.9.3))
- '@v-c/overflow': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/dropdown': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/menu': 1.0.11(vue@3.5.30(typescript@5.9.3))
+ '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/textarea@1.0.3(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/textarea@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/input': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/tooltip@1.0.3(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/tooltip@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/tour@1.0.3(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/tour@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/portal': 1.0.7(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/tree-select@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/tree-select@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/select': 1.0.9(vue@3.5.28(typescript@5.9.3))
- '@v-c/tree': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tree': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/tree@1.0.2(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/tree@1.0.5(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- '@v-c/virtual-list': 1.0.5(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/trigger@1.0.11(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/trigger@1.0.13(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/portal': 1.0.7(vue@3.5.28(typescript@5.9.3))
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/upload@1.0.0(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/upload@1.0.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/util@1.0.13(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/util@1.0.18(vue@3.5.30(typescript@5.9.3))':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@v-c/virtual-list@1.0.5(vue@3.5.28(typescript@5.9.3))':
+ '@v-c/virtual-list@1.0.6(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@vee-validate/zod@4.15.1(vue@3.5.28(typescript@5.9.3))(zod@3.25.76)':
+ '@valibot/to-json-schema@1.5.0(valibot@1.2.0(typescript@5.9.3))':
+ dependencies:
+ valibot: 1.2.0(typescript@5.9.3)
+
+ '@vee-validate/zod@4.15.1(vue@3.5.30(typescript@5.9.3))(zod@3.25.76)':
dependencies:
type-fest: 4.41.0
- vee-validate: 4.15.1(vue@3.5.28(typescript@5.9.3))
+ vee-validate: 4.15.1(vue@3.5.30(typescript@5.9.3))
zod: 3.25.76
transitivePeerDependencies:
- vue
- '@vercel/nft@1.3.1(rollup@4.57.1)':
+ '@vercel/nft@1.3.2(rollup@4.59.0)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.3
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
- acorn: 8.15.0
- acorn-import-attributes: 1.9.5(acorn@8.15.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
+ acorn: 8.16.0
+ acorn-import-attributes: 1.9.5(acorn@8.16.0)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
- glob: 13.0.2
+ glob: 13.0.6
graceful-fs: 4.2.11
node-gyp-build: 4.8.4
picomatch: 4.0.3
@@ -15980,11 +15785,11 @@ snapshots:
- rollup
- supports-color
- '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.28(typescript@5.9.3))':
+ '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@types/video.js': 7.3.58
video.js: 7.21.7
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
'@videojs/http-streaming@2.16.3(video.js@7.21.7)':
dependencies:
@@ -16009,117 +15814,96 @@ snapshots:
global: 4.4.0
is-function: 1.0.2
- '@vite-pwa/vitepress@1.1.0(vite-plugin-pwa@1.2.0(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(workbox-build@7.4.0)(workbox-window@7.4.0))':
+ '@vite-pwa/vitepress@1.1.0(vite-plugin-pwa@1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0))':
dependencies:
- vite-plugin-pwa: 1.2.0(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(workbox-build@7.4.0)(workbox-window@7.4.0)
+ vite-plugin-pwa: 1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
- '@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
+ '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
- '@rolldown/pluginutils': 1.0.0-rc.3
+ '@rolldown/pluginutils': 1.0.0-rc.9
'@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vue: 3.5.28(typescript@5.9.3)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@5.1.4(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0))(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@babel/core': 7.29.0
- '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
- '@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
- '@rolldown/pluginutils': 1.0.0-rc.3
- '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vue: 3.5.28(typescript@5.9.3)
- transitivePeerDependencies:
- - supports-color
+ vite: 5.4.21(@types/node@25.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)
+ vue: 3.5.30(typescript@5.9.3)
- '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(vue@3.5.28(typescript@5.9.3))':
- dependencies:
- vite: 5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)
- vue: 3.5.28(typescript@5.9.3)
-
- '@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
+ '@vitejs/plugin-vue@6.0.5(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@rolldown/pluginutils': 1.0.0-rc.2
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vue: 3.5.28(typescript@5.9.3)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
+ vue: 3.5.30(typescript@5.9.3)
- '@vitejs/plugin-vue@6.0.4(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
- dependencies:
- '@rolldown/pluginutils': 1.0.0-rc.2
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vue: 3.5.28(typescript@5.9.3)
-
- '@vitest/expect@3.2.4':
+ '@vitest/expect@4.1.0':
dependencies:
+ '@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 3.2.4
- '@vitest/utils': 3.2.4
- chai: 5.3.3
- tinyrainbow: 2.0.0
+ '@vitest/spy': 4.1.0
+ '@vitest/utils': 4.1.0
+ chai: 6.2.2
+ tinyrainbow: 3.1.0
- '@vitest/mocker@3.2.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))':
+ '@vitest/mocker@4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))':
dependencies:
- '@vitest/spy': 3.2.4
+ '@vitest/spy': 4.1.0
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
- '@vitest/pretty-format@3.2.4':
+ '@vitest/pretty-format@4.1.0':
dependencies:
- tinyrainbow: 2.0.0
+ tinyrainbow: 3.1.0
- '@vitest/runner@3.2.4':
+ '@vitest/runner@4.1.0':
dependencies:
- '@vitest/utils': 3.2.4
+ '@vitest/utils': 4.1.0
pathe: 2.0.3
- strip-literal: 3.1.0
- '@vitest/snapshot@3.2.4':
+ '@vitest/snapshot@4.1.0':
dependencies:
- '@vitest/pretty-format': 3.2.4
+ '@vitest/pretty-format': 4.1.0
+ '@vitest/utils': 4.1.0
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@3.2.4':
- dependencies:
- tinyspy: 4.0.4
+ '@vitest/spy@4.1.0': {}
- '@vitest/utils@3.2.4':
+ '@vitest/utils@4.1.0':
dependencies:
- '@vitest/pretty-format': 3.2.4
- loupe: 3.2.1
- tinyrainbow: 2.0.0
-
- '@volar/language-core@2.4.27':
- dependencies:
- '@volar/source-map': 2.4.27
+ '@vitest/pretty-format': 4.1.0
+ convert-source-map: 2.0.0
+ tinyrainbow: 3.1.0
'@volar/language-core@2.4.28':
dependencies:
'@volar/source-map': 2.4.28
- '@volar/source-map@2.4.27': {}
-
'@volar/source-map@2.4.28': {}
- '@volar/typescript@2.4.27':
- dependencies:
- '@volar/language-core': 2.4.27
- path-browserify: 1.0.1
- vscode-uri: 3.1.0
-
'@volar/typescript@2.4.28':
dependencies:
'@volar/language-core': 2.4.28
path-browserify: 1.0.1
vscode-uri: 3.1.0
+ '@vue-macros/common@3.1.2(vue@3.5.30(typescript@5.9.3))':
+ dependencies:
+ '@vue/compiler-sfc': 3.5.30
+ ast-kit: 2.2.0
+ local-pkg: 1.1.2
+ magic-string-ast: 1.0.3
+ unplugin-utils: 0.3.1
+ optionalDependencies:
+ vue: 3.5.30(typescript@5.9.3)
+
'@vue/babel-helper-vue-transform-on@1.5.0': {}
'@vue/babel-helper-vue-transform-on@2.0.1': {}
@@ -16134,7 +15918,7 @@ snapshots:
'@babel/types': 7.29.0
'@vue/babel-helper-vue-transform-on': 1.5.0
'@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.29.0)
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
optionalDependencies:
'@babel/core': 7.29.0
transitivePeerDependencies:
@@ -16150,7 +15934,7 @@ snapshots:
'@babel/types': 7.29.0
'@vue/babel-helper-vue-transform-on': 2.0.1
'@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0)
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
optionalDependencies:
'@babel/core': 7.29.0
transitivePeerDependencies:
@@ -16163,7 +15947,7 @@ snapshots:
'@babel/helper-module-imports': 7.28.6
'@babel/helper-plugin-utils': 7.28.6
'@babel/parser': 7.29.0
- '@vue/compiler-sfc': 3.5.28
+ '@vue/compiler-sfc': 3.5.30
transitivePeerDependencies:
- supports-color
@@ -16174,39 +15958,39 @@ snapshots:
'@babel/helper-module-imports': 7.28.6
'@babel/helper-plugin-utils': 7.28.6
'@babel/parser': 7.29.0
- '@vue/compiler-sfc': 3.5.28
+ '@vue/compiler-sfc': 3.5.30
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.5.28':
+ '@vue/compiler-core@3.5.30':
dependencies:
'@babel/parser': 7.29.0
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
entities: 7.0.1
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.28':
+ '@vue/compiler-dom@3.5.30':
dependencies:
- '@vue/compiler-core': 3.5.28
- '@vue/shared': 3.5.28
+ '@vue/compiler-core': 3.5.30
+ '@vue/shared': 3.5.30
- '@vue/compiler-sfc@3.5.28':
+ '@vue/compiler-sfc@3.5.30':
dependencies:
'@babel/parser': 7.29.0
- '@vue/compiler-core': 3.5.28
- '@vue/compiler-dom': 3.5.28
- '@vue/compiler-ssr': 3.5.28
- '@vue/shared': 3.5.28
+ '@vue/compiler-core': 3.5.30
+ '@vue/compiler-dom': 3.5.30
+ '@vue/compiler-ssr': 3.5.30
+ '@vue/shared': 3.5.30
estree-walker: 2.0.2
magic-string: 0.30.21
- postcss: 8.5.6
+ postcss: 8.5.8
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.28':
+ '@vue/compiler-ssr@3.5.30':
dependencies:
- '@vue/compiler-dom': 3.5.28
- '@vue/shared': 3.5.28
+ '@vue/compiler-dom': 3.5.30
+ '@vue/shared': 3.5.30
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -16219,17 +16003,15 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.9
- '@vue/devtools-core@8.0.6(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
+ '@vue/devtools-api@8.1.0':
dependencies:
- '@vue/devtools-kit': 8.0.6
- '@vue/devtools-shared': 8.0.6
- mitt: 3.0.1
- nanoid: 5.1.6
- pathe: 2.0.3
- vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
- vue: 3.5.28(typescript@5.9.3)
- transitivePeerDependencies:
- - vite
+ '@vue/devtools-kit': 8.1.0
+
+ '@vue/devtools-core@8.1.0(vue@3.5.30(typescript@5.9.3))':
+ dependencies:
+ '@vue/devtools-kit': 8.1.0
+ '@vue/devtools-shared': 8.1.0
+ vue: 3.5.30(typescript@5.9.3)
'@vue/devtools-kit@7.7.9':
dependencies:
@@ -16241,140 +16023,134 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.6
- '@vue/devtools-kit@8.0.6':
+ '@vue/devtools-kit@8.1.0':
dependencies:
- '@vue/devtools-shared': 8.0.6
+ '@vue/devtools-shared': 8.1.0
birpc: 2.9.0
hookable: 5.5.3
- mitt: 3.0.1
perfect-debounce: 2.1.0
- speakingurl: 14.0.1
- superjson: 2.2.6
'@vue/devtools-shared@7.7.9':
dependencies:
rfdc: 1.4.1
- '@vue/devtools-shared@8.0.6':
- dependencies:
- rfdc: 1.4.1
+ '@vue/devtools-shared@8.1.0': {}
'@vue/language-core@2.2.0(typescript@5.9.3)':
dependencies:
'@volar/language-core': 2.4.28
- '@vue/compiler-dom': 3.5.28
+ '@vue/compiler-dom': 3.5.30
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
alien-signals: 0.4.14
- minimatch: 9.0.5
+ minimatch: 9.0.9
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
typescript: 5.9.3
- '@vue/language-core@3.2.4':
+ '@vue/language-core@3.2.5':
dependencies:
- '@volar/language-core': 2.4.27
- '@vue/compiler-dom': 3.5.28
- '@vue/shared': 3.5.28
+ '@volar/language-core': 2.4.28
+ '@vue/compiler-dom': 3.5.30
+ '@vue/shared': 3.5.30
alien-signals: 3.1.2
muggle-string: 0.4.1
path-browserify: 1.0.1
picomatch: 4.0.3
- '@vue/reactivity@3.5.28':
+ '@vue/reactivity@3.5.30':
dependencies:
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
- '@vue/runtime-core@3.5.28':
+ '@vue/runtime-core@3.5.30':
dependencies:
- '@vue/reactivity': 3.5.28
- '@vue/shared': 3.5.28
+ '@vue/reactivity': 3.5.30
+ '@vue/shared': 3.5.30
- '@vue/runtime-dom@3.5.28':
+ '@vue/runtime-dom@3.5.30':
dependencies:
- '@vue/reactivity': 3.5.28
- '@vue/runtime-core': 3.5.28
- '@vue/shared': 3.5.28
+ '@vue/reactivity': 3.5.30
+ '@vue/runtime-core': 3.5.30
+ '@vue/shared': 3.5.30
csstype: 3.2.3
- '@vue/server-renderer@3.5.28(vue@3.5.28(typescript@5.9.3))':
+ '@vue/server-renderer@3.5.30(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.28
- '@vue/shared': 3.5.28
- vue: 3.5.28(typescript@5.9.3)
+ '@vue/compiler-ssr': 3.5.30
+ '@vue/shared': 3.5.30
+ vue: 3.5.30(typescript@5.9.3)
- '@vue/shared@3.5.28': {}
+ '@vue/shared@3.5.30': {}
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.4
vue-component-type-helpers: 2.2.12
- '@vueuse/core@10.11.1(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/core@12.0.0(typescript@5.9.3)':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.28(typescript@5.9.3))
- vue-demi: 0.14.10(vue@3.5.28(typescript@5.9.3))
+ '@vueuse/metadata': 12.0.0
+ '@vueuse/shared': 12.0.0(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
+ - typescript
'@vueuse/core@12.8.2(typescript@5.9.3)':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 12.8.2
'@vueuse/shared': 12.8.2(typescript@5.9.3)
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- typescript
- '@vueuse/core@13.9.0(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/core@13.9.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 13.9.0
- '@vueuse/shared': 13.9.0(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@vueuse/shared': 13.9.0(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@vueuse/core@14.2.1(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/core@14.2.1(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 14.2.1
- '@vueuse/shared': 14.2.1(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3)':
+ '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(typescript@5.9.3)':
dependencies:
'@vueuse/core': 12.8.2(typescript@5.9.3)
'@vueuse/shared': 12.8.2(typescript@5.9.3)
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
async-validator: 4.2.5
- axios: 1.13.5
+ axios: 1.13.6
change-case: 5.4.4
focus-trap: 7.8.0
nprogress: 0.2.0
qrcode: 1.5.4
- sortablejs: 1.15.6
+ sortablejs: 1.15.7
transitivePeerDependencies:
- typescript
- '@vueuse/integrations@14.2.1(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/integrations@14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@vueuse/core': 14.2.1(vue@3.5.28(typescript@5.9.3))
- '@vueuse/shared': 14.2.1(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ '@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3))
+ '@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
async-validator: 4.2.5
- axios: 1.13.5
+ axios: 1.13.6
change-case: 5.4.4
- focus-trap: 7.8.0
+ focus-trap: 8.0.0
nprogress: 0.2.0
qrcode: 1.5.4
- sortablejs: 1.15.6
+ sortablejs: 1.15.7
- '@vueuse/metadata@10.11.1': {}
+ '@vueuse/metadata@12.0.0': {}
'@vueuse/metadata@12.8.2': {}
@@ -16382,56 +16158,55 @@ snapshots:
'@vueuse/metadata@14.2.1': {}
- '@vueuse/motion@3.0.3(magicast@0.5.2)(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/motion@3.0.3(magicast@0.5.2)(vue@3.5.30(typescript@5.9.3))':
dependencies:
- '@vueuse/core': 13.9.0(vue@3.5.28(typescript@5.9.3))
- '@vueuse/shared': 13.9.0(vue@3.5.28(typescript@5.9.3))
+ '@vueuse/core': 13.9.0(vue@3.5.30(typescript@5.9.3))
+ '@vueuse/shared': 13.9.0(vue@3.5.30(typescript@5.9.3))
defu: 6.1.4
framesync: 6.1.2
popmotion: 11.0.5
style-value-types: 5.1.2
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
- '@nuxt/kit': 3.21.1(magicast@0.5.2)
+ '@nuxt/kit': 3.21.2(magicast@0.5.2)
transitivePeerDependencies:
- magicast
- '@vueuse/shared@10.11.1(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/shared@12.0.0(typescript@5.9.3)':
dependencies:
- vue-demi: 0.14.10(vue@3.5.28(typescript@5.9.3))
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/shared@12.8.2(typescript@5.9.3)':
- dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- typescript
- '@vueuse/shared@13.9.0(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/shared@12.8.2(typescript@5.9.3)':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
+ transitivePeerDependencies:
+ - typescript
- '@vueuse/shared@14.2.1(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/shared@13.9.0(vue@3.5.30(typescript@5.9.3))':
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- '@vxe-ui/core@4.3.1(vue@3.5.28(typescript@5.9.3))':
+ '@vueuse/shared@14.2.1(vue@3.5.30(typescript@5.9.3))':
+ dependencies:
+ vue: 3.5.30(typescript@5.9.3)
+
+ '@vxe-ui/core@4.4.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
dom-zindex: 1.0.6
- vue: 3.5.28(typescript@5.9.3)
- xe-utils: 3.9.1
+ vue: 3.5.30(typescript@5.9.3)
+ xe-utils: 4.0.4
'@xmldom/xmldom@0.8.11': {}
- '@xyflow/svelte@1.5.0(svelte@5.50.1)':
+ '@xyflow/svelte@1.5.1(svelte@5.53.11)':
dependencies:
- '@svelte-put/shortcut': 4.1.0(svelte@5.50.1)
- '@xyflow/system': 0.0.74
- svelte: 5.50.1
+ '@svelte-put/shortcut': 4.1.0(svelte@5.53.11)
+ '@xyflow/system': 0.0.75
+ svelte: 5.53.11
- '@xyflow/system@0.0.74':
+ '@xyflow/system@0.0.75':
dependencies:
'@types/d3-drag': 3.0.7
'@types/d3-interpolate': 3.0.4
@@ -16443,11 +16218,6 @@ snapshots:
d3-selection: 3.0.0
d3-zoom: 3.0.0
- JSONStream@1.3.5:
- dependencies:
- jsonparse: 1.3.1
- through: 2.3.8
-
abbrev@2.0.0: {}
abbrev@3.0.1: {}
@@ -16456,15 +16226,15 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
- acorn-import-attributes@1.9.5(acorn@8.15.0):
+ acorn-import-attributes@1.9.5(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
- acorn-jsx@5.3.2(acorn@8.15.0):
+ acorn-jsx@5.3.2(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
- acorn@8.15.0: {}
+ acorn@8.16.0: {}
aes-decrypter@3.1.3:
dependencies:
@@ -16475,58 +16245,44 @@ snapshots:
agent-base@7.1.4: {}
- ajv-draft-04@1.0.0(ajv@8.13.0):
+ ajv-draft-04@1.0.0(ajv@8.18.0):
optionalDependencies:
- ajv: 8.13.0
+ ajv: 8.18.0
- ajv-formats@3.0.1(ajv@8.13.0):
+ ajv-formats@3.0.1(ajv@8.18.0):
optionalDependencies:
- ajv: 8.13.0
+ ajv: 8.18.0
- ajv@6.12.6:
+ ajv@6.14.0:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.12.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
- ajv@8.13.0:
- dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
-
- ajv@8.17.1:
+ ajv@8.18.0:
dependencies:
fast-deep-equal: 3.1.3
fast-uri: 3.1.0
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.48.0:
+ algoliasearch@5.49.2:
dependencies:
- '@algolia/abtesting': 1.14.0
- '@algolia/client-abtesting': 5.48.0
- '@algolia/client-analytics': 5.48.0
- '@algolia/client-common': 5.48.0
- '@algolia/client-insights': 5.48.0
- '@algolia/client-personalization': 5.48.0
- '@algolia/client-query-suggestions': 5.48.0
- '@algolia/client-search': 5.48.0
- '@algolia/ingestion': 1.48.0
- '@algolia/monitoring': 1.48.0
- '@algolia/recommend': 5.48.0
- '@algolia/requester-browser-xhr': 5.48.0
- '@algolia/requester-fetch': 5.48.0
- '@algolia/requester-node-http': 5.48.0
+ '@algolia/abtesting': 1.15.2
+ '@algolia/client-abtesting': 5.49.2
+ '@algolia/client-analytics': 5.49.2
+ '@algolia/client-common': 5.49.2
+ '@algolia/client-insights': 5.49.2
+ '@algolia/client-personalization': 5.49.2
+ '@algolia/client-query-suggestions': 5.49.2
+ '@algolia/client-search': 5.49.2
+ '@algolia/ingestion': 1.49.2
+ '@algolia/monitoring': 1.49.2
+ '@algolia/recommend': 5.49.2
+ '@algolia/requester-browser-xhr': 5.49.2
+ '@algolia/requester-fetch': 5.49.2
+ '@algolia/requester-node-http': 5.49.2
alien-signals@0.4.14: {}
@@ -16554,10 +16310,10 @@ snapshots:
ansis@4.2.0: {}
- ant-design-vue@4.2.6(vue@3.5.28(typescript@5.9.3)):
+ ant-design-vue@4.2.6(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@ant-design/colors': 6.0.0
- '@ant-design/icons-vue': 7.0.1(vue@3.5.28(typescript@5.9.3))
+ '@ant-design/icons-vue': 7.0.1(vue@3.5.30(typescript@5.9.3))
'@babel/runtime': 7.28.6
'@ctrl/tinycolor': 4.2.0
'@emotion/hash': 0.9.2
@@ -16566,7 +16322,7 @@ snapshots:
array-tree-filter: 2.1.0
async-validator: 4.2.5
csstype: 3.2.3
- dayjs: 1.11.19
+ dayjs: 1.11.20
dom-align: 1.12.4
dom-scroll-into-view: 2.0.1
lodash: 4.17.23
@@ -16576,58 +16332,57 @@ snapshots:
shallow-equal: 1.2.1
stylis: 4.3.6
throttle-debounce: 5.0.2
- vue: 3.5.28(typescript@5.9.3)
- vue-types: 3.0.2(vue@3.5.28(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
+ vue-types: 3.0.2(vue@3.5.30(typescript@5.9.3))
warning: 4.0.3
- antdv-next@1.0.2(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.28(typescript@5.9.3)):
+ antdv-next@1.1.3(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@ant-design/colors': 7.2.1
'@ant-design/fast-color': 3.0.1
- '@antdv-next/cssinjs': 1.0.1(vue@3.5.28(typescript@5.9.3))
- '@antdv-next/icons': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/async-validator': 1.0.0
- '@v-c/cascader': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/checkbox': 1.0.1(vue@3.5.28(typescript@5.9.3))
- '@v-c/collapse': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/color-picker': 1.0.5(vue@3.5.28(typescript@5.9.3))
- '@v-c/dialog': 1.0.1(vue@3.5.28(typescript@5.9.3))
- '@v-c/drawer': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/dropdown': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/image': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/input': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/input-number': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/mentions': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/menu': 1.0.10(vue@3.5.28(typescript@5.9.3))
- '@v-c/mutate-observer': 1.0.1(vue@3.5.28(typescript@5.9.3))
- '@v-c/notification': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/pagination': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/picker': 1.0.2(date-fns@4.1.0)(dayjs@1.11.19)(luxon@3.7.2)(vue@3.5.28(typescript@5.9.3))
- '@v-c/progress': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/qrcode': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/rate': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/resize-observer': 1.0.8(vue@3.5.28(typescript@5.9.3))
- '@v-c/segmented': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/select': 1.0.9(vue@3.5.28(typescript@5.9.3))
- '@v-c/slick': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/slider': 1.0.10(vue@3.5.28(typescript@5.9.3))
- '@v-c/steps': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/switch': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/table': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/tabs': 1.0.1(vue@3.5.28(typescript@5.9.3))
- '@v-c/textarea': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/tooltip': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/tour': 1.0.3(vue@3.5.28(typescript@5.9.3))
- '@v-c/tree': 1.0.2(vue@3.5.28(typescript@5.9.3))
- '@v-c/tree-select': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/trigger': 1.0.11(vue@3.5.28(typescript@5.9.3))
- '@v-c/upload': 1.0.0(vue@3.5.28(typescript@5.9.3))
- '@v-c/util': 1.0.13(vue@3.5.28(typescript@5.9.3))
- '@v-c/virtual-list': 1.0.5(vue@3.5.28(typescript@5.9.3))
- '@vueuse/core': 14.2.1(vue@3.5.28(typescript@5.9.3))
- dayjs: 1.11.19
- defu: 6.1.4
- es-toolkit: 1.43.0
+ '@antdv-next/cssinjs': 1.0.4(vue@3.5.30(typescript@5.9.3))
+ '@antdv-next/icons': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@v-c/async-validator': 1.0.1
+ '@v-c/cascader': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/checkbox': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/collapse': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/color-picker': 1.0.6(vue@3.5.30(typescript@5.9.3))
+ '@v-c/dialog': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/drawer': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/dropdown': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/image': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/input-number': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/mentions': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/menu': 1.0.11(vue@3.5.30(typescript@5.9.3))
+ '@v-c/mutate-observer': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/notification': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/pagination': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/picker': 1.0.4(date-fns@4.1.0)(dayjs@1.11.20)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3))
+ '@v-c/progress': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/qrcode': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/rate': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
+ '@v-c/segmented': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/slick': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/slider': 1.0.10(vue@3.5.30(typescript@5.9.3))
+ '@v-c/steps': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/switch': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/table': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tabs': 1.0.1(vue@3.5.30(typescript@5.9.3))
+ '@v-c/textarea': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tooltip': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tour': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tree': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@v-c/tree-select': 1.0.3(vue@3.5.30(typescript@5.9.3))
+ '@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
+ '@v-c/upload': 1.0.0(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.30(typescript@5.9.3))
+ '@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3))
+ dayjs: 1.11.20
+ es-toolkit: 1.45.1
scroll-into-view-if-needed: 3.1.0
throttle-debounce: 5.0.2
transitivePeerDependencies:
@@ -16636,8 +16391,6 @@ snapshots:
- moment
- vue
- any-promise@1.3.0: {}
-
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
@@ -16660,16 +16413,13 @@ snapshots:
buffer-crc32: 1.0.0
readable-stream: 4.7.0
readdir-glob: 1.1.3
- tar-stream: 3.1.7
+ tar-stream: 3.1.8
zip-stream: 6.0.1
transitivePeerDependencies:
- bare-abort-controller
+ - bare-buffer
- react-native-b4a
- are-docs-informative@0.0.2: {}
-
- arg@5.0.2: {}
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
@@ -16680,7 +16430,7 @@ snapshots:
dependencies:
tslib: 2.8.1
- aria-query@5.3.2: {}
+ aria-query@5.3.1: {}
array-buffer-byte-length@1.0.2:
dependencies:
@@ -16713,6 +16463,16 @@ snapshots:
assertion-error@2.0.1: {}
+ ast-kit@2.2.0:
+ dependencies:
+ '@babel/parser': 7.29.0
+ pathe: 2.0.3
+
+ ast-walker-scope@0.8.3:
+ dependencies:
+ '@babel/parser': 7.29.0
+ ast-kit: 2.2.0
+
astral-regex@2.0.0: {}
async-function@1.0.0: {}
@@ -16736,26 +16496,26 @@ snapshots:
dependencies:
tslib: 2.8.1
- autoprefixer@10.4.24(postcss@8.5.6):
+ autoprefixer@10.4.27(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- caniuse-lite: 1.0.30001769
+ caniuse-lite: 1.0.30001778
fraction.js: 5.3.4
picocolors: 1.1.1
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- axios-mock-adapter@2.1.0(axios@1.13.5):
+ axios-mock-adapter@2.1.0(axios@1.13.6):
dependencies:
- axios: 1.13.5
+ axios: 1.13.6
fast-deep-equal: 3.1.3
is-buffer: 2.0.5
- axios@1.13.5:
+ axios@1.13.6:
dependencies:
follow-redirects: 1.15.11
form-data: 4.0.5
@@ -16765,41 +16525,72 @@ snapshots:
axobject-query@4.1.0: {}
- b4a@1.7.3: {}
+ b4a@1.8.0: {}
- babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.29.0):
+ babel-plugin-polyfill-corejs2@0.4.16(@babel/core@7.29.0):
dependencies:
'@babel/compat-data': 7.29.0
'@babel/core': 7.29.0
- '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.14.0(@babel/core@7.29.0):
+ babel-plugin-polyfill-corejs3@0.14.1(@babel/core@7.29.0):
dependencies:
'@babel/core': 7.29.0
- '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
core-js-compat: 3.48.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.29.0):
+ babel-plugin-polyfill-regenerator@0.6.7(@babel/core@7.29.0):
dependencies:
'@babel/core': 7.29.0
- '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
+ '@babel/helper-define-polyfill-provider': 0.6.7(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
balanced-match@1.0.2: {}
- balanced-match@2.0.0: {}
+ balanced-match@4.0.4: {}
bare-events@2.8.2: {}
+ bare-fs@4.5.5:
+ dependencies:
+ bare-events: 2.8.2
+ bare-path: 3.0.0
+ bare-stream: 2.8.1(bare-events@2.8.2)
+ bare-url: 2.3.2
+ fast-fifo: 1.3.2
+ transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
+
+ bare-os@3.8.0: {}
+
+ bare-path@3.0.0:
+ dependencies:
+ bare-os: 3.8.0
+
+ bare-stream@2.8.1(bare-events@2.8.2):
+ dependencies:
+ streamx: 2.23.0
+ teex: 1.0.1
+ optionalDependencies:
+ bare-events: 2.8.2
+ transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
+
+ bare-url@2.3.2:
+ dependencies:
+ bare-path: 3.0.0
+
base64-js@1.5.1: {}
- baseline-browser-mapping@2.9.19: {}
+ baseline-browser-mapping@2.10.7: {}
benz-amr-recorder@1.1.5:
dependencies:
@@ -16813,14 +16604,10 @@ snapshots:
bignumber.js@9.3.1: {}
- binary-extensions@2.3.0: {}
-
bindings@1.5.0:
dependencies:
file-uri-to-path: 1.0.0
- bintrees@1.0.2: {}
-
birpc@2.9.0: {}
boolbase@1.0.0: {}
@@ -16836,13 +16623,13 @@ snapshots:
widest-line: 5.0.0
wrap-ansi: 9.0.2
- bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.38.0)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.0(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1):
+ bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.40.3)(bpmn-js@17.11.1)(camunda-bpmn-js-behaviors@1.14.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0))(diagram-js@12.8.1):
dependencies:
'@bpmn-io/extract-process-variables': 0.8.0
- '@bpmn-io/properties-panel': 3.38.0
+ '@bpmn-io/properties-panel': 3.40.3
array-move: 4.0.0
bpmn-js: 17.11.1
- camunda-bpmn-js-behaviors: 1.14.0(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0)
+ camunda-bpmn-js-behaviors: 1.14.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0)
diagram-js: 12.8.1
ids: 1.0.5
min-dash: 4.2.3
@@ -16881,16 +16668,20 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@5.0.4:
+ dependencies:
+ balanced-match: 4.0.4
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
browserslist@4.28.1:
dependencies:
- baseline-browser-mapping: 2.9.19
- caniuse-lite: 1.0.30001769
- electron-to-chromium: 1.5.286
- node-releases: 2.0.27
+ baseline-browser-mapping: 2.10.7
+ caniuse-lite: 1.0.30001778
+ electron-to-chromium: 1.5.313
+ node-releases: 2.0.36
update-browserslist-db: 1.2.3(browserslist@4.28.1)
buffer-crc32@1.0.0: {}
@@ -16913,7 +16704,7 @@ snapshots:
chokidar: 5.0.0
confbox: 0.2.4
defu: 6.1.4
- dotenv: 17.2.4
+ dotenv: 17.3.1
exsolve: 1.0.8
giget: 2.0.0
jiti: 2.6.1
@@ -16925,15 +16716,15 @@ snapshots:
optionalDependencies:
magicast: 0.5.2
- cac@6.7.14: {}
+ cac@7.0.0: {}
cacache@20.0.3:
dependencies:
'@npmcli/fs': 5.0.0
fs-minipass: 3.0.3
- glob: 13.0.2
- lru-cache: 11.2.6
- minipass: 7.1.2
+ glob: 13.0.6
+ lru-cache: 11.2.7
+ minipass: 7.1.3
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -16941,10 +16732,10 @@ snapshots:
ssri: 13.0.1
unique-filename: 5.0.0
- cacheable@2.3.2:
+ cacheable@2.3.3:
dependencies:
- '@cacheable/memory': 2.0.7
- '@cacheable/utils': 2.3.4
+ '@cacheable/memory': 2.0.8
+ '@cacheable/utils': 2.4.0
hookified: 1.15.1
keyv: 5.6.0
qified: 0.6.0
@@ -16975,19 +16766,17 @@ snapshots:
pascal-case: 3.1.2
tslib: 2.8.1
- camelcase-css@2.0.1: {}
-
camelcase@5.3.1: {}
camelcase@6.3.0: {}
camelcase@8.0.0: {}
- camunda-bpmn-js-behaviors@1.14.0(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0):
+ camunda-bpmn-js-behaviors@1.14.1(bpmn-js@17.11.1)(camunda-bpmn-moddle@7.0.1)(zeebe-bpmn-moddle@1.12.0):
dependencies:
bpmn-js: 17.11.1
camunda-bpmn-moddle: 7.0.1
- ids: 3.0.1
+ ids: 3.0.2
min-dash: 5.0.0
zeebe-bpmn-moddle: 1.12.0
@@ -16996,21 +16785,15 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
browserslist: 4.28.1
- caniuse-lite: 1.0.30001769
+ caniuse-lite: 1.0.30001778
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001769: {}
+ caniuse-lite@1.0.30001778: {}
ccount@2.0.1: {}
- chai@5.3.3:
- dependencies:
- assertion-error: 2.0.1
- check-error: 2.1.3
- deep-eql: 5.0.2
- loupe: 3.2.1
- pathval: 2.0.1
+ chai@6.2.2: {}
chalk-template@1.1.2:
dependencies:
@@ -17031,8 +16814,6 @@ snapshots:
chardet@2.1.1: {}
- check-error@2.1.3: {}
-
cheerio-select@2.1.0:
dependencies:
boolbase: 1.0.0
@@ -17063,21 +16844,9 @@ snapshots:
parse5: 7.3.0
parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
- undici: 7.21.0
+ undici: 7.24.1
whatwg-mimetype: 4.0.0
- chokidar@3.6.0:
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
@@ -17088,19 +16857,16 @@ snapshots:
chownr@3.0.0: {}
- ci-info@3.9.0: {}
-
ci-info@4.4.0: {}
- circular-dependency-scanner@2.3.0:
+ circular-dependency-scanner@3.0.1:
dependencies:
- '@ast-grep/napi': 0.39.9
- '@vue/compiler-sfc': 3.5.28
- commander: 12.1.0
+ '@ast-grep/napi': 0.41.1
+ '@vue/compiler-sfc': 3.5.30
+ commander: 14.0.3
get-tsconfig: 4.13.6
- graph-cycles: 3.0.0
- listr2: 8.3.3
- minimatch: 9.0.5
+ listr2: 9.0.5
+ minimatch: 9.0.9
node-cleanup: 2.1.2
typescript: 5.9.3
update-notifier: 7.3.1
@@ -17110,7 +16876,7 @@ snapshots:
dependencies:
consola: 3.4.2
- citty@0.2.0: {}
+ citty@0.2.1: {}
class-variance-authority@0.7.1:
dependencies:
@@ -17137,12 +16903,12 @@ snapshots:
dependencies:
restore-cursor: 5.1.0
- cli-spinners@2.9.2: {}
+ cli-spinners@3.4.0: {}
- cli-truncate@4.0.0:
+ cli-truncate@5.2.0:
dependencies:
- slice-ansi: 5.0.0
- string-width: 7.2.0
+ slice-ansi: 8.0.0
+ string-width: 8.2.0
clipboard@2.0.11:
dependencies:
@@ -17153,7 +16919,7 @@ snapshots:
clipboardy@4.0.0:
dependencies:
execa: 8.0.1
- is-wsl: 3.1.0
+ is-wsl: 3.1.1
is64bit: 2.0.0
cliui@6.0.0:
@@ -17174,6 +16940,12 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
+
clsx@2.1.1: {}
cluster-key-slot@1.1.2: {}
@@ -17192,6 +16964,8 @@ snapshots:
colorette@2.0.20: {}
+ colorjs.io@0.5.2: {}
+
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -17202,31 +16976,24 @@ snapshots:
commander@11.1.0: {}
- commander@12.1.0: {}
-
commander@14.0.3: {}
commander@2.20.3: {}
- commander@4.1.1: {}
-
commander@7.2.0: {}
commander@8.3.0: {}
- comment-json@4.5.1:
+ comment-json@4.6.2:
dependencies:
array-timsort: 1.0.3
- core-util-is: 1.0.3
esprima: 4.0.1
- comment-parser@1.4.1: {}
-
comment-parser@1.4.5: {}
- commitlint-plugin-function-rules@4.3.1(@commitlint/lint@19.8.1):
+ commitlint-plugin-function-rules@4.3.2(@commitlint/lint@20.4.4):
dependencies:
- '@commitlint/lint': 19.8.1
+ '@commitlint/lint': 20.4.4
common-tags@1.8.2: {}
@@ -17279,20 +17046,18 @@ snapshots:
consola@3.4.2: {}
- conventional-changelog-angular@7.0.0:
+ conventional-changelog-angular@8.3.0:
dependencies:
compare-func: 2.0.0
- conventional-changelog-conventionalcommits@7.0.2:
+ conventional-changelog-conventionalcommits@9.3.0:
dependencies:
compare-func: 2.0.0
- conventional-commits-parser@5.0.0:
+ conventional-commits-parser@6.3.0:
dependencies:
- JSONStream: 1.3.5
- is-text-path: 2.0.0
- meow: 12.1.1
- split2: 4.2.0
+ '@simple-libs/stream-utils': 1.2.0
+ meow: 13.2.0
convert-source-map@2.0.0: {}
@@ -17300,9 +17065,9 @@ snapshots:
cookie-es@2.0.0: {}
- copy-anything@2.0.6:
+ copy-anything@3.0.5:
dependencies:
- is-what: 3.14.1
+ is-what: 4.1.16
copy-anything@4.0.5:
dependencies:
@@ -17318,10 +17083,10 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@6.2.0(@types/node@24.10.13)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3):
+ cosmiconfig-typescript-loader@6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3):
dependencies:
- '@types/node': 24.10.13
- cosmiconfig: 9.0.0(typescript@5.9.3)
+ '@types/node': 25.5.0
+ cosmiconfig: 9.0.1(typescript@5.9.3)
jiti: 2.6.1
typescript: 5.9.3
@@ -17333,7 +17098,7 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@9.0.0(typescript@5.9.3):
+ cosmiconfig@9.0.1(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
@@ -17374,61 +17139,61 @@ snapshots:
crypto-random-string@2.0.0: {}
- cspell-config-lib@9.6.4:
+ cspell-config-lib@9.7.0:
dependencies:
- '@cspell/cspell-types': 9.6.4
- comment-json: 4.5.1
+ '@cspell/cspell-types': 9.7.0
+ comment-json: 4.6.2
smol-toml: 1.6.0
yaml: 2.8.2
- cspell-dictionary@9.6.4:
+ cspell-dictionary@9.7.0:
dependencies:
- '@cspell/cspell-performance-monitor': 9.6.4
- '@cspell/cspell-pipe': 9.6.4
- '@cspell/cspell-types': 9.6.4
- cspell-trie-lib: 9.6.4(@cspell/cspell-types@9.6.4)
+ '@cspell/cspell-performance-monitor': 9.7.0
+ '@cspell/cspell-pipe': 9.7.0
+ '@cspell/cspell-types': 9.7.0
+ cspell-trie-lib: 9.7.0(@cspell/cspell-types@9.7.0)
fast-equals: 6.0.0
- cspell-gitignore@9.6.4:
+ cspell-gitignore@9.7.0:
dependencies:
- '@cspell/url': 9.6.4
- cspell-glob: 9.6.4
- cspell-io: 9.6.4
+ '@cspell/url': 9.7.0
+ cspell-glob: 9.7.0
+ cspell-io: 9.7.0
- cspell-glob@9.6.4:
+ cspell-glob@9.7.0:
dependencies:
- '@cspell/url': 9.6.4
+ '@cspell/url': 9.7.0
picomatch: 4.0.3
- cspell-grammar@9.6.4:
+ cspell-grammar@9.7.0:
dependencies:
- '@cspell/cspell-pipe': 9.6.4
- '@cspell/cspell-types': 9.6.4
+ '@cspell/cspell-pipe': 9.7.0
+ '@cspell/cspell-types': 9.7.0
- cspell-io@9.6.4:
+ cspell-io@9.7.0:
dependencies:
- '@cspell/cspell-service-bus': 9.6.4
- '@cspell/url': 9.6.4
+ '@cspell/cspell-service-bus': 9.7.0
+ '@cspell/url': 9.7.0
- cspell-lib@9.6.4:
+ cspell-lib@9.7.0:
dependencies:
- '@cspell/cspell-bundled-dicts': 9.6.4
- '@cspell/cspell-performance-monitor': 9.6.4
- '@cspell/cspell-pipe': 9.6.4
- '@cspell/cspell-resolver': 9.6.4
- '@cspell/cspell-types': 9.6.4
- '@cspell/dynamic-import': 9.6.4
- '@cspell/filetypes': 9.6.4
- '@cspell/rpc': 9.6.4
- '@cspell/strong-weak-map': 9.6.4
- '@cspell/url': 9.6.4
+ '@cspell/cspell-bundled-dicts': 9.7.0
+ '@cspell/cspell-performance-monitor': 9.7.0
+ '@cspell/cspell-pipe': 9.7.0
+ '@cspell/cspell-resolver': 9.7.0
+ '@cspell/cspell-types': 9.7.0
+ '@cspell/dynamic-import': 9.7.0
+ '@cspell/filetypes': 9.7.0
+ '@cspell/rpc': 9.7.0
+ '@cspell/strong-weak-map': 9.7.0
+ '@cspell/url': 9.7.0
clear-module: 4.1.2
- cspell-config-lib: 9.6.4
- cspell-dictionary: 9.6.4
- cspell-glob: 9.6.4
- cspell-grammar: 9.6.4
- cspell-io: 9.6.4
- cspell-trie-lib: 9.6.4(@cspell/cspell-types@9.6.4)
+ cspell-config-lib: 9.7.0
+ cspell-dictionary: 9.7.0
+ cspell-glob: 9.7.0
+ cspell-grammar: 9.7.0
+ cspell-io: 9.7.0
+ cspell-trie-lib: 9.7.0(@cspell/cspell-types@9.7.0)
env-paths: 4.0.0
gensequence: 8.0.8
import-fresh: 3.3.1
@@ -17437,56 +17202,40 @@ snapshots:
vscode-uri: 3.1.0
xdg-basedir: 5.1.0
- cspell-trie-lib@9.6.4(@cspell/cspell-types@9.6.4):
+ cspell-trie-lib@9.7.0(@cspell/cspell-types@9.7.0):
dependencies:
- '@cspell/cspell-types': 9.6.4
+ '@cspell/cspell-types': 9.7.0
- cspell@9.6.4:
+ cspell@9.7.0:
dependencies:
- '@cspell/cspell-json-reporter': 9.6.4
- '@cspell/cspell-performance-monitor': 9.6.4
- '@cspell/cspell-pipe': 9.6.4
- '@cspell/cspell-types': 9.6.4
- '@cspell/cspell-worker': 9.6.4
- '@cspell/dynamic-import': 9.6.4
- '@cspell/url': 9.6.4
+ '@cspell/cspell-json-reporter': 9.7.0
+ '@cspell/cspell-performance-monitor': 9.7.0
+ '@cspell/cspell-pipe': 9.7.0
+ '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-worker': 9.7.0
+ '@cspell/dynamic-import': 9.7.0
+ '@cspell/url': 9.7.0
ansi-regex: 6.2.2
chalk: 5.6.2
chalk-template: 1.1.2
commander: 14.0.3
- cspell-config-lib: 9.6.4
- cspell-dictionary: 9.6.4
- cspell-gitignore: 9.6.4
- cspell-glob: 9.6.4
- cspell-io: 9.6.4
- cspell-lib: 9.6.4
+ cspell-config-lib: 9.7.0
+ cspell-dictionary: 9.7.0
+ cspell-gitignore: 9.7.0
+ cspell-glob: 9.7.0
+ cspell-io: 9.7.0
+ cspell-lib: 9.7.0
fast-json-stable-stringify: 2.1.0
- flatted: 3.3.3
+ flatted: 3.4.1
semver: 7.7.4
tinyglobby: 0.2.15
- css-blank-pseudo@7.0.1(postcss@8.5.6):
+ css-declaration-sorter@7.3.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- css-declaration-sorter@7.3.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
css-functions-list@3.3.3: {}
- css-has-pseudo@7.0.3(postcss@8.5.6):
- dependencies:
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
- postcss-value-parser: 4.2.0
-
- css-prefers-color-scheme@10.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
css-render@0.15.14:
dependencies:
'@emotion/hash': 0.8.0
@@ -17513,60 +17262,58 @@ snapshots:
mdn-data: 2.0.28
source-map-js: 1.2.1
- css-tree@3.1.0:
+ css-tree@3.2.1:
dependencies:
- mdn-data: 2.12.2
+ mdn-data: 2.27.1
source-map-js: 1.2.1
css-what@6.2.2: {}
- cssdb@8.7.1: {}
-
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.10(postcss@8.5.6):
+ cssnano-preset-default@7.0.11(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- css-declaration-sorter: 7.3.1(postcss@8.5.6)
- cssnano-utils: 5.0.1(postcss@8.5.6)
- postcss: 8.5.6
- postcss-calc: 10.1.1(postcss@8.5.6)
- postcss-colormin: 7.0.5(postcss@8.5.6)
- postcss-convert-values: 7.0.8(postcss@8.5.6)
- postcss-discard-comments: 7.0.5(postcss@8.5.6)
- postcss-discard-duplicates: 7.0.2(postcss@8.5.6)
- postcss-discard-empty: 7.0.1(postcss@8.5.6)
- postcss-discard-overridden: 7.0.1(postcss@8.5.6)
- postcss-merge-longhand: 7.0.5(postcss@8.5.6)
- postcss-merge-rules: 7.0.7(postcss@8.5.6)
- postcss-minify-font-values: 7.0.1(postcss@8.5.6)
- postcss-minify-gradients: 7.0.1(postcss@8.5.6)
- postcss-minify-params: 7.0.5(postcss@8.5.6)
- postcss-minify-selectors: 7.0.5(postcss@8.5.6)
- postcss-normalize-charset: 7.0.1(postcss@8.5.6)
- postcss-normalize-display-values: 7.0.1(postcss@8.5.6)
- postcss-normalize-positions: 7.0.1(postcss@8.5.6)
- postcss-normalize-repeat-style: 7.0.1(postcss@8.5.6)
- postcss-normalize-string: 7.0.1(postcss@8.5.6)
- postcss-normalize-timing-functions: 7.0.1(postcss@8.5.6)
- postcss-normalize-unicode: 7.0.5(postcss@8.5.6)
- postcss-normalize-url: 7.0.1(postcss@8.5.6)
- postcss-normalize-whitespace: 7.0.1(postcss@8.5.6)
- postcss-ordered-values: 7.0.2(postcss@8.5.6)
- postcss-reduce-initial: 7.0.5(postcss@8.5.6)
- postcss-reduce-transforms: 7.0.1(postcss@8.5.6)
- postcss-svgo: 7.1.0(postcss@8.5.6)
- postcss-unique-selectors: 7.0.4(postcss@8.5.6)
+ css-declaration-sorter: 7.3.1(postcss@8.5.8)
+ cssnano-utils: 5.0.1(postcss@8.5.8)
+ postcss: 8.5.8
+ postcss-calc: 10.1.1(postcss@8.5.8)
+ postcss-colormin: 7.0.6(postcss@8.5.8)
+ postcss-convert-values: 7.0.9(postcss@8.5.8)
+ postcss-discard-comments: 7.0.6(postcss@8.5.8)
+ postcss-discard-duplicates: 7.0.2(postcss@8.5.8)
+ postcss-discard-empty: 7.0.1(postcss@8.5.8)
+ postcss-discard-overridden: 7.0.1(postcss@8.5.8)
+ postcss-merge-longhand: 7.0.5(postcss@8.5.8)
+ postcss-merge-rules: 7.0.8(postcss@8.5.8)
+ postcss-minify-font-values: 7.0.1(postcss@8.5.8)
+ postcss-minify-gradients: 7.0.1(postcss@8.5.8)
+ postcss-minify-params: 7.0.6(postcss@8.5.8)
+ postcss-minify-selectors: 7.0.6(postcss@8.5.8)
+ postcss-normalize-charset: 7.0.1(postcss@8.5.8)
+ postcss-normalize-display-values: 7.0.1(postcss@8.5.8)
+ postcss-normalize-positions: 7.0.1(postcss@8.5.8)
+ postcss-normalize-repeat-style: 7.0.1(postcss@8.5.8)
+ postcss-normalize-string: 7.0.1(postcss@8.5.8)
+ postcss-normalize-timing-functions: 7.0.1(postcss@8.5.8)
+ postcss-normalize-unicode: 7.0.6(postcss@8.5.8)
+ postcss-normalize-url: 7.0.1(postcss@8.5.8)
+ postcss-normalize-whitespace: 7.0.1(postcss@8.5.8)
+ postcss-ordered-values: 7.0.2(postcss@8.5.8)
+ postcss-reduce-initial: 7.0.6(postcss@8.5.8)
+ postcss-reduce-transforms: 7.0.1(postcss@8.5.8)
+ postcss-svgo: 7.1.1(postcss@8.5.8)
+ postcss-unique-selectors: 7.0.5(postcss@8.5.8)
- cssnano-utils@5.0.1(postcss@8.5.6):
+ cssnano-utils@5.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
- cssnano@7.1.2(postcss@8.5.6):
+ cssnano@7.1.3(postcss@8.5.8):
dependencies:
- cssnano-preset-default: 7.0.10(postcss@8.5.6)
+ cssnano-preset-default: 7.0.11(postcss@8.5.8)
lilconfig: 3.1.3
- postcss: 8.5.6
+ postcss: 8.5.8
csso@5.0.5:
dependencies:
@@ -17738,8 +17485,6 @@ snapshots:
d3-transition: 3.0.1(d3-selection@3.0.0)
d3-zoom: 3.0.0
- dargs@8.1.0: {}
-
data-uri-to-buffer@4.0.1: {}
data-view-buffer@1.0.2:
@@ -17768,7 +17513,7 @@ snapshots:
date-fns@4.1.0: {}
- dayjs@1.11.19: {}
+ dayjs@1.11.20: {}
db0@0.3.4: {}
@@ -17780,8 +17525,6 @@ snapshots:
decamelize@1.2.0: {}
- deep-eql@5.0.2: {}
-
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
@@ -17829,7 +17572,7 @@ snapshots:
dependencies:
'@babel/parser': 7.29.0
'@babel/traverse': 7.29.0
- '@vue/compiler-sfc': 3.5.28
+ '@vue/compiler-sfc': 3.5.30
callsite: 1.0.0
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -17841,7 +17584,7 @@ snapshots:
js-yaml: 3.14.2
json5: 2.2.3
lodash: 4.17.23
- minimatch: 7.4.6
+ minimatch: 7.4.9
multimatch: 5.0.0
please-upgrade-node: 3.2.0
readdirp: 3.6.0
@@ -17867,7 +17610,7 @@ snapshots:
detect-libc@2.1.2: {}
- devalue@5.6.2: {}
+ devalue@5.6.4: {}
devlop@1.1.0:
dependencies:
@@ -17877,7 +17620,7 @@ snapshots:
dependencies:
diagram-js: 14.11.3
min-dash: 5.0.0
- min-dom: 5.2.0
+ min-dom: 5.3.0
diagram-js@12.8.1:
dependencies:
@@ -17908,9 +17651,7 @@ snapshots:
didi@9.0.2: {}
- didyoumean@1.2.2: {}
-
- diff-sequences@27.5.1: {}
+ diff-sequences@29.6.3: {}
diff@8.0.3: {}
@@ -17920,8 +17661,6 @@ snapshots:
dependencies:
path-type: 4.0.0
- dlv@1.1.3: {}
-
dom-align@1.12.4: {}
dom-scroll-into-view@2.0.1: {}
@@ -17954,9 +17693,9 @@ snapshots:
domify@1.4.2: {}
- domify@2.0.0: {}
+ domify@3.0.0: {}
- dompurify@3.3.1:
+ dompurify@3.3.3:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -17995,7 +17734,7 @@ snapshots:
dotenv@16.6.1: {}
- dotenv@17.2.4: {}
+ dotenv@17.3.1: {}
dotenv@8.6.0: {}
@@ -18014,11 +17753,11 @@ snapshots:
tslib: 2.3.0
zrender: 6.0.0
- editorconfig@1.0.4:
+ editorconfig@1.0.7:
dependencies:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
- minimatch: 9.0.1
+ minimatch: 9.0.9
semver: 7.7.4
ee-first@1.1.1: {}
@@ -18027,27 +17766,27 @@ snapshots:
dependencies:
jake: 10.9.4
- electron-to-chromium@1.5.286: {}
+ electron-to-chromium@1.5.313: {}
- element-plus@2.13.2(vue@3.5.28(typescript@5.9.3)):
+ element-plus@2.13.5(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@ctrl/tinycolor': 4.2.0
- '@element-plus/icons-vue': 2.3.2(vue@3.5.28(typescript@5.9.3))
- '@floating-ui/dom': 1.7.5
+ '@element-plus/icons-vue': 2.3.2(vue@3.5.30(typescript@5.9.3))
+ '@floating-ui/dom': 1.7.6
'@popperjs/core': '@sxzz/popperjs-es@2.11.8'
- '@types/lodash': 4.17.23
+ '@types/lodash': 4.17.24
'@types/lodash-es': 4.17.12
- '@vueuse/core': 10.11.1(vue@3.5.28(typescript@5.9.3))
+ '@vueuse/core': 12.0.0(typescript@5.9.3)
async-validator: 4.2.5
- dayjs: 1.11.19
+ dayjs: 1.11.20
lodash: 4.17.23
lodash-es: 4.17.23
lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23)
memoize-one: 6.0.0
normalize-wheel-es: 1.2.0
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- - '@vue/composition-api'
+ - typescript
emoji-regex-xs@1.0.0: {}
@@ -18066,7 +17805,7 @@ snapshots:
iconv-lite: 0.6.3
whatwg-encoding: 3.1.1
- enhanced-resolve@5.19.0:
+ enhanced-resolve@5.20.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.3.0
@@ -18187,38 +17926,36 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
- es-toolkit@1.43.0: {}
+ es-toolkit@1.45.1: {}
- es-toolkit@1.44.0: {}
-
- esbuild@0.25.12:
+ esbuild@0.27.4:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.12
- '@esbuild/android-arm': 0.25.12
- '@esbuild/android-arm64': 0.25.12
- '@esbuild/android-x64': 0.25.12
- '@esbuild/darwin-arm64': 0.25.12
- '@esbuild/darwin-x64': 0.25.12
- '@esbuild/freebsd-arm64': 0.25.12
- '@esbuild/freebsd-x64': 0.25.12
- '@esbuild/linux-arm': 0.25.12
- '@esbuild/linux-arm64': 0.25.12
- '@esbuild/linux-ia32': 0.25.12
- '@esbuild/linux-loong64': 0.25.12
- '@esbuild/linux-mips64el': 0.25.12
- '@esbuild/linux-ppc64': 0.25.12
- '@esbuild/linux-riscv64': 0.25.12
- '@esbuild/linux-s390x': 0.25.12
- '@esbuild/linux-x64': 0.25.12
- '@esbuild/netbsd-arm64': 0.25.12
- '@esbuild/netbsd-x64': 0.25.12
- '@esbuild/openbsd-arm64': 0.25.12
- '@esbuild/openbsd-x64': 0.25.12
- '@esbuild/openharmony-arm64': 0.25.12
- '@esbuild/sunos-x64': 0.25.12
- '@esbuild/win32-arm64': 0.25.12
- '@esbuild/win32-ia32': 0.25.12
- '@esbuild/win32-x64': 0.25.12
+ '@esbuild/aix-ppc64': 0.27.4
+ '@esbuild/android-arm': 0.27.4
+ '@esbuild/android-arm64': 0.27.4
+ '@esbuild/android-x64': 0.27.4
+ '@esbuild/darwin-arm64': 0.27.4
+ '@esbuild/darwin-x64': 0.27.4
+ '@esbuild/freebsd-arm64': 0.27.4
+ '@esbuild/freebsd-x64': 0.27.4
+ '@esbuild/linux-arm': 0.27.4
+ '@esbuild/linux-arm64': 0.27.4
+ '@esbuild/linux-ia32': 0.27.4
+ '@esbuild/linux-loong64': 0.27.4
+ '@esbuild/linux-mips64el': 0.27.4
+ '@esbuild/linux-ppc64': 0.27.4
+ '@esbuild/linux-riscv64': 0.27.4
+ '@esbuild/linux-s390x': 0.27.4
+ '@esbuild/linux-x64': 0.27.4
+ '@esbuild/netbsd-arm64': 0.27.4
+ '@esbuild/netbsd-x64': 0.27.4
+ '@esbuild/openbsd-arm64': 0.27.4
+ '@esbuild/openbsd-x64': 0.27.4
+ '@esbuild/openharmony-arm64': 0.27.4
+ '@esbuild/sunos-x64': 0.27.4
+ '@esbuild/win32-arm64': 0.27.4
+ '@esbuild/win32-ia32': 0.27.4
+ '@esbuild/win32-x64': 0.27.4
escalade@3.2.0: {}
@@ -18240,111 +17977,76 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.39.2(jiti@2.6.1)):
+ eslint-compat-utils@0.5.1(eslint@10.0.3(jiti@2.6.1)):
dependencies:
- eslint: 9.39.2(jiti@2.6.1)
+ eslint: 10.0.3(jiti@2.6.1)
semver: 7.7.4
- eslint-compat-utils@0.6.5(eslint@9.39.2(jiti@2.6.1)):
+ eslint-config-turbo@2.8.17(eslint@10.0.3(jiti@2.6.1))(turbo@2.8.17):
dependencies:
- eslint: 9.39.2(jiti@2.6.1)
- semver: 7.7.4
+ eslint: 10.0.3(jiti@2.6.1)
+ eslint-plugin-turbo: 2.8.17(eslint@10.0.3(jiti@2.6.1))(turbo@2.8.17)
+ turbo: 2.8.17
- eslint-config-turbo@2.8.5(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.5):
+ eslint-json-compat-utils@0.2.3(eslint@10.0.3(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
dependencies:
- eslint: 9.39.2(jiti@2.6.1)
- eslint-plugin-turbo: 2.8.5(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.5)
- turbo: 2.8.5
-
- eslint-import-context@0.1.9(unrs-resolver@1.11.1):
- dependencies:
- get-tsconfig: 4.13.6
- stable-hash-x: 0.2.0
- optionalDependencies:
- unrs-resolver: 1.11.1
-
- eslint-json-compat-utils@0.2.1(eslint@9.39.2(jiti@2.6.1))(jsonc-eslint-parser@2.4.2):
- dependencies:
- eslint: 9.39.2(jiti@2.6.1)
+ eslint: 10.0.3(jiti@2.6.1)
esquery: 1.7.0
- jsonc-eslint-parser: 2.4.2
+ jsonc-eslint-parser: 3.1.0
- eslint-plugin-command@3.4.0(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-better-tailwindcss@4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.16.0))(tailwindcss@4.2.1)(typescript@5.9.3):
dependencies:
- '@es-joy/jsdoccomment': 0.78.0
- eslint: 9.39.2(jiti@2.6.1)
+ '@eslint/css-tree': 3.6.9
+ '@valibot/to-json-schema': 1.5.0(valibot@1.2.0(typescript@5.9.3))
+ enhanced-resolve: 5.20.0
+ jiti: 2.6.1
+ synckit: 0.11.12
+ tailwind-csstree: 0.1.4
+ tailwindcss: 4.2.1
+ tsconfig-paths-webpack-plugin: 4.2.0
+ valibot: 1.2.0(typescript@5.9.3)
+ optionalDependencies:
+ eslint: 10.0.3(jiti@2.6.1)
+ oxlint: 1.55.0(oxlint-tsgolint@0.16.0)
+ transitivePeerDependencies:
+ - typescript
- eslint-plugin-es-x@7.8.0(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3))(@typescript-eslint/utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
+ '@es-joy/jsdoccomment': 0.84.0
+ '@typescript-eslint/rule-tester': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.57.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 10.0.3(jiti@2.6.1)
+
+ eslint-plugin-es-x@7.8.0(eslint@10.0.3(jiti@2.6.1)):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.2
- eslint: 9.39.2(jiti@2.6.1)
- eslint-compat-utils: 0.5.1(eslint@9.39.2(jiti@2.6.1))
+ eslint: 10.0.3(jiti@2.6.1)
+ eslint-compat-utils: 0.5.1(eslint@10.0.3(jiti@2.6.1))
- eslint-plugin-eslint-comments@3.2.0(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-jsonc@3.1.2(eslint@10.0.3(jiti@2.6.1)):
dependencies:
- escape-string-regexp: 1.0.5
- eslint: 9.39.2(jiti@2.6.1)
- ignore: 5.3.2
-
- eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)):
- dependencies:
- '@typescript-eslint/types': 8.55.0
- comment-parser: 1.4.5
- debug: 4.4.3
- eslint: 9.39.2(jiti@2.6.1)
- eslint-import-context: 0.1.9(unrs-resolver@1.11.1)
- is-glob: 4.0.3
- minimatch: 10.1.2
- semver: 7.7.4
- stable-hash-x: 0.2.0
- unrs-resolver: 1.11.1
- optionalDependencies:
- '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-jsdoc@61.7.1(eslint@9.39.2(jiti@2.6.1)):
- dependencies:
- '@es-joy/jsdoccomment': 0.78.0
- '@es-joy/resolve.exports': 1.2.0
- are-docs-informative: 0.0.2
- comment-parser: 1.4.1
- debug: 4.4.3
- escape-string-regexp: 4.0.0
- eslint: 9.39.2(jiti@2.6.1)
- espree: 11.1.0
- esquery: 1.7.0
- html-entities: 2.6.0
- object-deep-merge: 2.0.0
- parse-imports-exports: 0.2.4
- semver: 7.7.4
- spdx-expression-parse: 4.0.0
- to-valid-identifier: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-jsonc@2.21.1(eslint@9.39.2(jiti@2.6.1)):
- dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- diff-sequences: 27.5.1
- eslint: 9.39.2(jiti@2.6.1)
- eslint-compat-utils: 0.6.5(eslint@9.39.2(jiti@2.6.1))
- eslint-json-compat-utils: 0.2.1(eslint@9.39.2(jiti@2.6.1))(jsonc-eslint-parser@2.4.2)
- espree: 10.4.0
- graphemer: 1.4.0
- jsonc-eslint-parser: 2.4.2
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
+ '@eslint/core': 1.1.1
+ '@eslint/plugin-kit': 0.6.1
+ '@ota-meshi/ast-token-store': 0.3.0
+ diff-sequences: 29.6.3
+ eslint: 10.0.3(jiti@2.6.1)
+ eslint-json-compat-utils: 0.2.3(eslint@10.0.3(jiti@2.6.1))(jsonc-eslint-parser@3.1.0)
+ jsonc-eslint-parser: 3.1.0
natural-compare: 1.4.0
synckit: 0.11.12
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.23.2(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-n@17.24.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- enhanced-resolve: 5.19.0
- eslint: 9.39.2(jiti@2.6.1)
- eslint-plugin-es-x: 7.8.0(eslint@9.39.2(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
+ enhanced-resolve: 5.20.0
+ eslint: 10.0.3(jiti@2.6.1)
+ eslint-plugin-es-x: 7.8.0(eslint@10.0.3(jiti@2.6.1))
get-tsconfig: 4.13.6
globals: 15.15.0
globrex: 0.1.2
@@ -18354,66 +18056,45 @@ snapshots:
transitivePeerDependencies:
- typescript
- eslint-plugin-no-only-tests@3.3.0: {}
-
- eslint-plugin-perfectionist@4.15.1(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-oxlint@1.55.0:
dependencies:
- '@typescript-eslint/types': 8.55.0
- '@typescript-eslint/utils': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.39.2(jiti@2.6.1)
+ jsonc-parser: 3.3.1
+
+ eslint-plugin-perfectionist@5.6.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3):
+ dependencies:
+ '@typescript-eslint/utils': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 10.0.3(jiti@2.6.1)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-pnpm@1.5.0(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-pnpm@1.6.0(eslint@10.0.3(jiti@2.6.1)):
dependencies:
empathic: 2.0.0
- eslint: 9.39.2(jiti@2.6.1)
- jsonc-eslint-parser: 2.4.2
+ eslint: 10.0.3(jiti@2.6.1)
+ jsonc-eslint-parser: 3.1.0
pathe: 2.0.3
- pnpm-workspace-yaml: 1.5.0
+ pnpm-workspace-yaml: 1.6.0
tinyglobby: 0.2.15
yaml: 2.8.2
yaml-eslint-parser: 2.0.0
- eslint-plugin-prettier@5.5.5(@types/eslint@9.6.1)(eslint@9.39.2(jiti@2.6.1))(prettier@3.8.1):
- dependencies:
- eslint: 9.39.2(jiti@2.6.1)
- prettier: 3.8.1
- prettier-linter-helpers: 1.0.1
- synckit: 0.11.12
- optionalDependencies:
- '@types/eslint': 9.6.1
-
- eslint-plugin-regexp@2.10.0(eslint@9.39.2(jiti@2.6.1)):
- dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- '@eslint-community/regexpp': 4.12.2
- comment-parser: 1.4.5
- eslint: 9.39.2(jiti@2.6.1)
- jsdoc-type-pratt-parser: 4.8.0
- refa: 0.12.1
- regexp-ast-analysis: 0.7.1
- scslre: 0.3.0
-
- eslint-plugin-turbo@2.8.5(eslint@9.39.2(jiti@2.6.1))(turbo@2.8.5):
+ eslint-plugin-turbo@2.8.17(eslint@10.0.3(jiti@2.6.1))(turbo@2.8.17):
dependencies:
dotenv: 16.0.3
- eslint: 9.39.2(jiti@2.6.1)
- turbo: 2.8.5
+ eslint: 10.0.3(jiti@2.6.1)
+ turbo: 2.8.17
- eslint-plugin-unicorn@62.0.0(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-unicorn@63.0.0(eslint@10.0.3(jiti@2.6.1)):
dependencies:
'@babel/helper-validator-identifier': 7.28.5
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- '@eslint/plugin-kit': 0.4.1
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
change-case: 5.4.4
ci-info: 4.4.0
clean-regexp: 1.0.0
core-js-compat: 3.48.0
- eslint: 9.39.2(jiti@2.6.1)
- esquery: 1.7.0
+ eslint: 10.0.3(jiti@2.6.1)
find-up-simple: 1.0.1
globals: 16.5.0
indent-string: 5.0.0
@@ -18425,81 +18106,69 @@ snapshots:
semver: 7.7.4
strip-indent: 4.1.1
- eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1)):
dependencies:
- eslint: 9.39.2(jiti@2.6.1)
+ eslint: 10.0.3(jiti@2.6.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.57.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)(vitest@3.2.4(@types/node@25.2.3)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ eslint-plugin-vue@10.8.0(@typescript-eslint/parser@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.0.3(jiti@2.6.1))):
dependencies:
- '@typescript-eslint/utils': 7.18.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- eslint: 9.39.2(jiti@2.6.1)
- optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.55.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
- vitest: 3.2.4(@types/node@25.2.3)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- eslint-plugin-vue@10.7.0(@typescript-eslint/parser@8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@2.6.1))):
- dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
- eslint: 9.39.2(jiti@2.6.1)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
+ eslint: 10.0.3(jiti@2.6.1)
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 7.1.1
semver: 7.7.4
- vue-eslint-parser: 10.2.0(eslint@9.39.2(jiti@2.6.1))
+ vue-eslint-parser: 10.4.0(eslint@10.0.3(jiti@2.6.1))
xml-name-validator: 4.0.0
optionalDependencies:
- '@typescript-eslint/parser': 8.55.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-yml@1.19.1(eslint@9.39.2(jiti@2.6.1)):
+ eslint-plugin-yml@3.3.1(eslint@10.0.3(jiti@2.6.1)):
dependencies:
+ '@eslint/core': 1.1.1
+ '@eslint/plugin-kit': 0.6.1
+ '@ota-meshi/ast-token-store': 0.3.0
debug: 4.4.3
- diff-sequences: 27.5.1
- escape-string-regexp: 4.0.0
- eslint: 9.39.2(jiti@2.6.1)
- eslint-compat-utils: 0.6.5(eslint@9.39.2(jiti@2.6.1))
+ diff-sequences: 29.6.3
+ escape-string-regexp: 5.0.0
+ eslint: 10.0.3(jiti@2.6.1)
natural-compare: 1.4.0
- yaml-eslint-parser: 1.3.2
+ yaml-eslint-parser: 2.0.0
transitivePeerDependencies:
- supports-color
- eslint-scope@8.4.0:
+ eslint-scope@9.1.2:
dependencies:
+ '@types/esrecurse': 4.3.1
+ '@types/estree': 1.0.8
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.1: {}
+ eslint-visitor-keys@5.0.1: {}
- eslint-visitor-keys@5.0.0: {}
-
- eslint@9.39.2(jiti@2.6.1):
+ eslint@10.0.3(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.3(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.2
- '@eslint/config-array': 0.21.1
- '@eslint/config-helpers': 0.4.2
- '@eslint/core': 0.17.0
- '@eslint/eslintrc': 3.3.3
- '@eslint/js': 9.39.2
- '@eslint/plugin-kit': 0.4.1
+ '@eslint/config-array': 0.23.3
+ '@eslint/config-helpers': 0.5.3
+ '@eslint/core': 1.1.1
+ '@eslint/plugin-kit': 0.6.1
'@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
'@types/estree': 1.0.8
- ajv: 6.12.6
- chalk: 4.1.2
+ ajv: 6.14.0
cross-spawn: 7.0.6
debug: 4.4.3
escape-string-regexp: 4.0.0
- eslint-scope: 8.4.0
- eslint-visitor-keys: 4.2.1
- espree: 10.4.0
+ eslint-scope: 9.1.2
+ eslint-visitor-keys: 5.0.1
+ espree: 11.2.0
esquery: 1.7.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -18510,8 +18179,7 @@ snapshots:
imurmurhash: 0.1.4
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
+ minimatch: 10.2.4
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
@@ -18521,22 +18189,16 @@ snapshots:
esm-env@1.2.2: {}
- espree@10.4.0:
+ espree@11.2.0:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
- eslint-visitor-keys: 4.2.1
-
- espree@11.1.0:
- dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
- eslint-visitor-keys: 5.0.0
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
+ eslint-visitor-keys: 5.0.1
espree@9.6.1:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -18545,9 +18207,10 @@ snapshots:
dependencies:
estraverse: 5.3.0
- esrap@2.2.3:
+ esrap@2.2.4:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
+ '@typescript-eslint/types': 8.57.0
esrecurse@4.3.0:
dependencies:
@@ -18624,8 +18287,6 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-diff@1.3.0: {}
-
fast-equals@6.0.0: {}
fast-fifo@1.3.2: {}
@@ -18642,11 +18303,9 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-string-compare@3.0.0: {}
-
fast-uri@3.1.0: {}
- fast-xml-parser@4.5.3:
+ fast-xml-parser@4.5.4:
dependencies:
strnum: 1.1.2
@@ -18665,24 +18324,26 @@ snapshots:
'@bpmn-io/cm-theme': 0.1.0-alpha.2
'@bpmn-io/feel-lint': 3.1.0
'@bpmn-io/feelin': 6.1.0
- '@bpmn-io/lezer-feel': 2.2.1
- '@codemirror/autocomplete': 6.20.0
- '@codemirror/commands': 6.10.2
- '@codemirror/language': 6.12.1
- '@codemirror/lint': 6.9.3
- '@codemirror/state': 6.5.4
- '@codemirror/view': 6.39.13
+ '@bpmn-io/lezer-feel': 2.3.0
+ '@codemirror/autocomplete': 6.20.1
+ '@codemirror/commands': 6.10.3
+ '@codemirror/language': 6.12.2
+ '@codemirror/lint': 6.9.5
+ '@codemirror/state': 6.6.0
+ '@codemirror/view': 6.40.0
'@lezer/common': 1.5.1
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.8
'@lezer/markdown': 1.6.3
- min-dom: 5.2.0
+ min-dom: 5.3.0
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
web-streams-polyfill: 3.3.3
+ fflate@0.8.2: {}
+
figures@6.1.0:
dependencies:
is-unicode-supported: 2.1.0
@@ -18697,9 +18358,9 @@ snapshots:
file-uri-to-path@1.0.0: {}
- filelist@1.0.4:
+ filelist@1.0.6:
dependencies:
- minimatch: 5.1.6
+ minimatch: 5.1.9
fill-range@7.1.1:
dependencies:
@@ -18717,11 +18378,10 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- find-up@7.0.0:
+ find-up@8.0.0:
dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- unicorn-magic: 0.1.0
+ locate-path: 8.0.0
+ unicorn-magic: 0.3.0
findup-sync@5.0.0:
dependencies:
@@ -18733,26 +18393,30 @@ snapshots:
fix-dts-default-cjs-exports@1.0.1:
dependencies:
magic-string: 0.30.21
- mlly: 1.8.0
- rollup: 4.57.1
+ mlly: 1.8.1
+ rollup: 4.59.0
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.3
+ flatted: 3.4.1
keyv: 4.5.4
flat-cache@6.1.20:
dependencies:
- cacheable: 2.3.2
- flatted: 3.3.3
+ cacheable: 2.3.3
+ flatted: 3.4.1
hookified: 1.15.1
- flatted@3.3.3: {}
+ flatted@3.4.1: {}
focus-trap@7.8.0:
dependencies:
tabbable: 6.4.0
+ focus-trap@8.0.0:
+ dependencies:
+ tabbable: 6.4.0
+
follow-redirects@1.15.11: {}
for-each@0.3.5:
@@ -18792,7 +18456,7 @@ snapshots:
jsonfile: 6.2.0
universalify: 2.0.1
- fs-extra@11.3.3:
+ fs-extra@11.3.4:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.2.0
@@ -18819,7 +18483,7 @@ snapshots:
fs-minipass@3.0.3:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
fsevents@2.3.2:
optional: true
@@ -18848,7 +18512,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.4.0: {}
+ get-east-asian-width@1.5.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -18900,11 +18564,13 @@ snapshots:
nypm: 0.6.5
pathe: 2.0.3
- git-raw-commits@4.0.0:
+ git-raw-commits@5.0.1(conventional-commits-parser@6.3.0):
dependencies:
- dargs: 8.1.0
- meow: 12.1.1
- split2: 4.2.0
+ '@conventional-changelog/git-client': 2.6.0(conventional-commits-parser@6.3.0)
+ meow: 13.2.0
+ transitivePeerDependencies:
+ - conventional-commits-filter
+ - conventional-commits-parser
glob-parent@5.1.2:
dependencies:
@@ -18918,8 +18584,8 @@ snapshots:
dependencies:
foreground-child: 3.3.1
jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
+ minimatch: 9.0.9
+ minipass: 7.1.3
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
@@ -18927,21 +18593,25 @@ snapshots:
dependencies:
foreground-child: 3.3.1
jackspeak: 4.2.3
- minimatch: 10.1.2
- minipass: 7.1.2
+ minimatch: 10.2.4
+ minipass: 7.1.3
package-json-from-dist: 1.0.1
- path-scurry: 2.0.1
+ path-scurry: 2.0.2
- glob@13.0.2:
+ glob@13.0.6:
dependencies:
- minimatch: 10.1.2
- minipass: 7.1.2
- path-scurry: 2.0.1
+ minimatch: 10.2.4
+ minipass: 7.1.3
+ path-scurry: 2.0.2
global-directory@4.0.1:
dependencies:
ini: 4.1.1
+ global-directory@5.0.0:
+ dependencies:
+ ini: 6.0.0
+
global-modules@1.0.0:
dependencies:
global-prefix: 1.0.2
@@ -18971,12 +18641,12 @@ snapshots:
min-document: 2.19.2
process: 0.11.10
- globals@14.0.0: {}
-
globals@15.15.0: {}
globals@16.5.0: {}
+ globals@17.4.0: {}
+
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
@@ -19000,7 +18670,7 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.3.0
- globby@16.1.0:
+ globby@16.1.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
fast-glob: 3.3.3
@@ -19023,14 +18693,6 @@ snapshots:
graceful-fs@4.2.11: {}
- graph-cycles@3.0.0:
- dependencies:
- fast-string-compare: 3.0.0
- rotated-array-set: 3.0.0
- short-tree: 3.0.0
-
- graphemer@1.4.0: {}
-
gray-matter@4.0.3:
dependencies:
js-yaml: 3.14.2
@@ -19042,7 +18704,7 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@1.15.5:
+ h3@1.15.6:
dependencies:
cookie-es: 1.2.2
crossws: 0.3.5
@@ -19056,15 +18718,24 @@ snapshots:
hammerjs@2.0.8: {}
- happy-dom@17.6.3:
+ happy-dom@20.8.4:
dependencies:
- webidl-conversions: 7.0.0
+ '@types/node': 25.5.0
+ '@types/whatwg-mimetype': 3.0.2
+ '@types/ws': 8.18.1
+ entities: 7.0.1
whatwg-mimetype: 3.0.0
+ ws: 8.19.0
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
has-bigints@1.1.0: {}
has-flag@4.0.0: {}
+ has-flag@5.0.1: {}
+
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.1
@@ -19079,7 +18750,7 @@ snapshots:
dependencies:
has-symbols: 1.1.0
- hashery@1.4.0:
+ hashery@1.5.0:
dependencies:
hookified: 1.15.1
@@ -19121,8 +18792,6 @@ snapshots:
htm@3.1.1: {}
- html-entities@2.6.0: {}
-
html-minifier-terser@6.1.0:
dependencies:
camel-case: 4.1.2
@@ -19143,7 +18812,7 @@ snapshots:
relateurl: 0.2.7
terser: 5.46.0
- html-tags@3.3.1: {}
+ html-tags@5.1.0: {}
html-void-elements@3.0.0: {}
@@ -19198,7 +18867,7 @@ snapshots:
ids@1.0.5: {}
- ids@3.0.1: {}
+ ids@3.0.2: {}
ieee754@1.2.1: {}
@@ -19209,7 +18878,7 @@ snapshots:
image-size@0.5.5:
optional: true
- immutable@5.1.4: {}
+ immutable@5.1.5: {}
import-fresh@3.3.1:
dependencies:
@@ -19234,6 +18903,8 @@ snapshots:
ini@4.1.1: {}
+ ini@6.0.0: {}
+
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -19242,9 +18913,9 @@ snapshots:
internmap@2.0.3: {}
- ioredis@5.9.2:
+ ioredis@5.10.0:
dependencies:
- '@ioredis/commands': 1.5.0
+ '@ioredis/commands': 1.5.1
cluster-key-slot: 1.1.2
debug: 4.4.3
denque: 2.1.0
@@ -19278,10 +18949,6 @@ snapshots:
dependencies:
has-bigints: 1.1.0
- is-binary-path@2.1.0:
- dependencies:
- binary-extensions: 2.3.0
-
is-boolean-object@1.2.2:
dependencies:
call-bound: 1.0.4
@@ -19328,11 +18995,9 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
- is-fullwidth-code-point@4.0.0: {}
-
is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.4.0
+ get-east-asian-width: 1.5.0
is-function@1.0.2: {}
@@ -19350,6 +19015,8 @@ snapshots:
is-in-ci@1.0.0: {}
+ is-in-ssh@1.0.0: {}
+
is-inside-container@1.0.0:
dependencies:
is-docker: 3.0.0
@@ -19434,16 +19101,10 @@ snapshots:
has-symbols: 1.1.0
safe-regex-test: 1.1.0
- is-text-path@2.0.0:
- dependencies:
- text-extensions: 2.4.0
-
is-typed-array@1.1.15:
dependencies:
which-typed-array: 1.1.20
- is-unicode-supported@1.3.0: {}
-
is-unicode-supported@2.1.0: {}
is-weakmap@2.0.2: {}
@@ -19457,7 +19118,7 @@ snapshots:
call-bound: 1.0.4
get-intrinsic: 1.3.0
- is-what@3.14.1: {}
+ is-what@4.1.16: {}
is-what@5.5.0: {}
@@ -19467,7 +19128,7 @@ snapshots:
dependencies:
is-docker: 2.2.1
- is-wsl@3.1.0:
+ is-wsl@3.1.1:
dependencies:
is-inside-container: 1.0.0
@@ -19494,9 +19155,11 @@ snapshots:
jake@10.9.4:
dependencies:
async: 3.2.6
- filelist: 1.0.4
+ filelist: 1.0.6
picocolors: 1.1.1
+ jiti@1.21.7: {}
+
jiti@2.6.1: {}
jju@1.4.0: {}
@@ -19504,7 +19167,7 @@ snapshots:
js-beautify@1.15.4:
dependencies:
config-chain: 1.1.13
- editorconfig: 1.0.4
+ editorconfig: 1.0.7
glob: 10.4.5
js-cookie: 3.0.5
nopt: 7.2.1
@@ -19524,9 +19187,7 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsdoc-type-pratt-parser@4.8.0: {}
-
- jsdoc-type-pratt-parser@7.0.0: {}
+ jsdoc-type-pratt-parser@7.1.1: {}
jsencrypt@3.5.4: {}
@@ -19552,11 +19213,19 @@ snapshots:
jsonc-eslint-parser@2.4.2:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.7.4
+ jsonc-eslint-parser@3.1.0:
+ dependencies:
+ acorn: 8.16.0
+ eslint-visitor-keys: 5.0.1
+ semver: 7.7.4
+
+ jsonc-parser@3.3.1: {}
+
jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
@@ -19567,11 +19236,9 @@ snapshots:
optionalDependencies:
graceful-fs: 4.2.11
- jsonparse@1.3.1: {}
-
jsonpointer@5.0.1: {}
- katex@0.16.28:
+ katex@0.16.38:
dependencies:
commander: 8.3.0
@@ -19607,61 +19274,60 @@ snapshots:
dependencies:
readable-stream: 2.3.8
- lefthook-darwin-arm64@2.1.0:
+ lefthook-darwin-arm64@2.1.4:
optional: true
- lefthook-darwin-x64@2.1.0:
+ lefthook-darwin-x64@2.1.4:
optional: true
- lefthook-freebsd-arm64@2.1.0:
+ lefthook-freebsd-arm64@2.1.4:
optional: true
- lefthook-freebsd-x64@2.1.0:
+ lefthook-freebsd-x64@2.1.4:
optional: true
- lefthook-linux-arm64@2.1.0:
+ lefthook-linux-arm64@2.1.4:
optional: true
- lefthook-linux-x64@2.1.0:
+ lefthook-linux-x64@2.1.4:
optional: true
- lefthook-openbsd-arm64@2.1.0:
+ lefthook-openbsd-arm64@2.1.4:
optional: true
- lefthook-openbsd-x64@2.1.0:
+ lefthook-openbsd-x64@2.1.4:
optional: true
- lefthook-windows-arm64@2.1.0:
+ lefthook-windows-arm64@2.1.4:
optional: true
- lefthook-windows-x64@2.1.0:
+ lefthook-windows-x64@2.1.4:
optional: true
- lefthook@2.1.0:
+ lefthook@2.1.4:
optionalDependencies:
- lefthook-darwin-arm64: 2.1.0
- lefthook-darwin-x64: 2.1.0
- lefthook-freebsd-arm64: 2.1.0
- lefthook-freebsd-x64: 2.1.0
- lefthook-linux-arm64: 2.1.0
- lefthook-linux-x64: 2.1.0
- lefthook-openbsd-arm64: 2.1.0
- lefthook-openbsd-x64: 2.1.0
- lefthook-windows-arm64: 2.1.0
- lefthook-windows-x64: 2.1.0
+ lefthook-darwin-arm64: 2.1.4
+ lefthook-darwin-x64: 2.1.4
+ lefthook-freebsd-arm64: 2.1.4
+ lefthook-freebsd-x64: 2.1.4
+ lefthook-linux-arm64: 2.1.4
+ lefthook-linux-x64: 2.1.4
+ lefthook-openbsd-arm64: 2.1.4
+ lefthook-openbsd-x64: 2.1.4
+ lefthook-windows-arm64: 2.1.4
+ lefthook-windows-x64: 2.1.4
- less@4.5.1:
+ less@4.6.4:
dependencies:
- copy-anything: 2.0.6
+ copy-anything: 3.0.5
parse-node-version: 1.0.1
- tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
image-size: 0.5.5
make-dir: 2.1.0
mime: 1.6.0
- needle: 3.3.1
+ needle: 3.5.0
source-map: 0.6.1
leven@3.1.0: {}
@@ -19671,6 +19337,104 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ lightningcss-android-arm64@1.31.1:
+ optional: true
+
+ lightningcss-android-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-arm64@1.31.1:
+ optional: true
+
+ lightningcss-darwin-arm64@1.32.0:
+ optional: true
+
+ lightningcss-darwin-x64@1.31.1:
+ optional: true
+
+ lightningcss-darwin-x64@1.32.0:
+ optional: true
+
+ lightningcss-freebsd-x64@1.31.1:
+ optional: true
+
+ lightningcss-freebsd-x64@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.31.1:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.31.1:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.31.1:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.31.1:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.32.0:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.31.1:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.32.0:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.31.1:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.32.0:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.31.1:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.32.0:
+ optional: true
+
+ lightningcss@1.31.1:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.31.1
+ lightningcss-darwin-arm64: 1.31.1
+ lightningcss-darwin-x64: 1.31.1
+ lightningcss-freebsd-x64: 1.31.1
+ lightningcss-linux-arm-gnueabihf: 1.31.1
+ lightningcss-linux-arm64-gnu: 1.31.1
+ lightningcss-linux-arm64-musl: 1.31.1
+ lightningcss-linux-x64-gnu: 1.31.1
+ lightningcss-linux-x64-musl: 1.31.1
+ lightningcss-win32-arm64-msvc: 1.31.1
+ lightningcss-win32-x64-msvc: 1.31.1
+
+ lightningcss@1.32.0:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.32.0
+ lightningcss-darwin-arm64: 1.32.0
+ lightningcss-darwin-x64: 1.32.0
+ lightningcss-freebsd-x64: 1.32.0
+ lightningcss-linux-arm-gnueabihf: 1.32.0
+ lightningcss-linux-arm64-gnu: 1.32.0
+ lightningcss-linux-arm64-musl: 1.32.0
+ lightningcss-linux-x64-gnu: 1.32.0
+ lightningcss-linux-x64-musl: 1.32.0
+ lightningcss-win32-arm64-msvc: 1.32.0
+ lightningcss-win32-x64-msvc: 1.32.0
+
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -19689,10 +19453,10 @@ snapshots:
crossws: 0.3.5
defu: 6.1.4
get-port-please: 3.2.0
- h3: 1.15.5
+ h3: 1.15.6
http-shutdown: 1.2.2
jiti: 2.6.1
- mlly: 1.8.0
+ mlly: 1.8.1
node-forge: 1.3.3
pathe: 1.1.2
std-env: 3.10.0
@@ -19700,9 +19464,9 @@ snapshots:
untun: 0.1.3
uqr: 0.1.2
- listr2@8.3.3:
+ listr2@9.0.5:
dependencies:
- cli-truncate: 4.0.0
+ cli-truncate: 5.2.0
colorette: 2.0.20
eventemitter3: 5.0.4
log-update: 6.1.0
@@ -19711,7 +19475,7 @@ snapshots:
local-pkg@1.1.2:
dependencies:
- mlly: 1.8.0
+ mlly: 1.8.1
pkg-types: 2.3.0
quansync: 0.2.11
@@ -19725,7 +19489,7 @@ snapshots:
dependencies:
p-locate: 5.0.0
- locate-path@7.2.0:
+ locate-path@8.0.0:
dependencies:
p-locate: 6.0.0
@@ -19749,8 +19513,6 @@ snapshots:
lodash.isarguments@3.1.0: {}
- lodash.isplainobject@4.0.6: {}
-
lodash.kebabcase@4.1.1: {}
lodash.memoize@4.1.2: {}
@@ -19773,32 +19535,30 @@ snapshots:
lodash@4.17.23: {}
- log-symbols@6.0.0:
+ log-symbols@7.0.1:
dependencies:
- chalk: 5.6.2
- is-unicode-supported: 1.3.0
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
log-update@6.1.0:
dependencies:
ansi-escapes: 7.3.0
cli-cursor: 5.0.0
slice-ansi: 7.1.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
wrap-ansi: 9.0.2
loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- loupe@3.2.1: {}
-
lower-case@2.0.2:
dependencies:
tslib: 2.8.1
lru-cache@10.4.3: {}
- lru-cache@11.2.6: {}
+ lru-cache@11.2.7: {}
lru-cache@5.1.1:
dependencies:
@@ -19808,9 +19568,9 @@ snapshots:
dependencies:
yallist: 4.0.0
- lucide-vue-next@0.553.0(vue@3.5.28(typescript@5.9.3)):
+ lucide-vue-next@0.577.0(vue@3.5.30(typescript@5.9.3)):
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
luxon@3.7.2: {}
@@ -19822,6 +19582,10 @@ snapshots:
'@videojs/vhs-utils': 3.0.5
global: 4.4.0
+ magic-string-ast@1.0.3:
+ dependencies:
+ magic-string: 0.30.21
+
magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
@@ -19844,7 +19608,7 @@ snapshots:
mark.js@8.11.1: {}
- markdown-it@14.1.0:
+ markdown-it@14.1.1:
dependencies:
argparse: 2.0.1
entities: 4.5.0
@@ -19853,7 +19617,7 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- marked@17.0.1: {}
+ marked@17.0.4: {}
markmap-common@0.16.0:
dependencies:
@@ -19872,7 +19636,7 @@ snapshots:
'@babel/runtime': 7.28.6
highlight.js: 11.11.1
js-yaml: 4.1.1
- katex: 0.16.28
+ katex: 0.16.38
markmap-common: 0.16.0
markmap-html-parser: 0.16.1(markmap-common@0.16.0)
markmap-view: 0.16.0(markmap-common@0.16.0)
@@ -19897,7 +19661,7 @@ snapshots:
math-intrinsics@1.1.0: {}
- mathml-tag-names@2.1.3: {}
+ mathml-tag-names@4.0.0: {}
mdast-util-to-hast@13.2.1:
dependencies:
@@ -19913,9 +19677,9 @@ snapshots:
mdn-data@2.0.28: {}
- mdn-data@2.12.2: {}
+ mdn-data@2.23.0: {}
- mdn-data@2.27.0: {}
+ mdn-data@2.27.1: {}
mdurl@2.0.0: {}
@@ -19923,10 +19687,10 @@ snapshots:
memoize-one@6.0.0: {}
- meow@12.1.1: {}
-
meow@13.2.0: {}
+ meow@14.1.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -19988,32 +19752,32 @@ snapshots:
domify: 1.4.2
min-dash: 4.2.3
- min-dom@5.2.0:
+ min-dom@5.3.0:
dependencies:
- domify: 2.0.0
+ domify: 3.0.0
min-dash: 5.0.0
- minimatch@10.1.2:
+ minimatch@10.2.3:
dependencies:
- '@isaacs/brace-expansion': 5.0.1
+ brace-expansion: 5.0.4
- minimatch@3.1.2:
+ minimatch@10.2.4:
+ dependencies:
+ brace-expansion: 5.0.4
+
+ minimatch@3.1.5:
dependencies:
brace-expansion: 1.1.12
- minimatch@5.1.6:
+ minimatch@5.1.9:
dependencies:
brace-expansion: 2.0.2
- minimatch@7.4.6:
+ minimatch@7.4.9:
dependencies:
brace-expansion: 2.0.2
- minimatch@9.0.1:
- dependencies:
- brace-expansion: 2.0.2
-
- minimatch@9.0.5:
+ minimatch@9.0.9:
dependencies:
brace-expansion: 2.0.2
@@ -20021,7 +19785,7 @@ snapshots:
minipass-collect@2.0.1:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
minipass-flush@1.0.5:
dependencies:
@@ -20035,40 +19799,40 @@ snapshots:
dependencies:
yallist: 4.0.0
- minipass@7.1.2: {}
+ minipass@7.1.3: {}
minisearch@7.2.0: {}
minizlib@3.1.0:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
mitt@3.0.1: {}
- mkdist@2.4.1(sass@1.97.3)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3)):
+ mkdist@2.4.1(sass@1.98.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3)):
dependencies:
- autoprefixer: 10.4.24(postcss@8.5.6)
+ autoprefixer: 10.4.27(postcss@8.5.8)
citty: 0.1.6
- cssnano: 7.1.2(postcss@8.5.6)
+ cssnano: 7.1.3(postcss@8.5.8)
defu: 6.1.4
- esbuild: 0.25.12
- jiti: 2.6.1
- mlly: 1.8.0
+ esbuild: 0.27.4
+ jiti: 1.21.7
+ mlly: 1.8.1
pathe: 2.0.3
pkg-types: 2.3.0
- postcss: 8.5.6
- postcss-nested: 7.0.2(postcss@8.5.6)
+ postcss: 8.5.8
+ postcss-nested: 7.0.2(postcss@8.5.8)
semver: 7.7.4
tinyglobby: 0.2.15
optionalDependencies:
- sass: 1.97.3
+ sass: 1.98.0
typescript: 5.9.3
- vue: 3.5.28(typescript@5.9.3)
- vue-tsc: 3.2.4(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
+ vue-tsc: 3.2.5(typescript@5.9.3)
- mlly@1.8.0:
+ mlly@1.8.1:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.6.3
@@ -20083,6 +19847,8 @@ snapshots:
dependencies:
min-dash: 4.2.3
+ modern-tar@0.7.5: {}
+
mpd-parser@0.22.1:
dependencies:
'@babel/runtime': 7.28.6
@@ -20104,25 +19870,18 @@ snapshots:
array-differ: 3.0.0
array-union: 2.1.0
arrify: 2.0.1
- minimatch: 3.1.2
+ minimatch: 3.1.5
mux.js@6.0.1:
dependencies:
'@babel/runtime': 7.28.6
global: 4.4.0
- mz@2.7.0:
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
-
- naive-ui@2.43.2(vue@3.5.28(typescript@5.9.3)):
+ naive-ui@2.44.1(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.28(typescript@5.9.3))
- '@types/katex': 0.16.8
- '@types/lodash': 4.17.23
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.30(typescript@5.9.3))
+ '@types/lodash': 4.17.24
'@types/lodash-es': 4.17.12
async-validator: 4.2.5
css-render: 0.15.14
@@ -20135,40 +19894,36 @@ snapshots:
lodash-es: 4.17.23
seemly: 0.3.10
treemate: 0.3.11
- vdirs: 0.1.8(vue@3.5.28(typescript@5.9.3))
- vooks: 0.2.12(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
- vueuc: 0.4.65(vue@3.5.28(typescript@5.9.3))
+ vdirs: 0.1.8(vue@3.5.30(typescript@5.9.3))
+ vooks: 0.2.12(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
+ vueuc: 0.4.65(vue@3.5.30(typescript@5.9.3))
nanoid@3.3.11: {}
- nanoid@5.1.6: {}
-
nanopop@2.4.2: {}
- napi-postinstall@0.3.4: {}
-
natural-compare@1.4.0: {}
natural-orderby@5.0.0: {}
- needle@3.3.1:
+ needle@3.5.0:
dependencies:
iconv-lite: 0.6.3
- sax: 1.4.4
+ sax: 1.5.0
optional: true
- nitropack@2.13.1:
+ nitropack@2.13.1(rolldown@1.0.0-rc.9):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.2
- '@rollup/plugin-alias': 6.0.0(rollup@4.57.1)
- '@rollup/plugin-commonjs': 29.0.0(rollup@4.57.1)
- '@rollup/plugin-inject': 5.0.5(rollup@4.57.1)
- '@rollup/plugin-json': 6.1.0(rollup@4.57.1)
- '@rollup/plugin-node-resolve': 16.0.3(rollup@4.57.1)
- '@rollup/plugin-replace': 6.0.3(rollup@4.57.1)
- '@rollup/plugin-terser': 0.4.4(rollup@4.57.1)
- '@vercel/nft': 1.3.1(rollup@4.57.1)
+ '@rollup/plugin-alias': 6.0.0(rollup@4.59.0)
+ '@rollup/plugin-commonjs': 29.0.2(rollup@4.59.0)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.59.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.59.0)
+ '@rollup/plugin-node-resolve': 16.0.3(rollup@4.59.0)
+ '@rollup/plugin-replace': 6.0.3(rollup@4.59.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.59.0)
+ '@vercel/nft': 1.3.2(rollup@4.59.0)
archiver: 7.0.1
c12: 3.3.3(magicast@0.5.2)
chokidar: 5.0.0
@@ -20183,16 +19938,16 @@ snapshots:
defu: 6.1.4
destr: 2.0.5
dot-prop: 10.1.0
- esbuild: 0.25.12
+ esbuild: 0.27.4
escape-string-regexp: 5.0.0
etag: 1.8.1
exsolve: 1.0.8
- globby: 16.1.0
+ globby: 16.1.1
gzip-size: 7.0.0
- h3: 1.15.5
+ h3: 1.15.6
hookable: 5.5.3
httpxy: 0.1.7
- ioredis: 5.9.2
+ ioredis: 5.10.0
jiti: 2.6.1
klona: 2.0.6
knitwork: 1.3.0
@@ -20200,7 +19955,7 @@ snapshots:
magic-string: 0.30.21
magicast: 0.5.2
mime: 4.1.0
- mlly: 1.8.0
+ mlly: 1.8.1
node-fetch-native: 1.6.7
node-mock-http: 1.0.4
ofetch: 1.5.1
@@ -20210,8 +19965,8 @@ snapshots:
pkg-types: 2.3.0
pretty-bytes: 7.1.0
radix3: 1.1.2
- rollup: 4.57.1
- rollup-plugin-visualizer: 6.0.5(rollup@4.57.1)
+ rollup: 4.59.0
+ rollup-plugin-visualizer: 6.0.11(rolldown@1.0.0-rc.9)(rollup@4.59.0)
scule: 1.3.0
semver: 7.7.4
serve-placeholder: 2.0.2
@@ -20223,12 +19978,12 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.5.0
unenv: 2.0.0-rc.24
- unimport: 5.6.0
+ unimport: 5.7.0
unplugin-utils: 0.3.1
- unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2)
+ unstorage: 1.17.4(db0@0.3.4)(ioredis@5.10.0)
untyped: 2.0.0
unwasm: 0.5.3
- youch: 4.1.0-beta.13
+ youch: 4.1.0
youch-core: 0.3.3
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -20249,6 +20004,7 @@ snapshots:
- '@vercel/kv'
- aws4fetch
- bare-abort-controller
+ - bare-buffer
- better-sqlite3
- drizzle-orm
- encoding
@@ -20301,7 +20057,7 @@ snapshots:
node-mock-http@1.0.4: {}
- node-releases@2.0.27: {}
+ node-releases@2.0.36: {}
nopt@7.2.1:
dependencies:
@@ -20334,15 +20090,9 @@ snapshots:
nypm@0.6.5:
dependencies:
- citty: 0.2.0
+ citty: 0.2.1
pathe: 2.0.3
- tinyexec: 1.0.2
-
- object-assign@4.1.1: {}
-
- object-deep-merge@2.0.0: {}
-
- object-hash@3.0.0: {}
+ tinyexec: 1.0.4
object-inspect@1.13.4: {}
@@ -20361,6 +20111,8 @@ snapshots:
has-symbols: 1.1.0
object-keys: 1.1.1
+ obug@2.1.1: {}
+
ofetch@1.5.1:
dependencies:
destr: 2.0.5
@@ -20394,6 +20146,15 @@ snapshots:
is-inside-container: 1.0.0
wsl-utils: 0.1.0
+ open@11.0.0:
+ dependencies:
+ default-browser: 5.5.0
+ define-lazy-prop: 3.0.0
+ is-in-ssh: 1.0.0
+ is-inside-container: 1.0.0
+ powershell-utils: 0.1.0
+ wsl-utils: 0.3.1
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -20409,17 +20170,16 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- ora@8.2.0:
+ ora@9.3.0:
dependencies:
chalk: 5.6.2
cli-cursor: 5.0.0
- cli-spinners: 2.9.2
+ cli-spinners: 3.4.0
is-interactive: 2.0.0
is-unicode-supported: 2.1.0
- log-symbols: 6.0.0
- stdin-discarder: 0.2.2
- string-width: 7.2.0
- strip-ansi: 7.1.2
+ log-symbols: 7.0.1
+ stdin-discarder: 0.3.1
+ string-width: 8.2.0
outdent@0.5.0: {}
@@ -20429,6 +20189,62 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
+ oxfmt@0.40.0:
+ dependencies:
+ tinypool: 2.1.0
+ optionalDependencies:
+ '@oxfmt/binding-android-arm-eabi': 0.40.0
+ '@oxfmt/binding-android-arm64': 0.40.0
+ '@oxfmt/binding-darwin-arm64': 0.40.0
+ '@oxfmt/binding-darwin-x64': 0.40.0
+ '@oxfmt/binding-freebsd-x64': 0.40.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.40.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.40.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.40.0
+ '@oxfmt/binding-linux-arm64-musl': 0.40.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.40.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.40.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.40.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.40.0
+ '@oxfmt/binding-linux-x64-gnu': 0.40.0
+ '@oxfmt/binding-linux-x64-musl': 0.40.0
+ '@oxfmt/binding-openharmony-arm64': 0.40.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.40.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.40.0
+ '@oxfmt/binding-win32-x64-msvc': 0.40.0
+
+ oxlint-tsgolint@0.16.0:
+ optionalDependencies:
+ '@oxlint-tsgolint/darwin-arm64': 0.16.0
+ '@oxlint-tsgolint/darwin-x64': 0.16.0
+ '@oxlint-tsgolint/linux-arm64': 0.16.0
+ '@oxlint-tsgolint/linux-x64': 0.16.0
+ '@oxlint-tsgolint/win32-arm64': 0.16.0
+ '@oxlint-tsgolint/win32-x64': 0.16.0
+
+ oxlint@1.55.0(oxlint-tsgolint@0.16.0):
+ optionalDependencies:
+ '@oxlint/binding-android-arm-eabi': 1.55.0
+ '@oxlint/binding-android-arm64': 1.55.0
+ '@oxlint/binding-darwin-arm64': 1.55.0
+ '@oxlint/binding-darwin-x64': 1.55.0
+ '@oxlint/binding-freebsd-x64': 1.55.0
+ '@oxlint/binding-linux-arm-gnueabihf': 1.55.0
+ '@oxlint/binding-linux-arm-musleabihf': 1.55.0
+ '@oxlint/binding-linux-arm64-gnu': 1.55.0
+ '@oxlint/binding-linux-arm64-musl': 1.55.0
+ '@oxlint/binding-linux-ppc64-gnu': 1.55.0
+ '@oxlint/binding-linux-riscv64-gnu': 1.55.0
+ '@oxlint/binding-linux-riscv64-musl': 1.55.0
+ '@oxlint/binding-linux-s390x-gnu': 1.55.0
+ '@oxlint/binding-linux-x64-gnu': 1.55.0
+ '@oxlint/binding-linux-x64-musl': 1.55.0
+ '@oxlint/binding-openharmony-arm64': 1.55.0
+ '@oxlint/binding-win32-arm64-msvc': 1.55.0
+ '@oxlint/binding-win32-ia32-msvc': 1.55.0
+ '@oxlint/binding-win32-x64-msvc': 1.55.0
+ oxlint-tsgolint: 0.16.0
+
p-filter@2.1.0:
dependencies:
p-map: 2.1.0
@@ -20493,10 +20309,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parse-imports-exports@0.2.4:
- dependencies:
- parse-statements: 1.0.11
-
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.29.0
@@ -20510,8 +20322,6 @@ snapshots:
parse-passwd@1.0.0: {}
- parse-statements@1.0.11: {}
-
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
@@ -20536,8 +20346,6 @@ snapshots:
path-exists@4.0.0: {}
- path-exists@5.0.0: {}
-
path-intersection@2.2.1: {}
path-intersection@3.1.0: {}
@@ -20551,12 +20359,12 @@ snapshots:
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
- minipass: 7.1.2
+ minipass: 7.1.3
- path-scurry@2.0.1:
+ path-scurry@2.0.2:
dependencies:
- lru-cache: 11.2.6
- minipass: 7.1.2
+ lru-cache: 11.2.7
+ minipass: 7.1.3
path-type@4.0.0: {}
@@ -20568,8 +20376,6 @@ snapshots:
pathe@2.0.3: {}
- pathval@2.0.1: {}
-
perfect-debounce@1.0.0: {}
perfect-debounce@2.1.0: {}
@@ -20580,26 +20386,22 @@ snapshots:
picomatch@4.0.3: {}
- pify@2.3.0: {}
-
pify@4.0.1: {}
- pinia-plugin-persistedstate@4.7.1(@nuxt/kit@4.3.1(magicast@0.5.2))(pinia@3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))):
+ pinia-plugin-persistedstate@4.7.1(@nuxt/kit@4.4.2(magicast@0.5.2))(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))):
dependencies:
defu: 6.1.4
optionalDependencies:
- '@nuxt/kit': 4.3.1(magicast@0.5.2)
- pinia: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
+ '@nuxt/kit': 4.4.2(magicast@0.5.2)
+ pinia: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
- pinia@3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)):
+ pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@vue/devtools-api': 7.7.9
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
typescript: 5.9.3
- pirates@4.0.7: {}
-
pkcs7@1.0.4:
dependencies:
'@babel/runtime': 7.28.6
@@ -20607,7 +20409,7 @@ snapshots:
pkg-types@1.3.1:
dependencies:
confbox: 0.1.8
- mlly: 1.8.0
+ mlly: 1.8.1
pathe: 2.0.3
pkg-types@2.3.0:
@@ -20632,7 +20434,7 @@ snapshots:
pngjs@5.0.0: {}
- pnpm-workspace-yaml@1.5.0:
+ pnpm-workspace-yaml@1.6.0:
dependencies:
yaml: 2.8.2
@@ -20645,487 +20447,213 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-antd-fixes@0.2.0(postcss@8.5.6):
+ postcss-calc@10.1.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
-
- postcss-attribute-case-insensitive@7.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- postcss-calc@10.1.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
- postcss-clamp@4.1.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-color-functional-notation@7.0.12(postcss@8.5.6):
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- postcss-color-hex-alpha@10.0.0(postcss@8.5.6):
- dependencies:
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-color-rebeccapurple@10.0.0(postcss@8.5.6):
- dependencies:
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-colormin@7.0.5(postcss@8.5.6):
+ postcss-colormin@7.0.6(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.8(postcss@8.5.6):
+ postcss-convert-values@7.0.9(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-custom-media@11.0.6(postcss@8.5.6):
+ postcss-discard-comments@7.0.6(postcss@8.5.8):
dependencies:
- '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- postcss: 8.5.6
-
- postcss-custom-properties@14.0.6(postcss@8.5.6):
- dependencies:
- '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-custom-selectors@8.0.5(postcss@8.5.6):
- dependencies:
- '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
- postcss-dir-pseudo-class@9.0.1(postcss@8.5.6):
+ postcss-discard-duplicates@7.0.2(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
+ postcss: 8.5.8
- postcss-discard-comments@7.0.5(postcss@8.5.6):
+ postcss-discard-empty@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
+ postcss: 8.5.8
- postcss-discard-duplicates@7.0.2(postcss@8.5.6):
+ postcss-discard-overridden@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
-
- postcss-discard-empty@7.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
- postcss-discard-overridden@7.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
- postcss-double-position-gradients@6.0.4(postcss@8.5.6):
- dependencies:
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-focus-visible@10.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- postcss-focus-within@9.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- postcss-font-variant@5.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
- postcss-gap-properties@6.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-html@1.8.1:
dependencies:
htmlparser2: 8.0.2
js-tokens: 9.0.1
- postcss: 8.5.6
- postcss-safe-parser: 6.0.0(postcss@8.5.6)
-
- postcss-image-set-function@7.0.0(postcss@8.5.6):
- dependencies:
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-import@15.1.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.11
-
- postcss-import@16.1.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
- read-cache: 1.0.0
- resolve: 1.22.11
-
- postcss-js@4.1.0(postcss@8.5.6):
- dependencies:
- camelcase-css: 2.0.1
- postcss: 8.5.6
-
- postcss-lab-function@7.0.12(postcss@8.5.6):
- dependencies:
- '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/utilities': 2.0.0(postcss@8.5.6)
- postcss: 8.5.6
-
- postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2):
- dependencies:
- lilconfig: 3.1.3
- optionalDependencies:
- jiti: 2.6.1
- postcss: 8.5.6
- yaml: 2.8.2
-
- postcss-logical@8.1.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
+ postcss: 8.5.8
+ postcss-safe-parser: 6.0.0(postcss@8.5.8)
postcss-media-query-parser@0.2.3: {}
- postcss-merge-longhand@7.0.5(postcss@8.5.6):
+ postcss-merge-longhand@7.0.5(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- stylehacks: 7.0.7(postcss@8.5.6)
+ stylehacks: 7.0.8(postcss@8.5.8)
- postcss-merge-rules@7.0.7(postcss@8.5.6):
+ postcss-merge-rules@7.0.8(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
caniuse-api: 3.0.0
- cssnano-utils: 5.0.1(postcss@8.5.6)
- postcss: 8.5.6
+ cssnano-utils: 5.0.1(postcss@8.5.8)
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
- postcss-minify-font-values@7.0.1(postcss@8.5.6):
+ postcss-minify-font-values@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.1(postcss@8.5.6):
+ postcss-minify-gradients@7.0.1(postcss@8.5.8):
dependencies:
colord: 2.9.3
- cssnano-utils: 5.0.1(postcss@8.5.6)
- postcss: 8.5.6
+ cssnano-utils: 5.0.1(postcss@8.5.8)
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.5(postcss@8.5.6):
+ postcss-minify-params@7.0.6(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- cssnano-utils: 5.0.1(postcss@8.5.6)
- postcss: 8.5.6
+ cssnano-utils: 5.0.1(postcss@8.5.8)
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.5(postcss@8.5.6):
+ postcss-minify-selectors@7.0.6(postcss@8.5.8):
dependencies:
cssesc: 3.0.0
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
- postcss-nested@5.0.6(postcss@8.5.6):
+ postcss-nested@7.0.2(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 6.1.2
-
- postcss-nested@6.2.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 6.1.2
-
- postcss-nested@7.0.2(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
- postcss-nesting@13.0.2(postcss@8.5.6):
+ postcss-normalize-charset@7.0.1(postcss@8.5.8):
dependencies:
- '@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.1)
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
+ postcss: 8.5.8
- postcss-normalize-charset@7.0.1(postcss@8.5.6):
+ postcss-normalize-display-values@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
-
- postcss-normalize-display-values@7.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.1(postcss@8.5.6):
+ postcss-normalize-positions@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.1(postcss@8.5.6):
+ postcss-normalize-repeat-style@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.1(postcss@8.5.6):
+ postcss-normalize-string@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.1(postcss@8.5.6):
+ postcss-normalize-timing-functions@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.5(postcss@8.5.6):
+ postcss-normalize-unicode@7.0.6(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.1(postcss@8.5.6):
+ postcss-normalize-url@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.1(postcss@8.5.6):
+ postcss-normalize-whitespace@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-opacity-percentage@3.0.0(postcss@8.5.6):
+ postcss-ordered-values@7.0.2(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
-
- postcss-ordered-values@7.0.2(postcss@8.5.6):
- dependencies:
- cssnano-utils: 5.0.1(postcss@8.5.6)
- postcss: 8.5.6
+ cssnano-utils: 5.0.1(postcss@8.5.8)
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-overflow-shorthand@6.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-page-break@3.0.4(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
- postcss-place@10.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-preset-env@10.6.1(postcss@8.5.6):
- dependencies:
- '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.6)
- '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.6)
- '@csstools/postcss-color-function': 4.0.12(postcss@8.5.6)
- '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.6)
- '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.6)
- '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.6)
- '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.6)
- '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.6)
- '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.6)
- '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.6)
- '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.6)
- '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.6)
- '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.6)
- '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.6)
- '@csstools/postcss-initial': 2.0.1(postcss@8.5.6)
- '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.6)
- '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.6)
- '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.6)
- '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.6)
- '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.6)
- '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.6)
- '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.6)
- '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.6)
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.6)
- '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.6)
- '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.6)
- '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.6)
- '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.6)
- '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.6)
- '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.6)
- '@csstools/postcss-random-function': 2.0.1(postcss@8.5.6)
- '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.6)
- '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.6)
- '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.6)
- '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.6)
- '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.6)
- '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.6)
- '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.6)
- '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.6)
- '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.6)
- autoprefixer: 10.4.24(postcss@8.5.6)
- browserslist: 4.28.1
- css-blank-pseudo: 7.0.1(postcss@8.5.6)
- css-has-pseudo: 7.0.3(postcss@8.5.6)
- css-prefers-color-scheme: 10.0.0(postcss@8.5.6)
- cssdb: 8.7.1
- postcss: 8.5.6
- postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.6)
- postcss-clamp: 4.1.0(postcss@8.5.6)
- postcss-color-functional-notation: 7.0.12(postcss@8.5.6)
- postcss-color-hex-alpha: 10.0.0(postcss@8.5.6)
- postcss-color-rebeccapurple: 10.0.0(postcss@8.5.6)
- postcss-custom-media: 11.0.6(postcss@8.5.6)
- postcss-custom-properties: 14.0.6(postcss@8.5.6)
- postcss-custom-selectors: 8.0.5(postcss@8.5.6)
- postcss-dir-pseudo-class: 9.0.1(postcss@8.5.6)
- postcss-double-position-gradients: 6.0.4(postcss@8.5.6)
- postcss-focus-visible: 10.0.1(postcss@8.5.6)
- postcss-focus-within: 9.0.1(postcss@8.5.6)
- postcss-font-variant: 5.0.0(postcss@8.5.6)
- postcss-gap-properties: 6.0.0(postcss@8.5.6)
- postcss-image-set-function: 7.0.0(postcss@8.5.6)
- postcss-lab-function: 7.0.12(postcss@8.5.6)
- postcss-logical: 8.1.0(postcss@8.5.6)
- postcss-nesting: 13.0.2(postcss@8.5.6)
- postcss-opacity-percentage: 3.0.0(postcss@8.5.6)
- postcss-overflow-shorthand: 6.0.0(postcss@8.5.6)
- postcss-page-break: 3.0.4(postcss@8.5.6)
- postcss-place: 10.0.0(postcss@8.5.6)
- postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.6)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.6)
- postcss-selector-not: 8.0.1(postcss@8.5.6)
-
- postcss-pseudo-class-any-link@10.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
-
- postcss-reduce-initial@7.0.5(postcss@8.5.6):
+ postcss-reduce-initial@7.0.6(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
caniuse-api: 3.0.0
- postcss: 8.5.6
+ postcss: 8.5.8
- postcss-reduce-transforms@7.0.1(postcss@8.5.6):
+ postcss-reduce-transforms@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
-
postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@6.0.0(postcss@8.5.6):
+ postcss-safe-parser@6.0.0(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
- postcss-safe-parser@7.0.1(postcss@8.5.6):
+ postcss-safe-parser@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
- postcss-scss@4.0.9(postcss@8.5.6):
+ postcss-scss@4.0.9(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
-
- postcss-selector-not@8.0.1(postcss@8.5.6):
- dependencies:
- postcss: 8.5.6
- postcss-selector-parser: 7.1.1
+ postcss: 8.5.8
postcss-selector-parser@6.0.10:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@6.1.2:
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
-
postcss-selector-parser@7.1.1:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sorting@9.1.0(postcss@8.5.6):
+ postcss-sorting@10.0.0(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
- postcss-svgo@7.1.0(postcss@8.5.6):
+ postcss-svgo@7.1.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
- svgo: 4.0.0
+ svgo: 4.0.1
- postcss-unique-selectors@7.0.4(postcss@8.5.6):
+ postcss-unique-selectors@7.0.5(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
postcss-value-parser@4.2.0: {}
- postcss@8.5.6:
+ postcss@8.5.8:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.28.3: {}
+ powershell-utils@0.1.0: {}
+
+ preact@10.29.0: {}
prelude-ls@1.2.1: {}
- prettier-linter-helpers@1.0.1:
- dependencies:
- fast-diff: 1.3.0
-
- prettier-plugin-tailwindcss@0.7.2(prettier@3.8.1):
- dependencies:
- prettier: 3.8.1
-
prettier@2.8.8: {}
- prettier@3.8.1: {}
-
pretty-bytes@5.6.0: {}
pretty-bytes@6.1.1: {}
@@ -21151,7 +20679,7 @@ snapshots:
prr@1.0.1:
optional: true
- publint@0.3.17:
+ publint@0.3.18:
dependencies:
'@publint/pack': 0.1.4
package-manager-detector: 1.6.0
@@ -21176,7 +20704,7 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
- qs@6.14.1:
+ qs@6.15.0:
dependencies:
side-channel: 1.1.0
@@ -21211,10 +20739,6 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- read-cache@1.0.0:
- dependencies:
- pify: 2.3.0
-
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -21247,7 +20771,7 @@ snapshots:
readdir-glob@1.1.3:
dependencies:
- minimatch: 5.1.6
+ minimatch: 5.1.9
readdirp@3.6.0:
dependencies:
@@ -21263,10 +20787,6 @@ snapshots:
dependencies:
redis-errors: 1.2.0
- refa@0.12.1:
- dependencies:
- '@eslint-community/regexpp': 4.12.2
-
reflect.getprototypeof@1.0.10:
dependencies:
call-bind: 1.0.8
@@ -21294,11 +20814,6 @@ snapshots:
dependencies:
regex-utilities: 2.3.0
- regexp-ast-analysis@0.7.1:
- dependencies:
- '@eslint-community/regexpp': 4.12.2
- refa: 0.12.1
-
regexp-tree@0.1.27: {}
regexp.prototype.flags@1.5.4:
@@ -21333,19 +20848,19 @@ snapshots:
dependencies:
jsesc: 3.1.0
- reka-ui@2.8.0(vue@3.5.28(typescript@5.9.3)):
+ reka-ui@2.9.2(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@floating-ui/dom': 1.7.5
- '@floating-ui/vue': 1.1.10(vue@3.5.28(typescript@5.9.3))
- '@internationalized/date': 3.11.0
+ '@floating-ui/dom': 1.7.6
+ '@floating-ui/vue': 1.1.11(vue@3.5.30(typescript@5.9.3))
+ '@internationalized/date': 3.12.0
'@internationalized/number': 3.6.5
- '@tanstack/vue-virtual': 3.13.18(vue@3.5.28(typescript@5.9.3))
- '@vueuse/core': 14.2.1(vue@3.5.28(typescript@5.9.3))
- '@vueuse/shared': 14.2.1(vue@3.5.28(typescript@5.9.3))
+ '@tanstack/vue-virtual': 3.13.22(vue@3.5.30(typescript@5.9.3))
+ '@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3))
+ '@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
aria-hidden: 1.2.6
defu: 6.1.4
ohash: 2.0.11
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -21366,8 +20881,6 @@ snapshots:
require-package-name@2.0.1: {}
- reserved-identifiers@1.2.0: {}
-
resize-observer-polyfill@1.5.1: {}
resolve-dir@1.0.1:
@@ -21398,9 +20911,9 @@ snapshots:
rfdc@1.4.1: {}
- rimraf@6.1.2:
+ rimraf@6.1.3:
dependencies:
- glob: 13.0.2
+ glob: 13.0.6
package-json-from-dist: 1.0.1
robust-predicates@3.0.2: {}
@@ -21409,69 +20922,93 @@ snapshots:
dependencies:
magic-string: 0.30.21
- rollup-plugin-dts@6.3.0(rollup@4.57.1)(typescript@5.9.3):
+ rolldown@1.0.0-rc.9:
dependencies:
+ '@oxc-project/types': 0.115.0
+ '@rolldown/pluginutils': 1.0.0-rc.9
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.0.0-rc.9
+ '@rolldown/binding-darwin-arm64': 1.0.0-rc.9
+ '@rolldown/binding-darwin-x64': 1.0.0-rc.9
+ '@rolldown/binding-freebsd-x64': 1.0.0-rc.9
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.9
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.9
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.9
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.9
+ '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.9
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.9
+ '@rolldown/binding-linux-x64-musl': 1.0.0-rc.9
+ '@rolldown/binding-openharmony-arm64': 1.0.0-rc.9
+ '@rolldown/binding-wasm32-wasi': 1.0.0-rc.9
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.9
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.9
+
+ rollup-plugin-dts@6.4.0(rollup@4.59.0)(typescript@5.9.3):
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ '@jridgewell/sourcemap-codec': 1.5.5
+ convert-source-map: 2.0.0
magic-string: 0.30.21
- rollup: 4.57.1
+ rollup: 4.59.0
typescript: 5.9.3
optionalDependencies:
'@babel/code-frame': 7.29.0
- rollup-plugin-visualizer@5.14.0(rollup@4.57.1):
+ rollup-plugin-visualizer@6.0.11(rolldown@1.0.0-rc.9)(rollup@4.59.0):
dependencies:
open: 8.4.2
picomatch: 4.0.3
source-map: 0.7.6
yargs: 17.7.2
optionalDependencies:
- rollup: 4.57.1
+ rolldown: 1.0.0-rc.9
+ rollup: 4.59.0
- rollup-plugin-visualizer@6.0.5(rollup@4.57.1):
+ rollup-plugin-visualizer@7.0.1(rolldown@1.0.0-rc.9)(rollup@4.59.0):
dependencies:
- open: 8.4.2
+ open: 11.0.0
picomatch: 4.0.3
source-map: 0.7.6
- yargs: 17.7.2
+ yargs: 18.0.0
optionalDependencies:
- rollup: 4.57.1
+ rolldown: 1.0.0-rc.9
+ rollup: 4.59.0
- rollup@2.79.2:
+ rollup@2.80.0:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.57.1:
+ rollup@4.59.0:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.57.1
- '@rollup/rollup-android-arm64': 4.57.1
- '@rollup/rollup-darwin-arm64': 4.57.1
- '@rollup/rollup-darwin-x64': 4.57.1
- '@rollup/rollup-freebsd-arm64': 4.57.1
- '@rollup/rollup-freebsd-x64': 4.57.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.57.1
- '@rollup/rollup-linux-arm-musleabihf': 4.57.1
- '@rollup/rollup-linux-arm64-gnu': 4.57.1
- '@rollup/rollup-linux-arm64-musl': 4.57.1
- '@rollup/rollup-linux-loong64-gnu': 4.57.1
- '@rollup/rollup-linux-loong64-musl': 4.57.1
- '@rollup/rollup-linux-ppc64-gnu': 4.57.1
- '@rollup/rollup-linux-ppc64-musl': 4.57.1
- '@rollup/rollup-linux-riscv64-gnu': 4.57.1
- '@rollup/rollup-linux-riscv64-musl': 4.57.1
- '@rollup/rollup-linux-s390x-gnu': 4.57.1
- '@rollup/rollup-linux-x64-gnu': 4.57.1
- '@rollup/rollup-linux-x64-musl': 4.57.1
- '@rollup/rollup-openbsd-x64': 4.57.1
- '@rollup/rollup-openharmony-arm64': 4.57.1
- '@rollup/rollup-win32-arm64-msvc': 4.57.1
- '@rollup/rollup-win32-ia32-msvc': 4.57.1
- '@rollup/rollup-win32-x64-gnu': 4.57.1
- '@rollup/rollup-win32-x64-msvc': 4.57.1
+ '@rollup/rollup-android-arm-eabi': 4.59.0
+ '@rollup/rollup-android-arm64': 4.59.0
+ '@rollup/rollup-darwin-arm64': 4.59.0
+ '@rollup/rollup-darwin-x64': 4.59.0
+ '@rollup/rollup-freebsd-arm64': 4.59.0
+ '@rollup/rollup-freebsd-x64': 4.59.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-musl': 4.59.0
+ '@rollup/rollup-openbsd-x64': 4.59.0
+ '@rollup/rollup-openharmony-arm64': 4.59.0
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
fsevents: 2.3.3
- rotated-array-set@3.0.0: {}
-
run-applescript@7.1.0: {}
run-parallel@1.2.0:
@@ -21484,6 +21021,10 @@ snapshots:
rw@1.3.3: {}
+ rxjs@7.8.2:
+ dependencies:
+ tslib: 2.8.1
+
sade@1.8.1:
dependencies:
mri: 1.2.0
@@ -21517,15 +21058,102 @@ snapshots:
safer-buffer@2.1.2: {}
- sass@1.97.3:
+ sass-embedded-all-unknown@1.98.0:
+ dependencies:
+ sass: 1.98.0
+ optional: true
+
+ sass-embedded-android-arm64@1.98.0:
+ optional: true
+
+ sass-embedded-android-arm@1.98.0:
+ optional: true
+
+ sass-embedded-android-riscv64@1.98.0:
+ optional: true
+
+ sass-embedded-android-x64@1.98.0:
+ optional: true
+
+ sass-embedded-darwin-arm64@1.98.0:
+ optional: true
+
+ sass-embedded-darwin-x64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-arm64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-arm@1.98.0:
+ optional: true
+
+ sass-embedded-linux-musl-arm64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-musl-arm@1.98.0:
+ optional: true
+
+ sass-embedded-linux-musl-riscv64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-musl-x64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-riscv64@1.98.0:
+ optional: true
+
+ sass-embedded-linux-x64@1.98.0:
+ optional: true
+
+ sass-embedded-unknown-all@1.98.0:
+ dependencies:
+ sass: 1.98.0
+ optional: true
+
+ sass-embedded-win32-arm64@1.98.0:
+ optional: true
+
+ sass-embedded-win32-x64@1.98.0:
+ optional: true
+
+ sass-embedded@1.98.0:
+ dependencies:
+ '@bufbuild/protobuf': 2.11.0
+ colorjs.io: 0.5.2
+ immutable: 5.1.5
+ rxjs: 7.8.2
+ supports-color: 8.1.1
+ sync-child-process: 1.0.2
+ varint: 6.0.0
+ optionalDependencies:
+ sass-embedded-all-unknown: 1.98.0
+ sass-embedded-android-arm: 1.98.0
+ sass-embedded-android-arm64: 1.98.0
+ sass-embedded-android-riscv64: 1.98.0
+ sass-embedded-android-x64: 1.98.0
+ sass-embedded-darwin-arm64: 1.98.0
+ sass-embedded-darwin-x64: 1.98.0
+ sass-embedded-linux-arm: 1.98.0
+ sass-embedded-linux-arm64: 1.98.0
+ sass-embedded-linux-musl-arm: 1.98.0
+ sass-embedded-linux-musl-arm64: 1.98.0
+ sass-embedded-linux-musl-riscv64: 1.98.0
+ sass-embedded-linux-musl-x64: 1.98.0
+ sass-embedded-linux-riscv64: 1.98.0
+ sass-embedded-linux-x64: 1.98.0
+ sass-embedded-unknown-all: 1.98.0
+ sass-embedded-win32-arm64: 1.98.0
+ sass-embedded-win32-x64: 1.98.0
+
+ sass@1.98.0:
dependencies:
chokidar: 4.0.3
- immutable: 5.1.4
+ immutable: 5.1.5
source-map-js: 1.2.1
optionalDependencies:
'@parcel/watcher': 2.5.6
- sax@1.4.4: {}
+ sax@1.5.0: {}
saxen@8.1.2: {}
@@ -21537,12 +21165,6 @@ snapshots:
dependencies:
compute-scroll-into-view: 3.1.1
- scslre@0.3.0:
- dependencies:
- '@eslint-community/regexpp': 4.12.2
- refa: 0.12.1
- regexp-ast-analysis: 0.7.1
-
scule@1.3.0: {}
search-insights@2.17.3: {}
@@ -21652,11 +21274,6 @@ snapshots:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- short-tree@3.0.0:
- dependencies:
- '@types/bintrees': 1.0.6
- bintrees: 1.0.2
-
side-channel-list@1.0.0:
dependencies:
es-errors: 1.3.0
@@ -21711,23 +21328,23 @@ snapshots:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- slice-ansi@5.0.0:
- dependencies:
- ansi-styles: 6.2.3
- is-fullwidth-code-point: 4.0.0
-
slice-ansi@7.1.2:
dependencies:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
- smob@1.5.0: {}
+ slice-ansi@8.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
+
+ smob@1.6.1: {}
smol-toml@1.6.0: {}
sortablejs@1.14.0: {}
- sortablejs@1.15.6: {}
+ sortablejs@1.15.7: {}
source-map-js@1.2.1: {}
@@ -21753,26 +21370,13 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- spdx-exceptions@2.5.0: {}
-
- spdx-expression-parse@4.0.0:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.22
-
- spdx-license-ids@3.0.22: {}
-
speakingurl@14.0.1: {}
- split2@4.2.0: {}
-
sprintf-js@1.0.3: {}
ssri@13.0.1:
dependencies:
- minipass: 7.1.2
-
- stable-hash-x@0.2.0: {}
+ minipass: 7.1.3
stackback@0.0.2: {}
@@ -21782,7 +21386,9 @@ snapshots:
std-env@3.10.0: {}
- stdin-discarder@0.2.2: {}
+ std-env@4.0.0: {}
+
+ stdin-discarder@0.3.1: {}
steady-xml@0.1.0: {}
@@ -21795,7 +21401,7 @@ snapshots:
dependencies:
events-universal: 1.0.1
fast-fifo: 1.3.2
- text-decoder: 1.2.3
+ text-decoder: 1.2.7
transitivePeerDependencies:
- bare-abort-controller
- react-native-b4a
@@ -21812,13 +21418,18 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
- get-east-asian-width: 1.4.0
- strip-ansi: 7.1.2
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
+
+ string-width@8.2.0:
+ dependencies:
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
string.prototype.matchall@4.0.12:
dependencies:
@@ -21882,7 +21493,7 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.2:
+ strip-ansi@7.2.0:
dependencies:
ansi-regex: 6.2.2
@@ -21925,129 +21536,111 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.4.0
- stylehacks@7.0.7(postcss@8.5.6):
+ stylehacks@7.0.8(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-selector-parser: 7.1.1
- stylelint-config-html@1.1.0(postcss-html@1.8.1)(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-html@1.1.0(postcss-html@1.8.1)(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
postcss-html: 1.8.1
- stylelint: 16.26.1(typescript@5.9.3)
+ stylelint: 17.4.0(typescript@5.9.3)
- stylelint-config-recess-order@7.6.1(stylelint-order@7.0.1(stylelint@16.26.1(typescript@5.9.3)))(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-recess-order@7.6.1(stylelint-order@8.1.0(stylelint@17.4.0(typescript@5.9.3)))(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- stylelint: 16.26.1(typescript@5.9.3)
- stylelint-order: 7.0.1(stylelint@16.26.1(typescript@5.9.3))
+ stylelint: 17.4.0(typescript@5.9.3)
+ stylelint-order: 8.1.0(stylelint@17.4.0(typescript@5.9.3))
- stylelint-config-recommended-scss@16.0.2(postcss@8.5.6)(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-recommended-scss@17.0.0(postcss@8.5.8)(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- postcss-scss: 4.0.9(postcss@8.5.6)
- stylelint: 16.26.1(typescript@5.9.3)
- stylelint-config-recommended: 17.0.0(stylelint@16.26.1(typescript@5.9.3))
- stylelint-scss: 6.14.0(stylelint@16.26.1(typescript@5.9.3))
+ postcss-scss: 4.0.9(postcss@8.5.8)
+ stylelint: 17.4.0(typescript@5.9.3)
+ stylelint-config-recommended: 18.0.0(stylelint@17.4.0(typescript@5.9.3))
+ stylelint-scss: 7.0.0(stylelint@17.4.0(typescript@5.9.3))
optionalDependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
- stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.1)(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.1)(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
postcss-html: 1.8.1
semver: 7.7.4
- stylelint: 16.26.1(typescript@5.9.3)
- stylelint-config-html: 1.1.0(postcss-html@1.8.1)(stylelint@16.26.1(typescript@5.9.3))
- stylelint-config-recommended: 17.0.0(stylelint@16.26.1(typescript@5.9.3))
+ stylelint: 17.4.0(typescript@5.9.3)
+ stylelint-config-html: 1.1.0(postcss-html@1.8.1)(stylelint@17.4.0(typescript@5.9.3))
+ stylelint-config-recommended: 18.0.0(stylelint@17.4.0(typescript@5.9.3))
- stylelint-config-recommended@17.0.0(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-recommended@18.0.0(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- stylelint: 16.26.1(typescript@5.9.3)
+ stylelint: 17.4.0(typescript@5.9.3)
- stylelint-config-standard@39.0.1(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-config-standard@40.0.0(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- stylelint: 16.26.1(typescript@5.9.3)
- stylelint-config-recommended: 17.0.0(stylelint@16.26.1(typescript@5.9.3))
+ stylelint: 17.4.0(typescript@5.9.3)
+ stylelint-config-recommended: 18.0.0(stylelint@17.4.0(typescript@5.9.3))
- stylelint-order@7.0.1(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-order@8.1.0(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- postcss: 8.5.6
- postcss-sorting: 9.1.0(postcss@8.5.6)
- stylelint: 16.26.1(typescript@5.9.3)
+ postcss: 8.5.8
+ postcss-sorting: 10.0.0(postcss@8.5.8)
+ stylelint: 17.4.0(typescript@5.9.3)
- stylelint-prettier@5.0.3(prettier@3.8.1)(stylelint@16.26.1(typescript@5.9.3)):
+ stylelint-scss@7.0.0(stylelint@17.4.0(typescript@5.9.3)):
dependencies:
- prettier: 3.8.1
- prettier-linter-helpers: 1.0.1
- stylelint: 16.26.1(typescript@5.9.3)
-
- stylelint-scss@6.14.0(stylelint@16.26.1(typescript@5.9.3)):
- dependencies:
- css-tree: 3.1.0
+ css-tree: 3.2.1
is-plain-object: 5.0.0
known-css-properties: 0.37.0
- mdn-data: 2.27.0
+ mdn-data: 2.27.1
postcss-media-query-parser: 0.2.3
postcss-resolve-nested-selector: 0.1.6
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
- stylelint: 16.26.1(typescript@5.9.3)
+ stylelint: 17.4.0(typescript@5.9.3)
- stylelint@16.26.1(typescript@5.9.3):
+ stylelint@17.4.0(typescript@5.9.3):
dependencies:
- '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
- '@csstools/css-syntax-patches-for-csstree': 1.0.27
- '@csstools/css-tokenizer': 3.0.4
- '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
- '@dual-bundle/import-meta-resolve': 4.2.1
- balanced-match: 2.0.0
+ '@csstools/css-calc': 3.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-syntax-patches-for-csstree': 1.1.0
+ '@csstools/css-tokenizer': 4.0.0
+ '@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/selector-resolve-nested': 4.0.0(postcss-selector-parser@7.1.1)
+ '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.1)
colord: 2.9.3
- cosmiconfig: 9.0.0(typescript@5.9.3)
+ cosmiconfig: 9.0.1(typescript@5.9.3)
css-functions-list: 3.3.3
- css-tree: 3.1.0
+ css-tree: 3.2.1
debug: 4.4.3
fast-glob: 3.3.3
fastest-levenshtein: 1.0.16
file-entry-cache: 11.1.2
global-modules: 2.0.0
- globby: 11.1.0
+ globby: 16.1.1
globjoin: 0.1.4
- html-tags: 3.3.1
+ html-tags: 5.1.0
ignore: 7.0.5
+ import-meta-resolve: 4.2.0
imurmurhash: 0.1.4
is-plain-object: 5.0.0
- known-css-properties: 0.37.0
- mathml-tag-names: 2.1.3
- meow: 13.2.0
+ mathml-tag-names: 4.0.0
+ meow: 14.1.0
micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.1.1
- postcss: 8.5.6
- postcss-resolve-nested-selector: 0.1.6
- postcss-safe-parser: 7.0.1(postcss@8.5.6)
+ postcss: 8.5.8
+ postcss-safe-parser: 7.0.1(postcss@8.5.8)
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
- resolve-from: 5.0.0
- string-width: 4.2.3
- supports-hyperlinks: 3.2.0
+ string-width: 8.2.0
+ supports-hyperlinks: 4.4.0
svg-tags: 1.0.0
table: 6.9.0
- write-file-atomic: 5.0.1
+ write-file-atomic: 7.0.1
transitivePeerDependencies:
- supports-color
- typescript
stylis@4.3.6: {}
- sucrase@3.35.1:
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- commander: 4.1.1
- lines-and-columns: 1.2.4
- mz: 2.7.0
- pirates: 4.0.7
- tinyglobby: 0.2.15
- ts-interface-checker: 0.1.13
-
superjson@2.2.6:
dependencies:
copy-anything: 4.0.5
@@ -22062,26 +21655,27 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-hyperlinks@3.2.0:
+ supports-hyperlinks@4.4.0:
dependencies:
- has-flag: 4.0.0
- supports-color: 7.2.0
+ has-flag: 5.0.1
+ supports-color: 10.2.2
supports-preserve-symlinks-flag@1.0.0: {}
- svelte@5.50.1:
+ svelte@5.53.11:
dependencies:
'@jridgewell/remapping': 2.3.5
'@jridgewell/sourcemap-codec': 1.5.5
- '@sveltejs/acorn-typescript': 1.0.8(acorn@8.15.0)
+ '@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0)
'@types/estree': 1.0.8
- acorn: 8.15.0
- aria-query: 5.3.2
+ '@types/trusted-types': 2.0.7
+ acorn: 8.16.0
+ aria-query: 5.3.1
axobject-query: 4.1.0
clsx: 2.1.1
- devalue: 5.6.2
+ devalue: 5.6.4
esm-env: 1.2.2
- esrap: 2.2.3
+ esrap: 2.2.4
is-reference: 3.0.3
locate-character: 3.0.0
magic-string: 0.30.21
@@ -22091,15 +21685,21 @@ snapshots:
svg-tags@1.0.0: {}
- svgo@4.0.0:
+ svgo@4.0.1:
dependencies:
commander: 11.1.0
css-select: 5.2.2
- css-tree: 3.1.0
+ css-tree: 3.2.1
css-what: 6.2.2
csso: 5.0.5
picocolors: 1.1.1
- sax: 1.4.4
+ sax: 1.5.0
+
+ sync-child-process@1.0.2:
+ dependencies:
+ sync-message-port: 1.2.0
+
+ sync-message-port@1.2.0: {}
synckit@0.11.12:
dependencies:
@@ -22111,7 +21711,7 @@ snapshots:
table@6.9.0:
dependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -22119,65 +21719,39 @@ snapshots:
tagged-tag@1.0.0: {}
- tailwind-merge@2.6.1: {}
+ tailwind-csstree@0.1.4: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.19(yaml@2.8.2)):
- dependencies:
- tailwindcss: 3.4.19(yaml@2.8.2)
+ tailwind-merge@3.5.0: {}
- tailwindcss@3.4.19(yaml@2.8.2):
- dependencies:
- '@alloc/quick-lru': 5.2.0
- arg: 5.0.2
- chokidar: 3.6.0
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.3
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 2.6.1
- lilconfig: 3.1.3
- micromatch: 4.0.8
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.1.1
- postcss: 8.5.6
- postcss-import: 15.1.0(postcss@8.5.6)
- postcss-js: 4.1.0(postcss@8.5.6)
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2)
- postcss-nested: 6.2.0(postcss@8.5.6)
- postcss-selector-parser: 6.1.2
- resolve: 1.22.11
- sucrase: 3.35.1
- transitivePeerDependencies:
- - tsx
- - yaml
+ tailwindcss@4.2.1: {}
tapable@2.3.0: {}
- tar-stream@3.1.7:
+ tar-stream@3.1.8:
dependencies:
- b4a: 1.7.3
+ b4a: 1.8.0
+ bare-fs: 4.5.5
fast-fifo: 1.3.2
streamx: 2.23.0
transitivePeerDependencies:
- bare-abort-controller
+ - bare-buffer
- react-native-b4a
- tar@7.5.7:
+ tar@7.5.11:
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
- minipass: 7.1.2
+ minipass: 7.1.3
minizlib: 3.1.0
yallist: 5.0.0
- tdesign-icons-vue-next@0.4.2(vue@3.5.28(typescript@5.9.3)):
+ tdesign-icons-vue-next@0.4.2(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@babel/runtime': 7.28.6
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- tdesign-vue-next@1.18.2(vue@3.5.28(typescript@5.9.3)):
+ tdesign-vue-next@1.18.5(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@babel/runtime': 7.28.6
'@popperjs/core': 2.11.8
@@ -22185,14 +21759,21 @@ snapshots:
'@types/sortablejs': 1.15.9
'@types/tinycolor2': 1.4.6
'@types/validator': 13.15.10
- dayjs: 1.11.19
+ dayjs: 1.11.20
lodash-es: 4.17.23
mitt: 3.0.1
- sortablejs: 1.15.6
- tdesign-icons-vue-next: 0.4.2(vue@3.5.28(typescript@5.9.3))
+ sortablejs: 1.15.7
+ tdesign-icons-vue-next: 0.4.2(vue@3.5.30(typescript@5.9.3))
tinycolor2: 1.6.0
validator: 13.15.26
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
+
+ teex@1.0.1:
+ dependencies:
+ streamx: 2.23.0
+ transitivePeerDependencies:
+ - bare-abort-controller
+ - react-native-b4a
temp-dir@2.0.0: {}
@@ -22208,32 +21789,20 @@ snapshots:
terser@5.46.0:
dependencies:
'@jridgewell/source-map': 0.3.11
- acorn: 8.15.0
+ acorn: 8.16.0
commander: 2.20.3
source-map-support: 0.5.21
- text-decoder@1.2.3:
+ text-decoder@1.2.7:
dependencies:
- b4a: 1.7.3
+ b4a: 1.8.0
transitivePeerDependencies:
- react-native-b4a
- text-extensions@2.4.0: {}
-
theme-colors@0.1.0: {}
- thenify-all@1.6.0:
- dependencies:
- thenify: 3.3.1
-
- thenify@3.3.1:
- dependencies:
- any-promise: 1.3.0
-
throttle-debounce@5.0.2: {}
- through@2.3.8: {}
-
tiny-emitter@2.1.0: {}
tiny-svg@3.1.3: {}
@@ -22242,22 +21811,18 @@ snapshots:
tinycolor2@1.6.0: {}
- tinyexec@0.3.2: {}
-
- tinyexec@1.0.2: {}
+ tinyexec@1.0.4: {}
tinyglobby@0.2.15:
dependencies:
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
- tinymce@7.9.1: {}
+ tinymce@7.9.2: {}
- tinypool@1.1.1: {}
+ tinypool@2.1.0: {}
- tinyrainbow@2.0.0: {}
-
- tinyspy@4.0.4: {}
+ tinyrainbow@3.1.0: {}
tippy.js@6.3.7:
dependencies:
@@ -22267,11 +21832,6 @@ snapshots:
dependencies:
is-number: 7.0.0
- to-valid-identifier@1.0.0:
- dependencies:
- '@sindresorhus/base62': 1.0.0
- reserved-identifiers: 1.2.0
-
toidentifier@1.0.1: {}
totalist@3.0.1: {}
@@ -22286,10 +21846,6 @@ snapshots:
trim-lines@3.0.1: {}
- ts-api-utils@1.4.3(typescript@5.9.3):
- dependencies:
- typescript: 5.9.3
-
ts-api-utils@2.4.0(typescript@5.9.3):
dependencies:
typescript: 5.9.3
@@ -22299,7 +21855,18 @@ snapshots:
picomatch: 4.0.3
typescript: 5.9.3
- ts-interface-checker@0.1.13: {}
+ tsconfig-paths-webpack-plugin@4.2.0:
+ dependencies:
+ chalk: 4.1.2
+ enhanced-resolve: 5.20.0
+ tapable: 2.3.0
+ tsconfig-paths: 4.2.0
+
+ tsconfig-paths@4.2.0:
+ dependencies:
+ json5: 2.2.3
+ minimist: 1.2.8
+ strip-bom: 3.0.0
tslib@2.3.0: {}
@@ -22307,32 +21874,34 @@ snapshots:
tslib@2.8.1: {}
- turbo-darwin-64@2.8.5:
+ turbo-darwin-64@2.8.17:
optional: true
- turbo-darwin-arm64@2.8.5:
+ turbo-darwin-arm64@2.8.17:
optional: true
- turbo-linux-64@2.8.5:
+ turbo-linux-64@2.8.17:
optional: true
- turbo-linux-arm64@2.8.5:
+ turbo-linux-arm64@2.8.17:
optional: true
- turbo-windows-64@2.8.5:
+ turbo-windows-64@2.8.17:
optional: true
- turbo-windows-arm64@2.8.5:
+ turbo-windows-arm64@2.8.17:
optional: true
- turbo@2.8.5:
+ turbo@2.8.17:
optionalDependencies:
- turbo-darwin-64: 2.8.5
- turbo-darwin-arm64: 2.8.5
- turbo-linux-64: 2.8.5
- turbo-linux-arm64: 2.8.5
- turbo-windows-64: 2.8.5
- turbo-windows-arm64: 2.8.5
+ turbo-darwin-64: 2.8.17
+ turbo-darwin-arm64: 2.8.17
+ turbo-linux-64: 2.8.17
+ turbo-linux-arm64: 2.8.17
+ turbo-windows-64: 2.8.17
+ turbo-windows-arm64: 2.8.17
+
+ tw-animate-css@1.4.0: {}
type-check@0.4.0:
dependencies:
@@ -22396,29 +21965,29 @@ snapshots:
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
- unbuild@3.6.1(sass@1.97.3)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3)):
+ unbuild@3.6.1(sass@1.98.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@rollup/plugin-alias': 5.1.1(rollup@4.57.1)
- '@rollup/plugin-commonjs': 28.0.9(rollup@4.57.1)
- '@rollup/plugin-json': 6.1.0(rollup@4.57.1)
- '@rollup/plugin-node-resolve': 16.0.3(rollup@4.57.1)
- '@rollup/plugin-replace': 6.0.3(rollup@4.57.1)
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.59.0)
+ '@rollup/plugin-commonjs': 28.0.9(rollup@4.59.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.59.0)
+ '@rollup/plugin-node-resolve': 16.0.3(rollup@4.59.0)
+ '@rollup/plugin-replace': 6.0.3(rollup@4.59.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
citty: 0.1.6
consola: 3.4.2
defu: 6.1.4
- esbuild: 0.25.12
+ esbuild: 0.27.4
fix-dts-default-cjs-exports: 1.0.1
hookable: 5.5.3
jiti: 2.6.1
magic-string: 0.30.21
- mkdist: 2.4.1(sass@1.97.3)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3))(vue@3.5.28(typescript@5.9.3))
- mlly: 1.8.0
+ mkdist: 2.4.1(sass@1.98.0)(typescript@5.9.3)(vue-tsc@3.2.5(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
+ mlly: 1.8.1
pathe: 2.0.3
pkg-types: 2.3.0
pretty-bytes: 7.1.0
- rollup: 4.57.1
- rollup-plugin-dts: 6.3.0(rollup@4.57.1)(typescript@5.9.3)
+ rollup: 4.59.0
+ rollup-plugin-dts: 6.4.0(rollup@4.59.0)(typescript@5.9.3)
scule: 1.3.0
tinyglobby: 0.2.15
untyped: 2.0.0
@@ -22434,14 +22003,14 @@ snapshots:
unctx@2.5.0:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
estree-walker: 3.0.3
magic-string: 0.30.21
unplugin: 2.3.11
- undici-types@7.16.0: {}
+ undici-types@7.18.2: {}
- undici@7.21.0: {}
+ undici@7.24.1: {}
unenv@2.0.0-rc.24:
dependencies:
@@ -22458,20 +22027,18 @@ snapshots:
unicode-property-aliases-ecmascript@2.2.0: {}
- unicorn-magic@0.1.0: {}
-
unicorn-magic@0.3.0: {}
unicorn-magic@0.4.0: {}
- unimport@5.6.0:
+ unimport@5.7.0:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
local-pkg: 1.1.2
magic-string: 0.30.21
- mlly: 1.8.0
+ mlly: 1.8.1
pathe: 2.0.3
picomatch: 4.0.3
pkg-types: 2.3.0
@@ -22522,7 +22089,7 @@ snapshots:
unplugin-element-plus@0.11.2(magicast@0.5.2):
dependencies:
- '@nuxt/kit': 4.3.1(magicast@0.5.2)
+ '@nuxt/kit': 4.4.2(magicast@0.5.2)
es-module-lexer: 2.0.0
escape-string-regexp: 5.0.0
rolldown-string: 0.2.1
@@ -22535,55 +22102,32 @@ snapshots:
pathe: 2.0.3
picomatch: 4.0.3
- unplugin@1.16.1:
- dependencies:
- acorn: 8.15.0
- webpack-virtual-modules: 0.6.2
-
unplugin@2.3.11:
dependencies:
'@jridgewell/remapping': 2.3.5
- acorn: 8.15.0
+ acorn: 8.16.0
picomatch: 4.0.3
webpack-virtual-modules: 0.6.2
- unrs-resolver@1.11.1:
+ unplugin@3.0.0:
dependencies:
- napi-postinstall: 0.3.4
- optionalDependencies:
- '@unrs/resolver-binding-android-arm-eabi': 1.11.1
- '@unrs/resolver-binding-android-arm64': 1.11.1
- '@unrs/resolver-binding-darwin-arm64': 1.11.1
- '@unrs/resolver-binding-darwin-x64': 1.11.1
- '@unrs/resolver-binding-freebsd-x64': 1.11.1
- '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
- '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
- '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
- '@unrs/resolver-binding-linux-arm64-musl': 1.11.1
- '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
- '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
- '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
- '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
- '@unrs/resolver-binding-linux-x64-gnu': 1.11.1
- '@unrs/resolver-binding-linux-x64-musl': 1.11.1
- '@unrs/resolver-binding-wasm32-wasi': 1.11.1
- '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
- '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
- '@unrs/resolver-binding-win32-x64-msvc': 1.11.1
+ '@jridgewell/remapping': 2.3.5
+ picomatch: 4.0.3
+ webpack-virtual-modules: 0.6.2
- unstorage@1.17.4(db0@0.3.4)(ioredis@5.9.2):
+ unstorage@1.17.4(db0@0.3.4)(ioredis@5.10.0):
dependencies:
anymatch: 3.1.3
chokidar: 5.0.0
destr: 2.0.5
- h3: 1.15.5
- lru-cache: 11.2.6
+ h3: 1.15.6
+ lru-cache: 11.2.7
node-fetch-native: 1.6.7
ofetch: 1.5.1
ufo: 1.6.3
optionalDependencies:
db0: 0.3.4
- ioredis: 5.9.2
+ ioredis: 5.10.0
untun@0.1.3:
dependencies:
@@ -22604,7 +22148,7 @@ snapshots:
exsolve: 1.0.8
knitwork: 1.3.0
magic-string: 0.30.21
- mlly: 1.8.0
+ mlly: 1.8.1
pathe: 2.0.3
pkg-types: 2.3.0
@@ -22639,18 +22183,24 @@ snapshots:
util-deprecate@1.0.2: {}
+ valibot@1.2.0(typescript@5.9.3):
+ optionalDependencies:
+ typescript: 5.9.3
+
validator@13.15.26: {}
- vdirs@0.1.8(vue@3.5.28(typescript@5.9.3)):
+ varint@6.0.0: {}
+
+ vdirs@0.1.8(vue@3.5.30(typescript@5.9.3)):
dependencies:
evtd: 0.2.4
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vee-validate@4.15.1(vue@3.5.28(typescript@5.9.3)):
+ vee-validate@4.15.1(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@vue/devtools-api': 7.7.9
type-fest: 4.41.0
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
vfile-message@4.0.3:
dependencies:
@@ -22684,72 +22234,29 @@ snapshots:
dependencies:
global: 4.4.0
- vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-dev-rpc@1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
birpc: 2.9.0
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vite-hot-client: 2.1.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
+ vite-hot-client: 2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
- vite-hot-client@2.1.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-hot-client@2.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
- vite-node@3.2.4(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
- dependencies:
- cac: 6.7.14
- debug: 4.4.3
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - '@types/node'
- - jiti
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
- vite-node@3.2.4(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
- dependencies:
- cac: 6.7.14
- debug: 4.4.3
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- transitivePeerDependencies:
- - '@types/node'
- - jiti
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
- optional: true
-
- vite-plugin-compression@0.5.1(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-plugin-compression@0.5.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
chalk: 4.1.2
debug: 4.4.3
fs-extra: 10.1.0
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- vite-plugin-dts@4.5.4(@types/node@25.2.3)(rollup@4.57.1)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-plugin-dts@4.5.4(@types/node@25.5.0)(rollup@4.59.0)(typescript@5.9.3)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
- '@microsoft/api-extractor': 7.56.3(@types/node@25.2.3)
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@microsoft/api-extractor': 7.57.7(@types/node@25.5.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
'@volar/typescript': 2.4.28
'@vue/language-core': 2.2.0(typescript@5.9.3)
compare-versions: 6.1.1
@@ -22759,13 +22266,13 @@ snapshots:
magic-string: 0.30.21
typescript: 5.9.3
optionalDependencies:
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-html@3.2.2(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-plugin-html@3.2.2(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
'@rollup/pluginutils': 4.2.1
colorette: 2.0.20
@@ -22779,9 +22286,9 @@ snapshots:
html-minifier-terser: 6.1.0
node-html-parser: 5.4.2
pathe: 0.2.0
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
- vite-plugin-inspect@11.3.3(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-plugin-inspect@11.3.3(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
ansis: 4.2.0
debug: 4.4.3
@@ -22791,55 +22298,44 @@ snapshots:
perfect-debounce: 2.1.0
sirv: 3.0.2
unplugin-utils: 0.3.1
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vite-dev-rpc: 1.1.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
+ vite-dev-rpc: 1.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
transitivePeerDependencies:
- supports-color
vite-plugin-lazy-import@1.0.7:
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
es-module-lexer: 1.7.0
- rollup: 4.57.1
+ rollup: 4.59.0
xe-utils: 3.9.1
- vite-plugin-pwa@1.2.0(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(workbox-build@7.4.0)(workbox-window@7.4.0):
+ vite-plugin-pwa@1.2.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0):
dependencies:
debug: 4.4.3
pretty-bytes: 6.1.1
tinyglobby: 0.2.15
- vite: 5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
workbox-build: 7.4.0
workbox-window: 7.4.0
transitivePeerDependencies:
- supports-color
- vite-plugin-pwa@1.2.0(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0):
+ vite-plugin-vue-devtools@8.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.30(typescript@5.9.3)):
dependencies:
- debug: 4.4.3
- pretty-bytes: 6.1.1
- tinyglobby: 0.2.15
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- workbox-build: 7.4.0
- workbox-window: 7.4.0
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-vue-devtools@8.0.6(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3)):
- dependencies:
- '@vue/devtools-core': 8.0.6(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
- '@vue/devtools-kit': 8.0.6
- '@vue/devtools-shared': 8.0.6
+ '@vue/devtools-core': 8.1.0(vue@3.5.30(typescript@5.9.3))
+ '@vue/devtools-kit': 8.1.0
+ '@vue/devtools-shared': 8.1.0
sirv: 3.0.2
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vite-plugin-inspect: 11.3.3(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
- vite-plugin-vue-inspector: 5.3.2(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
+ vite-plugin-inspect: 11.3.3(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
+ vite-plugin-vue-inspector: 5.4.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
- vue
- vite-plugin-vue-inspector@5.3.2(vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)):
+ vite-plugin-vue-inspector@5.4.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
@@ -22847,89 +22343,76 @@ snapshots:
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0)
'@babel/plugin-transform-typescript': 7.28.6(@babel/core@7.29.0)
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0)
- '@vue/compiler-dom': 3.5.28
+ '@vue/compiler-dom': 3.5.30
kolorist: 1.8.0
magic-string: 0.30.21
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0):
+ vite@5.4.21(@types/node@25.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0):
dependencies:
- esbuild: 0.25.12
- postcss: 8.5.6
- rollup: 4.57.1
+ esbuild: 0.27.4
+ postcss: 8.5.8
+ rollup: 4.59.0
optionalDependencies:
- '@types/node': 25.2.3
+ '@types/node': 25.5.0
fsevents: 2.3.3
- less: 4.5.1
- sass: 1.97.3
+ less: 4.6.4
+ lightningcss: 1.32.0
+ sass: 1.98.0
+ sass-embedded: 1.98.0
terser: 5.46.0
- vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
+ vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2):
dependencies:
- esbuild: 0.25.12
- fdir: 6.5.0(picomatch@4.0.3)
+ '@oxc-project/runtime': 0.115.0
+ lightningcss: 1.32.0
picomatch: 4.0.3
- postcss: 8.5.6
- rollup: 4.57.1
+ postcss: 8.5.8
+ rolldown: 1.0.0-rc.9
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.10.13
+ '@types/node': 25.5.0
+ esbuild: 0.27.4
fsevents: 2.3.3
jiti: 2.6.1
- less: 4.5.1
- sass: 1.97.3
+ less: 4.6.4
+ sass: 1.98.0
+ sass-embedded: 1.98.0
terser: 5.46.0
yaml: 2.8.2
- vite@7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
- dependencies:
- esbuild: 0.25.12
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
- postcss: 8.5.6
- rollup: 4.57.1
- tinyglobby: 0.2.15
- optionalDependencies:
- '@types/node': 25.2.3
- fsevents: 2.3.3
- jiti: 2.6.1
- less: 4.5.1
- sass: 1.97.3
- terser: 5.46.0
- yaml: 2.8.2
-
- vitepress-plugin-group-icons@1.7.1(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)):
+ vitepress-plugin-group-icons@1.7.1(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
'@iconify-json/logos': 1.2.10
- '@iconify-json/vscode-icons': 1.2.41
+ '@iconify-json/vscode-icons': 1.2.45
'@iconify/utils': 3.1.0
optionalDependencies:
- vite: 5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
- vitepress@1.6.4(@algolia/client-search@5.48.0)(@types/node@25.2.3)(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(less@4.5.1)(nprogress@0.2.0)(postcss@8.5.6)(qrcode@1.5.4)(sass@1.97.3)(search-insights@2.17.3)(sortablejs@1.15.6)(terser@5.46.0)(typescript@5.9.3):
+ vitepress@1.6.4(@algolia/client-search@5.49.2)(@types/node@25.5.0)(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.8)(qrcode@1.5.4)(sass-embedded@1.98.0)(sass@1.98.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.0)(typescript@5.9.3):
dependencies:
'@docsearch/css': 3.8.2
- '@docsearch/js': 3.8.2(@algolia/client-search@5.48.0)(search-insights@2.17.3)
- '@iconify-json/simple-icons': 1.2.70
+ '@docsearch/js': 3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.73
'@shikijs/core': 2.5.0
'@shikijs/transformers': 2.5.0
'@shikijs/types': 2.5.0
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0))(vue@3.5.28(typescript@5.9.3))
+ '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0))(vue@3.5.30(typescript@5.9.3))
'@vue/devtools-api': 7.7.9
- '@vue/shared': 3.5.28
+ '@vue/shared': 3.5.30
'@vueuse/core': 12.8.2(typescript@5.9.3)
- '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.13.5)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(typescript@5.9.3)
+ '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(typescript@5.9.3)
focus-trap: 7.8.0
mark.js: 8.11.1
minisearch: 7.2.0
shiki: 2.5.0
- vite: 5.4.21(@types/node@25.2.3)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)
- vue: 3.5.28(typescript@5.9.3)
+ vite: 5.4.21(@types/node@25.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)
+ vue: 3.5.30(typescript@5.9.3)
optionalDependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -22957,95 +22440,38 @@ snapshots:
- typescript
- universal-cookie
- vitest@3.2.4(@types/node@24.10.13)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
+ vitest@4.1.0(@types/node@25.5.0)(happy-dom@20.8.4)(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)):
dependencies:
- '@types/chai': 5.2.3
- '@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
- '@vitest/pretty-format': 3.2.4
- '@vitest/runner': 3.2.4
- '@vitest/snapshot': 3.2.4
- '@vitest/spy': 3.2.4
- '@vitest/utils': 3.2.4
- chai: 5.3.3
- debug: 4.4.3
+ '@vitest/expect': 4.1.0
+ '@vitest/mocker': 4.1.0(vite@8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2))
+ '@vitest/pretty-format': 4.1.0
+ '@vitest/runner': 4.1.0
+ '@vitest/snapshot': 4.1.0
+ '@vitest/spy': 4.1.0
+ '@vitest/utils': 4.1.0
+ es-module-lexer: 2.0.0
expect-type: 1.3.0
magic-string: 0.30.21
+ obug: 2.1.1
pathe: 2.0.3
picomatch: 4.0.3
- std-env: 3.10.0
+ std-env: 4.0.0
tinybench: 2.9.0
- tinyexec: 0.3.2
+ tinyexec: 1.0.4
tinyglobby: 0.2.15
- tinypool: 1.1.1
- tinyrainbow: 2.0.0
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vite-node: 3.2.4(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
+ tinyrainbow: 3.1.0
+ vite: 8.0.0(@types/node@25.5.0)(esbuild@0.27.4)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.0)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.10.13
- happy-dom: 17.6.3
+ '@types/node': 25.5.0
+ happy-dom: 20.8.4
transitivePeerDependencies:
- - jiti
- - less
- - lightningcss
- msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
- vitest@3.2.4(@types/node@25.2.3)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2):
- dependencies:
- '@types/chai': 5.2.3
- '@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))
- '@vitest/pretty-format': 3.2.4
- '@vitest/runner': 3.2.4
- '@vitest/snapshot': 3.2.4
- '@vitest/spy': 3.2.4
- '@vitest/utils': 3.2.4
- chai: 5.3.3
- debug: 4.4.3
- expect-type: 1.3.0
- magic-string: 0.30.21
- pathe: 2.0.3
- picomatch: 4.0.3
- std-env: 3.10.0
- tinybench: 2.9.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.15
- tinypool: 1.1.1
- tinyrainbow: 2.0.0
- vite: 7.3.1(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- vite-node: 3.2.4(@types/node@25.2.3)(jiti@2.6.1)(less@4.5.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2)
- why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/node': 25.2.3
- happy-dom: 17.6.3
- transitivePeerDependencies:
- - jiti
- - less
- - lightningcss
- - msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
- optional: true
-
- vooks@0.2.12(vue@3.5.28(typescript@5.9.3)):
+ vooks@0.2.12(vue@3.5.30(typescript@5.9.3)):
dependencies:
evtd: 0.2.4
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
vscode-languageserver-textdocument@1.0.12: {}
@@ -23053,107 +22479,127 @@ snapshots:
vue-component-type-helpers@2.2.12: {}
- vue-demi@0.14.10(vue@3.5.28(typescript@5.9.3)):
+ vue-demi@0.14.10(vue@3.5.30(typescript@5.9.3)):
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vue-dompurify-html@5.3.0(vue@3.5.28(typescript@5.9.3)):
+ vue-dompurify-html@5.3.0(vue@3.5.30(typescript@5.9.3)):
dependencies:
- dompurify: 3.3.1
- vue: 3.5.28(typescript@5.9.3)
+ dompurify: 3.3.3
+ vue: 3.5.30(typescript@5.9.3)
- vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@2.6.1)):
+ vue-eslint-parser@10.4.0(eslint@10.0.3(jiti@2.6.1)):
dependencies:
debug: 4.4.3
- eslint: 9.39.2(jiti@2.6.1)
- eslint-scope: 8.4.0
- eslint-visitor-keys: 4.2.1
- espree: 10.4.0
+ eslint: 10.0.3(jiti@2.6.1)
+ eslint-scope: 9.1.2
+ eslint-visitor-keys: 5.0.1
+ espree: 11.2.0
esquery: 1.7.0
semver: 7.7.4
transitivePeerDependencies:
- supports-color
- vue-i18n@11.2.8(vue@3.5.28(typescript@5.9.3)):
+ vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@intlify/core-base': 11.2.8
- '@intlify/shared': 11.2.8
+ '@intlify/core-base': 11.3.0
+ '@intlify/devtools-types': 11.3.0
+ '@intlify/shared': 11.3.0
'@vue/devtools-api': 6.6.4
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vue-json-viewer@3.0.4(vue@3.5.28(typescript@5.9.3)):
+ vue-json-viewer@3.0.4(vue@3.5.30(typescript@5.9.3)):
dependencies:
clipboard: 2.0.11
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)):
+ vue-router@5.0.3(@vue/compiler-sfc@3.5.30)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)))(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@vue/devtools-api': 6.6.4
- vue: 3.5.28(typescript@5.9.3)
+ '@babel/generator': 7.29.1
+ '@vue-macros/common': 3.1.2(vue@3.5.30(typescript@5.9.3))
+ '@vue/devtools-api': 8.1.0
+ ast-walker-scope: 0.8.3
+ chokidar: 5.0.0
+ json5: 2.2.3
+ local-pkg: 1.1.2
+ magic-string: 0.30.21
+ mlly: 1.8.1
+ muggle-string: 0.4.1
+ pathe: 2.0.3
+ picomatch: 4.0.3
+ scule: 1.3.0
+ tinyglobby: 0.2.15
+ unplugin: 3.0.0
+ unplugin-utils: 0.3.1
+ vue: 3.5.30(typescript@5.9.3)
+ yaml: 2.8.2
+ optionalDependencies:
+ '@vue/compiler-sfc': 3.5.30
+ pinia: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
- vue-tippy@6.7.1(vue@3.5.28(typescript@5.9.3)):
+ vue-tippy@6.7.1(vue@3.5.30(typescript@5.9.3)):
dependencies:
tippy.js: 6.3.7
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vue-tsc@3.2.4(typescript@5.9.3):
+ vue-tsc@3.2.5(typescript@5.9.3):
dependencies:
- '@volar/typescript': 2.4.27
- '@vue/language-core': 3.2.4
+ '@volar/typescript': 2.4.28
+ '@vue/language-core': 3.2.5
typescript: 5.9.3
- vue-types@3.0.2(vue@3.5.28(typescript@5.9.3)):
+ vue-types@3.0.2(vue@3.5.30(typescript@5.9.3)):
dependencies:
is-plain-object: 3.0.1
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
vue3-print-nb@0.1.4(typescript@5.9.3):
dependencies:
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
transitivePeerDependencies:
- typescript
- vue3-signature@0.2.4(vue@3.5.28(typescript@5.9.3)):
+ vue3-signature@0.2.4(vue@3.5.30(typescript@5.9.3)):
dependencies:
default-passive-events: 2.0.0
signature_pad: 3.0.0-beta.4
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vue@3.5.28(typescript@5.9.3):
+ vue@3.5.30(typescript@5.9.3):
dependencies:
- '@vue/compiler-dom': 3.5.28
- '@vue/compiler-sfc': 3.5.28
- '@vue/runtime-dom': 3.5.28
- '@vue/server-renderer': 3.5.28(vue@3.5.28(typescript@5.9.3))
- '@vue/shared': 3.5.28
+ '@vue/compiler-dom': 3.5.30
+ '@vue/compiler-sfc': 3.5.30
+ '@vue/runtime-dom': 3.5.30
+ '@vue/server-renderer': 3.5.30(vue@3.5.30(typescript@5.9.3))
+ '@vue/shared': 3.5.30
optionalDependencies:
typescript: 5.9.3
- vuedraggable@4.1.0(vue@3.5.28(typescript@5.9.3)):
+ vuedraggable@4.1.0(vue@3.5.30(typescript@5.9.3)):
dependencies:
sortablejs: 1.14.0
- vue: 3.5.28(typescript@5.9.3)
+ vue: 3.5.30(typescript@5.9.3)
- vueuc@0.4.65(vue@3.5.28(typescript@5.9.3)):
+ vueuc@0.4.65(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.28(typescript@5.9.3))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.30(typescript@5.9.3))
'@juggle/resize-observer': 3.4.0
css-render: 0.15.14
evtd: 0.2.4
seemly: 0.3.10
- vdirs: 0.1.8(vue@3.5.28(typescript@5.9.3))
- vooks: 0.2.12(vue@3.5.28(typescript@5.9.3))
- vue: 3.5.28(typescript@5.9.3)
+ vdirs: 0.1.8(vue@3.5.30(typescript@5.9.3))
+ vooks: 0.2.12(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.30(typescript@5.9.3)
- vxe-pc-ui@4.12.36(vue@3.5.28(typescript@5.9.3)):
+ vxe-pc-ui@4.13.5(vue@3.5.30(typescript@5.9.3)):
dependencies:
- '@vxe-ui/core': 4.3.1(vue@3.5.28(typescript@5.9.3))
+ '@vxe-ui/core': 4.4.3(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- vue
- vxe-table@4.17.48(vue@3.5.28(typescript@5.9.3)):
+ vxe-table@4.18.2(vue@3.5.30(typescript@5.9.3)):
dependencies:
- vxe-pc-ui: 4.12.36(vue@3.5.28(typescript@5.9.3))
+ vxe-pc-ui: 4.13.5(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- vue
@@ -23177,8 +22623,6 @@ snapshots:
webidl-conversions@4.0.2: {}
- webidl-conversions@7.0.0: {}
-
webpack-virtual-modules@0.6.2: {}
whatwg-encoding@3.1.1:
@@ -23275,23 +22719,23 @@ snapshots:
workbox-build@7.4.0:
dependencies:
- '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.18.0)
'@babel/core': 7.29.0
'@babel/preset-env': 7.29.0(@babel/core@7.29.0)
'@babel/runtime': 7.28.6
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.29.0)(rollup@2.79.2)
- '@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2)
- '@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
- '@rollup/plugin-terser': 0.4.4(rollup@2.79.2)
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.29.0)(rollup@2.80.0)
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@2.80.0)
+ '@rollup/plugin-replace': 2.4.2(rollup@2.80.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@2.80.0)
'@surma/rollup-plugin-off-main-thread': 2.2.3
- ajv: 8.17.1
+ ajv: 8.18.0
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
glob: 11.1.0
lodash: 4.17.23
pretty-bytes: 5.6.0
- rollup: 2.79.2
+ rollup: 2.80.0
source-map: 0.8.0-beta.0
stringify-object: 3.3.0
strip-comments: 2.0.1
@@ -23393,27 +22837,35 @@ snapshots:
dependencies:
ansi-styles: 6.2.3
string-width: 5.1.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
wrap-ansi@9.0.2:
dependencies:
ansi-styles: 6.2.3
string-width: 7.2.0
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
- write-file-atomic@5.0.1:
+ write-file-atomic@7.0.1:
dependencies:
- imurmurhash: 0.1.4
signal-exit: 4.1.0
+ ws@8.19.0: {}
+
wsl-utils@0.1.0:
dependencies:
- is-wsl: 3.1.0
+ is-wsl: 3.1.1
+
+ wsl-utils@0.3.1:
+ dependencies:
+ is-wsl: 3.1.1
+ powershell-utils: 0.1.0
xdg-basedir@5.1.0: {}
xe-utils@3.9.1: {}
+ xe-utils@4.0.4: {}
+
xml-name-validator@4.0.0: {}
y18n@4.0.3: {}
@@ -23433,7 +22885,7 @@ snapshots:
yaml-eslint-parser@2.0.0:
dependencies:
- eslint-visitor-keys: 5.0.0
+ eslint-visitor-keys: 5.0.1
yaml: 2.8.2
yaml@1.10.2: {}
@@ -23449,6 +22901,8 @@ snapshots:
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@15.4.1:
dependencies:
cliui: 6.0.0
@@ -23483,6 +22937,15 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
yocto-queue@0.1.0: {}
yocto-queue@1.2.2: {}
@@ -23494,10 +22957,10 @@ snapshots:
'@poppinss/exception': 1.2.3
error-stack-parser-es: 1.0.5
- youch@4.1.0-beta.13:
+ youch@4.1.0:
dependencies:
'@poppinss/colors': 4.1.6
- '@poppinss/dumper': 0.6.5
+ '@poppinss/dumper': 0.7.0
'@speed-highlight/core': 1.2.14
cookie-es: 2.0.0
youch-core: 0.3.3
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 2db279852..725243800 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -17,216 +17,210 @@ overrides:
'@ctrl/tinycolor': 'catalog:'
clsx: 'catalog:'
esbuild: 'catalog:'
- jiti: 'catalog:'
pinia: 'catalog:'
vue: 'catalog:'
catalog:
- '@ast-grep/napi': ^0.39.9
- '@changesets/changelog-github': ^0.5.2
- '@changesets/cli': ^2.29.8
+ '@ast-grep/napi': ^0.41.1
+ '@changesets/changelog-github': ^0.6.0
+ '@changesets/cli': ^2.30.0
'@changesets/git': ^3.0.4
- '@clack/prompts': ^0.11.0
- '@commitlint/cli': ^19.8.1
- '@commitlint/config-conventional': ^19.8.1
+ '@clack/prompts': ^1.1.0
+ '@commitlint/cli': ^20.4.4
+ '@commitlint/config-conventional': ^20.4.4
'@ctrl/tinycolor': ^4.2.0
- '@eslint/js': ^9.39.2
+ '@eslint-community/eslint-plugin-eslint-comments': ^4.7.1
+ '@eslint/js': ^10.0.1
'@form-create/ant-design-vue': ^3.2.37
'@form-create/antd-designer': ^3.4.0
'@form-create/designer': ^3.4.0
'@form-create/element-ui': ^3.2.37
'@form-create/naive-ui': ^3.2.37
- '@iconify/json': ^2.2.432
- '@iconify/tailwind': ^1.2.0
+ '@faker-js/faker': ^10.3.0
+ '@iconify/json': ^2.2.449
+ '@iconify/tailwind4': ^1.2.3
'@iconify/vue': ^5.0.0
- '@intlify/core-base': ^11.2.8
- '@intlify/unplugin-vue-i18n': ^6.0.8
- '@jspm/generator': ^2.9.0
+ '@intlify/core-base': ^11.3.0
+ '@intlify/unplugin-vue-i18n': ^11.0.7
+ '@jspm/generator': ^2.11.0
'@manypkg/get-packages': ^3.1.0
'@microsoft/fetch-event-source': ^2.0.1
'@nolebase/vitepress-plugin-git-changelog': ^2.18.2
'@playwright/test': ^1.58.2
- '@pnpm/workspace.read-manifest': ^1000.2.10
- '@stylistic/stylelint-plugin': ^4.0.1
- '@tailwindcss/nesting': 0.0.0-insiders.565cd3e
+ '@pnpm/workspace.read-manifest': ^1000.3.0
+ '@stylistic/stylelint-plugin': ^5.0.1
'@tailwindcss/typography': ^0.5.19
- '@tanstack/vue-store': ^0.8.0
'@tinyflow-ai/vue': ~1.1.10
'@tinymce/tinymce-vue': ^6.3.0
'@types/archiver': ^6.0.4
'@types/codemirror': ^5.60.17
'@types/crypto-js': ^4.2.2
'@types/eslint': ^9.6.1
+ '@tailwindcss/vite': ^4.2.1
+ '@tanstack/vue-query': ^5.92.9
+ '@tanstack/vue-store': ^0.9.2
'@types/html-minifier-terser': ^7.0.2
+ '@types/json-bigint': ^1.0.4
'@types/lodash.clonedeep': ^4.5.9
'@types/markdown-it': ^14.1.2
- '@types/node': ^24.10.12
+ '@types/node': ^25.5.0
'@types/nprogress': ^0.2.3
- '@types/postcss-import': ^14.0.3
'@types/qrcode': ^1.5.6
- '@types/qs': ^6.14.0
+ '@types/qs': ^6.15.0
'@types/sortablejs': ^1.15.9
- '@typescript-eslint/eslint-plugin': ^8.54.0
- '@typescript-eslint/parser': ^8.54.0
+ '@typescript-eslint/eslint-plugin': ^8.57.0
+ '@typescript-eslint/parser': ^8.57.0
'@vee-validate/zod': ^4.15.1
'@videojs-player/vue': ^1.0.0
'@vite-pwa/vitepress': ^1.1.0
- '@vitejs/plugin-vue': ^6.0.4
- '@vitejs/plugin-vue-jsx': ^5.1.4
- '@vue/shared': ^3.5.27
+ '@vitejs/plugin-vue': ^6.0.5
+ '@vitejs/plugin-vue-jsx': ^5.1.5
+ '@vue/shared': ^3.5.30
'@vue/test-utils': ^2.4.6
- '@vueuse/core': ^14.1.0
- '@vueuse/integrations': ^14.1.0
+ '@vueuse/core': ^14.2.1
+ '@vueuse/integrations': ^14.2.1
'@vueuse/motion': ^3.0.3
ant-design-vue: ^4.2.6
- antdv-next: ^1.0.2
+ antdv-next: ^1.1.3
archiver: ^7.0.1
- autoprefixer: ^10.4.24
- axios: ^1.13.4
+ axios: ^1.13.6
axios-mock-adapter: ^2.1.0
benz-amr-recorder: ^1.1.5
bpmn-js: ^17.11.1
bpmn-js-properties-panel: 5.23.0
bpmn-js-token-simulation: ^0.36.3
- cac: ^6.7.14
camunda-bpmn-moddle: ^7.0.1
+ cac: ^7.0.0
chalk: ^5.6.2
cheerio: ^1.2.0
- circular-dependency-scanner: ^2.3.0
+ circular-dependency-scanner: ^3.0.1
class-variance-authority: ^0.7.1
clsx: ^2.1.1
codemirror: ^5.65.20
- commitlint-plugin-function-rules: ^4.3.1
+ commitlint-plugin-function-rules: ^4.3.2
consola: ^3.4.2
cropperjs: ^1.6.2
cross-env: ^10.1.0
crypto-js: ^4.2.0
- cspell: ^9.6.4
cssnano: ^7.1.2
+ cspell: ^9.7.0
cz-git: ^1.12.0
czg: ^1.12.0
- dayjs: ^1.11.19
+ dayjs: ^1.11.20
defu: ^6.1.4
depcheck: ^1.4.7
diagram-js: ^12.8.1
- dotenv: ^16.6.1
+ dotenv: ^17.3.1
echarts: ^6.0.0
- element-plus: ^2.13.1
- es-toolkit: ^1.44.0
- esbuild: ^0.25.12
- eslint: ^9.39.2
- eslint-config-turbo: ^2.7.6
- eslint-plugin-command: ^3.4.0
- eslint-plugin-eslint-comments: ^3.2.0
- eslint-plugin-import-x: ^4.16.1
- eslint-plugin-jsdoc: ^61.7.1
- eslint-plugin-jsonc: ^2.21.0
- eslint-plugin-n: ^17.23.2
- eslint-plugin-no-only-tests: ^3.3.0
- eslint-plugin-perfectionist: ^4.15.1
- eslint-plugin-pnpm: ^1.5.0
- eslint-plugin-prettier: ^5.5.5
- eslint-plugin-regexp: ^2.10.0
- eslint-plugin-unicorn: ^62.0.0
- eslint-plugin-unused-imports: ^4.3.0
- eslint-plugin-vitest: ^0.5.4
- eslint-plugin-vue: ^10.7.0
- eslint-plugin-yml: ^1.19.1
+ element-plus: ^2.13.5
+ es-toolkit: ^1.45.1
+ esbuild: ^0.27.4
+ eslint: ^10.0.3
+ eslint-config-turbo: ^2.8.16
+ eslint-plugin-better-tailwindcss: ^4.3.2
+ eslint-plugin-command: ^3.5.2
+ eslint-plugin-jsonc: ^3.1.2
+ eslint-plugin-n: ^17.24.0
+ eslint-plugin-oxlint: ^1.55.0
+ eslint-plugin-perfectionist: ^5.6.0
+ eslint-plugin-pnpm: ^1.6.0
+ eslint-plugin-unicorn: ^63.0.0
+ eslint-plugin-unused-imports: ^4.4.1
+ eslint-plugin-vue: ^10.8.0
+ eslint-plugin-yml: ^3.3.1
execa: ^9.6.1
fast-xml-parser: ^4.5.3
- find-up: ^7.0.0
- get-port: ^7.1.0
- globals: ^16.5.0
- happy-dom: ^17.6.3
highlight.js: ^11.11.1
- html-minifier-terser: ^7.2.0
- is-ci: ^4.1.0
- jiti: ^2.6.1
jsencrypt: ^3.5.4
- json-bigint: ^1.0.0
- jsonc-eslint-parser: ^2.4.2
- lefthook: ^2.1.0
- lodash.clonedeep: ^4.5.0
- lucide-vue-next: ^0.553.0
markdown-it: ^14.1.0
markmap-common: ^0.16.0
markmap-lib: ^0.16.1
markmap-toolbar: ^0.17.2
markmap-view: ^0.16.0
+ find-up: ^8.0.0
+ get-port: ^7.1.0
+ globals: ^17.4.0
+ h3: ^1.15.6
+ happy-dom: ^20.8.4
+ html-minifier-terser: ^7.2.0
+ is-ci: ^4.1.0
+ json-bigint: ^1.0.0
+ jsonwebtoken: ^9.0.3
+ lefthook: ^2.1.4
+ lodash.clonedeep: ^4.5.0
+ lucide-vue-next: ^0.577.0
medium-zoom: ^1.1.0
- naive-ui: ^2.43.2
+ naive-ui: ^2.44.1
nitropack: ^2.13.1
nprogress: ^0.2.0
- ora: ^8.2.0
+ ora: ^9.3.0
+ oxfmt: ^0.40.0
+ oxlint: ^1.55.0
+ oxlint-tsgolint: ^0.16.0
pinia: ^3.0.4
pinia-plugin-persistedstate: ^4.7.1
pkg-types: ^2.3.0
playwright: ^1.58.2
- postcss: ^8.5.6
- postcss-antd-fixes: ^0.2.0
+ postcss: ^8.5.8
postcss-html: ^1.8.1
- postcss-import: ^16.1.1
- postcss-preset-env: ^10.6.1
postcss-scss: ^4.0.9
- prettier: ^3.8.1
- prettier-plugin-tailwindcss: ^0.7.2
- publint: ^0.3.17
+ publint: ^0.3.18
qrcode: ^1.5.4
- qs: ^6.14.1
- reka-ui: ^2.7.0
+ qs: ^6.15.0
+ reka-ui: ^2.9.2
resolve.exports: ^2.0.3
- rimraf: ^6.1.2
- rollup: ^4.57.0
- rollup-plugin-visualizer: ^5.14.0
- sass: ^1.97.3
+ rimraf: ^6.1.3
+ rollup: ^4.59.0
+ rollup-plugin-visualizer: ^7.0.1
+ sass: ^1.98.0
+ sass-embedded: ^1.98.0
secure-ls: ^2.0.0
- sortablejs: ^1.15.6
steady-xml: ^0.1.0
- stylelint: ^16.26.1
- stylelint-config-recess-order: ^7.6.0
- stylelint-config-recommended: ^17.0.0
- stylelint-config-recommended-scss: ^16.0.2
+ sortablejs: ^1.15.7
+ stylelint: ^17.4.0
+ stylelint-config-recess-order: ^7.6.1
+ stylelint-config-recommended: ^18.0.0
+ stylelint-config-recommended-scss: ^17.0.0
stylelint-config-recommended-vue: ^1.6.1
- stylelint-config-standard: ^39.0.1
- stylelint-order: ^7.0.1
- stylelint-prettier: ^5.0.3
- stylelint-scss: ^6.14.0
- tailwind-merge: ^2.6.0
- tailwindcss: ^3.4.19
- tailwindcss-animate: ^1.0.7
- tdesign-vue-next: ^1.18.0
+ stylelint-config-standard: ^40.0.0
+ stylelint-order: ^8.0.0
+ stylelint-scss: ^7.0.0
+ tailwind-merge: ^3.5.0
+ tailwindcss: ^4.2.1
+ tdesign-vue-next: ^1.18.5
theme-colors: ^0.1.0
tinymce: ^7.3.0
tippy.js: ^6.3.7
- turbo: ^2.8.3
+ turbo: ^2.8.16
+ tw-animate-css: ^1.4.0
typescript: ^5.9.3
unbuild: ^3.6.1
unplugin-element-plus: ^0.11.2
vee-validate: ^4.15.1
video.js: ^7.21.7
- vite: ^7.3.1
+ vite: ^8.0.0
vite-plugin-compression: ^0.5.1
vite-plugin-dts: ^4.5.4
vite-plugin-html: ^3.2.2
vite-plugin-lazy-import: ^1.0.7
vite-plugin-pwa: ^1.2.0
- vite-plugin-vue-devtools: ^8.0.5
+ vite-plugin-vue-devtools: ^8.1.0
vitepress: ^1.6.4
vitepress-plugin-group-icons: ^1.7.1
- vitest: ^3.2.4
- vue: ^3.5.27
vue-dompurify-html: ^5.3.0
- vue-eslint-parser: ^10.2.0
- vue-i18n: ^11.2.8
+ vitest: ^4.1.0
+ vue: ^3.5.30
+ vue-eslint-parser: ^10.4.0
+ vue-i18n: ^11.3.0
vue-json-viewer: ^3.0.4
- vue-router: ^4.6.4
+ vue-router: ^5.0.3
vue-tippy: ^6.7.1
- vue-tsc: ^3.2.4
vue3-print-nb: ^0.1.4
vue3-signature: ^0.2.4
vuedraggable: ^4.1.0
- vxe-pc-ui: ^4.12.16
- vxe-table: ^4.17.46
+ vue-tsc: ^3.2.5
+ vxe-pc-ui: ^4.13.5
+ vxe-table: ^4.18.2
watermark-js-plus: ^1.6.3
- yaml-eslint-parser: ^1.3.2
+ yaml-eslint-parser: ^2.0.0
zod: ^3.25.76
zod-defaults: 0.1.3
diff --git a/scripts/turbo-run/package.json b/scripts/turbo-run/package.json
index 5b4353a28..b2acd458f 100644
--- a/scripts/turbo-run/package.json
+++ b/scripts/turbo-run/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/turbo-run",
- "version": "5.6.0",
+ "version": "5.7.0",
"private": true,
"license": "MIT",
"type": "module",
diff --git a/scripts/turbo-run/src/index.ts b/scripts/turbo-run/src/index.ts
index 2f8dad0ff..62b11d0e7 100644
--- a/scripts/turbo-run/src/index.ts
+++ b/scripts/turbo-run/src/index.ts
@@ -1,4 +1,4 @@
-import { colors, consola } from '@vben/node-utils';
+import { consola } from '@vben/node-utils';
import { cac } from 'cac';
@@ -14,12 +14,6 @@ try {
run({ command });
});
- // Invalid command
- turboRun.on('command:*', () => {
- consola.error(colors.red('Invalid command!'));
- process.exit(1);
- });
-
turboRun.usage('turbo-run');
turboRun.help();
turboRun.parse();
diff --git a/scripts/vsh/env.d.ts b/scripts/vsh/env.d.ts
new file mode 100644
index 000000000..6c21162b5
--- /dev/null
+++ b/scripts/vsh/env.d.ts
@@ -0,0 +1 @@
+declare module 'circular-dependency-scanner';
diff --git a/scripts/vsh/package.json b/scripts/vsh/package.json
index 40175e976..441dbb756 100644
--- a/scripts/vsh/package.json
+++ b/scripts/vsh/package.json
@@ -1,6 +1,6 @@
{
"name": "@vben/vsh",
- "version": "5.6.0",
+ "version": "5.7.0",
"private": true,
"license": "MIT",
"type": "module",
diff --git a/scripts/vsh/src/check-dep/index.ts b/scripts/vsh/src/check-dep/index.ts
index 3da10b997..d5ea34dd9 100644
--- a/scripts/vsh/src/check-dep/index.ts
+++ b/scripts/vsh/src/check-dep/index.ts
@@ -13,7 +13,6 @@ const DEFAULT_CONFIG = {
'unbuild',
'@vben/tsconfig',
'@vben/vite-config',
- '@vben/tailwind-config',
'@types/*',
'@vben-core/design',
],
@@ -22,9 +21,9 @@ const DEFAULT_CONFIG = {
'@vben/commitlint-config',
'@vben/eslint-config',
'@vben/node-utils',
- '@vben/prettier-config',
+ '@vben/oxfmt-config',
+ '@vben/oxlint-config',
'@vben/stylelint-config',
- '@vben/tailwind-config',
'@vben/tsconfig',
'@vben/vite-config',
'@vben/vsh',
diff --git a/scripts/vsh/src/code-workspace/index.ts b/scripts/vsh/src/code-workspace/index.ts
index d5ec4ee90..02706db4b 100644
--- a/scripts/vsh/src/code-workspace/index.ts
+++ b/scripts/vsh/src/code-workspace/index.ts
@@ -6,10 +6,10 @@ import {
colors,
consola,
findMonorepoRoot,
+ formatFile,
getPackages,
gitAdd,
outputJSON,
- prettierFormat,
toPosixPath,
} from '@vben/node-utils';
@@ -40,7 +40,7 @@ async function createCodeWorkspace({
const outputPath = join(monorepoRoot, CODE_WORKSPACE_FILE);
await outputJSON(outputPath, { folders }, spaces);
- await prettierFormat(outputPath);
+ await formatFile(outputPath);
if (autoCommit) {
await gitAdd(CODE_WORKSPACE_FILE, monorepoRoot);
}
diff --git a/scripts/vsh/src/index.ts b/scripts/vsh/src/index.ts
index 4943425ff..89c757630 100644
--- a/scripts/vsh/src/index.ts
+++ b/scripts/vsh/src/index.ts
@@ -32,27 +32,30 @@ async function main(): Promise {
defineCheckCircularCommand(vsh);
defineDepcheckCommand(vsh);
- // Handle invalid commands
- vsh.on('command:*', ([cmd]) => {
- consola.error(
- colors.red(`Invalid command: ${cmd}`),
- '\n',
- colors.yellow('Available commands:'),
- '\n',
- Object.entries(COMMAND_DESCRIPTIONS)
- .map(([cmd, desc]) => ` ${colors.cyan(cmd)} - ${desc}`)
- .join('\n'),
- );
- process.exit(1);
- });
-
// Set up CLI
vsh.usage('vsh [options]');
vsh.help();
vsh.version(version);
- // Parse arguments
- vsh.parse();
+ // Parse arguments without auto-running to detect unknown commands
+ // Note: cac v7 removed EventEmitter; use matchedCommand after parse instead
+ vsh.parse(undefined, { run: false });
+
+ if (!vsh.matchedCommand && vsh.args.length > 0) {
+ const unknownCmd = String(vsh.args[0]);
+ consola.error(
+ colors.red(`Invalid command: ${unknownCmd}`),
+ '\n',
+ colors.yellow('Available commands:'),
+ '\n',
+ Object.entries(COMMAND_DESCRIPTIONS)
+ .map(([name, desc]) => ` ${colors.cyan(name)} - ${desc}`)
+ .join('\n'),
+ );
+ process.exit(1);
+ }
+
+ await vsh.runMatchedCommand();
} catch (error) {
consola.error(
colors.red('An unexpected error occurred:'),
diff --git a/scripts/vsh/src/lint/index.ts b/scripts/vsh/src/lint/index.ts
index b95ead6ac..8ae70ee11 100644
--- a/scripts/vsh/src/lint/index.ts
+++ b/scripts/vsh/src/lint/index.ts
@@ -16,19 +16,25 @@ async function runLint({ format }: LintCommandOptions) {
await execaCommand(`stylelint "**/*.{vue,css,less,scss}" --cache --fix`, {
stdio: 'inherit',
});
- await execaCommand(`eslint . --cache --fix`, {
+ await execaCommand(`oxfmt .`, {
stdio: 'inherit',
});
- await execaCommand(`prettier . --write --cache --log-level warn`, {
+ await execaCommand(`oxlint . --fix`, {
+ stdio: 'inherit',
+ });
+ await execaCommand(`eslint . --cache --fix`, {
stdio: 'inherit',
});
return;
}
await Promise.all([
- execaCommand(`eslint . --cache`, {
+ execaCommand(`oxfmt . --check`, {
stdio: 'inherit',
}),
- execaCommand(`prettier . --ignore-unknown --check --cache`, {
+ execaCommand(`oxlint .`, {
+ stdio: 'inherit',
+ }),
+ execaCommand(`eslint . --cache`, {
stdio: 'inherit',
}),
execaCommand(`stylelint "**/*.{vue,css,less,scss}" --cache`, {
diff --git a/scripts/vsh/tsconfig.json b/scripts/vsh/tsconfig.json
index b2ec3b61e..f4d397ad8 100644
--- a/scripts/vsh/tsconfig.json
+++ b/scripts/vsh/tsconfig.json
@@ -1,6 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@vben/tsconfig/node.json",
- "include": ["src"],
+ "include": ["src", "env.d.ts"],
"exclude": ["node_modules"]
}
diff --git a/turbo.json b/turbo.json
index 7226f13dc..ff3070b3a 100644
--- a/turbo.json
+++ b/turbo.json
@@ -6,7 +6,6 @@
"**/tsconfig*.json",
"internal/node-utils/*.json",
"internal/node-utils/src/**/*.ts",
- "internal/tailwind-config/src/**/*.ts",
"internal/vite-config/*.json",
"internal/vite-config/src/**/*.ts",
"scripts/*/src/**/*.ts",
diff --git a/vben-admin.code-workspace b/vben-admin.code-workspace
index dbe9ae292..09759859c 100644
--- a/vben-admin.code-workspace
+++ b/vben-admin.code-workspace
@@ -33,8 +33,12 @@
"path": "internal/lint-configs/eslint-config",
},
{
- "name": "@vben/prettier-config",
- "path": "internal/lint-configs/prettier-config",
+ "name": "@vben/oxfmt-config",
+ "path": "internal/lint-configs/oxfmt-config",
+ },
+ {
+ "name": "@vben/oxlint-config",
+ "path": "internal/lint-configs/oxlint-config",
},
{
"name": "@vben/stylelint-config",
@@ -44,10 +48,6 @@
"name": "@vben/node-utils",
"path": "internal/node-utils",
},
- {
- "name": "@vben/tailwind-config",
- "path": "internal/tailwind-config",
- },
{
"name": "@vben/tsconfig",
"path": "internal/tsconfig",
diff --git a/vitest.config.ts b/vitest.config.ts
index a5ecd3d62..67d6c229e 100644
--- a/vitest.config.ts
+++ b/vitest.config.ts
@@ -6,6 +6,15 @@ export default defineConfig({
plugins: [Vue(), VueJsx()],
test: {
environment: 'happy-dom',
+ environmentOptions: {
+ happyDOM: {
+ settings: {
+ // happy-dom v20+ disables JS evaluation by default (security fix).
+ // Treat disabled script loading as success to preserve test behavior.
+ handleDisabledFileLoadingAsSuccess: true,
+ },
+ },
+ },
exclude: [
...configDefaults.exclude,
'**/e2e/**',
@@ -13,7 +22,7 @@ export default defineConfig({
'**/.{idea,git,cache,output,temp}/**',
'**/node_modules/**',
'**/{stylelint,eslint}.config.*',
- '.prettierrc.mjs',
+ '**/{oxfmt,oxlint}.config.*',
],
},
});