diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 339e5fd8f..e17cb60dd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -33,7 +33,7 @@ jobs:
fetch-depth: 0
- name: Install pnpm
- uses: pnpm/action-setup@v4
+ uses: pnpm/action-setup@v5
with:
run_install: false
diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml
index 20b4148a7..babca2d38 100644
--- a/.github/workflows/draft.yml
+++ b/.github/workflows/draft.yml
@@ -20,6 +20,6 @@ jobs:
if: github.repository == 'vbenjs/vue-vben-admin'
runs-on: ubuntu-latest
steps:
- - uses: release-drafter/release-drafter@v6
+ - uses: release-drafter/release-drafter@v7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml
index 5684990a7..7258c11ff 100644
--- a/.github/workflows/release-tag.yml
+++ b/.github/workflows/release-tag.yml
@@ -58,7 +58,7 @@ jobs:
echo "version=${version}" >> $GITHUB_OUTPUT
echo "major=${major}" >> $GITHUB_OUTPUT
- - uses: release-drafter/release-drafter@v6
+ - uses: release-drafter/release-drafter@v7
with:
version: ${{ steps.version.outputs.version }}
publish: true
diff --git a/.gitignore b/.gitignore
index df1f37a8a..86d1f1f8a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,7 +22,7 @@ yarn.lock
package-lock.json
.VSCodeCounter
**/backend-mock/data
-
+.omx
# local env files
.env.local
.env.*.local
diff --git a/.vscode/settings.json b/.vscode/settings.json
index ae1f5c929..6132ff6cc 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -181,9 +181,10 @@
"stylelint.customSyntax": "postcss-html",
"stylelint.snippet": ["css", "less", "postcss", "scss", "vue"],
- "typescript.inlayHints.enumMemberValues.enabled": true,
- "typescript.preferences.preferTypeOnlyAutoImports": true,
- "typescript.preferences.includePackageJsonAutoImports": "on",
+ "js/ts.tsdk.path": "node_modules/typescript/lib",
+ "js/ts.inlayHints.enumMemberValues.enabled": true,
+ "js/ts.preferences.preferTypeOnlyAutoImports": true,
+ "js/ts.preferences.includePackageJsonAutoImports": "on",
"eslint.validate": [
"javascript",
@@ -236,6 +237,5 @@
},
"commentTranslate.hover.enabled": false,
"commentTranslate.multiLineMerge": true,
- "vue.server.hybridMode": true,
- "typescript.tsdk": "node_modules/typescript/lib"
+ "vue.server.hybridMode": true
}
diff --git a/apps/web-antd/index.html b/apps/web-antd/index.html
index 34c6f145c..f390d1d76 100644
--- a/apps/web-antd/index.html
+++ b/apps/web-antd/index.html
@@ -12,7 +12,7 @@
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
/>
-
<%= VITE_APP_TITLE %>
+ %VITE_APP_TITLE%
diff --git a/apps/web-ele/index.html b/apps/web-ele/index.html
index 34c6f145c..f390d1d76 100644
--- a/apps/web-ele/index.html
+++ b/apps/web-ele/index.html
@@ -12,7 +12,7 @@
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
/>
- <%= VITE_APP_TITLE %>
+ %VITE_APP_TITLE%
+
+
+
+
+ return 值:回写当前字段
+ setValue:拆分写入其他字段
+ return undefined:保持原字段删除
+
+
+
+
+
+
+ 查看 getValues 输出
+
+
+
+
+
+
+
+
+ {{
+ liveValuesPreview
+ }}
+
+
+ {{
+ transformedValuesPreview
+ }}
+
+
+
+
diff --git a/docs/src/en/components/common-ui/vben-form.md b/docs/src/en/components/common-ui/vben-form.md
index d23e869bc..58cd7a4d4 100644
--- a/docs/src/en/components/common-ui/vben-form.md
+++ b/docs/src/en/components/common-ui/vben-form.md
@@ -191,12 +191,23 @@ Create the form through `useVbenForm`:
+## Value Formatting
+
+Use `schema.valueFormat` when the component value is convenient for the UI but the final payload returned by `getValues()` should use a different shape.
+
+- return a value to write back to the current field
+- call `setValue(key, nextValue)` to write derived fields
+- return `undefined` to keep the original field removed after decomposition
+
+
+
## Key API Notes
- `useVbenForm` returns `[Form, formApi]`
- `formApi.getFieldComponentRef()` and `formApi.getFocusedField()` are available in current versions
- `handleValuesChange(values, fieldsChanged)` includes the second parameter in newer versions
- `fieldMappingTime` and `scrollToFirstError` are part of the current form props
+- `schema.valueFormat` lets `getValues()` transform UI values into backend-friendly payloads
## Reference
diff --git a/docs/src/en/guide/essentials/settings.md b/docs/src/en/guide/essentials/settings.md
index 59bb3900a..69aedbde2 100644
--- a/docs/src/en/guide/essentials/settings.md
+++ b/docs/src/en/guide/essentials/settings.md
@@ -193,6 +193,156 @@ export const overridesPreferences = defineOverridesPreferences({
});
```
+### Extend project-level preferences
+
+In addition to overriding the built-in framework preferences, you can also add a set of business preferences for each application. After configuration, the preferences drawer will display an extra tab for the current app, and the data will be stored together with the app `namespace`. This is useful for project-specific fields such as tenant mode, business titles, or default page size.
+
+#### 1. Define the extension in `src/preferences.ts`
+
+```ts
+import {
+ defineOverridesPreferences,
+ definePreferencesExtension,
+} from '@vben/preferences';
+
+interface ProjectPreferencesExtension {
+ defaultTableSize: number;
+ enableFormFullscreen: boolean;
+ reportTitle: string;
+ tenantMode: 'multi' | 'single';
+}
+
+export const overridesPreferences = defineOverridesPreferences({
+ app: {
+ name: import.meta.env.VITE_APP_TITLE,
+ },
+});
+
+export const preferencesExtension =
+ definePreferencesExtension({
+ tabLabel: 'preferences.antd.tabLabel',
+ title: 'preferences.antd.title',
+ fields: [
+ {
+ component: 'switch',
+ defaultValue: true,
+ key: 'enableFormFullscreen',
+ label: 'preferences.antd.fields.enableFormFullscreen.label',
+ tip: 'preferences.antd.fields.enableFormFullscreen.tip',
+ },
+ {
+ component: 'select',
+ defaultValue: 'single',
+ key: 'tenantMode',
+ label: 'preferences.antd.fields.tenantMode.label',
+ options: [
+ {
+ label: 'preferences.antd.fields.tenantMode.options.single.label',
+ value: 'single',
+ },
+ {
+ label: 'preferences.antd.fields.tenantMode.options.multi.label',
+ value: 'multi',
+ },
+ ],
+ },
+ {
+ component: 'number',
+ componentProps: {
+ max: 200,
+ min: 10,
+ step: 10,
+ },
+ defaultValue: 20,
+ key: 'defaultTableSize',
+ label: 'preferences.antd.fields.defaultTableSize.label',
+ },
+ {
+ component: 'input',
+ defaultValue: '',
+ key: 'reportTitle',
+ label: 'preferences.antd.fields.reportTitle.label',
+ placeholder: 'preferences.antd.fields.reportTitle.placeholder',
+ },
+ ],
+ });
+```
+
+- `tabLabel` is the tab label, and `title` is the panel title. If `title` is omitted, `tabLabel` is used as the fallback.
+- `fields` currently supports four component types: `input`, `number`, `select`, and `switch`.
+- `label`, `placeholder`, `tip`, and `options[].label` can be i18n keys directly. The preferences drawer resolves them with `$t` automatically.
+
+#### 2. Pass `extension` when initializing preferences
+
+```ts
+import { initPreferences } from '@vben/preferences';
+
+import { overridesPreferences, preferencesExtension } from './preferences';
+
+await initPreferences({
+ namespace,
+ overrides: overridesPreferences,
+ extension: preferencesExtension,
+});
+```
+
+The same `namespace` isolates both framework preferences and extension preferences. So even if multiple subprojects run in the same browser, their business preferences remain independent.
+
+#### 3. Read or update extension preferences in business pages
+
+```ts
+import {
+ getCustomPreferences,
+ updateCustomPreferences,
+ usePreferences,
+} from '@vben/preferences';
+
+interface ProjectPreferencesExtension {
+ defaultTableSize: number;
+ enableFormFullscreen: boolean;
+ reportTitle: string;
+ tenantMode: 'multi' | 'single';
+}
+
+const projectPreferences = getCustomPreferences();
+
+const { customPreferences, preferencesExtension } = usePreferences();
+
+updateCustomPreferences({
+ defaultTableSize: 50,
+ tenantMode: 'multi',
+});
+```
+
+- `getCustomPreferences` returns the reactive extension-preferences object for the current app.
+- `customPreferences` and `preferencesExtension` from `usePreferences` are convenient when composing reusable logic.
+- Calling `resetPreferences()` also resets extension preferences back to their default values.
+
+#### 4. Number fields validate `min` / `max` / `step` automatically
+
+If you provide `componentProps.min`, `componentProps.max`, and `componentProps.step` for a `number` field, runtime persistence follows the same constraints. For example:
+
+```ts
+{
+ component: 'number',
+ componentProps: {
+ min: 10,
+ max: 200,
+ step: 10,
+ },
+ defaultValue: 20,
+ key: 'defaultTableSize',
+ label: 'preferences.antd.fields.defaultTableSize.label',
+}
+```
+
+Only values within `10 ~ 200` and increasing by `10` will be saved. Values like `15`, `205`, or invalid legacy cache values are ignored automatically.
+
+For complete examples, see:
+
+- `playground/src/preferences.ts`
+- `playground/src/views/demos/features/preferences-extension/index.vue`
+
### Framework default configuration
::: details View the default configuration of the framework
diff --git a/docs/src/en/guide/in-depth/loading.md b/docs/src/en/guide/in-depth/loading.md
index 0f1cff6ee..e0706cf56 100644
--- a/docs/src/en/guide/in-depth/loading.md
+++ b/docs/src/en/guide/in-depth/loading.md
@@ -39,6 +39,6 @@ If you want to customize the global loading, you can create a `loading.html` fil
-
<%= VITE_APP_TITLE %>
+
%VITE_APP_TITLE%
```
diff --git a/docs/src/guide/essentials/settings.md b/docs/src/guide/essentials/settings.md
index 9637114fe..067a1cb95 100644
--- a/docs/src/guide/essentials/settings.md
+++ b/docs/src/guide/essentials/settings.md
@@ -192,6 +192,156 @@ export const overridesPreferences = defineOverridesPreferences({
});
```
+### 扩展项目级偏好
+
+除了覆盖框架内置偏好外,还可以为每个应用追加一组“业务偏好”。配置后,偏好设置抽屉会新增一个独立标签页,并且这组数据会跟随当前应用的 `namespace` 一起存储,适合放租户模式、业务标题、默认分页条数等项目字段。
+
+#### 1. 在应用的 `src/preferences.ts` 中定义扩展
+
+```ts
+import {
+ defineOverridesPreferences,
+ definePreferencesExtension,
+} from '@vben/preferences';
+
+interface ProjectPreferencesExtension {
+ defaultTableSize: number;
+ enableFormFullscreen: boolean;
+ reportTitle: string;
+ tenantMode: 'multi' | 'single';
+}
+
+export const overridesPreferences = defineOverridesPreferences({
+ app: {
+ name: import.meta.env.VITE_APP_TITLE,
+ },
+});
+
+export const preferencesExtension =
+ definePreferencesExtension({
+ tabLabel: 'preferences.antd.tabLabel',
+ title: 'preferences.antd.title',
+ fields: [
+ {
+ component: 'switch',
+ defaultValue: true,
+ key: 'enableFormFullscreen',
+ label: 'preferences.antd.fields.enableFormFullscreen.label',
+ tip: 'preferences.antd.fields.enableFormFullscreen.tip',
+ },
+ {
+ component: 'select',
+ defaultValue: 'single',
+ key: 'tenantMode',
+ label: 'preferences.antd.fields.tenantMode.label',
+ options: [
+ {
+ label: 'preferences.antd.fields.tenantMode.options.single.label',
+ value: 'single',
+ },
+ {
+ label: 'preferences.antd.fields.tenantMode.options.multi.label',
+ value: 'multi',
+ },
+ ],
+ },
+ {
+ component: 'number',
+ componentProps: {
+ max: 200,
+ min: 10,
+ step: 10,
+ },
+ defaultValue: 20,
+ key: 'defaultTableSize',
+ label: 'preferences.antd.fields.defaultTableSize.label',
+ },
+ {
+ component: 'input',
+ defaultValue: '',
+ key: 'reportTitle',
+ label: 'preferences.antd.fields.reportTitle.label',
+ placeholder: 'preferences.antd.fields.reportTitle.placeholder',
+ },
+ ],
+ });
+```
+
+- `tabLabel` 是标签名称,`title` 是该标签页标题;如果不传 `title`,会回退使用 `tabLabel`。
+- `fields` 目前支持 `input`、`number`、`select`、`switch` 四种组件。
+- `label`、`placeholder`、`tip`、`options[].label` 可以直接写 i18n key,偏好设置面板会自动调用 `$t` 渲染。
+
+#### 2. 初始化偏好设置时传入 `extension`
+
+```ts
+import { initPreferences } from '@vben/preferences';
+
+import { overridesPreferences, preferencesExtension } from './preferences';
+
+await initPreferences({
+ namespace,
+ overrides: overridesPreferences,
+ extension: preferencesExtension,
+});
+```
+
+这里的 `namespace` 会同时隔离框架偏好和扩展偏好。因此同一浏览器中即使运行多个子项目,它们的业务偏好也不会互相污染。
+
+#### 3. 在业务页面中读取或更新扩展偏好
+
+```ts
+import {
+ getCustomPreferences,
+ updateCustomPreferences,
+ usePreferences,
+} from '@vben/preferences';
+
+interface ProjectPreferencesExtension {
+ defaultTableSize: number;
+ enableFormFullscreen: boolean;
+ reportTitle: string;
+ tenantMode: 'multi' | 'single';
+}
+
+const projectPreferences = getCustomPreferences();
+
+const { customPreferences, preferencesExtension } = usePreferences();
+
+updateCustomPreferences({
+ defaultTableSize: 50,
+ tenantMode: 'multi',
+});
+```
+
+- `getCustomPreferences` 返回当前应用扩展偏好的响应式对象,适合直接在页面中读取。
+- `usePreferences` 中的 `customPreferences` 和 `preferencesExtension` 适合在组合式逻辑里统一使用。
+- 调用 `resetPreferences()` 时,扩展偏好也会一起重置到默认值。
+
+#### 4. 数字字段会自动校验 `min` / `max` / `step`
+
+为 `number` 字段设置 `componentProps.min`、`componentProps.max`、`componentProps.step` 后,运行时保存也会遵守同样的规则。例如下面的配置:
+
+```ts
+{
+ component: 'number',
+ componentProps: {
+ min: 10,
+ max: 200,
+ step: 10,
+ },
+ defaultValue: 20,
+ key: 'defaultTableSize',
+ label: 'preferences.antd.fields.defaultTableSize.label',
+}
+```
+
+此时只有 `10 ~ 200` 且按 `10` 递增的值会被保存;像 `15`、`205`,或者旧缓存里不满足约束的值,都会被自动忽略。
+
+完整示例可以参考:
+
+- `playground/src/preferences.ts`
+- `playground/src/views/demos/features/preferences-extension/index.vue`
+
### 框架默认配置
::: details 查看框架默认配置
diff --git a/docs/src/guide/in-depth/loading.md b/docs/src/guide/in-depth/loading.md
index 60e69378c..4e1ae8f7b 100644
--- a/docs/src/guide/in-depth/loading.md
+++ b/docs/src/guide/in-depth/loading.md
@@ -39,7 +39,7 @@ VITE_INJECT_APP_LOADING=false
-
<%= VITE_APP_TITLE %>
+
%VITE_APP_TITLE%
```
diff --git a/internal/lint-configs/eslint-config/src/configs/javascript.ts b/internal/lint-configs/eslint-config/src/configs/javascript.ts
index 2019ecdd2..bd9bd852b 100644
--- a/internal/lint-configs/eslint-config/src/configs/javascript.ts
+++ b/internal/lint-configs/eslint-config/src/configs/javascript.ts
@@ -104,6 +104,8 @@ export async function javascript(): Promise {
'keyword-spacing': 'off',
'no-control-regex': 'error',
'no-empty-function': 'off',
+ 'no-octal': 'error',
+ 'no-octal-escape': 'error',
'no-restricted-properties': [
'error',
{
@@ -136,8 +138,32 @@ export async function javascript(): Promise {
'TSEnumDeclaration[const=true]',
'TSExportAssignment',
],
+ 'no-undef-init': 'error',
'no-undef': 'off',
'no-unreachable-loop': 'error',
+ 'object-shorthand': [
+ 'error',
+ 'always',
+ {
+ avoidQuotes: true,
+ ignoreConstructors: false,
+ },
+ ],
+ 'one-var': ['error', { initialized: 'never' }],
+ 'prefer-arrow-callback': [
+ 'error',
+ {
+ allowNamedFunctions: false,
+ allowUnboundThis: true,
+ },
+ ],
+ 'prefer-regex-literals': [
+ 'error',
+ {
+ disallowRedundantWrapping: true,
+ },
+ ],
+ 'spaced-comment': 'error',
'space-before-function-paren': 'off',
'unused-imports/no-unused-imports': 'error',
diff --git a/internal/lint-configs/oxlint-config/src/configs/javascript.ts b/internal/lint-configs/oxlint-config/src/configs/javascript.ts
index 4ea37891c..4352c8017 100644
--- a/internal/lint-configs/oxlint-config/src/configs/javascript.ts
+++ b/internal/lint-configs/oxlint-config/src/configs/javascript.ts
@@ -46,13 +46,12 @@ const javascript: OxlintConfig = {
'no-empty': ['error', { allowEmptyCatch: true }],
'no-fallthrough': 'error',
'no-new-func': 'error',
- 'no-new-object': 'error',
- 'no-new-symbol': 'error',
+ 'no-object-constructor': 'error',
+ 'no-new-native-nonconstructor': 'error',
'no-labels': ['error', { allowLoop: false, allowSwitch: false }],
'no-lone-blocks': 'error',
'no-multi-str': 'error',
- 'no-octal': 'error',
- 'no-octal-escape': 'error',
+ 'no-nonoctal-decimal-escape': 'error',
'no-proto': 'error',
'no-prototype-builtins': 'error',
'no-redeclare': ['error', { builtinGlobals: false }],
@@ -69,7 +68,6 @@ const javascript: OxlintConfig = {
],
'no-template-curly-in-string': 'error',
'no-throw-literal': 'error',
- 'no-undef-init': 'error',
'no-unused-expressions': [
'error',
{
@@ -98,15 +96,6 @@ const javascript: OxlintConfig = {
'no-useless-computed-key': 'error',
'no-useless-constructor': 'error',
'no-useless-return': 'error',
- 'object-shorthand': [
- 'error',
- 'always',
- {
- avoidQuotes: true,
- ignoreConstructors: false,
- },
- ],
- 'one-var': ['error', { initialized: 'never' }],
'prefer-const': [
'error',
{
@@ -114,25 +103,11 @@ const javascript: OxlintConfig = {
ignoreReadBeforeAssign: true,
},
],
- 'eslint/prefer-arrow-callback': [
- 'error',
- {
- allowNamedFunctions: false,
- allowUnboundThis: true,
- },
- ],
'prefer-exponentiation-operator': 'error',
'prefer-promise-reject-errors': 'error',
- 'eslint/prefer-regex-literals': [
- 'error',
- {
- disallowRedundantWrapping: true,
- },
- ],
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'prefer-template': 'error',
- 'spaced-comment': 'error',
'symbol-description': 'error',
'unicode-bom': ['error', 'never'],
'use-isnan': [
diff --git a/internal/lint-configs/oxlint-config/src/configs/tailwindcss.ts b/internal/lint-configs/oxlint-config/src/configs/tailwindcss.ts
index 5e7bff5ab..d138d9e85 100644
--- a/internal/lint-configs/oxlint-config/src/configs/tailwindcss.ts
+++ b/internal/lint-configs/oxlint-config/src/configs/tailwindcss.ts
@@ -1,5 +1,7 @@
import type { OxlintConfig } from 'oxlint';
+import { fileURLToPath } from 'node:url';
+
import eslintPluginBetterTailwindcss from 'eslint-plugin-better-tailwindcss';
import { getDefaultSelectors } from 'eslint-plugin-better-tailwindcss/defaults';
import { SelectorKind } from 'eslint-plugin-better-tailwindcss/types';
@@ -13,8 +15,12 @@ const selectors = [
},
];
+const entryPoint = fileURLToPath(
+ new URL('../../../../tailwind-config/src/theme.css', import.meta.url),
+);
+
const settings = {
- entryPoint: 'internal/tailwind-config/src/theme.css',
+ entryPoint,
selectors,
};
diff --git a/internal/lint-configs/oxlint-config/src/configs/test.ts b/internal/lint-configs/oxlint-config/src/configs/test.ts
index a7470eb6a..9a5441a4c 100644
--- a/internal/lint-configs/oxlint-config/src/configs/test.ts
+++ b/internal/lint-configs/oxlint-config/src/configs/test.ts
@@ -17,6 +17,7 @@ const test: OxlintConfig = {
'vitest/no-import-node-test': 'error',
'vitest/prefer-hooks-in-order': 'error',
'vitest/prefer-lowercase-title': 'error',
+ 'vitest/require-mock-type-parameters': 'off',
},
};
diff --git a/internal/node-utils/tsconfig.build.json b/internal/node-utils/tsconfig.build.json
index b62e0ab6b..714b1f8e4 100644
--- a/internal/node-utils/tsconfig.build.json
+++ b/internal/node-utils/tsconfig.build.json
@@ -2,6 +2,7 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
+ "rootDir": "./src",
"noEmit": false
},
"exclude": ["node_modules", "src/__tests__"]
diff --git a/internal/tailwind-config/src/theme.css b/internal/tailwind-config/src/theme.css
index c212dc66e..076c1cfb2 100644
--- a/internal/tailwind-config/src/theme.css
+++ b/internal/tailwind-config/src/theme.css
@@ -380,6 +380,13 @@
@apply hidden;
}
}
+
+ /* Tailwind v4 Preflight 不再为 button 默认设置 pointer;见官方升级说明:
+ * https://tailwindcss.com/docs/upgrade-guide#buttons-use-the-default-cursor */
+ button:not(:disabled),
+ [role='button']:not(:disabled) {
+ @apply cursor-pointer;
+ }
}
/* Custom utilities (v4 @utility syntax) */
@@ -396,33 +403,36 @@
justify-content: center;
}
-/* Component styles (complex selectors, not convertible to @utility) */
-.outline-box {
- @apply outline-border relative cursor-pointer rounded-md p-1 outline-1;
-}
+/* Tailwind v4 的 utilities 在 @layer 内;组件样式若留在 layer 外,会按层叠规则压过 py-4 等工具类。
+ * 见:https://tailwindcss.com/docs/adding-custom-styles#using-css-and-layering */
+@layer components {
+ .outline-box {
+ @apply outline-border relative cursor-pointer rounded-md p-1 outline-1;
+ }
-.outline-box::after {
- @apply absolute top-1/2 left-1/2 z-20 h-0 w-px rounded-sm opacity-0 outline-2 outline-transparent transition-all duration-300 content-[""];
-}
+ .outline-box::after {
+ @apply absolute top-1/2 left-1/2 z-20 h-0 w-px rounded-sm opacity-0 outline-2 outline-transparent transition-all duration-300 content-[""];
+ }
-.outline-box.outline-box-active {
- @apply outline-primary outline-2;
-}
+ .outline-box.outline-box-active {
+ @apply outline-primary outline-2;
+ }
-.outline-box.outline-box-active::after {
- display: none;
-}
+ .outline-box.outline-box-active::after {
+ display: none;
+ }
-.outline-box:not(.outline-box-active):hover::after {
- @apply outline-primary top-0 left-0 h-full w-full p-1 opacity-100;
-}
+ .outline-box:not(.outline-box-active):hover::after {
+ @apply outline-primary top-0 left-0 h-full w-full p-1 opacity-100;
+ }
-.vben-link {
- @apply text-primary hover:text-primary-hover active:text-primary-active cursor-pointer;
-}
+ .vben-link {
+ @apply text-primary hover:text-primary-hover active:text-primary-active cursor-pointer;
+ }
-.card-box {
- @apply bg-card text-card-foreground border-border rounded-xl border;
+ .card-box {
+ @apply bg-card text-card-foreground border-border rounded-xl border;
+ }
}
/* Enter animations (converted from enterAnimationPlugin) */
diff --git a/internal/tailwind-config/tsconfig.json b/internal/tailwind-config/tsconfig.json
new file mode 100644
index 000000000..ce1a891fb
--- /dev/null
+++ b/internal/tailwind-config/tsconfig.json
@@ -0,0 +1,6 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "extends": "@vben/tsconfig/web.json",
+ "include": ["src"],
+ "exclude": ["node_modules"]
+}
diff --git a/internal/vite-config/package.json b/internal/vite-config/package.json
index b420f14fa..a3c48e8e8 100644
--- a/internal/vite-config/package.json
+++ b/internal/vite-config/package.json
@@ -48,13 +48,13 @@
"@vitejs/plugin-vue-jsx": "catalog:",
"dayjs": "catalog:",
"dotenv": "catalog:",
+ "rolldown": "catalog:",
"rollup-plugin-visualizer": "catalog:",
"sass": "catalog:",
"sass-embedded": "catalog:",
"unplugin-dts": "catalog:",
"vite": "catalog:",
"vite-plugin-compression": "catalog:",
- "vite-plugin-html": "catalog:",
"vite-plugin-lazy-import": "catalog:"
}
}
diff --git a/internal/vite-config/src/plugins/html.ts b/internal/vite-config/src/plugins/html.ts
new file mode 100644
index 000000000..42eb8a6a4
--- /dev/null
+++ b/internal/vite-config/src/plugins/html.ts
@@ -0,0 +1,35 @@
+import type { Options as HtmlMinifierOptions } from 'html-minifier-terser';
+import type { PluginOption } from 'vite';
+
+import { minify } from 'html-minifier-terser';
+
+const HTML_MINIFY_OPTIONS = {
+ collapseWhitespace: true,
+ minifyCSS: true,
+ minifyJS: true,
+ removeComments: true,
+ removeRedundantAttributes: true,
+ removeScriptTypeAttributes: true,
+ removeStyleLinkTypeAttributes: true,
+ useShortDoctype: true,
+} as const;
+
+function viteHtmlPlugin(options: HtmlMinifierOptions = {}): PluginOption {
+ return {
+ name: 'vben-native-html',
+ transformIndexHtml: {
+ order: 'post',
+ async handler(html, ctx) {
+ if (!ctx.bundle) {
+ return html;
+ }
+ return await minify(html, {
+ ...HTML_MINIFY_OPTIONS,
+ ...options,
+ });
+ },
+ },
+ };
+}
+
+export { viteHtmlPlugin };
diff --git a/internal/vite-config/src/plugins/index.ts b/internal/vite-config/src/plugins/index.ts
index 9d3ba3f1c..37cb61fbe 100644
--- a/internal/vite-config/src/plugins/index.ts
+++ b/internal/vite-config/src/plugins/index.ts
@@ -14,12 +14,12 @@ import viteVueJsx from '@vitejs/plugin-vue-jsx';
import { visualizer as viteVisualizerPlugin } from 'rollup-plugin-visualizer';
import viteDtsPlugin from 'unplugin-dts/vite';
import viteCompressPlugin from 'vite-plugin-compression';
-import { createHtmlPlugin as viteHtmlPlugin } from 'vite-plugin-html';
import { VitePWA } from 'vite-plugin-pwa';
import viteVueDevTools from 'vite-plugin-vue-devtools';
import { viteArchiverPlugin } from './archiver';
import { viteExtraAppConfigPlugin } from './extra-app-config';
+import { viteHtmlPlugin } from './html';
import { viteImportMapPlugin } from './importmap';
import { viteInjectAppLoadingPlugin } from './inject-app-loading';
import { viteMetadataPlugin } from './inject-metadata';
@@ -199,7 +199,7 @@ async function loadApplicationPlugins(
},
{
condition: !!html,
- plugins: () => [viteHtmlPlugin({ minify: true })],
+ plugins: () => [viteHtmlPlugin(typeof html === 'object' ? html : {})],
},
{
condition: isBuild && importmap,
diff --git a/internal/vite-config/src/plugins/inject-app-loading/default-loading-antd.html b/internal/vite-config/src/plugins/inject-app-loading/default-loading-antd.html
index 20a21fb79..4908af6f7 100644
--- a/internal/vite-config/src/plugins/inject-app-loading/default-loading-antd.html
+++ b/internal/vite-config/src/plugins/inject-app-loading/default-loading-antd.html
@@ -103,5 +103,5 @@
-
<%= VITE_APP_TITLE %>
+
%VITE_APP_TITLE%
diff --git a/internal/vite-config/src/plugins/inject-app-loading/default-loading.html b/internal/vite-config/src/plugins/inject-app-loading/default-loading.html
index 289570586..e49ca55b7 100644
--- a/internal/vite-config/src/plugins/inject-app-loading/default-loading.html
+++ b/internal/vite-config/src/plugins/inject-app-loading/default-loading.html
@@ -22,8 +22,8 @@
}
.loading.hidden {
- pointer-events: none;
visibility: hidden;
+ pointer-events: none;
opacity: 0;
transition: all 0.8s ease-out;
}
@@ -109,5 +109,5 @@
-
<%= VITE_APP_TITLE %>
+
%VITE_APP_TITLE%
diff --git a/internal/vite-config/src/plugins/license.ts b/internal/vite-config/src/plugins/license.ts
index 81fc4ff07..f87a05b18 100644
--- a/internal/vite-config/src/plugins/license.ts
+++ b/internal/vite-config/src/plugins/license.ts
@@ -2,7 +2,7 @@ import type {
NormalizedOutputOptions,
OutputBundle,
OutputChunk,
-} from 'rollup';
+} from 'rolldown';
import type { PluginOption } from 'vite';
import { EOL } from 'node:os';
diff --git a/internal/vite-config/src/typing.ts b/internal/vite-config/src/typing.ts
index 376b47b8a..354bea25f 100644
--- a/internal/vite-config/src/typing.ts
+++ b/internal/vite-config/src/typing.ts
@@ -1,3 +1,4 @@
+import type { Options as HtmlMinifierOptions } from 'html-minifier-terser';
import type { PluginVisualizerOptions } from 'rollup-plugin-visualizer';
import type { PluginOptions } from 'unplugin-dts';
import type {
@@ -94,6 +95,12 @@ interface ArchiverPluginOptions {
outputDir?: string;
}
+/**
+ * HTML 插件配置
+ * @description 用于配置基于 transformIndexHtml 的 HTML 压缩行为
+ */
+type HtmlPluginOptions = HtmlMinifierOptions;
+
/**
* ImportMap 插件配置
* @description 用于配置模块的 CDN 导入
@@ -217,7 +224,7 @@ interface ApplicationPluginOptions extends CommonPluginOptions {
* 是否开启 HTML 插件
* @default true
*/
- html?: boolean;
+ html?: boolean | HtmlPluginOptions;
/**
* 是否开启国际化
* @default false
@@ -342,6 +349,7 @@ export type {
DefineApplicationOptions,
DefineConfig,
DefineLibraryOptions,
+ HtmlPluginOptions,
IImportMap,
ImportmapPluginOptions,
LibraryPluginOptions,
diff --git a/package.json b/package.json
index bf50a6f6c..6eeddf37f 100644
--- a/package.json
+++ b/package.json
@@ -25,6 +25,7 @@
},
"type": "module",
"scripts": {
+ "bootstrap": "pnpm install",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
"build:analyze": "turbo build:analyze",
"build:antd": "pnpm run build --filter=@vben/web-antd",
@@ -52,7 +53,7 @@
"lint": "vsh lint",
"postinstall": "pnpm -r run stub --if-present",
"preinstall": "npx only-allow pnpm",
- "prepare": "pnpm exec lefthook install",
+ "prepare": "is-ci || pnpm exec lefthook install",
"preview": "turbo-run preview",
"publint": "vsh publint",
"reinstall": "pnpm clean --del-lock && pnpm install",
@@ -65,7 +66,6 @@
"devDependencies": {
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
- "@playwright/test": "catalog:",
"@tsdown/css": "catalog:",
"@types/node": "catalog:",
"@vben/commitlint-config": "workspace:*",
@@ -80,7 +80,6 @@
"@vben/vsh": "workspace:*",
"@vitejs/plugin-vue": "catalog:",
"@vitejs/plugin-vue-jsx": "catalog:",
- "@vue/test-utils": "catalog:",
"cross-env": "catalog:",
"cspell": "catalog:",
"happy-dom": "catalog:",
@@ -95,7 +94,6 @@
"tsdown": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
- "unplugin-vue": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
@@ -105,5 +103,5 @@
"node": "^20.19.0 || ^22.18.0 || ^24.0.0",
"pnpm": ">=10.0.0"
},
- "packageManager": "pnpm@10.32.1"
+ "packageManager": "pnpm@10.33.0"
}
diff --git a/packages/@core/base/icons/src/lucide.ts b/packages/@core/base/icons/src/lucide.ts
index df373970d..86de5bbae 100644
--- a/packages/@core/base/icons/src/lucide.ts
+++ b/packages/@core/base/icons/src/lucide.ts
@@ -1,4 +1,7 @@
export {
+ TextAlignCenter as AlignCenter,
+ TextAlignStart as AlignLeft,
+ TextAlignEnd as AlignRight,
ArrowDown,
ArrowLeft,
ArrowLeftToLine,
@@ -7,6 +10,7 @@ export {
ArrowUp,
ArrowUpToLine,
Bell,
+ Bold,
BookOpenText,
Check,
ChevronDown,
@@ -24,6 +28,7 @@ export {
CornerDownLeft,
Download,
Ellipsis,
+ Eraser,
Expand,
ExternalLink,
Eye,
@@ -34,13 +39,21 @@ export {
Grid,
Grip,
GripVertical,
+ Heading1,
+ Heading2,
+ Highlighter,
History,
Menu as IconDefault,
+ ImagePlus,
Inbox,
Info,
InspectionPanel,
+ Italic,
Languages,
LayoutGrid,
+ Link2,
+ List,
+ ListOrdered,
LoaderCircle,
LockKeyhole,
LogOut,
@@ -49,16 +62,20 @@ export {
ArrowRightFromLine as MdiMenuClose,
ArrowLeftFromLine as MdiMenuOpen,
Menu,
+ MessageSquareCode,
Minimize,
Minimize2,
MoonStar,
+ Paintbrush,
Palette,
PanelLeft,
PanelRight,
Pin,
PinOff,
Plus,
+ Redo2,
RefreshCw,
+ RemoveFormatting,
RotateCw,
Search,
SearchX,
@@ -67,11 +84,17 @@ export {
Shrink,
Square,
SquareCheckBig,
+ SquareCode,
SquareMinus,
+ Strikethrough,
Sun,
SunMoon,
SwatchBook,
+ TextQuote,
Trash2,
+ Underline,
+ Undo2,
+ Unlink2,
Upload,
UserRoundPen,
X,
diff --git a/packages/@core/preferences/__tests__/preferences.test.ts b/packages/@core/preferences/__tests__/preferences.test.ts
index 37657d89f..84e9844e4 100644
--- a/packages/@core/preferences/__tests__/preferences.test.ts
+++ b/packages/@core/preferences/__tests__/preferences.test.ts
@@ -1,11 +1,13 @@
-import { beforeEach, describe, expect, it, vi } from 'vitest';
+import { beforeAll, beforeEach, describe, expect, it, vi } from 'vitest';
import { defaultPreferences } from '../src/config';
-import { PreferenceManager } from '../src/preferences';
import { isDarkTheme } from '../src/update-css-variables';
describe('preferences', () => {
- let preferenceManager: PreferenceManager;
+ let PreferenceManager: typeof import('../src/preferences').PreferenceManager;
+ let preferenceManager: InstanceType<
+ typeof import('../src/preferences').PreferenceManager
+ >;
// 模拟 window.matchMedia 方法
vi.stubGlobal(
@@ -21,7 +23,36 @@ describe('preferences', () => {
removeListener: vi.fn(), // Deprecated
})),
);
+
+ vi.stubGlobal('localStorage', {
+ clear: vi.fn(),
+ getItem: vi.fn(() => null),
+ key: vi.fn(() => null),
+ length: 0,
+ removeItem: vi.fn(),
+ setItem: vi.fn(),
+ });
+
+ vi.stubGlobal('sessionStorage', {
+ clear: vi.fn(),
+ getItem: vi.fn(() => null),
+ key: vi.fn(() => null),
+ length: 0,
+ removeItem: vi.fn(),
+ setItem: vi.fn(),
+ });
+
+ beforeAll(async () => {
+ ({ PreferenceManager } = await import('../src/preferences'));
+ });
+
beforeEach(() => {
+ vi.mocked(localStorage.getItem).mockImplementation(() => null);
+ vi.mocked(localStorage.removeItem).mockReset();
+ vi.mocked(localStorage.setItem).mockReset();
+ vi.mocked(sessionStorage.getItem).mockImplementation(() => null);
+ vi.mocked(sessionStorage.removeItem).mockReset();
+ vi.mocked(sessionStorage.setItem).mockReset();
preferenceManager = new PreferenceManager();
});
@@ -214,7 +245,10 @@ describe('preferences', () => {
},
};
- await preferenceManager.initPreferences(overrides);
+ await preferenceManager.initPreferences({
+ namespace: 'apply-updates',
+ overrides,
+ });
preferenceManager.updatePreferences({
theme: { mode: 'light' },
@@ -222,6 +256,265 @@ describe('preferences', () => {
expect(preferenceManager.getPreferences().theme.mode).toBe('light');
});
+
+ it('initializes custom preferences extension with default values', async () => {
+ const extension = {
+ fields: [
+ {
+ component: 'switch',
+ defaultValue: true,
+ key: 'enableWorkbench',
+ label: '启用工作台',
+ },
+ {
+ component: 'select',
+ defaultValue: 'single',
+ key: 'tenantMode',
+ label: '租户模式',
+ options: [
+ { label: '单租户', value: 'single' },
+ { label: '多租户', value: 'multi' },
+ ],
+ },
+ ],
+ tabLabel: '扩展',
+ title: '业务偏好',
+ } as const;
+
+ await preferenceManager.initPreferences({
+ extension,
+ namespace: 'custom-defaults',
+ });
+
+ expect(preferenceManager.getPreferencesExtension()).toEqual(extension);
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ enableWorkbench: true,
+ tenantMode: 'single',
+ });
+ });
+
+ it('does not expose mutable custom preference baselines or extension schema', async () => {
+ const extension = {
+ fields: [
+ {
+ component: 'number',
+ componentProps: {
+ max: 10,
+ min: 2,
+ step: 2,
+ },
+ defaultValue: 4,
+ key: 'pageSize',
+ label: '分页大小',
+ },
+ ],
+ tabLabel: '扩展',
+ title: '业务偏好',
+ } as const;
+
+ await preferenceManager.initPreferences({
+ extension,
+ namespace: 'custom-readonly',
+ });
+
+ const initialCustomPreferences =
+ preferenceManager.getInitialCustomPreferences<{
+ pageSize: number;
+ }>() as { pageSize: number };
+ const preferencesExtension = preferenceManager.getPreferencesExtension<{
+ pageSize: number;
+ }>() as {
+ fields: Array<{ componentProps?: { max?: number }; label: string }>;
+ };
+ const [firstField] = preferencesExtension.fields;
+
+ initialCustomPreferences.pageSize = 8;
+ expect(firstField).toBeDefined();
+ expect(firstField?.componentProps).toBeDefined();
+
+ if (!firstField || !firstField.componentProps) {
+ return;
+ }
+
+ firstField.label = '已修改';
+ firstField.componentProps.max = 20;
+
+ expect(preferenceManager.getInitialCustomPreferences()).toEqual({
+ pageSize: 4,
+ });
+ expect(preferenceManager.getPreferencesExtension()).toEqual(extension);
+ });
+
+ it('updates and resets custom preferences correctly', async () => {
+ await preferenceManager.initPreferences({
+ extension: {
+ fields: [
+ {
+ component: 'number',
+ defaultValue: 20,
+ key: 'pageSize',
+ label: '分页大小',
+ },
+ {
+ component: 'input',
+ defaultValue: '日报',
+ key: 'reportTitle',
+ label: '报表标题',
+ },
+ ],
+ tabLabel: '扩展',
+ },
+ namespace: 'custom-reset',
+ });
+
+ preferenceManager.updateCustomPreferences({
+ pageSize: 50,
+ reportTitle: '月报',
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 50,
+ reportTitle: '月报',
+ });
+
+ preferenceManager.resetPreferences();
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 20,
+ reportTitle: '日报',
+ });
+ });
+
+ it('ignores invalid custom preferences updates', async () => {
+ await preferenceManager.initPreferences({
+ extension: {
+ fields: [
+ {
+ component: 'switch',
+ defaultValue: true,
+ key: 'enableWorkbench',
+ label: '启用工作台',
+ },
+ {
+ component: 'select',
+ defaultValue: 'single',
+ key: 'tenantMode',
+ label: '租户模式',
+ options: [
+ { label: '单租户', value: 'single' },
+ { label: '多租户', value: 'multi' },
+ ],
+ },
+ ],
+ tabLabel: '扩展',
+ },
+ namespace: 'custom-invalid',
+ });
+
+ const originalCustomPreferences = preferenceManager.getCustomPreferences();
+
+ preferenceManager.updateCustomPreferences({
+ enableWorkbench: 'true' as unknown as boolean,
+ tenantMode: 'unknown',
+ unknownField: 'value',
+ } as any);
+
+ expect(preferenceManager.getCustomPreferences()).toEqual(
+ originalCustomPreferences,
+ );
+ });
+
+ it('enforces custom number field min max and step constraints', async () => {
+ await preferenceManager.initPreferences({
+ extension: {
+ fields: [
+ {
+ component: 'number',
+ componentProps: {
+ max: 10,
+ min: 2,
+ step: 2,
+ },
+ defaultValue: 4,
+ key: 'pageSize',
+ label: '分页大小',
+ },
+ ],
+ tabLabel: '扩展',
+ },
+ namespace: 'custom-number-constraints',
+ });
+
+ preferenceManager.updateCustomPreferences({
+ pageSize: 8,
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 8,
+ });
+
+ preferenceManager.updateCustomPreferences({
+ pageSize: 1,
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 8,
+ });
+
+ preferenceManager.updateCustomPreferences({
+ pageSize: 12,
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 8,
+ });
+
+ preferenceManager.updateCustomPreferences({
+ pageSize: 5,
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 8,
+ });
+ });
+
+ it('filters cached custom number values that violate field constraints', async () => {
+ vi.mocked(localStorage.getItem).mockImplementation((key) => {
+ if (key.endsWith('cache-preferences-custom')) {
+ return JSON.stringify({
+ value: {
+ pageSize: 5,
+ },
+ });
+ }
+
+ return null;
+ });
+
+ await preferenceManager.initPreferences({
+ extension: {
+ fields: [
+ {
+ component: 'number',
+ componentProps: {
+ max: 10,
+ min: 2,
+ step: 2,
+ },
+ defaultValue: 4,
+ key: 'pageSize',
+ label: '分页大小',
+ },
+ ],
+ tabLabel: '扩展',
+ },
+ namespace: 'custom-number-cache',
+ });
+
+ expect(preferenceManager.getCustomPreferences()).toEqual({
+ pageSize: 4,
+ });
+ });
});
describe('isDarkTheme', () => {
diff --git a/packages/@core/preferences/src/index.ts b/packages/@core/preferences/src/index.ts
index 15ec89639..d81823d17 100644
--- a/packages/@core/preferences/src/index.ts
+++ b/packages/@core/preferences/src/index.ts
@@ -4,7 +4,11 @@ import { preferencesManager } from './preferences';
export const {
getPreferences,
+ getCustomPreferences,
+ getInitialCustomPreferences,
+ getPreferencesExtension,
updatePreferences,
+ updateCustomPreferences,
resetPreferences,
clearCache,
initPreferences,
diff --git a/packages/@core/preferences/src/preferences.ts b/packages/@core/preferences/src/preferences.ts
index 1dfd530c7..7f82bb094 100644
--- a/packages/@core/preferences/src/preferences.ts
+++ b/packages/@core/preferences/src/preferences.ts
@@ -1,6 +1,12 @@
import type { DeepPartial } from '@vben-core/typings';
-import type { InitialOptions, Preferences } from './types';
+import type {
+ CustomPreferencesField,
+ CustomPreferencesRecord,
+ InitialOptions,
+ Preferences,
+ PreferencesExtension,
+} from './types';
import { markRaw, reactive, readonly, watch } from 'vue';
@@ -17,6 +23,7 @@ import { defaultPreferences } from './config';
import { updateCSSVariables } from './update-css-variables';
const STORAGE_KEYS = {
+ CUSTOM: 'preferences-custom',
MAIN: 'preferences',
LOCALE: 'preferences-locale',
THEME: 'preferences-theme',
@@ -24,7 +31,10 @@ const STORAGE_KEYS = {
class PreferenceManager {
private cache: StorageManager;
- private debouncedSave: (preference: Preferences) => void;
+ private customPreferencesExtension: null | PreferencesExtension = null;
+ private customState = reactive({});
+ private debouncedSave: () => void;
+ private initialCustomPreferences: CustomPreferencesRecord = {};
private initialPreferences: Preferences = defaultPreferences;
private isInitialized = false;
private state: Preferences;
@@ -34,10 +44,7 @@ class PreferenceManager {
this.state = reactive(
this.loadFromCache() || { ...defaultPreferences },
);
- this.debouncedSave = useDebounceFn(
- (preference) => this.saveToCache(preference),
- 150,
- );
+ this.debouncedSave = useDebounceFn(() => this.saveToCache(), 150);
}
/**
@@ -47,6 +54,26 @@ class PreferenceManager {
Object.values(STORAGE_KEYS).forEach((key) => this.cache.removeItem(key));
};
+ /**
+ * 获取扩展偏好设置
+ */
+ getCustomPreferences = <
+ TCustomPreferences extends object = CustomPreferencesRecord,
+ >() => {
+ return readonly(this.customState) as Readonly;
+ };
+
+ /**
+ * 获取初始化扩展偏好设置
+ */
+ getInitialCustomPreferences = <
+ TCustomPreferences extends object = CustomPreferencesRecord,
+ >() => {
+ return this.cloneValue(
+ this.initialCustomPreferences,
+ ) as Readonly;
+ };
+
/**
* 获取初始化偏好设置
*/
@@ -61,13 +88,32 @@ class PreferenceManager {
return readonly(this.state);
};
+ /**
+ * 获取扩展偏好设置配置
+ */
+ getPreferencesExtension = <
+ TCustomPreferences extends object = CustomPreferencesRecord,
+ >() => {
+ return this.customPreferencesExtension
+ ? (this.cloneValue(this.customPreferencesExtension) as Readonly<
+ PreferencesExtension
+ >)
+ : null;
+ };
+
/**
* 初始化偏好设置
* @param options - 初始化配置项
* @param options.namespace - 命名空间,用于隔离不同应用的配置
* @param options.overrides - 要覆盖的偏好设置
*/
- initPreferences = async ({ namespace, overrides }: InitialOptions) => {
+ initPreferences = async <
+ TCustomPreferences extends object = CustomPreferencesRecord,
+ >({
+ namespace,
+ overrides,
+ extension,
+ }: InitialOptions) => {
// 防止重复初始化
if (this.isInitialized) {
return;
@@ -78,6 +124,10 @@ class PreferenceManager {
// 合并初始偏好设置
this.initialPreferences = merge({}, overrides, defaultPreferences);
+ this.customPreferencesExtension = extension ?? null;
+ this.initialCustomPreferences = this.resolveCustomPreferencesDefaults(
+ this.customPreferencesExtension,
+ );
// 加载缓存的偏好设置并与初始配置合并
const cachedPreferences = this.loadFromCache() || {};
@@ -89,6 +139,14 @@ class PreferenceManager {
// 更新偏好设置
this.updatePreferences(mergedPreference);
+ this.replaceCustomPreferences(
+ merge(
+ {},
+ this.sanitizeCustomPreferences(this.loadCustomFromCache() || {}),
+ this.initialCustomPreferences,
+ ),
+ );
+ this.saveToCache();
// 设置监听器
this.setupWatcher();
@@ -105,14 +163,42 @@ class PreferenceManager {
resetPreferences = () => {
// 将状态重置为初始偏好设置
Object.assign(this.state, this.initialPreferences);
+ this.replaceCustomPreferences(this.initialCustomPreferences);
// 保存偏好设置至缓存
- this.saveToCache(this.state);
+ this.saveToCache();
// 直接触发 UI 更新
this.handleUpdates(this.state);
};
+ /**
+ * 更新扩展偏好设置
+ * @param updates - 要更新的扩展偏好设置
+ */
+ updateCustomPreferences = <
+ TCustomPreferences extends object = CustomPreferencesRecord,
+ >(
+ updates: DeepPartial,
+ ) => {
+ if (!this.customPreferencesExtension) {
+ return;
+ }
+
+ const sanitizedUpdates = this.sanitizeCustomPreferences(
+ updates as DeepPartial,
+ );
+
+ if (Object.keys(sanitizedUpdates).length === 0) {
+ return;
+ }
+
+ this.replaceCustomPreferences(
+ merge({}, sanitizedUpdates, markRaw(this.customState)),
+ );
+ this.debouncedSave();
+ };
+
/**
* 更新偏好设置
* @param updates - 要更新的偏好设置
@@ -126,9 +212,25 @@ class PreferenceManager {
this.handleUpdates(updates);
// 保存到缓存
- this.debouncedSave(this.state);
+ this.debouncedSave();
};
+ private cloneValue(value: T): T {
+ if (Array.isArray(value)) {
+ return value.map((item) => this.cloneValue(item)) as T;
+ }
+
+ if (value && typeof value === 'object') {
+ return Object.fromEntries(
+ Object.entries(value as Record).map(
+ ([key, nestedValue]) => [key, this.cloneValue(nestedValue)],
+ ),
+ ) as T;
+ }
+
+ return value;
+ }
+
/**
* 处理更新
* @param updates - 更新的偏好设置
@@ -158,6 +260,70 @@ class PreferenceManager {
document.documentElement.dataset.platform = isMacOs() ? 'macOs' : 'window';
}
+ private isAlmostInteger(value: number, epsilon = Number.EPSILON * 10) {
+ return Math.abs(value - Math.round(value)) < epsilon;
+ }
+
+ private isValidCustomPreferenceValue(
+ field: CustomPreferencesField,
+ value: unknown,
+ ) {
+ switch (field.component) {
+ case 'number': {
+ if (typeof value !== 'number' || !Number.isFinite(value)) {
+ return false;
+ }
+
+ const max = this.resolveNumericConstraint(field.componentProps?.max);
+ const min = this.resolveNumericConstraint(field.componentProps?.min);
+ const step = this.resolveNumericConstraint(field.componentProps?.step);
+
+ if (min !== undefined && value < min) {
+ return false;
+ }
+
+ if (max !== undefined && value > max) {
+ return false;
+ }
+
+ if (step !== undefined) {
+ if (step <= 0) {
+ return false;
+ }
+
+ const stepBase = min ?? 0;
+ const stepCount = (value - stepBase) / step;
+
+ if (!this.isAlmostInteger(stepCount)) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+ case 'select': {
+ return (
+ typeof value === 'string' &&
+ field.options.some((option) => option.value === value)
+ );
+ }
+ case 'switch': {
+ return typeof value === 'boolean';
+ }
+ default: {
+ return typeof value === 'string';
+ }
+ }
+ }
+
+ /**
+ * 从缓存加载扩展偏好设置
+ * @returns 缓存的扩展偏好设置,如果不存在则返回 null
+ */
+ private loadCustomFromCache(): CustomPreferencesRecord | null {
+ return this.cache.getItem(STORAGE_KEYS.CUSTOM);
+ }
+
/**
* 从缓存加载偏好设置
* @returns 缓存的偏好设置,如果不存在则返回 null
@@ -166,14 +332,72 @@ class PreferenceManager {
return this.cache.getItem(STORAGE_KEYS.MAIN);
}
+ private replaceCustomPreferences(preferences: CustomPreferencesRecord) {
+ Object.keys(this.customState).forEach((key) => {
+ Reflect.deleteProperty(this.customState, key);
+ });
+ Object.assign(this.customState, preferences);
+ }
+
+ private resolveCustomPreferencesDefaults(
+ extension: null | PreferencesExtension,
+ ) {
+ if (!extension) {
+ return {};
+ }
+
+ const result: CustomPreferencesRecord = {};
+
+ for (const field of extension.fields) {
+ result[field.key] = field.defaultValue;
+ }
+
+ return result;
+ }
+
+ private resolveNumericConstraint(value: unknown) {
+ return typeof value === 'number' && Number.isFinite(value)
+ ? value
+ : undefined;
+ }
+
+ private sanitizeCustomPreferences(
+ updates: DeepPartial,
+ ) {
+ if (!this.customPreferencesExtension) {
+ return {};
+ }
+
+ const result: CustomPreferencesRecord = {};
+
+ for (const field of this.customPreferencesExtension.fields) {
+ const value = updates[field.key];
+
+ if (
+ value !== undefined &&
+ this.isValidCustomPreferenceValue(field, value)
+ ) {
+ result[field.key] = value;
+ }
+ }
+
+ return result;
+ }
+
/**
* 保存偏好设置到缓存
- * @param preference - 要保存的偏好设置
*/
- private saveToCache(preference: Preferences) {
- this.cache.setItem(STORAGE_KEYS.MAIN, preference);
- this.cache.setItem(STORAGE_KEYS.LOCALE, preference.app.locale);
- this.cache.setItem(STORAGE_KEYS.THEME, preference.theme.mode);
+ private saveToCache() {
+ this.cache.setItem(STORAGE_KEYS.MAIN, this.state);
+ this.cache.setItem(STORAGE_KEYS.LOCALE, this.state.app.locale);
+ this.cache.setItem(STORAGE_KEYS.THEME, this.state.theme.mode);
+
+ if (this.customPreferencesExtension) {
+ this.cache.setItem(STORAGE_KEYS.CUSTOM, { ...this.customState });
+ return;
+ }
+
+ this.cache.removeItem(STORAGE_KEYS.CUSTOM);
}
/**
diff --git a/packages/@core/preferences/src/types.ts b/packages/@core/preferences/src/types.ts
index ab331b5d6..50aefa6e0 100644
--- a/packages/@core/preferences/src/types.ts
+++ b/packages/@core/preferences/src/types.ts
@@ -17,6 +17,84 @@ import type {
} from '@vben-core/typings';
type SupportedLanguagesType = 'en-US' | 'zh-CN';
+type CustomPreferencesValue = boolean | number | string;
+
+interface CustomPreferencesOption {
+ label: string;
+ value: TValue;
+}
+
+interface BaseCustomPreferencesField<
+ TKey extends string = string,
+ TValue extends CustomPreferencesValue = CustomPreferencesValue,
+> {
+ componentProps?: Record;
+ defaultValue: TValue;
+ disabled?: boolean;
+ key: TKey;
+ label: string;
+ placeholder?: string;
+ tip?: string;
+}
+
+interface CustomPreferencesInputField<
+ TKey extends string = string,
+> extends BaseCustomPreferencesField {
+ component: 'input';
+}
+
+interface CustomPreferencesNumberField<
+ TKey extends string = string,
+> extends BaseCustomPreferencesField {
+ component: 'number';
+}
+
+interface CustomPreferencesSelectField<
+ TKey extends string = string,
+> extends BaseCustomPreferencesField {
+ component: 'select';
+ options: CustomPreferencesOption[];
+}
+
+interface CustomPreferencesSwitchField<
+ TKey extends string = string,
+> extends BaseCustomPreferencesField {
+ component: 'switch';
+}
+
+type CustomPreferencesRecord = Record;
+
+type AnyCustomPreferencesField =
+ | CustomPreferencesInputField
+ | CustomPreferencesNumberField
+ | CustomPreferencesSelectField
+ | CustomPreferencesSwitchField;
+
+type CustomPreferencesField<
+ TCustomPreferences extends object = CustomPreferencesRecord,
+> =
+ string extends Extract
+ ? AnyCustomPreferencesField
+ : {
+ [K in Extract<
+ keyof TCustomPreferences,
+ string
+ >]: TCustomPreferences[K] extends boolean
+ ? CustomPreferencesSwitchField
+ : TCustomPreferences[K] extends number
+ ? CustomPreferencesNumberField
+ : TCustomPreferences[K] extends string
+ ? CustomPreferencesInputField | CustomPreferencesSelectField
+ : never;
+ }[Extract];
+
+interface PreferencesExtension<
+ TCustomPreferences extends object = CustomPreferencesRecord,
+> {
+ fields: Array>;
+ tabLabel: string;
+ title?: string;
+}
interface AppPreferences {
/** 权限模式 */
@@ -324,19 +402,33 @@ interface Preferences {
type PreferencesKeys = keyof Preferences;
-interface InitialOptions {
+interface InitialOptions<
+ TCustomPreferences extends object = CustomPreferencesRecord,
+> {
+ extension?: PreferencesExtension;
namespace: string;
overrides?: DeepPartial;
}
export type {
+ AnyCustomPreferencesField,
AppPreferences,
+ BaseCustomPreferencesField,
BreadcrumbPreferences,
+ CustomPreferencesField,
+ CustomPreferencesInputField,
+ CustomPreferencesNumberField,
+ CustomPreferencesOption,
+ CustomPreferencesRecord,
+ CustomPreferencesSelectField,
+ CustomPreferencesSwitchField,
+ CustomPreferencesValue,
FooterPreferences,
HeaderPreferences,
InitialOptions,
LogoPreferences,
NavigationPreferences,
Preferences,
+ PreferencesExtension,
PreferencesKeys,
ShortcutKeyPreferences,
SidebarPreferences,
diff --git a/packages/@core/preferences/src/use-preferences.ts b/packages/@core/preferences/src/use-preferences.ts
index 0507d9617..e126cd9a8 100644
--- a/packages/@core/preferences/src/use-preferences.ts
+++ b/packages/@core/preferences/src/use-preferences.ts
@@ -7,7 +7,13 @@ import { isDarkTheme } from './update-css-variables';
function usePreferences() {
const preferences = preferencesManager.getPreferences();
+ const customPreferences = preferencesManager.getCustomPreferences();
const initialPreferences = preferencesManager.getInitialPreferences();
+ const initialCustomPreferences =
+ preferencesManager.getInitialCustomPreferences();
+ const preferencesExtension = computed(() =>
+ preferencesManager.getPreferencesExtension(),
+ );
/**
* @zh_CN 计算偏好设置的变化
*/
@@ -15,6 +21,10 @@ function usePreferences() {
return diff(initialPreferences, preferences);
});
+ const diffCustomPreference = computed(() => {
+ return diff(initialCustomPreferences, customPreferences);
+ });
+
const appPreferences = computed(() => preferences.app);
const shortcutKeysPreferences = computed(() => preferences.shortcutKeys);
@@ -228,7 +238,9 @@ function usePreferences() {
authPanelLeft,
authPanelRight,
contentIsMaximize,
+ customPreferences,
diffPreference,
+ diffCustomPreference,
globalLockScreenShortcutKey,
globalLogoutShortcutKey,
globalSearchShortcutKey,
@@ -245,6 +257,7 @@ function usePreferences() {
keepAlive,
layout,
locale,
+ preferencesExtension,
preferencesButtonPosition,
sidebarCollapsed,
theme,
diff --git a/packages/@core/ui-kit/form-ui/__tests__/form-api.test.ts b/packages/@core/ui-kit/form-ui/__tests__/form-api.test.ts
index 31aa3554c..a4c05b54e 100644
--- a/packages/@core/ui-kit/form-ui/__tests__/form-api.test.ts
+++ b/packages/@core/ui-kit/form-ui/__tests__/form-api.test.ts
@@ -44,6 +44,7 @@ describe('formApi', () => {
await formApi.mount(formActions);
expect(formApi.isMounted).toBe(true);
expect(formApi.form).toEqual(formActions);
+ expect(formApi.getFieldComponentRef('name')).toBeUndefined();
});
it('should get values from form', async () => {
@@ -52,11 +53,54 @@ describe('formApi', () => {
values: { name: 'test' },
};
- await formApi.mount(formActions);
+ await formApi.mount(formActions, new Map());
const values = await formApi.getValues();
expect(values).toEqual({ name: 'test' });
});
+ it('should format schema values when getting values', async () => {
+ formApi.setState({
+ schema: [
+ {
+ component: 'range-picker',
+ fieldName: 'filters.range',
+ valueFormat: (value, setValue) => {
+ setValue('filters.startTime', value?.[0]);
+ setValue('filters.endTime', value?.[1]);
+ },
+ },
+ ],
+ });
+
+ const formActions: any = {
+ meta: {},
+ values: {
+ filters: {
+ range: [1_710_000_000_000, 1_720_000_000_000],
+ },
+ },
+ };
+ const originalValuesSnapshot = structuredClone(formActions.values);
+
+ await formApi.mount(formActions, new Map());
+
+ expect(formApi.getLatestSubmissionValues()).toEqual({
+ filters: {
+ endTime: 1_720_000_000_000,
+ startTime: 1_710_000_000_000,
+ },
+ });
+
+ const values = await formApi.getValues();
+ expect(values).toEqual({
+ filters: {
+ endTime: 1_720_000_000_000,
+ startTime: 1_710_000_000_000,
+ },
+ });
+ expect(formActions.values).toEqual(originalValuesSnapshot);
+ });
+
it('should set field value', async () => {
const setFieldValueMock = vi.fn();
const formActions: any = {
@@ -65,7 +109,7 @@ describe('formApi', () => {
values: { name: 'test' },
};
- await formApi.mount(formActions);
+ await formApi.mount(formActions, new Map());
await formApi.setFieldValue('name', 'new value');
expect(setFieldValueMock).toHaveBeenCalledWith(
'name',
@@ -82,7 +126,7 @@ describe('formApi', () => {
values: { name: 'test' },
};
- await formApi.mount(formActions);
+ await formApi.mount(formActions, new Map());
await formApi.resetForm();
expect(resetFormMock).toHaveBeenCalled();
});
@@ -100,7 +144,7 @@ describe('formApi', () => {
};
formApi.setState(state);
- await formApi.mount(formActions);
+ await formApi.mount(formActions, new Map());
const result = await formApi.submitForm();
expect(formActions.submitForm).toHaveBeenCalled();
@@ -113,6 +157,39 @@ describe('formApi', () => {
expect(formApi.isMounted).toBe(false);
});
+ it('should clear component refs on unmount before mounting again', async () => {
+ const formActions: any = {
+ meta: {},
+ resetForm: vi.fn(),
+ values: { name: 'test' },
+ };
+ const staleMap = new Map([
+ [
+ 'name',
+ {
+ $: {
+ type: { name: 'MockComponent' },
+ },
+ $el: {},
+ },
+ ],
+ ]);
+
+ await formApi.mount(formActions, staleMap);
+ expect(formApi.getFieldComponentRef('name')).toEqual({
+ $: {
+ type: { name: 'MockComponent' },
+ },
+ $el: {},
+ });
+
+ formApi.unmount();
+ expect(formApi.getFieldComponentRef('name')).toBeUndefined();
+
+ await formApi.mount(formActions);
+ expect(formApi.getFieldComponentRef('name')).toBeUndefined();
+ });
+
it('should validate form', async () => {
const validateMock = vi.fn().mockResolvedValue(true);
const formActions: any = {
@@ -120,7 +197,7 @@ describe('formApi', () => {
validate: validateMock,
};
- await formApi.mount(formActions);
+ await formApi.mount(formActions, new Map());
const isValid = await formApi.validate();
expect(validateMock).toHaveBeenCalled();
expect(isValid).toBe(true);
diff --git a/packages/@core/ui-kit/form-ui/package.json b/packages/@core/ui-kit/form-ui/package.json
index f79c2a169..8becac7fb 100644
--- a/packages/@core/ui-kit/form-ui/package.json
+++ b/packages/@core/ui-kit/form-ui/package.json
@@ -51,5 +51,8 @@
"vue": "catalog:",
"zod": "catalog:",
"zod-defaults": "catalog:"
+ },
+ "devDependencies": {
+ "unplugin-vue": "catalog:"
}
}
diff --git a/packages/@core/ui-kit/form-ui/src/field-name.ts b/packages/@core/ui-kit/form-ui/src/field-name.ts
new file mode 100644
index 000000000..0e2a2da7d
--- /dev/null
+++ b/packages/@core/ui-kit/form-ui/src/field-name.ts
@@ -0,0 +1,14 @@
+export function resolveFieldNamePath(fieldName: string) {
+ if (fieldName.startsWith('[') && fieldName.endsWith(']')) {
+ const rawKey = fieldName.slice(1, -1);
+ return {
+ pathSegments: [rawKey],
+ rawKey,
+ };
+ }
+
+ return {
+ pathSegments: fieldName.match(/[^.[\]]+/g) ?? [],
+ rawKey: undefined,
+ };
+}
diff --git a/packages/@core/ui-kit/form-ui/src/form-api.ts b/packages/@core/ui-kit/form-ui/src/form-api.ts
index 9b5264792..c221ff4f3 100644
--- a/packages/@core/ui-kit/form-ui/src/form-api.ts
+++ b/packages/@core/ui-kit/form-ui/src/form-api.ts
@@ -16,16 +16,21 @@ import { isRef, toRaw } from 'vue';
import { Store } from '@vben-core/shared/store';
import {
bindMethods,
+ cloneDeep,
createMerge,
formatDate,
+ get,
isDate,
isDayjsObject,
isFunction,
isObject,
mergeWithArrayOverride,
+ set,
StateHandler,
} from '@vben-core/shared/utils';
+import { resolveFieldNamePath } from './field-name';
+
function getDefaultState(): VbenFormProps {
return {
actionWrapperClass: '',
@@ -158,7 +163,10 @@ export class FormApi {
async getValues>() {
const form = await this.getForm();
- return (form.values ? this.handleRangeTimeValue(form.values) : {}) as T;
+ const values = form.values
+ ? this.handleRangeTimeValue(cloneDeep(toRaw(form.values)))
+ : {};
+ return this.handleValueFormat(values) as T;
}
async isFieldValid(fieldName: string) {
@@ -206,14 +214,18 @@ export class FormApi {
return proxy;
}
- mount(formActions: FormActions, componentRefMap: Map) {
+ mount(formActions: FormActions, componentRefMap?: Map) {
if (!this.isMounted) {
Object.assign(this.form, formActions);
this.stateHandler.setConditionTrue();
+ const initialValues = this.form.values
+ ? this.handleRangeTimeValue(cloneDeep(toRaw(this.form.values)))
+ : {};
this.setLatestSubmissionValues({
- ...toRaw(this.handleRangeTimeValue(this.form.values)),
+ ...this.handleValueFormat(initialValues),
});
- this.componentRefMap = componentRefMap;
+ this.componentRefMap =
+ componentRefMap ?? this.componentRefMap ?? new Map();
this.isMounted = true;
}
}
@@ -387,6 +399,7 @@ export class FormApi {
unmount() {
this.form?.resetForm?.();
// this.state = null;
+ this.componentRefMap = new Map();
this.latestSubmissionValues = null;
this.isMounted = false;
this.stateHandler.reset();
@@ -467,6 +480,42 @@ export class FormApi {
return validateResult;
}
+ private deleteValueByFieldName(
+ values: Record,
+ fieldName: string,
+ ) {
+ const { pathSegments, rawKey } = resolveFieldNamePath(fieldName);
+ if (rawKey) {
+ Reflect.deleteProperty(values, rawKey);
+ return;
+ }
+
+ if (!pathSegments || pathSegments.length === 0) {
+ Reflect.deleteProperty(values, fieldName);
+ return;
+ }
+
+ let target: Record | undefined = values;
+
+ for (const segment of pathSegments.slice(0, -1)) {
+ if (!target || !isObject(target)) {
+ return;
+ }
+ target = target[segment];
+ }
+
+ if (!target || !isObject(target)) {
+ return;
+ }
+
+ const lastPathSegment = pathSegments.at(-1);
+ if (!lastPathSegment) {
+ return;
+ }
+
+ Reflect.deleteProperty(target, lastPathSegment);
+ }
+
private async getForm() {
if (!this.isMounted) {
// 等待form挂载
@@ -584,6 +633,36 @@ export class FormApi {
return values;
};
+ private handleValueFormat = (originValues: Record) => {
+ const values = { ...originValues };
+ const currentSchema = this.state?.schema ?? [];
+
+ currentSchema.forEach((schema) => {
+ if (!schema.valueFormat) {
+ return;
+ }
+
+ const fieldName = schema.fieldName;
+ const value = this.resolveValueByFieldName(values, fieldName);
+
+ this.deleteValueByFieldName(values, fieldName);
+
+ const formattedValue = schema.valueFormat(
+ value,
+ (key, nextValue) => {
+ this.setValueByFieldName(values, key, nextValue);
+ },
+ values,
+ );
+
+ if (formattedValue !== undefined) {
+ this.setValueByFieldName(values, fieldName, formattedValue);
+ }
+ });
+
+ return values;
+ };
+
private processFields = (
fields: string[],
separator: string,
@@ -599,6 +678,32 @@ export class FormApi {
});
};
+ private resolveValueByFieldName(
+ values: Record,
+ fieldName: string,
+ ) {
+ const { rawKey } = resolveFieldNamePath(fieldName);
+ if (rawKey) {
+ return values[rawKey];
+ }
+
+ return get(values, fieldName);
+ }
+
+ private setValueByFieldName(
+ values: Record,
+ fieldName: string,
+ value: any,
+ ) {
+ const { rawKey } = resolveFieldNamePath(fieldName);
+ if (rawKey) {
+ values[rawKey] = value;
+ return;
+ }
+
+ set(values, fieldName, value);
+ }
+
private updateState() {
const currentSchema = this.state?.schema ?? [];
const prevSchema = this.prevState?.schema ?? [];
diff --git a/packages/@core/ui-kit/form-ui/src/form-render/dependencies.ts b/packages/@core/ui-kit/form-ui/src/form-render/dependencies.ts
index 2a330c9f6..8813beadc 100644
--- a/packages/@core/ui-kit/form-ui/src/form-render/dependencies.ts
+++ b/packages/@core/ui-kit/form-ui/src/form-render/dependencies.ts
@@ -10,6 +10,7 @@ import { get, isBoolean, isFunction } from '@vben-core/shared/utils';
import { useFormValues } from 'vee-validate';
+import { resolveFieldNamePath } from '../field-name';
import { injectRenderFormProps } from './context';
/**
@@ -22,8 +23,8 @@ function resolveValueByFieldName(
fieldName: string,
) {
// vee-validate:[] 表示禁用嵌套
- if (fieldName.startsWith('[') && fieldName.endsWith(']')) {
- const rawKey = fieldName.slice(1, -1);
+ const { rawKey } = resolveFieldNamePath(fieldName);
+ if (rawKey) {
return values[rawKey];
}
diff --git a/packages/@core/ui-kit/form-ui/src/form-render/form-field.vue b/packages/@core/ui-kit/form-ui/src/form-render/form-field.vue
index 1adde896e..0a7e1df6e 100644
--- a/packages/@core/ui-kit/form-ui/src/form-render/form-field.vue
+++ b/packages/@core/ui-kit/form-ui/src/form-render/form-field.vue
@@ -1,7 +1,11 @@
+
+
+
+
+ {{ field.label }}
+
+
+ {{ field.label }}
+
+
+ {{ field.label }}
+
+
+ {{ field.label }}
+
+
+
diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/index.ts b/packages/effects/layouts/src/widgets/preferences/blocks/index.ts
index cdd6bb1db..b1b8eac93 100644
--- a/packages/effects/layouts/src/widgets/preferences/blocks/index.ts
+++ b/packages/effects/layouts/src/widgets/preferences/blocks/index.ts
@@ -1,4 +1,5 @@
export { default as Block } from './block.vue';
+export { default as Custom } from './custom/custom.vue';
export { default as Animation } from './general/animation.vue';
export { default as General } from './general/general.vue';
export { default as Breadcrumb } from './layout/breadcrumb.vue';
diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/input-item.vue b/packages/effects/layouts/src/widgets/preferences/blocks/input-item.vue
index bf9b03d1c..d07667721 100644
--- a/packages/effects/layouts/src/widgets/preferences/blocks/input-item.vue
+++ b/packages/effects/layouts/src/widgets/preferences/blocks/input-item.vue
@@ -16,10 +16,12 @@ withDefaults(
disabled?: boolean;
items?: SelectOption[];
placeholder?: string;
+ tip?: string;
}>(),
{
disabled: false,
placeholder: '',
+ tip: '',
items: () => [],
},
);
@@ -32,7 +34,7 @@ const slots = useSlots();
-
+
-
+
+
+
+ {{ line }}
+
+
+
diff --git a/packages/effects/layouts/src/widgets/preferences/blocks/select-item.vue b/packages/effects/layouts/src/widgets/preferences/blocks/select-item.vue
index 0460a4f21..f20295be2 100644
--- a/packages/effects/layouts/src/widgets/preferences/blocks/select-item.vue
+++ b/packages/effects/layouts/src/widgets/preferences/blocks/select-item.vue
@@ -23,10 +23,12 @@ withDefaults(
disabled?: boolean;
items?: SelectOption[];
placeholder?: string;
+ tip?: string;
}>(),
{
disabled: false,
placeholder: '',
+ tip: '',
items: () => [],
},
);
@@ -39,7 +41,7 @@ const slots = useSlots();
-
+
-
+
+
+
+ {{ line }}
+
+
+
diff --git a/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue b/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
index cfea8a5be..d0e5ba2a6 100644
--- a/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
+++ b/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
@@ -1,5 +1,6 @@
@@ -257,13 +310,13 @@ async function handleReset() {
@@ -466,13 +519,22 @@ async function handleReset() {
/>
+
+
+
+
+
;
diff --git a/packages/effects/plugins/src/index.ts b/packages/effects/plugins/src/index.ts
new file mode 100644
index 000000000..744be92c8
--- /dev/null
+++ b/packages/effects/plugins/src/index.ts
@@ -0,0 +1,2 @@
+export * from './plugins-context';
+export * from './types';
diff --git a/packages/effects/plugins/src/motion/README.md b/packages/effects/plugins/src/motion/README.md
new file mode 100644
index 000000000..03c2ca1e5
--- /dev/null
+++ b/packages/effects/plugins/src/motion/README.md
@@ -0,0 +1,26 @@
+# Motion Plugin
+
+基于 @vueuse/motion 的动画插件。
+
+## 导出
+
+| 导出 | 类型 | 说明 |
+| ----------------- | ---- | ---------- |
+| `Motion` | 组件 | 动画组件 |
+| `MotionGroup` | 组件 | 动画组组件 |
+| `MotionDirective` | 指令 | 动画指令 |
+| `MotionPlugin` | 插件 | Vue 插件 |
+
+## 使用
+
+```ts
+import { MotionPlugin, Motion, MotionDirective } from '@vben/plugins/motion';
+
+app.use(MotionPlugin);
+```
+
+## 类型
+
+```ts
+import type { MotionOptions, MotionVariants } from '@vben/plugins/motion';
+```
diff --git a/packages/effects/plugins/src/plugins-context.ts b/packages/effects/plugins/src/plugins-context.ts
new file mode 100644
index 000000000..459c21343
--- /dev/null
+++ b/packages/effects/plugins/src/plugins-context.ts
@@ -0,0 +1,39 @@
+import type { VbenPluginsOptions } from './types';
+
+let globalPluginsOptions: null | VbenPluginsOptions = null;
+
+export function providePluginsOptions(options: VbenPluginsOptions) {
+ if (!globalPluginsOptions) {
+ globalPluginsOptions = options;
+ return;
+ }
+
+ globalPluginsOptions = {
+ ...globalPluginsOptions,
+ ...options,
+ form:
+ globalPluginsOptions.form && options.form
+ ? { ...globalPluginsOptions.form, ...options.form }
+ : globalPluginsOptions.form || options.form,
+ modal:
+ globalPluginsOptions.modal && options.modal
+ ? { ...globalPluginsOptions.modal, ...options.modal }
+ : globalPluginsOptions.modal || options.modal,
+ message:
+ globalPluginsOptions.message && options.message
+ ? { ...globalPluginsOptions.message, ...options.message }
+ : globalPluginsOptions.message || options.message,
+ components: {
+ ...globalPluginsOptions.components,
+ ...options.components,
+ },
+ };
+}
+
+export function injectPluginsOptions() {
+ return globalPluginsOptions;
+}
+
+export function resetPluginsOptions() {
+ globalPluginsOptions = null;
+}
diff --git a/packages/effects/plugins/src/tiptap/extensions.ts b/packages/effects/plugins/src/tiptap/extensions.ts
new file mode 100644
index 000000000..3574c23da
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/extensions.ts
@@ -0,0 +1,55 @@
+import type { Extensions } from '@tiptap/vue-3';
+
+import type { VbenTiptapExtensionOptions } from './types';
+
+import { $t } from '@vben/locales';
+
+import Document from '@tiptap/extension-document';
+import Highlight from '@tiptap/extension-highlight';
+import Image from '@tiptap/extension-image';
+import Link from '@tiptap/extension-link';
+import Placeholder from '@tiptap/extension-placeholder';
+import TextAlign from '@tiptap/extension-text-align';
+import { Color, TextStyle } from '@tiptap/extension-text-style';
+import Underline from '@tiptap/extension-underline';
+import StarterKit from '@tiptap/starter-kit';
+
+export function createDefaultTiptapExtensions(
+ options: VbenTiptapExtensionOptions = {},
+): Extensions {
+ return [
+ Document,
+ StarterKit.configure({
+ heading: {
+ levels: [1, 2, 3, 4],
+ },
+ }),
+ Underline,
+ TextAlign.configure({
+ types: ['heading', 'paragraph'],
+ }),
+ TextStyle,
+ Color.configure({
+ types: ['textStyle'],
+ }),
+ Highlight.configure({
+ multicolor: true,
+ }),
+ Link.configure({
+ autolink: true,
+ defaultProtocol: 'https',
+ enableClickSelection: true,
+ openOnClick: false,
+ protocols: ['mailto', { optionalSlashes: true, scheme: 'tel' }],
+ }),
+ Image.configure({
+ allowBase64: true,
+ HTMLAttributes: {
+ class: 'vben-tiptap__image',
+ },
+ }),
+ Placeholder.configure({
+ placeholder: options.placeholder ?? $t('ui.tiptap.placeholder'),
+ }),
+ ];
+}
diff --git a/packages/effects/plugins/src/tiptap/index.ts b/packages/effects/plugins/src/tiptap/index.ts
new file mode 100644
index 000000000..292ead0d2
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/index.ts
@@ -0,0 +1,4 @@
+export { default as VbenTiptapPreview } from './preview.vue';
+export { default as VbenTiptap } from './tiptap.vue';
+
+export * from './types';
diff --git a/packages/effects/plugins/src/tiptap/preview.vue b/packages/effects/plugins/src/tiptap/preview.vue
new file mode 100644
index 000000000..99563d2dc
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/preview.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
diff --git a/packages/effects/plugins/src/tiptap/style.css b/packages/effects/plugins/src/tiptap/style.css
new file mode 100644
index 000000000..875556cec
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/style.css
@@ -0,0 +1,56 @@
+@reference "@vben/tailwind-config/theme";
+
+.vben-tiptap-content > * + * {
+ @apply mt-3;
+}
+
+.vben-tiptap-content h1 {
+ @apply text-2xl font-bold leading-[1.4];
+}
+
+.vben-tiptap-content h2 {
+ @apply text-xl font-bold leading-[1.45];
+}
+
+.vben-tiptap-content h3 {
+ @apply text-lg font-semibold leading-[1.5];
+}
+
+.vben-tiptap-content h4 {
+ @apply text-base font-semibold leading-[1.55];
+}
+
+.vben-tiptap-content ul {
+ @apply list-disc pl-6;
+}
+
+.vben-tiptap-content ol {
+ @apply list-decimal pl-6;
+}
+
+.vben-tiptap-content blockquote {
+ @apply border-l-4 border-primary pl-4 text-muted-foreground;
+}
+
+.vben-tiptap-content a {
+ @apply text-primary underline decoration-1 underline-offset-[3px];
+}
+
+.vben-tiptap-content code {
+ @apply rounded-[0.45rem] border border-border bg-secondary px-[0.35rem] py-[0.15rem] text-[0.9em] text-primary;
+}
+
+.vben-tiptap-content pre {
+ @apply overflow-x-auto rounded-[0.9rem] border border-border bg-popover p-4 text-popover-foreground;
+}
+
+.vben-tiptap-content pre code {
+ @apply border-none bg-transparent p-0 text-inherit;
+}
+
+.vben-tiptap-content img,
+.vben-tiptap-content .vben-tiptap__image {
+ @apply my-4 block h-auto rounded-2xl border border-border;
+
+ max-width: min(100%, 640px);
+}
diff --git a/packages/effects/plugins/src/tiptap/tiptap.vue b/packages/effects/plugins/src/tiptap/tiptap.vue
new file mode 100644
index 000000000..c5ac005df
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/tiptap.vue
@@ -0,0 +1,285 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ typeof action.triggerText === 'function'
+ ? action.triggerText(editor)
+ : action.triggerText
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('ui.tiptap.toolbar.clear') }}
+
+
+
+
+
+ {{ item.shortLabel }}
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/packages/effects/plugins/src/tiptap/toolbar.ts b/packages/effects/plugins/src/tiptap/toolbar.ts
new file mode 100644
index 000000000..c5a15967f
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/toolbar.ts
@@ -0,0 +1,345 @@
+import type { Editor } from '@tiptap/vue-3';
+
+import type { ToolbarAction, ToolbarMenuItem } from './types';
+
+import {
+ AlignCenter,
+ AlignLeft,
+ AlignRight,
+ Bold,
+ Highlighter,
+ ImagePlus,
+ Italic,
+ Link2,
+ List,
+ ListOrdered,
+ MessageSquareCode,
+ Paintbrush,
+ Redo2,
+ RemoveFormatting,
+ SquareCode,
+ Strikethrough,
+ TextQuote,
+ Underline,
+ Undo2,
+ Unlink2,
+} from '@vben/icons';
+import { $t } from '@vben/locales';
+import { COLOR_PRESETS } from '@vben/preferences';
+
+import { prompt } from '@vben-core/popup-ui';
+
+const headingLevels = [1, 2, 3, 4] as const;
+const editorColorPresets = [
+ 'hsl(var(--foreground))',
+ 'hsl(var(--warning))',
+ 'hsl(var(--success))',
+ 'hsl(var(--destructive))',
+ ...COLOR_PRESETS.map((item) => item.color),
+];
+const editorHighlightPresets = [
+ withAlpha('hsl(var(--warning))', 0.45),
+ withAlpha('hsl(var(--success))', 0.35),
+ withAlpha('hsl(var(--primary))', 0.3),
+ withAlpha('hsl(var(--destructive))', 0.3),
+ ...COLOR_PRESETS.map((item) => withAlpha(item.color, 0.4)),
+];
+
+function createHeadingMenuItems(): ToolbarMenuItem[] {
+ return [
+ {
+ action: (editor) => editor.chain().focus().setParagraph().run(),
+ can: (editor) => editor.can().chain().focus().setParagraph().run(),
+ isActive: (editor) => editor.isActive('paragraph'),
+ label: $t('ui.tiptap.toolbar.paragraph'),
+ shortLabel: 'P',
+ },
+ ...headingLevels.map((level) => ({
+ action: (editor: Editor) =>
+ editor.chain().focus().toggleHeading({ level }).run(),
+ can: (editor: Editor) =>
+ editor.can().chain().focus().toggleHeading({ level }).run(),
+ isActive: (editor: Editor) => editor.isActive('heading', { level }),
+ label: $t(`ui.tiptap.toolbar.heading${level}`),
+ shortLabel: `H${level}`,
+ })),
+ ];
+}
+
+function getHeadingTriggerText(editor?: Editor) {
+ if (editor?.isActive('paragraph')) {
+ return 'P';
+ }
+
+ const level = headingLevels.find((headingLevel) =>
+ editor?.isActive('heading', { level: headingLevel }),
+ );
+
+ return level ? `H${level}` : 'H';
+}
+
+function normalizeLinkUrl(url: string) {
+ if (/^(https?:|mailto:|tel:)/i.test(url)) {
+ return url;
+ }
+
+ return `https://${url}`;
+}
+
+function withAlpha(color: string, alpha: number) {
+ const normalizedAlpha = Math.min(Math.max(alpha, 0), 1);
+ const hslMatch = color.match(/^hsl\((.+)\)$/);
+
+ if (!hslMatch) {
+ return color;
+ }
+
+ return `hsl(${hslMatch[1]} / ${normalizedAlpha})`;
+}
+
+async function handleLinkAction(editor: Editor) {
+ const currentHref = editor.getAttributes('link').href as string | undefined;
+
+ let url: string | undefined;
+
+ try {
+ url = await prompt({
+ componentProps: {
+ placeholder: 'https://example.com',
+ },
+ content: $t('ui.tiptap.prompts.link'),
+ defaultValue: currentHref ?? '',
+ });
+ } catch {
+ return;
+ }
+
+ const nextUrl = (url ?? '').trim();
+
+ if (!nextUrl) {
+ editor.chain().focus().extendMarkRange('link').unsetLink().run();
+ return;
+ }
+
+ editor
+ .chain()
+ .focus()
+ .extendMarkRange('link')
+ .setLink({
+ href: normalizeLinkUrl(nextUrl),
+ })
+ .run();
+}
+
+async function handleImageAction(editor: Editor) {
+ let url: string | undefined;
+
+ try {
+ url = await prompt({
+ componentProps: {
+ placeholder: 'https://example.com/image.png',
+ },
+ content: $t('ui.tiptap.prompts.image'),
+ defaultValue: '',
+ });
+ } catch {
+ return;
+ }
+
+ const nextUrl = (url ?? '').trim();
+
+ if (!nextUrl) {
+ return;
+ }
+
+ editor.chain().focus().setImage({ src: nextUrl }).run();
+}
+
+export function createToolbarGroups(): ToolbarAction[][] {
+ const headingMenuItems = createHeadingMenuItems();
+
+ return [
+ [
+ {
+ action: (editor) => editor.chain().focus().undo().run(),
+ can: (editor) => editor.can().chain().focus().undo().run(),
+ icon: Undo2,
+ label: $t('ui.tiptap.toolbar.undo'),
+ },
+ {
+ action: (editor) => editor.chain().focus().redo().run(),
+ can: (editor) => editor.can().chain().focus().redo().run(),
+ icon: Redo2,
+ label: $t('ui.tiptap.toolbar.redo'),
+ },
+ {
+ action: (editor) =>
+ editor.chain().focus().clearNodes().unsetAllMarks().run(),
+ icon: RemoveFormatting,
+ label: $t('ui.tiptap.toolbar.clear'),
+ },
+ ],
+ [
+ {
+ action: (editor) => editor.chain().focus().toggleBold().run(),
+ active: { name: 'bold' },
+ can: (editor) => editor.can().chain().focus().toggleBold().run(),
+ icon: Bold,
+ label: $t('ui.tiptap.toolbar.bold'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleItalic().run(),
+ active: { name: 'italic' },
+ can: (editor) => editor.can().chain().focus().toggleItalic().run(),
+ icon: Italic,
+ label: $t('ui.tiptap.toolbar.italic'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleUnderline().run(),
+ active: { name: 'underline' },
+ can: (editor) => editor.can().chain().focus().toggleUnderline().run(),
+ icon: Underline,
+ label: $t('ui.tiptap.toolbar.underline'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleStrike().run(),
+ active: { name: 'strike' },
+ can: (editor) => editor.can().chain().focus().toggleStrike().run(),
+ icon: Strikethrough,
+ label: $t('ui.tiptap.toolbar.strike'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleCode().run(),
+ active: { name: 'code' },
+ can: (editor) => editor.can().chain().focus().toggleCode().run(),
+ icon: SquareCode,
+ label: $t('ui.tiptap.toolbar.code'),
+ },
+ ],
+ [
+ {
+ action: () => {},
+ can: (editor) =>
+ headingMenuItems.some((item) => (item.can ? item.can(editor) : true)),
+ isActive: (editor) =>
+ headingMenuItems.some((item) => item.isActive?.(editor)),
+ label: $t('ui.tiptap.toolbar.heading'),
+ menu: {
+ items: headingMenuItems,
+ },
+ triggerText: (editor) => getHeadingTriggerText(editor),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleBulletList().run(),
+ active: { name: 'bulletList' },
+ can: (editor) => editor.can().chain().focus().toggleBulletList().run(),
+ icon: List,
+ label: $t('ui.tiptap.toolbar.bulletList'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleOrderedList().run(),
+ active: { name: 'orderedList' },
+ can: (editor) => editor.can().chain().focus().toggleOrderedList().run(),
+ icon: ListOrdered,
+ label: $t('ui.tiptap.toolbar.orderedList'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleBlockquote().run(),
+ active: { name: 'blockquote' },
+ can: (editor) => editor.can().chain().focus().toggleBlockquote().run(),
+ icon: TextQuote,
+ label: $t('ui.tiptap.toolbar.blockquote'),
+ },
+ {
+ action: (editor) => editor.chain().focus().toggleCodeBlock().run(),
+ active: { name: 'codeBlock' },
+ can: (editor) => editor.can().chain().focus().toggleCodeBlock().run(),
+ icon: MessageSquareCode,
+ label: $t('ui.tiptap.toolbar.codeBlock'),
+ },
+ ],
+ [
+ {
+ action: (editor) => handleLinkAction(editor),
+ active: { name: 'link' },
+ can: (editor) =>
+ editor.can().chain().focus().extendMarkRange('link').run(),
+ icon: Link2,
+ label: $t('ui.tiptap.toolbar.link'),
+ },
+ {
+ action: (editor) => editor.chain().focus().unsetLink().run(),
+ can: (editor) => editor.can().chain().focus().unsetLink().run(),
+ icon: Unlink2,
+ isActive: (editor) => editor.isActive('link'),
+ label: $t('ui.tiptap.toolbar.unlink'),
+ },
+ {
+ action: (editor) => handleImageAction(editor),
+ icon: ImagePlus,
+ label: $t('ui.tiptap.toolbar.image'),
+ },
+ ],
+ [
+ {
+ action: () => {},
+ icon: Paintbrush,
+ indicatorColor: (editor) =>
+ editor.getAttributes('textStyle').color as string | undefined,
+ isActive: (editor) => Boolean(editor.getAttributes('textStyle').color),
+ label: $t('ui.tiptap.toolbar.textColor'),
+ palette: {
+ apply: (editor, color) =>
+ editor.chain().focus().setColor(color).run(),
+ clear: (editor) => editor.chain().focus().unsetColor().run(),
+ colors: editorColorPresets,
+ currentColor: (editor) =>
+ editor.getAttributes('textStyle').color as string | undefined,
+ },
+ },
+ {
+ action: () => {},
+ icon: Highlighter,
+ indicatorColor: (editor) =>
+ (editor.getAttributes('highlight').color as string | undefined) ??
+ '#fef08a',
+ isActive: (editor) => editor.isActive('highlight'),
+ label: $t('ui.tiptap.toolbar.highlightColor'),
+ palette: {
+ apply: (editor, color) =>
+ editor.chain().focus().setHighlight({ color }).run(),
+ clear: (editor) => editor.chain().focus().unsetHighlight().run(),
+ colors: editorHighlightPresets,
+ currentColor: (editor) =>
+ editor.getAttributes('highlight').color as string | undefined,
+ },
+ },
+ ],
+ [
+ {
+ action: (editor) => editor.chain().focus().setTextAlign('left').run(),
+ can: (editor) =>
+ editor.can().chain().focus().setTextAlign('left').run(),
+ icon: AlignLeft,
+ isActive: (editor) => editor.isActive({ textAlign: 'left' }),
+ label: $t('ui.tiptap.toolbar.alignLeft'),
+ },
+ {
+ action: (editor) => editor.chain().focus().setTextAlign('center').run(),
+ can: (editor) =>
+ editor.can().chain().focus().setTextAlign('center').run(),
+ icon: AlignCenter,
+ isActive: (editor) => editor.isActive({ textAlign: 'center' }),
+ label: $t('ui.tiptap.toolbar.alignCenter'),
+ },
+ {
+ action: (editor) => editor.chain().focus().setTextAlign('right').run(),
+ can: (editor) =>
+ editor.can().chain().focus().setTextAlign('right').run(),
+ icon: AlignRight,
+ isActive: (editor) => editor.isActive({ textAlign: 'right' }),
+ label: $t('ui.tiptap.toolbar.alignRight'),
+ },
+ ],
+ ];
+}
diff --git a/packages/effects/plugins/src/tiptap/types.ts b/packages/effects/plugins/src/tiptap/types.ts
new file mode 100644
index 000000000..eda32a21e
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/types.ts
@@ -0,0 +1,60 @@
+import type { Extensions, JSONContent } from '@tiptap/core';
+import type { Editor } from '@tiptap/vue-3';
+
+import type { Component } from 'vue';
+
+export interface TipTapProps {
+ editable?: boolean;
+ extensions?: Extensions;
+ minHeight?: number | string;
+ placeholder?: string;
+ previewable?: boolean;
+ toolbar?: boolean;
+}
+
+export interface TipTapPreviewProps {
+ class?: any;
+ content?: string;
+ minHeight?: number | string;
+}
+
+export interface VbenTiptapChangeEvent {
+ html: string;
+ json: JSONContent;
+ text: string;
+}
+
+export interface VbenTiptapExtensionOptions {
+ placeholder?: string;
+}
+
+export interface ToolbarAction {
+ action: (editor: Editor) => void;
+ active?: {
+ attrs?: Record;
+ name: string;
+ };
+ can?: (editor: Editor) => boolean;
+ icon?: Component;
+ indicatorColor?: (editor: Editor) => string | undefined;
+ isActive?: (editor: Editor) => boolean;
+ label: string;
+ menu?: {
+ items: ToolbarMenuItem[];
+ };
+ palette?: {
+ apply: (editor: Editor, color: string) => void;
+ clear?: (editor: Editor) => void;
+ colors: string[];
+ currentColor?: (editor: Editor) => string | undefined;
+ };
+ triggerText?: ((editor?: Editor) => string) | string;
+}
+
+export interface ToolbarMenuItem {
+ action: (editor: Editor) => void;
+ can?: (editor: Editor) => boolean;
+ isActive?: (editor: Editor) => boolean;
+ label: string;
+ shortLabel: string;
+}
diff --git a/packages/effects/plugins/src/tiptap/use-tiptap-toolbar.ts b/packages/effects/plugins/src/tiptap/use-tiptap-toolbar.ts
new file mode 100644
index 000000000..25d98cbbc
--- /dev/null
+++ b/packages/effects/plugins/src/tiptap/use-tiptap-toolbar.ts
@@ -0,0 +1,176 @@
+import type { Editor } from '@tiptap/vue-3';
+
+import type { ShallowRef } from 'vue';
+
+import type { ToolbarAction, ToolbarMenuItem } from './types';
+
+import { cn } from '@vben-core/shared/utils';
+
+interface UseTiptapToolbarOptions {
+ editable: () => boolean;
+ editor: Readonly>;
+}
+
+export function useTiptapToolbar(options: UseTiptapToolbarOptions) {
+ const getEditor = () => options.editor.value;
+
+ function getActionIndicatorColor(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !action.indicatorColor) {
+ return undefined;
+ }
+
+ return action.indicatorColor(currentEditor);
+ }
+
+ function getPaletteCurrentColor(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !action.palette?.currentColor) {
+ return undefined;
+ }
+
+ return action.palette.currentColor(currentEditor);
+ }
+
+ function canRunAction(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !options.editable()) {
+ return false;
+ }
+
+ return action.can ? action.can(currentEditor) : true;
+ }
+
+ function canRunMenuItem(item: ToolbarMenuItem) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !options.editable()) {
+ return false;
+ }
+
+ return item.can ? item.can(currentEditor) : true;
+ }
+
+ function isActionActive(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor) {
+ return false;
+ }
+
+ if (action.isActive) {
+ return action.isActive(currentEditor);
+ }
+
+ if (!action.active) {
+ return false;
+ }
+
+ return currentEditor.isActive(action.active.name, action.active.attrs);
+ }
+
+ function isMenuItemActive(item: ToolbarMenuItem, currentEditor?: Editor) {
+ const targetEditor = currentEditor ?? getEditor();
+
+ if (!targetEditor || !item.isActive) {
+ return false;
+ }
+
+ return item.isActive(targetEditor);
+ }
+
+ function runAction(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !options.editable()) {
+ return;
+ }
+
+ if (action.menu || action.palette) {
+ return;
+ }
+
+ action.action(currentEditor);
+ }
+
+ function runMenuItem(item: ToolbarMenuItem) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !options.editable()) {
+ return;
+ }
+
+ item.action(currentEditor);
+ }
+
+ function applyPaletteColor(action: ToolbarAction, color: string) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !action.palette) {
+ return;
+ }
+
+ action.palette.apply(currentEditor, color);
+ }
+
+ function clearPaletteColor(action: ToolbarAction) {
+ const currentEditor = getEditor();
+
+ if (!currentEditor || !action.palette?.clear) {
+ return;
+ }
+
+ action.palette.clear(currentEditor);
+ }
+
+ function getToolbarButtonClass(action: ToolbarAction) {
+ return cn(
+ 'text-muted-foreground relative rounded-[10px] border border-transparent bg-transparent shadow-none',
+ 'transition-[transform,color,background-color,border-color,box-shadow] duration-200 ease-out',
+ 'enabled:hover:border-border enabled:hover:-translate-y-px disabled:opacity-45',
+ 'enabled:hover:bg-accent enabled:hover:text-foreground',
+ isActionActive(action) &&
+ 'bg-accent border-primary/30 shadow-primary text-primary',
+ );
+ }
+
+ function getPaletteSwatchClass(action: ToolbarAction, color: string) {
+ return cn(
+ 'border-border inline-flex size-8 items-center justify-center rounded-full border',
+ 'shadow-accent',
+ 'transition-[transform,box-shadow,border-color] duration-200 ease-out',
+ 'hover:-translate-y-px hover:scale-[1.04]',
+ getPaletteCurrentColor(action) === color &&
+ 'border-primary shadow-primary',
+ );
+ }
+
+ function getMenuItemClass(item: ToolbarMenuItem) {
+ return cn(
+ 'flex items-center gap-2 rounded-lg p-2 text-left text-sm transition-colors',
+ 'disabled:cursor-not-allowed disabled:opacity-45',
+ isMenuItemActive(item)
+ ? 'bg-accent text-foreground'
+ : 'hover:bg-accent hover:text-foreground text-muted-foreground',
+ );
+ }
+
+ return {
+ applyPaletteColor,
+ canRunAction,
+ canRunMenuItem,
+ clearPaletteColor,
+ getActionIndicatorColor,
+ getMenuItemClass,
+ getPaletteCurrentColor,
+ getPaletteSwatchClass,
+ getToolbarButtonClass,
+ isActionActive,
+ isMenuItemActive,
+ runAction,
+ runMenuItem,
+ };
+}
diff --git a/packages/effects/plugins/src/types.ts b/packages/effects/plugins/src/types.ts
new file mode 100644
index 000000000..9a989784f
--- /dev/null
+++ b/packages/effects/plugins/src/types.ts
@@ -0,0 +1,24 @@
+import type { Component } from 'vue';
+
+export interface VbenPluginsFormOptions {
+ useVbenForm: (...args: any[]) => any;
+}
+
+export interface VbenPluginsModalOptions {
+ useVbenModal?: () => any;
+}
+
+export interface VbenPluginsMessageOptions {
+ useMessage?: () => any;
+}
+
+export interface VbenPluginsComponentsOptions {
+ [key: string]: Component;
+}
+
+export interface VbenPluginsOptions {
+ form?: VbenPluginsFormOptions;
+ modal?: VbenPluginsModalOptions;
+ message?: VbenPluginsMessageOptions;
+ components?: VbenPluginsComponentsOptions;
+}
diff --git a/packages/effects/plugins/src/vxe-table/README.md b/packages/effects/plugins/src/vxe-table/README.md
new file mode 100644
index 000000000..2dfd2b29a
--- /dev/null
+++ b/packages/effects/plugins/src/vxe-table/README.md
@@ -0,0 +1,50 @@
+# VXE Table Plugin
+
+基于 vxe-table 和 vxe-pc-ui 的表格组件插件。
+
+## 导出
+
+| 导出 | 类型 | 说明 |
+| --------------------- | ---- | -------------- |
+| `setupVbenVxeTable` | 函数 | 初始化配置函数 |
+| `useVbenVxeGrid` | 函数 | 表格组合式函数 |
+| `VbenVxeGrid` | 组件 | 表格组件 |
+| `VxeTableGridColumns` | 类型 | 表格列类型 |
+| `VxeTableGridOptions` | 类型 | 表格配置类型 |
+| `VxeGridProps` | 类型 | 表格 Props |
+| `VxeGridListeners` | 类型 | 表格事件类型 |
+
+## 使用
+
+```ts
+import {
+ setupVbenVxeTable,
+ useVbenVxeGrid,
+ VbenVxeGrid,
+} from '@vben/plugins/vxe-table';
+```
+
+## 初始化
+
+在应用入口处调用:
+
+```ts
+import { setupVbenVxeTable } from '@vben/plugins/vxe-table';
+import { useVbenForm } from '@vben-core/form-ui';
+
+setupVbenVxeTable({
+ configVxeTable: (vxeUI) => {
+ // 配置 VXE Table
+ },
+ useVbenForm,
+});
+```
+
+## 类型
+
+```ts
+import type {
+ VxeTableGridOptions,
+ VxeGridProps,
+} from '@vben/plugins/vxe-table';
+```
diff --git a/packages/effects/plugins/src/vxe-table/api.ts b/packages/effects/plugins/src/vxe-table/api.ts
index ca896ae19..a2a6870ed 100644
--- a/packages/effects/plugins/src/vxe-table/api.ts
+++ b/packages/effects/plugins/src/vxe-table/api.ts
@@ -1,6 +1,9 @@
import type { VxeGridInstance } from 'vxe-table';
-import type { ExtendedFormApi } from '@vben-core/form-ui';
+import type {
+ BaseFormComponentType,
+ ExtendedFormApi,
+} from '@vben-core/form-ui';
import type { VxeGridProps } from './types';
@@ -26,25 +29,29 @@ function getDefaultState(): VxeGridProps {
};
}
-export class VxeGridApi = any> {
+export class VxeGridApi<
+ T extends Record = any,
+ D extends BaseFormComponentType = BaseFormComponentType,
+ P extends Record = Record,
+> {
public formApi = {} as ExtendedFormApi;
// private prevState: null | VxeGridProps = null;
public grid = {} as VxeGridInstance;
- public state: null | VxeGridProps = null;
+ public state: null | VxeGridProps = null;
- public store: Store>;
+ public store: Store>;
private isMounted = false;
private stateHandler: StateHandler;
- constructor(options: VxeGridProps = {}) {
+ constructor(options: VxeGridProps = {} as VxeGridProps) {
const storeState = { ...options };
const defaultState = getDefaultState();
- this.store = new Store(
- mergeWithArrayOverride(storeState, defaultState),
+ this.store = new Store>(
+ mergeWithArrayOverride(storeState, defaultState) as VxeGridProps,
);
this.store.subscribe((state) => {
@@ -82,7 +89,7 @@ export class VxeGridApi = any> {
}
}
- setGridOptions(options: Partial) {
+ setGridOptions(options: Partial['gridOptions']>) {
this.setState({
gridOptions: options,
});
@@ -98,8 +105,8 @@ export class VxeGridApi = any> {
setState(
stateOrFn:
- | ((prev: VxeGridProps) => Partial>)
- | Partial>,
+ | ((prev: VxeGridProps) => Partial>)
+ | Partial>,
) {
if (isFunction(stateOrFn)) {
this.store.setState((prev) => {
diff --git a/packages/effects/plugins/src/vxe-table/index.ts b/packages/effects/plugins/src/vxe-table/index.ts
index 66196d772..b614b98f9 100644
--- a/packages/effects/plugins/src/vxe-table/index.ts
+++ b/packages/effects/plugins/src/vxe-table/index.ts
@@ -2,7 +2,7 @@ import { defineAsyncComponent } from 'vue';
export { setupVbenVxeTable } from './init';
export { default as VbenVxeTableToolbar } from './table-toolbar.vue';
-export type { VxeTableGridOptions } from './types';
+export type { VxeTableGridColumns, VxeTableGridOptions } from './types';
export * from './use-vxe-grid';
export { default as VbenVxeGrid } from './use-vxe-grid.vue';
export { useTableToolbar } from './use-vxe-toolbar';
diff --git a/packages/effects/plugins/src/vxe-table/init.ts b/packages/effects/plugins/src/vxe-table/init.ts
index 0810e3b67..0178fc16d 100644
--- a/packages/effects/plugins/src/vxe-table/init.ts
+++ b/packages/effects/plugins/src/vxe-table/init.ts
@@ -4,15 +4,9 @@ import { defineComponent, watch } from 'vue';
import { usePreferences } from '@vben/preferences';
-import { useVbenForm } from '@vben-core/form-ui';
-
import {
VxeButton,
VxeCheckbox,
-
- // VxeFormGather,
- // VxeForm,
- // VxeFormItem,
VxeIcon,
VxeInput,
VxeLoading,
@@ -31,11 +25,8 @@ import {
VxeTooltip,
VxeUI,
VxeUpload,
- // VxeSwitch,
- // VxeTextarea,
} from 'vxe-pc-ui';
-import enUS from 'vxe-pc-ui/lib/language/en-US';
-// 导入默认的语言
+import enUS from 'vxe-pc-ui/lib/language/en-US'; // 导入默认的语言
import zhCN from 'vxe-pc-ui/lib/language/zh-CN';
import {
VxeColgroup,
@@ -45,12 +36,13 @@ import {
VxeToolbar,
} from 'vxe-table';
-import { extendsDefaultFormatter } from './extends';
+import { injectPluginsOptions } from '../plugins-context';
+import { extendsDefaultFormatter } from './extends'; // 是否加载过
// 是否加载过
let isInit = false;
-let tableFormFactory: typeof useVbenForm | undefined;
+let tableFormFactory: ((...args: any[]) => any) | undefined;
function normalizeVxeLocale>(localeModule: T) {
return (
@@ -62,13 +54,19 @@ function normalizeVxeLocale>(localeModule: T) {
) as T;
}
-export const useTableForm: typeof useVbenForm = ((...args) => {
- if (!tableFormFactory) {
- throw new Error('useTableForm is not initialized');
+export function useTableForm(...args: any[]) {
+ const pluginsOptions = injectPluginsOptions();
+ const contextFormFactory = pluginsOptions?.form?.useVbenForm;
+
+ const factory = tableFormFactory || contextFormFactory;
+ if (!factory) {
+ throw new Error(
+ 'useTableForm is not initialized. Please provide useVbenForm via setupVbenVxeTable() or providePluginsOptions()',
+ );
}
- return tableFormFactory(...args);
-}) as typeof useVbenForm;
+ return factory(...args);
+}
// 部分组件,如果没注册,vxe-table 会报错,这里实际没用组件,只是为了不报错,同时可以减少打包体积
const createVirtualComponent = (name = '') => {
@@ -118,11 +116,14 @@ export function initVxeTable() {
}
export function setupVbenVxeTable(setupOptions: SetupVxeTable) {
- const { configVxeTable, useVbenForm } = setupOptions;
+ const { configVxeTable, useVbenForm: useVbenFormFromParam } = setupOptions;
initVxeTable();
- tableFormFactory = useVbenForm;
+ // 优先使用参数传入的 useVbenForm,否则清空让 context 注入生效
+ if (useVbenFormFromParam) {
+ tableFormFactory = useVbenFormFromParam;
+ }
const { isDark, locale } = usePreferences();
const localMap = {
diff --git a/packages/effects/plugins/src/vxe-table/types.ts b/packages/effects/plugins/src/vxe-table/types.ts
index 8b9aea47d..6ce5c07cc 100644
--- a/packages/effects/plugins/src/vxe-table/types.ts
+++ b/packages/effects/plugins/src/vxe-table/types.ts
@@ -26,6 +26,8 @@ interface ToolbarConfigOptions extends VxeGridPropTypes.ToolbarConfig {
search?: boolean;
}
+export type VxeTableGridColumns = VxeTableGridOptions['columns'];
+
export interface VxeTableGridOptions extends VxeTableGridProps {
/** 工具栏配置 */
toolbarConfig?: ToolbarConfigOptions;
@@ -39,7 +41,12 @@ export interface SeparatorOptions {
export interface VxeGridProps<
T extends Record = any,
D extends BaseFormComponentType = BaseFormComponentType,
+ P extends Record = Record,
> {
+ /**
+ * 数据
+ */
+ tableData?: any[];
/**
* 标题
*/
@@ -67,7 +74,7 @@ export interface VxeGridProps<
/**
* 表单配置
*/
- formOptions?: VbenFormProps;
+ formOptions?: VbenFormProps;
/**
* 显示搜索表单
*/
@@ -81,13 +88,14 @@ export interface VxeGridProps<
export type ExtendedVxeGridApi<
D extends Record = any,
F extends BaseFormComponentType = BaseFormComponentType,
-> = VxeGridApi & {
- useStore: >>(
- selector?: (state: NoInfer>) => T,
- ) => Readonly[>;
+ P extends Record] = Record,
+> = VxeGridApi & {
+ useStore: >>(
+ selector?: (state: NoInfer>) => S,
+ ) => Readonly[>;
};
export interface SetupVxeTable {
configVxeTable: (ui: VxeUIExport) => void;
- useVbenForm: typeof useVbenForm;
+ useVbenForm?: typeof useVbenForm;
}
diff --git a/packages/effects/plugins/src/vxe-table/use-vxe-grid.ts b/packages/effects/plugins/src/vxe-table/use-vxe-grid.ts
index 6ab876934..219c00270 100644
--- a/packages/effects/plugins/src/vxe-table/use-vxe-grid.ts
+++ b/packages/effects/plugins/src/vxe-table/use-vxe-grid.ts
@@ -22,21 +22,35 @@ type FilteredSlots] = {
export function useVbenVxeGrid<
T extends Record = any,
D extends BaseFormComponentType = BaseFormComponentType,
->(options: VxeGridProps) {
+ P extends Record = Record,
+>(options: VxeGridProps) {
// const IS_REACTIVE = isReactive(options);
- const api = new VxeGridApi(options);
- const extendedApi: ExtendedVxeGridApi = api as ExtendedVxeGridApi;
+ const api = new VxeGridApi(options);
+ const extendedApi: ExtendedVxeGridApi = api as ExtendedVxeGridApi<
+ T,
+ D,
+ P
+ >;
extendedApi.useStore = (selector) => {
return useStore(api.store, selector);
};
const Grid = defineComponent(
- (props: VxeGridProps, { attrs, slots }) => {
+ (props: VxeGridProps, { attrs, slots }) => {
onBeforeUnmount(() => {
api.unmount();
});
- api.setState({ ...props, ...attrs });
- return () => h(VxeGrid, { ...props, ...attrs, api: extendedApi }, slots);
+ api.setState({ ...props, ...attrs } as Partial>);
+ return () =>
+ h(
+ VxeGrid,
+ {
+ ...props,
+ ...attrs,
+ api: extendedApi as ExtendedVxeGridApi,
+ },
+ slots,
+ );
},
{
name: 'VbenVxeGrid',
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 4cb2d03bb..78cab6a58 100644
--- a/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
+++ b/packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
@@ -72,6 +72,7 @@ const {
gridEvents,
formOptions,
tableTitle,
+ tableData,
tableTitleHelp,
showSearchForm,
separator,
@@ -229,6 +230,9 @@ const options = computed(() => {
}
if (mergedOptions.formConfig) {
mergedOptions.formConfig.enabled = false;
+ if (tableData.value && tableData.value.length > 0) {
+ mergedOptions.data = tableData.value;
+ }
}
return mergedOptions;
});
@@ -327,7 +331,7 @@ async function init() {
watch(
formOptions,
() => {
- formApi.setState((prev) => {
+ formApi.setState((prev: Record) => {
const finalFormOptions: VbenFormProps = mergeWithArrayOverride(
{},
formOptions.value,
diff --git a/packages/locales/src/langs/en-US/preferences.json b/packages/locales/src/langs/en-US/preferences.json
index 9fb0f2f38..5722fa46d 100644
--- a/packages/locales/src/langs/en-US/preferences.json
+++ b/packages/locales/src/langs/en-US/preferences.json
@@ -197,5 +197,33 @@
"sidebarToggle": "Enable Sidebar Toggle",
"lockScreen": "Enable Lock Screen",
"refresh": "Enable Refresh"
+ },
+ "antd": {
+ "tabLabel": "Antd Extension",
+ "title": "Business Preferences",
+ "fields": {
+ "enableFormFullscreen": {
+ "label": "Enable Form Fullscreen Mode",
+ "tip": "Subprojects can read this extension configuration in their own business scenarios."
+ },
+ "tenantMode": {
+ "label": "Tenant Mode",
+ "options": {
+ "single": {
+ "label": "Single Tenant"
+ },
+ "multi": {
+ "label": "Multi Tenant"
+ }
+ }
+ },
+ "defaultTableSize": {
+ "label": "Default Page Size"
+ },
+ "reportTitle": {
+ "label": "Default Report Title",
+ "placeholder": "Please enter the default report title"
+ }
+ }
}
}
diff --git a/packages/locales/src/langs/en-US/ui.json b/packages/locales/src/langs/en-US/ui.json
index 58ccce24a..feb926d88 100644
--- a/packages/locales/src/langs/en-US/ui.json
+++ b/packages/locales/src/langs/en-US/ui.json
@@ -79,6 +79,42 @@
"cancel": "Cancel cropping",
"errorTip": "Cropping error"
},
+ "tiptap": {
+ "placeholder": "Please enter content...",
+ "prompts": {
+ "image": "Enter image URL",
+ "link": "Enter link URL"
+ },
+ "toolbar": {
+ "bold": "Bold",
+ "italic": "Italic",
+ "underline": "Underline",
+ "strike": "Strike",
+ "code": "Code",
+ "codeBlock": "Code Block",
+ "heading": "Heading",
+ "paragraph": "Paragraph",
+ "heading1": "H1",
+ "heading2": "H2",
+ "heading3": "H3",
+ "heading4": "H4",
+ "bulletList": "Bullets",
+ "orderedList": "Numbering",
+ "blockquote": "Quote",
+ "link": "Link",
+ "unlink": "Unlink",
+ "image": "Image",
+ "textColor": "Text Color",
+ "highlightColor": "Highlight Color",
+ "alignLeft": "Left",
+ "alignCenter": "Center",
+ "alignRight": "Right",
+ "preview": "Preview",
+ "undo": "Undo",
+ "redo": "Redo",
+ "clear": "Clear"
+ }
+ },
"fallback": {
"pageNotFound": "Oops! Page Not Found",
"pageNotFoundDesc": "Sorry, we couldn't find the page you were looking for.",
diff --git a/packages/locales/src/langs/zh-CN/authentication.json b/packages/locales/src/langs/zh-CN/authentication.json
index 1eb61aed6..9f4508cc7 100644
--- a/packages/locales/src/langs/zh-CN/authentication.json
+++ b/packages/locales/src/langs/zh-CN/authentication.json
@@ -4,7 +4,7 @@
"pageDesc": "工程化、高性能、跨组件库的前端模版",
"loginSuccess": "登录成功",
"loginSuccessDesc": "欢迎回来",
- "loginSubtitle": "请输入您的帐户信息以开始管理您的项目",
+ "loginSubtitle": "请输入您的账户信息以开始管理您的项目",
"selectAccount": "快速选择账号",
"username": "账号",
"password": "密码",
diff --git a/packages/locales/src/langs/zh-CN/preferences.json b/packages/locales/src/langs/zh-CN/preferences.json
index 017efad4c..b2e8fc73d 100644
--- a/packages/locales/src/langs/zh-CN/preferences.json
+++ b/packages/locales/src/langs/zh-CN/preferences.json
@@ -197,5 +197,33 @@
"sidebarToggle": "启用侧边栏切换",
"lockScreen": "启用锁屏",
"refresh": "启用刷新"
+ },
+ "antd": {
+ "tabLabel": "Antd 拓展",
+ "title": "业务偏好",
+ "fields": {
+ "enableFormFullscreen": {
+ "label": "启用表单全屏模式",
+ "tip": "子项目可在自己的业务场景中读取这个拓展配置。"
+ },
+ "tenantMode": {
+ "label": "租户模式",
+ "options": {
+ "single": {
+ "label": "单租户"
+ },
+ "multi": {
+ "label": "多租户"
+ }
+ }
+ },
+ "defaultTableSize": {
+ "label": "默认分页条数"
+ },
+ "reportTitle": {
+ "label": "报表默认标题",
+ "placeholder": "请输入报表默认标题"
+ }
+ }
}
}
diff --git a/packages/locales/src/langs/zh-CN/ui.json b/packages/locales/src/langs/zh-CN/ui.json
index f69b17d70..f2da99eb2 100644
--- a/packages/locales/src/langs/zh-CN/ui.json
+++ b/packages/locales/src/langs/zh-CN/ui.json
@@ -79,6 +79,42 @@
"cancel": "取消裁剪",
"errorTip": "裁剪错误"
},
+ "tiptap": {
+ "placeholder": "请输入内容...",
+ "prompts": {
+ "image": "请输入图片地址",
+ "link": "请输入链接地址"
+ },
+ "toolbar": {
+ "bold": "加粗",
+ "italic": "斜体",
+ "underline": "下划线",
+ "strike": "删除线",
+ "code": "行内代码",
+ "codeBlock": "代码块",
+ "heading": "标题",
+ "paragraph": "正文",
+ "heading1": "标题1",
+ "heading2": "标题2",
+ "heading3": "标题3",
+ "heading4": "标题4",
+ "bulletList": "无序列表",
+ "orderedList": "有序列表",
+ "blockquote": "引用",
+ "link": "链接",
+ "unlink": "移除链接",
+ "image": "图片",
+ "textColor": "文字颜色",
+ "highlightColor": "高亮颜色",
+ "alignLeft": "左对齐",
+ "alignCenter": "居中",
+ "alignRight": "右对齐",
+ "preview": "预览",
+ "undo": "撤销",
+ "redo": "重做",
+ "clear": "清除"
+ }
+ },
"fallback": {
"pageNotFound": "哎呀!未找到页面",
"pageNotFoundDesc": "抱歉,我们无法找到您要找的页面。",
diff --git a/packages/preferences/src/index.ts b/packages/preferences/src/index.ts
index 75fab432b..26496349a 100644
--- a/packages/preferences/src/index.ts
+++ b/packages/preferences/src/index.ts
@@ -1,4 +1,8 @@
-import type { Preferences } from '@vben-core/preferences';
+import type {
+ CustomPreferencesRecord,
+ Preferences,
+ PreferencesExtension,
+} from '@vben-core/preferences';
import type { DeepPartial } from '@vben-core/typings';
/**
@@ -12,6 +16,12 @@ function defineOverridesPreferences(preferences: DeepPartial) {
return preferences;
}
-export { defineOverridesPreferences };
+function definePreferencesExtension<
+ TCustomPreferences extends object = CustomPreferencesRecord,
+>(extension: PreferencesExtension) {
+ return extension;
+}
+
+export { defineOverridesPreferences, definePreferencesExtension };
export * from '@vben-core/preferences';
diff --git a/packages/styles/package.json b/packages/styles/package.json
index 5f787b6b9..2a3a1e14f 100644
--- a/packages/styles/package.json
+++ b/packages/styles/package.json
@@ -16,18 +16,23 @@
"default": "./src/index.ts"
},
"./antd": {
+ "types": "./src/style-exports.d.ts",
"default": "./src/antd/index.css"
},
"./antdv-next": {
+ "types": "./src/style-exports.d.ts",
"default": "./src/antdv-next/index.css"
},
"./ele": {
+ "types": "./src/style-exports.d.ts",
"default": "./src/ele/index.css"
},
"./naive": {
+ "types": "./src/style-exports.d.ts",
"default": "./src/naive/index.css"
},
"./global": {
+ "types": "./src/style-exports.d.ts",
"default": "./src/global/index.scss"
}
},
diff --git a/packages/styles/src/style-exports.d.ts b/packages/styles/src/style-exports.d.ts
new file mode 100644
index 000000000..a9f6f0807
--- /dev/null
+++ b/packages/styles/src/style-exports.d.ts
@@ -0,0 +1,3 @@
+declare const stylesheet: string;
+
+export default stylesheet;
diff --git a/playground/src/views/demos/features/preferences-extension/index.vue b/playground/src/views/demos/features/preferences-extension/index.vue
new file mode 100644
index 000000000..83b4c808d
--- /dev/null
+++ b/playground/src/views/demos/features/preferences-extension/index.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+ {{ $t('demos.preferencesExtensionDemo.description') }}
+
+
+
+
+
+
+ {{
+ $t('demos.preferencesExtensionDemo.currentTitle', {
+ title: playgroundPreferences.reportTitle,
+ })
+ }}
+
+
+ {{
+ $t('demos.preferencesExtensionDemo.currentDescription', {
+ count: playgroundPreferences.defaultVisibleRows,
+ quickActionText: playgroundPreferences.enableQuickActions
+ ? $t('demos.preferencesExtensionDemo.showQuickActions')
+ : $t('demos.preferencesExtensionDemo.hideQuickActions'),
+ tone: toneConfig.label,
+ })
+ }}
+
+
+
+
+
+
+
+ {{ playgroundPreferences.reportTitle }}
+
+
+ {{ $t('demos.preferencesExtensionDemo.boardDescription') }}
+
+
+
+ {{ toneConfig.label }}
+
+
+
+
+
+ {{ $t('demos.preferencesExtensionDemo.quickActions.create') }}
+
+
+ {{ $t('demos.preferencesExtensionDemo.quickActions.export') }}
+
+
+ {{ $t('demos.preferencesExtensionDemo.quickActions.refresh') }}
+
+
+
+ {{ $t('demos.preferencesExtensionDemo.quickActionsEnabled') }}
+
+
+
+
+
+
{{ task.title }}
+
+ {{ $t('demos.preferencesExtensionDemo.owner') }}:{{
+ task.owner
+ }}
+
+
+
+ {{ task.priority }}
+
+
+
+
+
+
+
+
+
+ {{ $t('demos.preferencesExtensionDemo.presetButtons.default') }}
+
+
+ {{ $t('demos.preferencesExtensionDemo.presetButtons.compact') }}
+
+
+ {{ $t('demos.preferencesExtensionDemo.presetButtons.review') }}
+
+
+
+ {{ formattedPlaygroundPreferences }}
+
+
+
diff --git a/playground/src/views/examples/form/value-format.vue b/playground/src/views/examples/form/value-format.vue
new file mode 100644
index 000000000..bf1449f88
--- /dev/null
+++ b/playground/src/views/examples/form/value-format.vue
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+ form.values 保持组件原始值,getValues() /
+ 提交时会按 schema.valueFormat 输出转换后的 payload。
+
+
+ return 值:回写当前字段
+ setValue:拆分写入其他字段
+ return undefined:保持原字段删除
+
+
+
+
+
+
+
+
+
+
+ 填充示例数据
+
+ 查看 getValues 输出
+
+
+
+
+
+
+
+
+ {{
+ liveValuesPreview
+ }}
+
+
+ {{
+ transformedValuesPreview
+ }}
+
+
+
+
diff --git a/playground/src/views/examples/tiptap/index.vue b/playground/src/views/examples/tiptap/index.vue
new file mode 100644
index 000000000..009e18c7f
--- /dev/null
+++ b/playground/src/views/examples/tiptap/index.vue
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+ 统一封装后的富文本编辑器,适合在各个 app 中直接复用。
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ previewContent }}
+
+
+
+
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c984887d6..48a54b6c8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,8 +16,8 @@ catalogs:
specifier: ^3.0.4
version: 3.0.4
'@clack/prompts':
- specifier: ^1.1.0
- version: 1.1.0
+ specifier: ^1.2.0
+ version: 1.2.0
'@commitlint/cli':
specifier: ^20.5.0
version: 20.5.0
@@ -46,8 +46,8 @@ catalogs:
specifier: ^3.2.38
version: 3.2.38
'@iconify/json':
- specifier: ^2.2.451
- version: 2.2.454
+ specifier: ^2.2.460
+ version: 2.2.462
'@iconify/tailwind4':
specifier: ^1.2.3
version: 1.2.3
@@ -55,14 +55,14 @@ catalogs:
specifier: ^5.0.0
version: 5.0.0
'@intlify/core-base':
- specifier: ^11.3.0
- version: 11.3.0
+ specifier: ^11.3.2
+ version: 11.3.2
'@intlify/unplugin-vue-i18n':
specifier: ^11.0.7
version: 11.0.7
'@jspm/generator':
- specifier: ^2.12.0
- version: 2.12.0
+ specifier: ^2.13.0
+ version: 2.13.0
'@manypkg/get-packages':
specifier: ^3.1.0
version: 3.1.0
@@ -72,15 +72,12 @@ catalogs:
'@nolebase/vitepress-plugin-git-changelog':
specifier: ^2.18.2
version: 2.18.2
- '@playwright/test':
- specifier: ^1.58.2
- version: 1.58.2
'@pnpm/workspace.read-manifest':
- specifier: ^1000.3.0
- version: 1000.3.0
+ specifier: ^1000.3.1
+ version: 1000.3.1
'@stylistic/stylelint-plugin':
- specifier: ^5.0.1
- version: 5.0.1
+ specifier: ^5.1.0
+ version: 5.1.0
'@tailwindcss/typography':
specifier: ^0.5.19
version: 0.5.19
@@ -88,17 +85,50 @@ catalogs:
specifier: ^4.2.2
version: 4.2.2
'@tanstack/vue-store':
- specifier: ^0.9.2
- version: 0.9.2
+ specifier: ^0.10.0
+ version: 0.10.0
'@tinyflow-ai/vue':
specifier: ~1.1.10
version: 1.1.10
'@tinymce/tinymce-vue':
specifier: ^6.3.0
version: 6.3.0
+ '@tiptap/core':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-document':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-highlight':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-image':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-link':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-placeholder':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-text-align':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-text-style':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/extension-underline':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/starter-kit':
+ specifier: ^3.22.3
+ version: 3.22.3
+ '@tiptap/vue-3':
+ specifier: ^3.22.3
+ version: 3.22.3
'@tsdown/css':
- specifier: ^0.21.4
- version: 0.21.4
+ specifier: ^0.21.7
+ version: 0.21.7
'@types/archiver':
specifier: ^7.0.0
version: 7.0.0
@@ -121,8 +151,8 @@ catalogs:
specifier: ^14.1.2
version: 14.1.2
'@types/node':
- specifier: ^25.5.0
- version: 25.5.0
+ specifier: ^25.6.0
+ version: 25.6.0
'@types/nprogress':
specifier: ^0.2.3
version: 0.2.3
@@ -136,11 +166,11 @@ catalogs:
specifier: ^1.15.9
version: 1.15.9
'@typescript-eslint/eslint-plugin':
- specifier: ^8.57.1
- version: 8.57.1
+ specifier: ^8.58.1
+ version: 8.58.1
'@typescript-eslint/parser':
- specifier: ^8.57.1
- version: 8.57.1
+ specifier: ^8.58.1
+ version: 8.58.1
'@vee-validate/zod':
specifier: ^4.15.1
version: 4.15.1
@@ -152,13 +182,13 @@ catalogs:
version: 1.1.0
'@vitejs/plugin-vue':
specifier: ^6.0.5
- version: 6.0.5
+ version: 6.0.6
'@vitejs/plugin-vue-jsx':
specifier: ^5.1.5
version: 5.1.5
'@vue/shared':
- specifier: ^3.5.30
- version: 3.5.30
+ specifier: ^3.5.32
+ version: 3.5.32
'@vue/test-utils':
specifier: ^2.4.6
version: 2.4.6
@@ -175,14 +205,14 @@ catalogs:
specifier: ^4.2.6
version: 4.2.6
antdv-next:
- specifier: ^1.1.5
- version: 1.1.6
+ specifier: ^1.1.9
+ version: 1.1.9
archiver:
specifier: ^7.0.1
version: 7.0.1
axios:
- specifier: ^1.13.6
- version: 1.13.6
+ specifier: ^1.15.0
+ version: 1.15.0
axios-mock-adapter:
specifier: ^2.1.0
version: 2.1.0
@@ -235,8 +265,8 @@ catalogs:
specifier: ^4.2.0
version: 4.2.0
cspell:
- specifier: ^9.7.0
- version: 9.7.0
+ specifier: ^10.0.0
+ version: 10.0.0
cz-git:
specifier: ^1.12.0
version: 1.12.0
@@ -247,8 +277,8 @@ catalogs:
specifier: ^1.11.20
version: 1.11.20
defu:
- specifier: ^6.1.4
- version: 6.1.4
+ specifier: ^6.1.7
+ version: 6.1.7
depcheck:
specifier: ^1.4.7
version: 1.4.7
@@ -256,23 +286,23 @@ catalogs:
specifier: ^12.8.1
version: 12.8.1
dotenv:
- specifier: ^17.3.1
- version: 17.3.1
+ specifier: ^17.4.1
+ version: 17.4.2
echarts:
specifier: ^6.0.0
version: 6.0.0
element-plus:
- specifier: ^2.13.5
- version: 2.13.6
+ specifier: ^2.13.7
+ version: 2.13.7
es-toolkit:
specifier: ^1.45.1
version: 1.45.1
eslint:
- specifier: ^10.0.3
- version: 10.1.0
+ specifier: ^10.2.0
+ version: 10.2.0
eslint-plugin-better-tailwindcss:
- specifier: ^4.3.2
- version: 4.3.2
+ specifier: ^4.4.0
+ version: 4.4.1
eslint-plugin-command:
specifier: ^3.5.2
version: 3.5.2
@@ -283,14 +313,14 @@ catalogs:
specifier: ^17.24.0
version: 17.24.0
eslint-plugin-perfectionist:
- specifier: ^5.7.0
- version: 5.7.0
+ specifier: ^5.8.0
+ version: 5.8.0
eslint-plugin-pnpm:
specifier: ^1.6.0
version: 1.6.0
eslint-plugin-unicorn:
- specifier: ^63.0.0
- version: 63.0.0
+ specifier: ^64.0.0
+ version: 64.0.0
eslint-plugin-unused-imports:
specifier: ^4.4.1
version: 4.4.1
@@ -305,19 +335,19 @@ catalogs:
version: 9.6.1
fast-xml-parser:
specifier: ^4.5.4
- version: 4.5.5
+ version: 4.5.6
find-up:
specifier: ^8.0.0
version: 8.0.0
get-port:
- specifier: ^7.1.0
+ specifier: ^7.2.0
version: 7.2.0
globals:
specifier: ^17.4.0
- version: 17.4.0
+ version: 17.5.0
happy-dom:
- specifier: ^20.8.4
- version: 20.8.4
+ specifier: ^20.8.9
+ version: 20.8.9
highlight.js:
specifier: ^11.11.1
version: 11.11.1
@@ -334,8 +364,8 @@ catalogs:
specifier: ^1.0.0
version: 1.0.0
lefthook:
- specifier: ^2.1.4
- version: 2.1.4
+ specifier: ^2.1.5
+ version: 2.1.5
lodash.clonedeep:
specifier: ^4.5.0
version: 4.5.0
@@ -364,8 +394,8 @@ catalogs:
specifier: ^2.44.1
version: 2.44.1
nitropack:
- specifier: ^2.13.1
- version: 2.13.2
+ specifier: ^2.13.3
+ version: 2.13.3
nprogress:
specifier: ^0.2.0
version: 0.2.0
@@ -373,14 +403,14 @@ catalogs:
specifier: ^9.3.0
version: 9.3.0
oxfmt:
- specifier: ^0.41.0
- version: 0.41.0
+ specifier: ^0.44.0
+ version: 0.44.0
oxlint:
- specifier: ^1.56.0
- version: 1.56.0
+ specifier: ^1.59.0
+ version: 1.59.0
oxlint-tsgolint:
- specifier: ^0.17.1
- version: 0.17.1
+ specifier: ^0.20.0
+ version: 0.20.0
pinia-plugin-persistedstate:
specifier: ^4.7.1
version: 4.7.1
@@ -388,11 +418,11 @@ catalogs:
specifier: ^2.3.0
version: 2.3.0
playwright:
- specifier: ^1.58.2
- version: 1.58.2
+ specifier: ^1.59.1
+ version: 1.59.1
postcss:
- specifier: ^8.5.8
- version: 8.5.8
+ specifier: ^8.5.9
+ version: 8.5.9
postcss-html:
specifier: ^1.8.1
version: 1.8.1
@@ -406,26 +436,29 @@ catalogs:
specifier: ^1.5.4
version: 1.5.4
qs:
- specifier: ^6.15.0
- version: 6.15.0
+ specifier: ^6.15.1
+ version: 6.15.1
reka-ui:
- specifier: ^2.9.2
- version: 2.9.2
+ specifier: ^2.9.5
+ version: 2.9.5
resolve.exports:
specifier: ^2.0.3
version: 2.0.3
rimraf:
specifier: ^6.1.3
version: 6.1.3
+ rolldown:
+ specifier: ^1.0.0-rc.15
+ version: 1.0.0-rc.15
rollup-plugin-visualizer:
specifier: ^7.0.1
version: 7.0.1
sass:
- specifier: ^1.98.0
- version: 1.98.0
+ specifier: ^1.99.0
+ version: 1.99.0
sass-embedded:
- specifier: ^1.98.0
- version: 1.98.0
+ specifier: ^1.99.0
+ version: 1.99.0
secure-ls:
specifier: ^2.0.0
version: 2.0.0
@@ -436,8 +469,8 @@ catalogs:
specifier: ^0.1.0
version: 0.1.0
stylelint:
- specifier: ^17.4.0
- version: 17.5.0
+ specifier: ^17.6.0
+ version: 17.7.0
stylelint-config-recess-order:
specifier: ^7.7.0
version: 7.7.0
@@ -445,8 +478,8 @@ catalogs:
specifier: ^18.0.0
version: 18.0.0
stylelint-config-recommended-scss:
- specifier: ^17.0.0
- version: 17.0.0
+ specifier: ^17.0.1
+ version: 17.0.1
stylelint-config-recommended-vue:
specifier: ^1.6.1
version: 1.6.1
@@ -466,8 +499,8 @@ catalogs:
specifier: ^4.2.2
version: 4.2.2
tdesign-vue-next:
- specifier: ^1.18.5
- version: 1.18.5
+ specifier: ^1.19.0
+ version: 1.19.0
theme-colors:
specifier: ^0.1.0
version: 0.1.0
@@ -478,17 +511,17 @@ catalogs:
specifier: ^6.3.7
version: 6.3.7
tsdown:
- specifier: ^0.21.4
- version: 0.21.4
+ specifier: ^0.21.7
+ version: 0.21.7
turbo:
- specifier: ^2.8.20
- version: 2.8.20
+ specifier: ^2.9.6
+ version: 2.9.6
tw-animate-css:
specifier: ^1.4.0
version: 1.4.0
typescript:
- specifier: ^5.9.3
- version: 5.9.3
+ specifier: ^6.0.2
+ version: 6.0.2
unplugin-dts:
specifier: ^1.0.0-beta.6
version: 1.0.0-beta.6
@@ -505,14 +538,11 @@ catalogs:
specifier: ^7.21.7
version: 7.21.7
vite:
- specifier: ^8.0.1
- version: 8.0.1
+ specifier: ^8.0.8
+ version: 8.0.8
vite-plugin-compression:
specifier: ^0.5.1
version: 0.5.1
- vite-plugin-html:
- specifier: ^3.2.2
- version: 3.2.2
vite-plugin-lazy-import:
specifier: ^1.0.7
version: 1.0.7
@@ -520,17 +550,17 @@ catalogs:
specifier: ^1.2.0
version: 1.2.0
vite-plugin-vue-devtools:
- specifier: ^8.1.0
- version: 8.1.0
+ specifier: ^8.1.1
+ version: 8.1.1
vitepress:
specifier: ^1.6.4
version: 1.6.4
vitepress-plugin-group-icons:
- specifier: ^1.7.1
- version: 1.7.1
+ specifier: ^1.7.3
+ version: 1.7.3
vitest:
- specifier: ^4.1.0
- version: 4.1.0
+ specifier: ^4.1.4
+ version: 4.1.4
vue-dompurify-html:
specifier: ^5.3.0
version: 5.3.0
@@ -538,13 +568,13 @@ catalogs:
specifier: ^10.4.0
version: 10.4.0
vue-i18n:
- specifier: ^11.3.0
- version: 11.3.0
+ specifier: ^11.3.2
+ version: 11.3.2
vue-json-viewer:
specifier: ^3.0.4
version: 3.0.4
vue-router:
- specifier: ^5.0.3
+ specifier: ^5.0.4
version: 5.0.4
vue-tippy:
specifier: ^6.7.1
@@ -562,11 +592,11 @@ catalogs:
specifier: ^4.1.0
version: 4.1.0
vxe-pc-ui:
- specifier: ^4.13.10
- version: 4.13.13
+ specifier: ^4.13.21
+ version: 4.13.23
vxe-table:
- specifier: ^4.18.5
- version: 4.18.8
+ specifier: ^4.18.11
+ version: 4.18.12
watermark-js-plus:
specifier: ^1.6.3
version: 1.6.3
@@ -581,11 +611,11 @@ catalogs:
version: 0.1.3
overrides:
- '@ast-grep/napi': ^0.42.0
+ '@ast-grep/napi': ^0.42.1
'@ctrl/tinycolor': ^4.2.0
clsx: ^2.1.1
pinia: ^3.0.4
- vue: ^3.5.30
+ vue: ^3.5.32
importers:
@@ -596,16 +626,13 @@ importers:
version: 0.6.0
'@changesets/cli':
specifier: 'catalog:'
- version: 2.30.0(@types/node@25.5.0)
- '@playwright/test':
- specifier: 'catalog:'
- version: 1.58.2
+ version: 2.30.0(@types/node@25.6.0)
'@tsdown/css':
specifier: 'catalog:'
- version: 0.21.4(jiti@2.6.1)(postcss@8.5.8)(sass-embedded@1.98.0)(sass@1.98.0)(tsdown@0.21.4)(yaml@2.8.3)
+ version: 0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(jiti@2.6.1)(postcss@8.5.9)(sass-embedded@1.99.0)(sass@1.99.0)(tsdown@0.21.7)(yaml@2.8.3)
'@types/node':
specifier: 'catalog:'
- version: 25.5.0
+ version: 25.6.0
'@vben/commitlint-config':
specifier: workspace:*
version: link:internal/lint-configs/commitlint-config
@@ -638,40 +665,37 @@ importers:
version: link:scripts/vsh
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))
+ version: 6.0.6(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.1.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))
- '@vue/test-utils':
- specifier: 'catalog:'
- version: 2.4.6
+ version: 5.1.5(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))
cross-env:
specifier: 'catalog:'
version: 10.1.0
cspell:
specifier: 'catalog:'
- version: 9.7.0
+ version: 10.0.0
happy-dom:
specifier: 'catalog:'
- version: 20.8.4
+ version: 20.8.9
is-ci:
specifier: 'catalog:'
version: 4.1.0
lefthook:
specifier: 'catalog:'
- version: 2.1.4
+ version: 2.1.5
oxfmt:
specifier: 'catalog:'
- version: 0.41.0
+ version: 0.44.0
oxlint:
specifier: 'catalog:'
- version: 1.56.0(oxlint-tsgolint@0.17.1)
+ version: 1.59.0(oxlint-tsgolint@0.20.0)
oxlint-tsgolint:
specifier: 'catalog:'
- version: 0.17.1
+ version: 0.20.0
playwright:
specifier: 'catalog:'
- version: 1.58.2
+ version: 1.59.1
rimraf:
specifier: 'catalog:'
version: 6.1.3
@@ -680,40 +704,37 @@ importers:
version: 4.2.2
tsdown:
specifier: 'catalog:'
- version: 0.21.4(@tsdown/css@0.21.4)(publint@0.3.18)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.6(typescript@5.9.3))
+ version: 0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(@tsdown/css@0.21.7)(publint@0.3.18)(synckit@0.11.12)(typescript@6.0.2)(vue-tsc@3.2.6(typescript@6.0.2))
turbo:
specifier: 'catalog:'
- version: 2.8.20
+ version: 2.9.6
typescript:
specifier: 'catalog:'
- version: 5.9.3
- unplugin-vue:
- specifier: 'catalog:'
- version: 7.1.1(@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.1)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.3)
+ version: 6.0.2
vite:
specifier: 'catalog:'
- version: 8.0.1(@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.1)(yaml@2.8.3)
+ version: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
vitest:
specifier: 'catalog:'
- version: 4.1.0(@types/node@25.5.0)(happy-dom@20.8.4)(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 4.1.4(@types/node@25.6.0)(happy-dom@20.8.9)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-tsc:
specifier: 'catalog:'
- version: 3.2.6(typescript@5.9.3)
+ version: 3.2.6(typescript@6.0.2)
apps/web-antd:
dependencies:
'@form-create/ant-design-vue':
specifier: 'catalog:'
- version: 3.2.38(vue@3.5.30(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.32(typescript@6.0.2))
'@form-create/antd-designer':
specifier: 'catalog:'
- version: 3.4.0(vue@3.5.30(typescript@5.9.3))
+ version: 3.4.0(vue@3.5.32(typescript@6.0.2))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.32(typescript@6.0.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -758,16 +779,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.30(typescript@5.9.3))
+ version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.32(typescript@6.0.2))
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.32(typescript@6.0.2))
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.30(typescript@5.9.3))
+ version: 4.2.6(vue@3.5.32(typescript@6.0.2))
benz-amr-recorder:
specifier: 'catalog:'
version: 1.1.5
@@ -776,7 +797,7 @@ importers:
version: 17.11.1
bpmn-js-properties-panel:
specifier: 'catalog:'
- version: 5.23.0(@bpmn-io/properties-panel@3.40.4)(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)
+ version: 5.23.0(@bpmn-io/properties-panel@3.40.6)(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
@@ -794,13 +815,13 @@ importers:
version: 12.8.1
fast-xml-parser:
specifier: 'catalog:'
- version: 4.5.5
+ version: 4.5.6
highlight.js:
specifier: 'catalog:'
version: 11.11.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
steady-xml:
specifier: 'catalog:'
version: 0.1.0
@@ -811,23 +832,23 @@ importers:
specifier: 'catalog:'
version: 7.21.7
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.30(typescript@5.9.3))
+ version: 5.3.0(vue@3.5.32(typescript@6.0.2))
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
vue3-print-nb:
specifier: 'catalog:'
- version: 0.1.4(typescript@5.9.3)
+ version: 0.1.4(typescript@6.0.2)
vue3-signature:
specifier: 'catalog:'
- version: 0.2.4(vue@3.5.30(typescript@5.9.3))
+ version: 0.2.4(vue@3.5.32(typescript@6.0.2))
vuedraggable:
specifier: 'catalog:'
- version: 4.1.0(vue@3.5.30(typescript@5.9.3))
+ version: 4.1.0(vue@3.5.32(typescript@6.0.2))
apps/web-antdv-next:
dependencies:
@@ -875,34 +896,34 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
antdv-next:
specifier: 'catalog:'
- version: 1.1.6(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3))
+ version: 1.1.9(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.32(typescript@6.0.2))
dayjs:
specifier: 'catalog:'
version: 1.11.20
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
apps/web-ele:
dependencies:
'@form-create/designer':
specifier: 'catalog:'
- version: 3.4.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.4.0(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
'@form-create/element-ui':
specifier: 'catalog:'
- version: 3.2.38(vue@3.5.30(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.32(typescript@6.0.2))
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.32(typescript@6.0.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -947,13 +968,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.30(typescript@5.9.3))
+ version: 1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.32(typescript@6.0.2))
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.32(typescript@6.0.2))
benz-amr-recorder:
specifier: 'catalog:'
version: 1.1.5
@@ -962,7 +983,7 @@ importers:
version: 17.11.1
bpmn-js-properties-panel:
specifier: 'catalog:'
- version: 5.23.0(@bpmn-io/properties-panel@3.40.4)(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)
+ version: 5.23.0(@bpmn-io/properties-panel@3.40.6)(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
@@ -980,16 +1001,16 @@ importers:
version: 12.8.1
element-plus:
specifier: 'catalog:'
- version: 2.13.6(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 2.13.7(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
fast-xml-parser:
specifier: 'catalog:'
- version: 4.5.5
+ version: 4.5.6
highlight.js:
specifier: 'catalog:'
version: 11.11.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
steady-xml:
specifier: 'catalog:'
version: 0.1.0
@@ -1000,23 +1021,23 @@ importers:
specifier: 'catalog:'
version: 7.21.7
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-dompurify-html:
specifier: 'catalog:'
- version: 5.3.0(vue@3.5.30(typescript@5.9.3))
+ version: 5.3.0(vue@3.5.32(typescript@6.0.2))
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
vue3-print-nb:
specifier: 'catalog:'
- version: 0.1.4(typescript@5.9.3)
+ version: 0.1.4(typescript@6.0.2)
vue3-signature:
specifier: 'catalog:'
- version: 0.2.4(vue@3.5.30(typescript@5.9.3))
+ version: 0.2.4(vue@3.5.32(typescript@6.0.2))
vuedraggable:
specifier: 'catalog:'
- version: 4.1.0(vue@3.5.30(typescript@5.9.3))
+ version: 4.1.0(vue@3.5.32(typescript@6.0.2))
devDependencies:
unplugin-element-plus:
specifier: 'catalog:'
@@ -1026,7 +1047,7 @@ importers:
dependencies:
'@form-create/naive-ui':
specifier: 'catalog:'
- version: 3.2.38(vue@3.5.30(typescript@5.9.3))
+ version: 3.2.38(vue@3.5.32(typescript@6.0.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -1071,28 +1092,28 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
dayjs:
specifier: 'catalog:'
version: 1.11.20
naive-ui:
specifier: 'catalog:'
- version: 2.44.1(vue@3.5.30(typescript@5.9.3))
+ version: 2.44.1(vue@3.5.32(typescript@6.0.2))
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
apps/web-tdesign:
dependencies:
'@tinymce/tinymce-vue':
specifier: 'catalog:'
- version: 6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))
+ version: 6.3.0(tinymce@7.9.2)(vue@3.5.32(typescript@6.0.2))
'@vben/access':
specifier: workspace:*
version: link:../../packages/effects/access
@@ -1137,7 +1158,7 @@ importers:
version: link:../../packages/utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
cropperjs:
specifier: 'catalog:'
version: 1.6.2
@@ -1149,19 +1170,19 @@ importers:
version: 1.45.1
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
tdesign-vue-next:
specifier: 'catalog:'
- version: 1.18.5(vue@3.5.30(typescript@5.9.3))
+ version: 1.19.0(vue@3.5.32(typescript@6.0.2))
tinymce:
specifier: 'catalog:'
version: 7.9.2
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
docs:
dependencies:
@@ -1182,26 +1203,26 @@ importers:
version: link:../packages/styles
ant-design-vue:
specifier: 'catalog:'
- version: 4.2.6(vue@3.5.30(typescript@5.9.3))
+ version: 4.2.6(vue@3.5.32(typescript@6.0.2))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.577.0(vue@3.5.30(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.32(typescript@6.0.2))
medium-zoom:
specifier: 'catalog:'
version: 1.1.0
reka-ui:
specifier: 'catalog:'
- version: 2.9.2(vue@3.5.30(typescript@5.9.3))
+ version: 2.9.5(vue@3.5.32(typescript@6.0.2))
vitepress-plugin-group-icons:
specifier: 'catalog:'
- version: 1.7.1(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 1.7.3(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
devDependencies:
'@nolebase/vitepress-plugin-git-changelog':
specifier: 'catalog:'
- 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.1)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
+ version: 2.18.2(vitepress@1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2))(vue@3.5.32(typescript@6.0.2))
'@tailwindcss/vite':
specifier: 'catalog:'
- version: 4.2.2(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 4.2.2(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
'@vben/tailwind-config':
specifier: workspace:*
version: link:../internal/tailwind-config
@@ -1210,19 +1231,19 @@ importers:
version: link:../internal/vite-config
'@vite-pwa/vitepress':
specifier: 'catalog:'
- version: 1.1.0(vite-plugin-pwa@1.2.0(vite@8.0.1(@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.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0))
+ version: 1.1.0(vite-plugin-pwa@1.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0))
vitepress:
specifier: 'catalog:'
- 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.1)(typescript@5.9.3)
+ version: 1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2)
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
internal/lint-configs/commitlint-config:
dependencies:
'@commitlint/cli':
specifier: 'catalog:'
- version: 20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
+ version: 20.5.0(@types/node@25.6.0)(conventional-commits-parser@6.4.0)(typescript@6.0.2)
'@commitlint/config-conventional':
specifier: 'catalog:'
version: 20.5.0
@@ -1243,49 +1264,49 @@ importers:
dependencies:
'@eslint/js':
specifier: 'catalog:'
- version: 10.0.1(eslint@10.1.0(jiti@2.6.1))
+ version: 10.0.1(eslint@10.2.0(jiti@2.6.1))
'@typescript-eslint/eslint-plugin':
specifier: 'catalog:'
- version: 8.57.1(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.58.1(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
'@typescript-eslint/parser':
specifier: 'catalog:'
- version: 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
'@vben/oxlint-config':
specifier: workspace:*
version: link:../oxlint-config
eslint:
specifier: 'catalog:'
- version: 10.1.0(jiti@2.6.1)
+ version: 10.2.0(jiti@2.6.1)
eslint-plugin-jsonc:
specifier: 'catalog:'
- version: 3.1.2(eslint@10.1.0(jiti@2.6.1))
+ version: 3.1.2(eslint@10.2.0(jiti@2.6.1))
eslint-plugin-n:
specifier: 'catalog:'
- version: 17.24.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 17.24.0(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
eslint-plugin-perfectionist:
specifier: 'catalog:'
- version: 5.7.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ version: 5.8.0(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
eslint-plugin-pnpm:
specifier: 'catalog:'
- version: 1.6.0(eslint@10.1.0(jiti@2.6.1))
+ version: 1.6.0(eslint@10.2.0(jiti@2.6.1))
eslint-plugin-unicorn:
specifier: 'catalog:'
- version: 63.0.0(eslint@10.1.0(jiti@2.6.1))
+ version: 64.0.0(eslint@10.2.0(jiti@2.6.1))
eslint-plugin-unused-imports:
specifier: 'catalog:'
- version: 4.4.1(@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))
+ version: 4.4.1(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))
eslint-plugin-vue:
specifier: 'catalog:'
- version: 10.8.0(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.1.0(jiti@2.6.1)))
+ version: 10.8.0(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1)))
eslint-plugin-yml:
specifier: 'catalog:'
- version: 3.3.1(eslint@10.1.0(jiti@2.6.1))
+ version: 3.3.1(eslint@10.2.0(jiti@2.6.1))
globals:
specifier: 'catalog:'
- version: 17.4.0
+ version: 17.5.0
vue-eslint-parser:
specifier: 'catalog:'
- version: 10.4.0(eslint@10.1.0(jiti@2.6.1))
+ version: 10.4.0(eslint@10.2.0(jiti@2.6.1))
yaml-eslint-parser:
specifier: 'catalog:'
version: 2.0.0
@@ -1294,62 +1315,62 @@ importers:
dependencies:
oxfmt:
specifier: 'catalog:'
- version: 0.41.0
+ version: 0.44.0
internal/lint-configs/oxlint-config:
dependencies:
'@eslint-community/eslint-plugin-eslint-comments':
specifier: 'catalog:'
- version: 4.7.1(eslint@10.1.0(jiti@2.6.1))
+ version: 4.7.1(eslint@10.2.0(jiti@2.6.1))
eslint-plugin-better-tailwindcss:
specifier: 'catalog:'
- version: 4.3.2(eslint@10.1.0(jiti@2.6.1))(oxlint@1.56.0(oxlint-tsgolint@0.17.1))(tailwindcss@4.2.2)(typescript@5.9.3)
+ version: 4.4.1(eslint@10.2.0(jiti@2.6.1))(oxlint@1.59.0(oxlint-tsgolint@0.20.0))(tailwindcss@4.2.2)(typescript@6.0.2)
eslint-plugin-command:
specifier: 'catalog:'
- version: 3.5.2(@typescript-eslint/rule-tester@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.57.1(typescript@5.9.3))(@typescript-eslint/utils@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))
+ version: 3.5.2(@typescript-eslint/rule-tester@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(@typescript-eslint/typescript-estree@8.58.1(typescript@6.0.2))(@typescript-eslint/utils@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))
oxlint:
specifier: 'catalog:'
- version: 1.56.0(oxlint-tsgolint@0.17.1)
+ version: 1.59.0(oxlint-tsgolint@0.20.0)
internal/lint-configs/stylelint-config:
dependencies:
'@stylistic/stylelint-plugin':
specifier: 'catalog:'
- version: 5.0.1(stylelint@17.5.0(typescript@5.9.3))
+ version: 5.1.0(stylelint@17.7.0(typescript@6.0.2))
stylelint-config-recess-order:
specifier: 'catalog:'
- version: 7.7.0(stylelint-order@8.1.1(stylelint@17.5.0(typescript@5.9.3)))(stylelint@17.5.0(typescript@5.9.3))
+ version: 7.7.0(stylelint-order@8.1.1(stylelint@17.7.0(typescript@6.0.2)))(stylelint@17.7.0(typescript@6.0.2))
stylelint-scss:
specifier: 'catalog:'
- version: 7.0.0(stylelint@17.5.0(typescript@5.9.3))
+ version: 7.0.0(stylelint@17.7.0(typescript@6.0.2))
devDependencies:
postcss:
specifier: 'catalog:'
- version: 8.5.8
+ version: 8.5.9
postcss-html:
specifier: 'catalog:'
version: 1.8.1
postcss-scss:
specifier: 'catalog:'
- version: 4.0.9(postcss@8.5.8)
+ version: 4.0.9(postcss@8.5.9)
stylelint:
specifier: 'catalog:'
- version: 17.5.0(typescript@5.9.3)
+ version: 17.7.0(typescript@6.0.2)
stylelint-config-recommended:
specifier: 'catalog:'
- version: 18.0.0(stylelint@17.5.0(typescript@5.9.3))
+ version: 18.0.0(stylelint@17.7.0(typescript@6.0.2))
stylelint-config-recommended-scss:
specifier: 'catalog:'
- version: 17.0.0(postcss@8.5.8)(stylelint@17.5.0(typescript@5.9.3))
+ version: 17.0.1(postcss@8.5.9)(stylelint@17.7.0(typescript@6.0.2))
stylelint-config-recommended-vue:
specifier: 'catalog:'
- version: 1.6.1(postcss-html@1.8.1)(stylelint@17.5.0(typescript@5.9.3))
+ version: 1.6.1(postcss-html@1.8.1)(stylelint@17.7.0(typescript@6.0.2))
stylelint-config-standard:
specifier: 'catalog:'
- version: 40.0.0(stylelint@17.5.0(typescript@5.9.3))
+ version: 40.0.0(stylelint@17.7.0(typescript@6.0.2))
stylelint-order:
specifier: 'catalog:'
- version: 8.1.1(stylelint@17.5.0(typescript@5.9.3))
+ version: 8.1.1(stylelint@17.7.0(typescript@6.0.2))
internal/node-utils:
dependencies:
@@ -1406,19 +1427,19 @@ importers:
version: link:../../packages/types
vite:
specifier: 'catalog:'
- version: 8.0.1(@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.1)(yaml@2.8.3)
+ version: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
internal/vite-config:
dependencies:
'@intlify/unplugin-vue-i18n':
specifier: 'catalog:'
- version: 11.0.7(@vue/compiler-dom@3.5.30)(eslint@10.1.0(jiti@2.6.1))(rollup@4.60.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))
+ version: 11.0.7(@vue/compiler-dom@3.5.32)(eslint@10.2.0(jiti@2.6.1))(rollup@4.60.1)(typescript@6.0.2)(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
'@jspm/generator':
specifier: 'catalog:'
- version: 2.12.0
+ version: 2.13.0
'@tailwindcss/vite':
specifier: 'catalog:'
- version: 4.2.2(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 4.2.2(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
'@vben/node-utils':
specifier: workspace:*
version: link:../node-utils
@@ -1436,20 +1457,20 @@ importers:
version: 7.2.0
nitropack:
specifier: 'catalog:'
- version: 2.13.2(rolldown@1.0.0-rc.9)
+ version: 2.13.3(rolldown@1.0.0-rc.15)
resolve.exports:
specifier: 'catalog:'
version: 2.0.3
vite-plugin-pwa:
specifier: 'catalog:'
- version: 1.2.0(vite@8.0.1(@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.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0)
+ version: 1.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0)
vite-plugin-vue-devtools:
specifier: 'catalog:'
- version: 8.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))
+ version: 8.1.1(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))
devDependencies:
'@pnpm/workspace.read-manifest':
specifier: 'catalog:'
- version: 1000.3.0
+ version: 1000.3.1
'@types/archiver':
specifier: 'catalog:'
version: 7.0.0
@@ -1458,37 +1479,37 @@ importers:
version: 7.0.2
'@vitejs/plugin-vue':
specifier: 'catalog:'
- version: 6.0.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))
+ version: 6.0.6(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))
'@vitejs/plugin-vue-jsx':
specifier: 'catalog:'
- version: 5.1.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))
+ version: 5.1.5(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))
dayjs:
specifier: 'catalog:'
version: 1.11.20
dotenv:
specifier: 'catalog:'
- version: 17.3.1
+ version: 17.4.2
+ rolldown:
+ specifier: 'catalog:'
+ version: 1.0.0-rc.15
rollup-plugin-visualizer:
specifier: 'catalog:'
- version: 7.0.1(rolldown@1.0.0-rc.9)(rollup@4.60.0)
+ version: 7.0.1(rolldown@1.0.0-rc.15)(rollup@4.60.1)
sass:
specifier: 'catalog:'
- version: 1.98.0
+ version: 1.99.0
sass-embedded:
specifier: 'catalog:'
- version: 1.98.0
+ version: 1.99.0
unplugin-dts:
specifier: 'catalog:'
- version: 1.0.0-beta.6(esbuild@0.27.4)(rolldown@1.0.0-rc.9)(rollup@4.60.0)(typescript@5.9.3)(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 1.0.0-beta.6(esbuild@0.27.7)(rolldown@1.0.0-rc.15)(rollup@4.60.1)(typescript@6.0.2)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
vite:
specifier: 'catalog:'
- version: 8.0.1(@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.1)(yaml@2.8.3)
+ version: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
vite-plugin-compression:
specifier: 'catalog:'
- version: 0.5.1(vite@8.0.1(@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.1)(yaml@2.8.3))
- vite-plugin-html:
- specifier: 'catalog:'
- version: 3.2.2(vite@8.0.1(@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.1)(yaml@2.8.3))
+ version: 0.5.1(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
vite-plugin-lazy-import:
specifier: 'catalog:'
version: 1.0.7
@@ -1497,19 +1518,19 @@ importers:
dependencies:
'@iconify/json':
specifier: 'catalog:'
- version: 2.2.454
+ version: 2.2.462
packages/@core/base/icons:
dependencies:
'@iconify/vue':
specifier: 'catalog:'
- version: 5.0.0(vue@3.5.30(typescript@5.9.3))
+ version: 5.0.0(vue@3.5.32(typescript@6.0.2))
lucide-vue-next:
specifier: 'catalog:'
- version: 0.577.0(vue@3.5.30(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
packages/@core/base/shared:
dependencies:
@@ -1518,10 +1539,10 @@ importers:
version: 4.2.0
'@tanstack/vue-store':
specifier: 'catalog:'
- version: 0.9.2(vue@3.5.30(typescript@5.9.3))
+ version: 0.10.0(vue@3.5.32(typescript@6.0.2))
'@vue/shared':
specifier: 'catalog:'
- version: 3.5.30
+ version: 3.5.32
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -1533,7 +1554,7 @@ importers:
version: 1.11.20
defu:
specifier: 'catalog:'
- version: 6.1.4
+ version: 6.1.7
es-toolkit:
specifier: 'catalog:'
version: 1.45.1
@@ -1566,11 +1587,11 @@ importers:
packages/@core/base/typings:
dependencies:
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
packages/@core/composables:
dependencies:
@@ -1579,16 +1600,16 @@ importers:
version: link:../base/shared
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
reka-ui:
specifier: 'catalog:'
- version: 2.9.2(vue@3.5.30(typescript@5.9.3))
+ version: 2.9.5(vue@3.5.32(typescript@6.0.2))
sortablejs:
specifier: 'catalog:'
version: 1.15.7
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
devDependencies:
'@types/sortablejs':
specifier: 'catalog:'
@@ -1604,10 +1625,10 @@ importers:
version: link:../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
packages/@core/ui-kit/form-ui:
dependencies:
@@ -1628,22 +1649,26 @@ importers:
version: link:../../base/typings
'@vee-validate/zod':
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.30(typescript@5.9.3))(zod@3.25.76)
+ version: 4.15.1(vue@3.5.32(typescript@6.0.2))(zod@3.25.76)
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.30(typescript@5.9.3))
+ version: 4.15.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
zod:
specifier: 'catalog:'
version: 3.25.76
zod-defaults:
specifier: 'catalog:'
version: 0.1.3(zod@3.25.76)
+ devDependencies:
+ unplugin-vue:
+ specifier: 'catalog:'
+ version: 7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3)
packages/@core/ui-kit/layout-ui:
dependencies:
@@ -1664,10 +1689,14 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
+ devDependencies:
+ unplugin-vue:
+ specifier: 'catalog:'
+ version: 7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3)
packages/@core/ui-kit/menu-ui:
dependencies:
@@ -1691,17 +1720,20 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
qs:
specifier: 'catalog:'
- version: 6.15.0
+ version: 6.15.1
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
devDependencies:
'@types/qs':
specifier: 'catalog:'
version: 6.15.0
+ unplugin-vue:
+ specifier: 'catalog:'
+ version: 7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3)
packages/@core/ui-kit/popup-ui:
dependencies:
@@ -1722,10 +1754,14 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
+ devDependencies:
+ unplugin-vue:
+ specifier: 'catalog:'
+ version: 7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3)
packages/@core/ui-kit/shadcn-ui:
dependencies:
@@ -1746,22 +1782,22 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
class-variance-authority:
specifier: 'catalog:'
version: 0.7.1
lucide-vue-next:
specifier: 'catalog:'
- version: 0.577.0(vue@3.5.30(typescript@5.9.3))
+ version: 0.577.0(vue@3.5.32(typescript@6.0.2))
reka-ui:
specifier: 'catalog:'
- version: 2.9.2(vue@3.5.30(typescript@5.9.3))
+ version: 2.9.5(vue@3.5.32(typescript@6.0.2))
vee-validate:
specifier: 'catalog:'
- version: 4.15.1(vue@3.5.30(typescript@5.9.3))
+ version: 4.15.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
packages/@core/ui-kit/tabs-ui:
dependencies:
@@ -1782,10 +1818,14 @@ importers:
version: link:../../base/typings
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
+ devDependencies:
+ unplugin-vue:
+ specifier: 'catalog:'
+ version: 7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3)
packages/constants:
dependencies:
@@ -1808,8 +1848,8 @@ importers:
specifier: workspace:*
version: link:../../utils
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
packages/effects/common-ui:
dependencies:
@@ -1848,10 +1888,10 @@ importers:
version: link:../../types
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
'@vueuse/integrations':
specifier: 'catalog:'
- version: 14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.32(typescript@6.0.2))
json-bigint:
specifier: 'catalog:'
version: 1.0.0
@@ -1862,17 +1902,17 @@ importers:
specifier: 'catalog:'
version: 6.3.7
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-json-viewer:
specifier: 'catalog:'
- version: 3.0.4(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(vue@3.5.32(typescript@6.0.2))
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
vue-tippy:
specifier: 'catalog:'
- version: 6.7.1(vue@3.5.30(typescript@5.9.3))
+ version: 6.7.1(vue@3.5.32(typescript@6.0.2))
devDependencies:
'@types/json-bigint':
specifier: 'catalog:'
@@ -1880,6 +1920,9 @@ importers:
'@types/qrcode':
specifier: 'catalog:'
version: 1.5.6
+ '@vue/test-utils':
+ specifier: 'catalog:'
+ version: 2.4.6
packages/effects/hooks:
dependencies:
@@ -1900,13 +1943,13 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
watermark-js-plus:
specifier: 'catalog:'
version: 1.6.3
@@ -1966,25 +2009,61 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
packages/effects/plugins:
dependencies:
'@tinyflow-ai/vue':
specifier: 'catalog:'
- version: 1.1.10(svelte@5.54.1)(vue@3.5.30(typescript@5.9.3))
+ version: 1.1.10(svelte@5.55.3(@typescript-eslint/types@8.58.1))(vue@3.5.32(typescript@6.0.2))
+ '@tiptap/core':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/extension-document':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-highlight':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-image':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-link':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-placeholder':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-text-align':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-text-style':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-underline':
+ specifier: 'catalog:'
+ version: 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/starter-kit':
+ specifier: 'catalog:'
+ version: 3.22.3
+ '@tiptap/vue-3':
+ specifier: 'catalog:'
+ version: 3.22.3(@floating-ui/dom@1.7.6)(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)(vue@3.5.32(typescript@6.0.2))
'@vben-core/design':
specifier: workspace:*
version: link:../../@core/base/design
'@vben-core/form-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/form-ui
+ '@vben-core/popup-ui':
+ specifier: workspace:*
+ version: link:../../@core/ui-kit/popup-ui
'@vben-core/shadcn-ui':
specifier: workspace:*
version: link:../../@core/ui-kit/shadcn-ui
@@ -2011,10 +2090,10 @@ importers:
version: link:../../utils
'@vueuse/core':
specifier: 'catalog:'
- version: 14.2.1(vue@3.5.30(typescript@5.9.3))
+ version: 14.2.1(vue@3.5.32(typescript@6.0.2))
'@vueuse/motion':
specifier: 'catalog:'
- version: 3.0.3(magicast@0.5.2)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.3(magicast@0.5.2)(vue@3.5.32(typescript@6.0.2))
codemirror:
specifier: 'catalog:'
version: 5.65.21
@@ -2037,14 +2116,14 @@ importers:
specifier: 'catalog:'
version: 0.16.0(markmap-common@0.16.0)
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vxe-pc-ui:
specifier: 'catalog:'
- version: 4.13.13(vue@3.5.30(typescript@5.9.3))
+ version: 4.13.23(vue@3.5.32(typescript@6.0.2))
vxe-table:
specifier: 'catalog:'
- version: 4.18.8(vue@3.5.30(typescript@5.9.3))
+ version: 4.18.12(vue@3.5.32(typescript@6.0.2))
devDependencies:
'@types/codemirror':
specifier: 'catalog:'
@@ -2066,17 +2145,17 @@ importers:
version: link:../../utils
axios:
specifier: 'catalog:'
- version: 1.13.6
+ version: 1.15.0
qs:
specifier: 'catalog:'
- version: 6.15.0
+ version: 6.15.1
devDependencies:
'@types/qs':
specifier: 'catalog:'
version: 6.15.0
axios-mock-adapter:
specifier: 'catalog:'
- version: 2.1.0(axios@1.13.6)
+ version: 2.1.0(axios@1.15.0)
packages/icons:
dependencies:
@@ -2088,16 +2167,16 @@ importers:
dependencies:
'@intlify/core-base':
specifier: 'catalog:'
- version: 11.3.0
+ version: 11.3.2
'@vben-core/composables':
specifier: workspace:*
version: link:../@core/composables
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-i18n:
specifier: 'catalog:'
- version: 11.3.0(vue@3.5.30(typescript@5.9.3))
+ version: 11.3.2(vue@3.5.32(typescript@6.0.2))
packages/preferences:
dependencies:
@@ -2121,19 +2200,19 @@ importers:
version: link:../@core/base/typings
pinia:
specifier: ^3.0.4
- version: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ version: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
pinia-plugin-persistedstate:
specifier: 'catalog:'
- 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)))
+ version: 4.7.1(@nuxt/kit@4.4.2(magicast@0.5.2))(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))
secure-ls:
specifier: 'catalog:'
version: 2.0.0
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
packages/styles:
dependencies:
@@ -2147,11 +2226,11 @@ importers:
specifier: workspace:*
version: link:../@core/base/typings
vue:
- specifier: ^3.5.30
- version: 3.5.30(typescript@5.9.3)
+ specifier: ^3.5.32
+ version: 3.5.32(typescript@6.0.2)
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
packages/utils:
dependencies:
@@ -2163,13 +2242,13 @@ importers:
version: link:../@core/base/typings
vue-router:
specifier: 'catalog:'
- version: 5.0.4(@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))
+ version: 5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
scripts/turbo-run:
dependencies:
'@clack/prompts':
specifier: 'catalog:'
- version: 1.1.0
+ version: 1.2.0
'@vben/node-utils':
specifier: workspace:*
version: link:../../internal/node-utils
@@ -2197,8 +2276,8 @@ importers:
packages:
- '@algolia/abtesting@1.15.2':
- resolution: {integrity: sha512-rF7vRVE61E0QORw8e2NNdnttcl3jmFMWS9B4hhdga12COe+lMa26bQLfcBn/Nbp9/AF/8gXdaRCPsVns3CnjsA==}
+ '@algolia/abtesting@1.16.1':
+ resolution: {integrity: sha512-Xxk4l00pYI+jE0PNw8y0MvsQWh5278WRtZQav8/BMMi3HKi2xmeuqe11WJ3y8/6nuBHdv39w76OpJb09TMfAVQ==}
engines: {node: '>= 14.0.0'}
'@algolia/autocomplete-core@1.17.7':
@@ -2221,56 +2300,56 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/client-abtesting@5.49.2':
- resolution: {integrity: sha512-XyvKCm0RRmovMI/ChaAVjTwpZhXdbgt3iZofK914HeEHLqD1MUFFVLz7M0+Ou7F56UkHXwRbpHwb9xBDNopprQ==}
+ '@algolia/client-abtesting@5.50.1':
+ resolution: {integrity: sha512-4peZlPXMwTOey9q1rQKMdCnwZb/E95/1e+7KujXpLLSh0FawJzg//U2NM+r4AiJy4+naT2MTBhj0K30yshnVTA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-analytics@5.49.2':
- resolution: {integrity: sha512-jq/3qvtmj3NijZlhq7A1B0Cl41GfaBpjJxcwukGsYds6aMSCWrEAJ9pUqw/C9B3hAmILYKl7Ljz3N9SFvekD3Q==}
+ '@algolia/client-analytics@5.50.1':
+ resolution: {integrity: sha512-i+aWHHG8NZvGFHtPeMZkxL2Loc6Fm7iaRo15lYSMx8gFL+at9vgdWxhka7mD1fqxkrxXsQstUBCIsSY8FvkEOw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-common@5.49.2':
- resolution: {integrity: sha512-bn0biLequn3epobCfjUqCxlIlurLr4RHu7RaE4trgN+RDcUq6HCVC3/yqq1hwbNYpVtulnTOJzcaxYlSr1fnuw==}
+ '@algolia/client-common@5.50.1':
+ resolution: {integrity: sha512-Hw52Fwapyk/7hMSV/fI4+s3H9MGZEUcRh4VphyXLAk2oLYdndVUkc6KBi0zwHSzwPAr+ZBwFPe2x6naUt9mZGw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-insights@5.49.2':
- resolution: {integrity: sha512-z14wfFs1T3eeYbCArC8pvntAWsPo9f6hnUGoj8IoRUJTwgJiiySECkm8bmmV47/x0oGHfsVn3kBdjMX0yq0sNA==}
+ '@algolia/client-insights@5.50.1':
+ resolution: {integrity: sha512-Bn/wtwhJ7p1OD/6pY+Zzn+zlu2N/SJnH46md/PAbvqIzmjVuwjNwD4y0vV5Ov8naeukXdd7UU9v550+v8+mtlg==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@5.49.2':
- resolution: {integrity: sha512-GpRf7yuuAX93+Qt0JGEJZwgtL0MFdjFO9n7dn8s2pA9mTjzl0Sc5+uTk1VPbIAuf7xhCP9Mve+URGb6J+EYxgA==}
+ '@algolia/client-personalization@5.50.1':
+ resolution: {integrity: sha512-0V4Tu0RWR8YxkgI9EPVOZHGE4K5pEIhkLNN0CTkP/rnPsqaaSQpNMYW3/mGWdiKOWbX0iVmwLB9QESk3H0jS5g==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-query-suggestions@5.49.2':
- resolution: {integrity: sha512-HZwApmNkp0DiAjZcLYdQLddcG4Agb88OkojiAHGgcm5DVXobT5uSZ9lmyrbw/tmQBJwgu2CNw4zTyXoIB7YbPA==}
+ '@algolia/client-query-suggestions@5.50.1':
+ resolution: {integrity: sha512-jofcWNYMXJDDr87Z2eivlWY6o71Zn7F7aOvQCXSDAo9QTlyf7BhXEsZymLUvF0O1yU9Q9wvrjAWn8uVHYnAvgw==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-search@5.49.2':
- resolution: {integrity: sha512-y1IOpG6OSmTpGg/CT0YBb/EAhR2nsC18QWp9Jy8HO9iGySpcwaTvs5kHa17daP3BMTwWyaX9/1tDTDQshZzXdg==}
+ '@algolia/client-search@5.50.1':
+ resolution: {integrity: sha512-OteRb8WubcmEvU0YlMJwCXs3Q6xrdkb0v50/qZBJP1TF0CvujFZQM++9BjEkTER/Jr9wbPHvjSFKnbMta0b4dQ==}
engines: {node: '>= 14.0.0'}
- '@algolia/ingestion@1.49.2':
- resolution: {integrity: sha512-YYJRjaZ2bqk923HxE4um7j/Cm3/xoSkF2HC2ZweOF8cXL3sqnlndSUYmCaxHFjNPWLaSHk2IfssX6J/tdKTULw==}
+ '@algolia/ingestion@1.50.1':
+ resolution: {integrity: sha512-0GmfSgDQK6oiIVXnJvGxtNFOfosBspRTR7csCOYCTL1P8QtxX2vDCIKwTM7xdSAEbJaZ43QlWg25q0Qdsndz8Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/monitoring@1.49.2':
- resolution: {integrity: sha512-9WgH+Dha39EQQyGKCHlGYnxW/7W19DIrEbCEbnzwAMpGAv1yTWCHMPXHxYa+LcL3eCp2V/5idD1zHNlIKmHRHg==}
+ '@algolia/monitoring@1.50.1':
+ resolution: {integrity: sha512-ySuigKEe4YjYV3si8NVk9BHQpFj/1B+ON7DhhvTvbrZJseHQQloxzq0yHwKmznSdlO6C956fx4pcfOKkZClsyg==}
engines: {node: '>= 14.0.0'}
- '@algolia/recommend@5.49.2':
- resolution: {integrity: sha512-K7Gp5u+JtVYgaVpBxF5rGiM+Ia8SsMdcAJMTDV93rwh00DKNllC19o1g+PwrDjDvyXNrnTEbofzbTs2GLfFyKA==}
+ '@algolia/recommend@5.50.1':
+ resolution: {integrity: sha512-Cp8T/B0gVmjFlzzp6eP47hwKh5FGyeqQp1N48/ANDdvdiQkPqLyFHQVDwLBH0LddfIPQE+yqmZIgmKc82haF4A==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-browser-xhr@5.49.2':
- resolution: {integrity: sha512-3UhYCcWX6fbtN8ABcxZlhaQEwXFh3CsFtARyyadQShHMPe3mJV9Wel4FpJTa+seugRkbezFz0tt6aPTZSYTBuA==}
+ '@algolia/requester-browser-xhr@5.50.1':
+ resolution: {integrity: sha512-XKdGGLikfrlK66ZSXh/vWcXZZ8Vg3byDFbJD8pwEvN1FoBRGxhxya476IY2ohoTymLa4qB5LBRlIa+2TLHx3Uw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-fetch@5.49.2':
- resolution: {integrity: sha512-G94VKSGbsr+WjsDDOBe5QDQ82QYgxvpxRGJfCHZBnYKYsy/jv9qGIDb93biza+LJWizQBUtDj7bZzp3QZyzhPQ==}
+ '@algolia/requester-fetch@5.50.1':
+ resolution: {integrity: sha512-mBAU6WyVsDwhHyGM+nodt1/oebHxgvuLlOAoMGbj/1i6LygDHZWDgL1t5JEs37x9Aywv7ZGhqbM1GsfZ54sU6g==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@5.49.2':
- resolution: {integrity: sha512-UuihBGHafG/ENsrcTGAn5rsOffrCIRuHMOsD85fZGLEY92ate+BMTUqxz60dv5zerh8ZumN4bRm8eW2z9L11jA==}
+ '@algolia/requester-node-http@5.50.1':
+ resolution: {integrity: sha512-qmo1LXrNKLHvJE6mdQbLnsZAoZvj7VyF2ft4xmbSGWI2WWm87fx/CjUX4kEExt4y0a6T6nEts6ofpUfH5TEE1A==}
engines: {node: '>= 14.0.0'}
'@ant-design/colors@6.0.0':
@@ -2279,6 +2358,9 @@ packages:
'@ant-design/colors@7.2.1':
resolution: {integrity: sha512-lCHDcEzieu4GA3n8ELeZ5VQ8pKQAWcGGLRTQ50aQM2iqPpq2evTxER84jfdPvsPAtEcZ7m44NI45edFMo8oOYQ==}
+ '@ant-design/colors@8.0.1':
+ resolution: {integrity: sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==}
+
'@ant-design/fast-color@2.0.6':
resolution: {integrity: sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==}
engines: {node: '>=8.x'}
@@ -2293,87 +2375,87 @@ packages:
'@ant-design/icons-vue@7.0.1':
resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@antdv-next/cssinjs@1.0.5':
- resolution: {integrity: sha512-cFecBDMXiHhJk+jm5INk0g5G7CgyW9zzT5t1VJKk4rpVU/s0Fq/O1Xf24+TC+4wJgcpLEsDGnQo6ByZre9FmEg==}
+ '@antdv-next/cssinjs@1.0.6':
+ resolution: {integrity: sha512-8NL+AzjFZVHfG9A2l+r4rNWdRfbS5FFFozGU9jVl7WNgd7y+wEYSzl+qvRjJuqd3IryacrDfsTxIgcSQkVlr5Q==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@antdv-next/icons@1.0.5':
- resolution: {integrity: sha512-gPUuhhB449hwnLZLS3j+CYIPGowpu2jJQJXX9vLT5insbmmFlizp9RwEH8zLqQOmLw7srSh87xnzGj6uzXW7fA==}
+ '@antdv-next/icons@1.0.6':
+ resolution: {integrity: sha512-SCPe/otLTmOEVoAdrZ/fn5pr1wlA1Tbzhk908gWPDnjSLEPIcv4n0Feh416RKj1oe8PKbPIC95BH+HaBXybojg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@antfu/install-pkg@1.1.0':
resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==}
- '@apideck/better-ajv-errors@0.3.6':
- resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
+ '@apideck/better-ajv-errors@0.3.7':
+ resolution: {integrity: sha512-TajUJwGWbDwkCx/CZi7tRE8PVB7simCvKJfHUsSdvps+aTM/PDPP4gkLmKnc+x3CE//y9i/nj74GqdL/hwk7Iw==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
- '@ast-grep/napi-darwin-arm64@0.42.0':
- resolution: {integrity: sha512-HOPvjsrsASvfkRJGCd/++KZvfDCtBx6v8DKTEzzlc6fQJlhiRMPKe8T4d5I2T2rgV5pHsyJLSBLqEK7m346NTw==}
+ '@ast-grep/napi-darwin-arm64@0.42.1':
+ resolution: {integrity: sha512-VtO4DX20ODCfRBwv1I71lZx+qlrhlMbt9Rpo3LozoaUpHnLmyFMBSgpUal5KTd1SCKUK8ekJGgxpKWo27H4AVQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@ast-grep/napi-darwin-x64@0.42.0':
- resolution: {integrity: sha512-q3jt+a6kDbXgbCSuIqaxjgLbTCDYGE2yb1o6metpsGbW+xVZR4ATYMJ8izyYhn2sQungTfUNn2/vo/2Bhbvpxg==}
+ '@ast-grep/napi-darwin-x64@0.42.1':
+ resolution: {integrity: sha512-V2uaKP6QZLb60iFHK0IiXAcwSoUliiDJ3c1zLLzHnBFyCbTKC4b3L3XtkiyKsnpET+uzY7hQLpTIAhW5aOCX4w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@ast-grep/napi-linux-arm64-gnu@0.42.0':
- resolution: {integrity: sha512-+e2ThyRiBZATlcdgfrD7uYy9oWVS6/AdUTnC3xOwR+lCz80lr87kmcmeK6XN6hBwaqncBBkKV3ECMA8ibZPUZA==}
+ '@ast-grep/napi-linux-arm64-gnu@0.42.1':
+ resolution: {integrity: sha512-wmt59yzvcZT4Z5XpxB1B1FoFrc32l0vmy2G7yrY2lG9qP2M157mWdp1T50h2XoYrotyRhCyLDXP70SiTZHZkaQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@ast-grep/napi-linux-arm64-musl@0.42.0':
- resolution: {integrity: sha512-f/oW3KaHuOMuBkCcvI6R71xM9SvkdUVKHhbJEtBFo5D1j6CjY9ipWdjlk9mOJ2KLLM6uYdjjvkJkBPlPuFTukg==}
+ '@ast-grep/napi-linux-arm64-musl@0.42.1':
+ resolution: {integrity: sha512-cnU+H0drvdkApQDJEcBsYGlPq2gk3l2Xxq0y8EmcxAXYXDNkz+Gc2vfvyM7ib2jD9Y51+cQIsb0RFzA2g9VnZQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@ast-grep/napi-linux-x64-gnu@0.42.0':
- resolution: {integrity: sha512-y9T/Tm6V6zkmcAJlWXUO0ACYLSlk5o5NVU+AYun7NzDWIM86Y3lnoDF5WxeZKonVoaGAnkCXVlNH8Tsr/NTQWw==}
+ '@ast-grep/napi-linux-x64-gnu@0.42.1':
+ resolution: {integrity: sha512-gY+PtqbFtFlR8rCL9F6GEPuymqLhh2eG/e8Ly01Z/S5x3e357nNaF69xAvNRpYi/HnEUZ5cE1MzshDCjubqE1A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@ast-grep/napi-linux-x64-musl@0.42.0':
- resolution: {integrity: sha512-t1PwL6YweDL63QDK3TC9QTKROcVgN4XoMxlp/zN2NYvCUM90mSvqh/Py/ouchzluHaqCzEeEp9089WFEDWwQOA==}
+ '@ast-grep/napi-linux-x64-musl@0.42.1':
+ resolution: {integrity: sha512-yDTlIgFOzglpzs3Ua9w43uVeEW4csf80F5/n2FqCK5pip4Iyfu21Q+M8iC9AmTRl/OGHVI48ieuPwOD9i1i6hA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@ast-grep/napi-win32-arm64-msvc@0.42.0':
- resolution: {integrity: sha512-bxKLXF1JmU33BoJKrbWcGsG7Xmk2zCQaUjmeHrxhgBhg2w2zo3CSf5S6DOyOp13hefgLXBLn6oXNzXgqpX/+lA==}
+ '@ast-grep/napi-win32-arm64-msvc@0.42.1':
+ resolution: {integrity: sha512-6WQhKEfZmtfMSIOzluMoBaQhNqfRKXzj5y2YA2U0Y3x7HxNAZBO067y8xlSMddKFN/FtCwft8GFktFxqSYWl1w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@ast-grep/napi-win32-ia32-msvc@0.42.0':
- resolution: {integrity: sha512-+/XbHDN+558rXwB2BylWPHj/cczRGDKivToHS2120TGQePmUetspu93wltqzAD7SVJnBILc2sEK1T1/jutZEvw==}
+ '@ast-grep/napi-win32-ia32-msvc@0.42.1':
+ resolution: {integrity: sha512-ET2vRrsHo0e4JJbCrejzDcDPsfTmRaYK9VIpq1MqXXAUvLoiMly+cQYZ64MWdXTlgITKMXCYxhCbFPTn/9XZaQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@ast-grep/napi-win32-x64-msvc@0.42.0':
- resolution: {integrity: sha512-/5PTpk7EFuqwdJyKleX2gPztL5j73Nq/cdkEJQq1Fbx+ze+UM75JniW3D7J7WZygN58+EN9DAxpc2QOlK32urQ==}
+ '@ast-grep/napi-win32-x64-msvc@0.42.1':
+ resolution: {integrity: sha512-NAeA2Q6jp7F9uXtSuG12c1xjTzipXFCTvuAcEBnsTwBXq0kdPV6H6Y4GZJVcDhsHk3TX4sGlQGkuV/6FT2Ngig==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@ast-grep/napi@0.42.0':
- resolution: {integrity: sha512-f3DAjeC657EqbWN2In+girgbpvnKMV77bONyhuezXK4XQtvbGCB55u3CnNvQv6EP0caIBTtDHqO5CVyO6qY4LQ==}
+ '@ast-grep/napi@0.42.1':
+ resolution: {integrity: sha512-+YEv9ElJi9azr8AYII79NxYXQRJsrUy1kUqZfxZfvPM7rhs3174mzB+qEE9Pl3sVKAJS5cevyT4lgLNV0AZK6A==}
engines: {node: '>= 10'}
'@babel/code-frame@7.29.0':
@@ -2392,8 +2474,8 @@ packages:
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@8.0.0-rc.2':
- resolution: {integrity: sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==}
+ '@babel/generator@8.0.0-rc.3':
+ resolution: {integrity: sha512-em37/13/nR320G4jab/nIIHZgc2Wz2y/D39lxnTyxB4/D/omPQncl/lSdlnJY1OhQcRGugTSIF2l/69o31C9dA==}
engines: {node: ^20.19.0 || >=22.12.0}
'@babel/helper-annotate-as-pure@7.27.3':
@@ -2475,8 +2557,8 @@ packages:
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@8.0.0-rc.2':
- resolution: {integrity: sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==}
+ '@babel/helper-validator-identifier@8.0.0-rc.3':
+ resolution: {integrity: sha512-8AWCJ2VJJyDFlGBep5GpaaQ9AAaE/FjAcrqI7jyssYhtL7WGV0DOKpJsQqM037xDbpRLHXsY8TwU7zDma7coOw==}
engines: {node: ^20.19.0 || >=22.12.0}
'@babel/helper-validator-option@7.27.1':
@@ -2496,8 +2578,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@8.0.0-rc.2':
- resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==}
+ '@babel/parser@8.0.0-rc.3':
+ resolution: {integrity: sha512-B20dvP3MfNc/XS5KKCHy/oyWl5IA6Cn9YjXRdDlCjNmUFrjvLXMNUfQq/QUy9fnG2gYkKKcrto2YaF9B32ToOQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
@@ -2933,8 +3015,8 @@ packages:
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
- '@babel/types@8.0.0-rc.2':
- resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==}
+ '@babel/types@8.0.0-rc.3':
+ resolution: {integrity: sha512-mOm5ZrYmphGfqVWoH5YYMTITb3cDXsFgmvFlvkvWDMsR9X8RFnt7a0Wb6yNIdoFsiMO9WjYLq+U/FMtqIYAF8Q==}
engines: {node: ^20.19.0 || >=22.12.0}
'@bpmn-io/cm-theme@0.1.0-alpha.2':
@@ -2965,8 +3047,8 @@ packages:
resolution: {integrity: sha512-MNe3M7XUuUk0OvrIIXM0m7M2hNLouxPqJyqd6+XCDMy9dsan0zLA0vl7Cu8ypCbsAlViIGIvYdkjzZNiXd3gng==}
engines: {node: '>= 20.12.0'}
- '@bpmn-io/properties-panel@3.40.4':
- resolution: {integrity: sha512-0u3bUbvLnD/DGW/SAG52zh9LmGX6YOwaavh0ac3CuFN7+Ba/Uf1kkZzEBHi+Qo8xkDtL5p2xxeP+2sIO67hJyA==}
+ '@bpmn-io/properties-panel@3.40.6':
+ resolution: {integrity: sha512-lviXOp3z99BmdOoTazW13M6s4CyuCveygHL4g8v1z6Tp6rar4irBS//DggNLWha26Ae6vUfvHPnwcNjuHsNDjg==}
'@bufbuild/protobuf@2.11.0':
resolution: {integrity: sha512-sBXGT13cpmPR5BMgHE6UEEfEaShh5Ror6rfN3yEK5si7QVrtZg8LEPQb0VVhiLRUslD2yLnXtnRzG035J/mZXQ==}
@@ -2974,14 +3056,14 @@ packages:
'@cacheable/memory@2.0.8':
resolution: {integrity: sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==}
- '@cacheable/utils@2.4.0':
- resolution: {integrity: sha512-PeMMsqjVq+bF0WBsxFBxr/WozBJiZKY0rUojuaCoIaKnEl3Ju1wfEwS+SV1DU/cSe8fqHIPiYJFif8T3MVt4cQ==}
+ '@cacheable/utils@2.4.1':
+ resolution: {integrity: sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==}
'@camunda/feel-builtins@1.1.0':
resolution: {integrity: sha512-aBIGrXkURxDxBulrkaF1AOV261RSyukA5UWGRgDiULvlJ+P6/dYX7boBuO8Be9OP/hjAjZoTbK1kKcuqfCp7ng==}
- '@carbon/icons@11.76.0':
- resolution: {integrity: sha512-e9XnUWPgxsyvgCL/ti/Ee2fItqRs/WrHkwy7GPqbEGdGZKSd9pBvO+jN7nxBT5TLdA50q26t5hR0U2taEyc5Kg==}
+ '@carbon/icons@11.78.0':
+ resolution: {integrity: sha512-EWqJbFSSpV0UTc8/9SiTzPcEcqmryKwospDyzC0+nFIrCtlZPFuma2jpdoiJ87TMCx/Bm1pD5lGqucxuMZkwnQ==}
'@changesets/apply-release-plan@7.1.0':
resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==}
@@ -3044,11 +3126,11 @@ packages:
'@changesets/write@0.4.0':
resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==}
- '@clack/core@1.1.0':
- resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==}
+ '@clack/core@1.2.0':
+ resolution: {integrity: sha512-qfxof/3T3t9DPU/Rj3OmcFyZInceqj/NVtO9rwIuJqCUgh32gwPjpFQQp/ben07qKlhpwq7GzfWpST4qdJ5Drg==}
- '@clack/prompts@1.1.0':
- resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==}
+ '@clack/prompts@1.2.0':
+ resolution: {integrity: sha512-4jmztR9fMqPMjz6H/UZXj0zEmE43ha1euENwkckKKel4XpSfokExPo5AiVStdHSAlHekz4d0CA/r45Ok1E4D3w==}
'@cloudflare/kv-asset-handler@0.4.2':
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
@@ -3060,8 +3142,8 @@ packages:
'@codemirror/commands@6.10.3':
resolution: {integrity: sha512-JFRiqhKu+bvSkDLI+rUhJwSxQxYb759W5GBezE8Uc8mHLqC9aV/9aTC7yJSqCtB3F00pylrLCwnyS91Ap5ej4Q==}
- '@codemirror/language@6.12.2':
- resolution: {integrity: sha512-jEPmz2nGGDxhRTg3lTpzmIyGKxz3Gp3SJES4b0nAuE5SWQoKdT5GoQ69cwMmFd+wvFUhYirtDTr0/DRHpQAyWg==}
+ '@codemirror/language@6.12.3':
+ resolution: {integrity: sha512-QwCZW6Tt1siP37Jet9Tb02Zs81TQt6qQrZR2H+eGMcFsL1zMrk2/b9CLC7/9ieP1fjIUMgviLWMmgiHoJrj+ZA==}
'@codemirror/lint@6.9.5':
resolution: {integrity: sha512-GElsbU9G7QT9xXhpUg1zWGmftA/7jamh+7+ydKRuT0ORpWS3wOSP0yT1FOlIZa7mIJjpVPipErsyvVqB9cfTFA==}
@@ -3069,8 +3151,8 @@ packages:
'@codemirror/state@6.6.0':
resolution: {integrity: sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==}
- '@codemirror/view@6.40.0':
- resolution: {integrity: sha512-WA0zdU7xfF10+5I3HhUUq3kqOx3KjqmtQ9lqZjfK7jtYk4G72YW9rezcSywpaUMCWOMlq+6E0pO1IWg1TNIhtg==}
+ '@codemirror/view@6.41.0':
+ resolution: {integrity: sha512-6H/qadXsVuDY219Yljhohglve8xf4B8xJkVOEWfA5uiYKiTFppjqsvsfR5iPA0RbvRBoOyTZpbLIxe9+0UR8xA==}
'@commitlint/cli@20.5.0':
resolution: {integrity: sha512-yNkyN/tuKTJS3wdVfsZ2tXDM4G4Gi7z+jW54Cki8N8tZqwKBltbIvUUrSbT4hz1bhW/h0CdR+5sCSpXD+wMKaQ==}
@@ -3141,49 +3223,49 @@ packages:
resolution: {integrity: sha512-ZJoS8oSq2CAZEpc/YI9SulLrdiIyXeHb/OGqGrkUP6Q7YV+0ouNAa7GjqRdXeQPncHQIDz/jbCTlHScvYvO/gA==}
engines: {node: '>=v18'}
- '@conventional-changelog/git-client@2.6.0':
- resolution: {integrity: sha512-T+uPDciKf0/ioNNDpMGc8FDsehJClZP0yR3Q5MN6wE/Y/1QZ7F+80OgznnTCOlMEG4AV0LvH2UJi3C/nBnaBUg==}
+ '@conventional-changelog/git-client@2.7.0':
+ resolution: {integrity: sha512-j7A8/LBEQ+3rugMzPXoKYzyUPpw/0CBQCyvtTR7Lmu4olG4yRC/Tfkq79Mr3yuPs0SUitlO2HwGP3gitMJnRFw==}
engines: {node: '>=18'}
peerDependencies:
conventional-commits-filter: ^5.0.0
- conventional-commits-parser: ^6.3.0
+ conventional-commits-parser: ^6.4.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-bundled-dicts@10.0.0':
+ resolution: {integrity: sha512-ci410HEkng2582oOjlRHQtlGXwh+rUC/mVcN9dObLHpKhvPgzn2S6vT56pARstxxZpcCUG/oLhn3dCqdJlVzmA==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-json-reporter@9.7.0':
- resolution: {integrity: sha512-6xpGXlMtQA3hV2BCAQcPkpx9eI12I0o01i9eRqSSEDKtxuAnnrejbcCpL+5OboAjTp3/BSeNYSnhuWYLkSITWQ==}
- engines: {node: '>=20'}
+ '@cspell/cspell-json-reporter@10.0.0':
+ resolution: {integrity: sha512-hq5dui2ngYMZKbBauX7K1tkqlu81sX/uaCO49ZJLPjeZsE1auZLtHehDLfAr/ZXoj/dLYeQMSKiaJyE+qLVPHA==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-performance-monitor@9.7.0':
- resolution: {integrity: sha512-w1PZIFXuvjnC6mQHyYAFnrsn5MzKnEcEkcK1bj4OG00bAt7WX2VUA/eNNt9c1iHozCQ+FcRYlfbGxuBmNyzSgw==}
- engines: {node: '>=20.18'}
+ '@cspell/cspell-performance-monitor@10.0.0':
+ resolution: {integrity: sha512-2vMh2pLt2dg/ArYvWjMP4v9HCm0pRhONsEJyc8oHdZyOYvX7trixX894I0M39+VBf3yWtPCEgYRh1UDXNIZRig==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-pipe@9.7.0':
- resolution: {integrity: sha512-iiisyRpJciU9SOHNSi0ZEK0pqbEMFRatI/R4O+trVKb+W44p4MNGClLVRWPGUmsFbZKPJL3jDtz0wPlG0/JCZA==}
- engines: {node: '>=20'}
+ '@cspell/cspell-pipe@10.0.0':
+ resolution: {integrity: sha512-qcgHhQvtEX8LSwIVsWrdUgiGim52lN3jT+ghlkdp72v+nBcGKsS2frEKTmbGLug+xcqppkzs6Q6VmsFp1MGtfA==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-resolver@9.7.0':
- resolution: {integrity: sha512-uiEgS238mdabDnwavo6HXt8K98jlh/jpm7NONroM9NTr9rzck2VZKD2kXEj85wDNMtRsRXNoywTjwQ8WTB6/+w==}
- engines: {node: '>=20'}
+ '@cspell/cspell-resolver@10.0.0':
+ resolution: {integrity: sha512-8H+IUDB7SmrpcRugQ5f55qG81ZShk6nQRk+natLz41TEY98D8/LCmjHEkh/vhDPph9pVJmNUp7JcM2E1UHEa2g==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-service-bus@9.7.0':
- resolution: {integrity: sha512-fkqtaCkg4jY/FotmzjhIavbXuH0AgUJxZk78Ktf4XlhqOZ4wDeUWrCf220bva4mh3TWiLx/ae9lIlpl59Vx6hA==}
- engines: {node: '>=20'}
+ '@cspell/cspell-service-bus@10.0.0':
+ resolution: {integrity: sha512-V7eigqg/TOoKwNK4Q18wr9KGxA8U5SFcoWVS8RyAxv4mQ+yNKHhvHEbRBifjPbQDer66afOrclb2UbqkIy2SOw==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-types@9.7.0':
- resolution: {integrity: sha512-Tdfx4eH2uS+gv9V9NCr3Rz+c7RSS6ntXp3Blliud18ibRUlRxO9dTaOjG4iv4x0nAmMeedP1ORkEpeXSkh2QiQ==}
- engines: {node: '>=20'}
+ '@cspell/cspell-types@10.0.0':
+ resolution: {integrity: sha512-IQA++Idqb8fZzkCbHq3+T+9yG9WpeaBxomOrG2KcR/Pj0CgnovzuApYKL2cc35UWLePboKinMeqEPiweFpHVug==}
+ engines: {node: '>=22.18.0'}
- '@cspell/cspell-worker@9.7.0':
- resolution: {integrity: sha512-cjEApFF0aOAa1vTUk+e7xP8ofK7iC7hsRzj1FmvvVQz8PoLWPRaq+1bT89ypPsZQvavqm5sIgb97S60/aW4TVg==}
- engines: {node: '>=20.18'}
+ '@cspell/cspell-worker@10.0.0':
+ resolution: {integrity: sha512-V5bjMldNksilnja3fu8muQmkW5/guyua1yNVOhoE2r7othSvjuDlGMl8g2bQSrWjp+UXu0dP/BEZ6JC/IfNwTA==}
+ engines: {node: '>=22.18.0'}
'@cspell/dict-ada@4.1.1':
resolution: {integrity: sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ==}
@@ -3224,8 +3306,8 @@ packages:
'@cspell/dict-docker@1.1.17':
resolution: {integrity: sha512-OcnVTIpHIYYKhztNTyK8ShAnXTfnqs43hVH6p0py0wlcwRIXe5uj4f12n7zPf2CeBI7JAlPjEsV0Rlf4hbz/xQ==}
- '@cspell/dict-dotnet@5.0.12':
- resolution: {integrity: sha512-FiV934kNieIjGTkiApu/WKvLYi/KBpvfWB2TSqpDQtmXZlt3uSa5blwblO1ZC8OvjH8RCq/31H5IdEYmTaZS7A==}
+ '@cspell/dict-dotnet@5.0.13':
+ resolution: {integrity: sha512-xPp7jMnFpOri7tzmqmm/dXMolXz1t2bhNqxYkOyMqXhvs08oc7BFs+EsbDY0X7hqiISgeFZGNqn0dOCr+ncPYw==}
'@cspell/dict-elixir@4.0.8':
resolution: {integrity: sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==}
@@ -3233,11 +3315,11 @@ packages:
'@cspell/dict-en-common-misspellings@2.1.12':
resolution: {integrity: sha512-14Eu6QGqyksqOd4fYPuRb58lK1Va7FQK9XxFsRKnZU8LhL3N+kj7YKDW+7aIaAN/0WGEqslGP6lGbQzNti8Akw==}
- '@cspell/dict-en-gb-mit@3.1.21':
- resolution: {integrity: sha512-7Q4SDABCIk3ZAngrfSlSZEE+8Uiiu3wssBjC6t7iN++SM2wMjqSnHaHh1GJoLONI3+5m3XsYakZ5KnYuAXqncQ==}
+ '@cspell/dict-en-gb-mit@3.1.22':
+ resolution: {integrity: sha512-xE5Vg6gGdMkZ1Ep6z9SJMMioGkkT1GbxS5Mm0U3Ey1/H68P0G7cJcyiVr1CARxFbLqKE4QUpoV1o6jz1Z5Yl9Q==}
- '@cspell/dict-en_us@4.4.32':
- resolution: {integrity: sha512-37NZrwnI9FyZLtUolgOtA2Xy2u1dYIiwQMqwVFKKd8tcyaM8SgONFqbs6c/rzr2JcL0n6ziCy/ptBQSREgfBMw==}
+ '@cspell/dict-en_us@4.4.33':
+ resolution: {integrity: sha512-zWftVqfUStDA37wO1ZNDN1qMJOfcxELa8ucHW8W8wBAZY3TK5Nb6deLogCK/IJi/Qljf30dwwuqqv84Qqle9Tw==}
'@cspell/dict-filetypes@3.0.18':
resolution: {integrity: sha512-yU7RKD/x1IWmDLzWeiItMwgV+6bUcU/af23uS0+uGiFUbsY1qWV/D4rxlAAO6Z7no3J2z8aZOkYIOvUrJq0Rcw==}
@@ -3343,8 +3425,8 @@ packages:
'@cspell/dict-shell@1.1.2':
resolution: {integrity: sha512-WqOUvnwcHK1X61wAfwyXq04cn7KYyskg90j4lLg3sGGKMW9Sq13hs91pqrjC44Q+lQLgCobrTkMDw9Wyl9nRFA==}
- '@cspell/dict-software-terms@5.2.1':
- resolution: {integrity: sha512-a25D44ZcccvimNbUgpY94UnqRT46e2PjFf4dgxKXHoMCEcH0NqI4682k4PYsT1AmWMGn7EAA8tS2tN5yxhkm5g==}
+ '@cspell/dict-software-terms@5.2.2':
+ resolution: {integrity: sha512-0CaYd6TAsKtEoA7tNswm1iptEblTzEe3UG8beG2cpSTHk7afWIVMtJLgXDv0f/Li67Lf3Z1Jf3JeXR7GsJ2TRw==}
'@cspell/dict-sql@2.2.1':
resolution: {integrity: sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==}
@@ -3367,25 +3449,25 @@ packages:
'@cspell/dict-zig@1.0.0':
resolution: {integrity: sha512-XibBIxBlVosU06+M6uHWkFeT0/pW5WajDRYdXG2CgHnq85b0TI/Ks0FuBJykmsgi2CAD3Qtx8UHFEtl/DSFnAQ==}
- '@cspell/dynamic-import@9.7.0':
- resolution: {integrity: sha512-Ws36IYvtS/8IN3x6K9dPLvTmaArodRJmzTn2Rkf2NaTnIYWhRuFzsP3SVVO59NN3fXswAEbmz5DSbVUe8bPZHg==}
- engines: {node: '>=20'}
+ '@cspell/dynamic-import@10.0.0':
+ resolution: {integrity: sha512-fMqu/5Ma1Q5ZCR/Par+Q4pvaTKmx5pKZzQmkwld2hNounVdk2OaIPM9MzpNn6I1mLk5J+wTnIZmfcWNAzNP9aQ==}
+ engines: {node: '>=22.18.0'}
- '@cspell/filetypes@9.7.0':
- resolution: {integrity: sha512-Ln9e/8wGOyTeL3DCCs6kwd18TSpTw3kxsANjTrzLDASrX4cNmAdvc9J5dcIuBHPaqOAnRQxuZbzUlpRh73Y24w==}
- engines: {node: '>=20'}
+ '@cspell/filetypes@10.0.0':
+ resolution: {integrity: sha512-UP57j9yrDtlCHpFxc/eGho1m8DP5olfu9KRWwd5fiqL9nMSE2rUJtPzQyvqmDwO5bVZt3B+fTVdo4gxuiqw25A==}
+ engines: {node: '>=22.18.0'}
- '@cspell/rpc@9.7.0':
- resolution: {integrity: sha512-VnZ4ABgQeoS4RwofcePkDP7L6tf3Kh5D7LQKoyRM4R6XtfSsYefym6XKaRl3saGtthH5YyjgNJ0Tgdjen4wAAw==}
- engines: {node: '>=20.18'}
+ '@cspell/rpc@10.0.0':
+ resolution: {integrity: sha512-QrpOZMwz2pAjvl6Hky2PauYoMpLCASn3osjn7uKUbgFV70sahyj6tmx4rRgRX7vHu2WQLZev+YsuO4EujiBDOg==}
+ engines: {node: '>=22.18.0'}
- '@cspell/strong-weak-map@9.7.0':
- resolution: {integrity: sha512-5xbvDASjklrmy88O6gmGXgYhpByCXqOj5wIgyvwZe2l83T1bE+iOfGI4pGzZJ/mN+qTn1DNKq8BPBPtDgb7Q2Q==}
- engines: {node: '>=20'}
+ '@cspell/strong-weak-map@10.0.0':
+ resolution: {integrity: sha512-JRsato0s2IjYdsng+AGL6oAqgZVQgih5aWKdmxs21H6EdhMaoFDmRE5kXm/RT5a6OMdtnzQM9DqeToqBChWIOQ==}
+ engines: {node: '>=22.18.0'}
- '@cspell/url@9.7.0':
- resolution: {integrity: sha512-ZaaBr0pTvNxmyUbIn+nVPXPr383VqJzfUDMWicgTjJIeo2+T2hOq2kNpgpvTIrWtZrsZnSP8oXms1+sKTjcvkw==}
- engines: {node: '>=20'}
+ '@cspell/url@10.0.0':
+ resolution: {integrity: sha512-q+0pHQ8DbqjemyaOn/mTtBRbCuKDqhnsVbZ6J9zkTsxPgMpccjy0s5oLXwomfrrxMRBH+UcbERwtUmE+SbnoIQ==}
+ engines: {node: '>=22.18.0'}
'@css-render/plugin-bem@0.15.14':
resolution: {integrity: sha512-QK513CJ7yEQxm/P3EwsI+d+ha8kSOcjGvD6SevM41neEMxdULE+18iuQK6tEChAWMOQNQPLG/Rw3Khb69r5neg==}
@@ -3395,10 +3477,10 @@ packages:
'@css-render/vue3-ssr@0.15.14':
resolution: {integrity: sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@csstools/css-calc@3.1.1':
- resolution: {integrity: sha512-HJ26Z/vmsZQqs/o3a6bgKslXGFAungXGbinULZO3eMsOyNJHeBBZfup5FiZInOghgoM4Hwnmw+OgbJCNg1wwUQ==}
+ '@csstools/css-calc@3.2.0':
+ resolution: {integrity: sha512-bR9e6o2BDB12jzN/gIbjHa5wLJ4UjD1CB9pM7ehlc0ddk6EBz+yYS1EV2MF55/HUxrHcB/hehAyt5vhsA3hx7w==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@csstools/css-parser-algorithms': ^4.0.0
@@ -3410,8 +3492,8 @@ packages:
peerDependencies:
'@csstools/css-tokenizer': ^4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.1':
- resolution: {integrity: sha512-BvqN0AMWNAnLk9G8jnUT77D+mUbY/H2b3uDTvg2isJkHaOufUE2R3AOwxWo7VBQKT1lOdwdvorddo2B/lk64+w==}
+ '@csstools/css-syntax-patches-for-csstree@1.1.3':
+ resolution: {integrity: sha512-SH60bMfrRCJF3morcdk57WklujF4Jr/EsQUzqkarfHXEFcAR1gg7fS/chAE922Sehgzc1/+Tz5H3Ypa1HiEKrg==}
peerDependencies:
css-tree: ^3.2.1
peerDependenciesMeta:
@@ -3474,16 +3556,16 @@ packages:
'@element-plus/icons-vue@2.3.2':
resolution: {integrity: sha512-OzIuTaIfC8QXEPmJvB4Y4kw34rSXdCJzxcD1kFStBvr8bK6X1zQAYDo0CNMjojnfTqRQCJ0I7prlErcoRiET2A==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@emnapi/core@1.9.1':
- resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==}
+ '@emnapi/core@1.9.2':
+ resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==}
- '@emnapi/runtime@1.9.1':
- resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==}
+ '@emnapi/runtime@1.9.2':
+ resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==}
- '@emnapi/wasi-threads@1.2.0':
- resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
+ '@emnapi/wasi-threads@1.2.1':
+ resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
@@ -3516,8 +3598,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.27.4':
- resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
+ '@esbuild/aix-ppc64@0.27.7':
+ resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -3534,8 +3616,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.27.4':
- resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
+ '@esbuild/android-arm64@0.27.7':
+ resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -3552,8 +3634,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.27.4':
- resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
+ '@esbuild/android-arm@0.27.7':
+ resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -3570,8 +3652,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.27.4':
- resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
+ '@esbuild/android-x64@0.27.7':
+ resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -3588,8 +3670,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.27.4':
- resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
+ '@esbuild/darwin-arm64@0.27.7':
+ resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -3606,8 +3688,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.27.4':
- resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
+ '@esbuild/darwin-x64@0.27.7':
+ resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -3624,8 +3706,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.27.4':
- resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
+ '@esbuild/freebsd-arm64@0.27.7':
+ resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -3642,8 +3724,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.27.4':
- resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
+ '@esbuild/freebsd-x64@0.27.7':
+ resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -3660,8 +3742,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.27.4':
- resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
+ '@esbuild/linux-arm64@0.27.7':
+ resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -3678,8 +3760,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.27.4':
- resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
+ '@esbuild/linux-arm@0.27.7':
+ resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -3696,8 +3778,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.27.4':
- resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
+ '@esbuild/linux-ia32@0.27.7':
+ resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -3714,8 +3796,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.27.4':
- resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
+ '@esbuild/linux-loong64@0.27.7':
+ resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -3732,8 +3814,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.27.4':
- resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
+ '@esbuild/linux-mips64el@0.27.7':
+ resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -3750,8 +3832,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.27.4':
- resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
+ '@esbuild/linux-ppc64@0.27.7':
+ resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -3768,8 +3850,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.27.4':
- resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
+ '@esbuild/linux-riscv64@0.27.7':
+ resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -3786,8 +3868,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.27.4':
- resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
+ '@esbuild/linux-s390x@0.27.7':
+ resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -3804,8 +3886,8 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.27.4':
- resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
+ '@esbuild/linux-x64@0.27.7':
+ resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -3816,8 +3898,8 @@ packages:
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-arm64@0.27.4':
- resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
+ '@esbuild/netbsd-arm64@0.27.7':
+ resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -3834,8 +3916,8 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.27.4':
- resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
+ '@esbuild/netbsd-x64@0.27.7':
+ resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
@@ -3846,8 +3928,8 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.27.4':
- resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
+ '@esbuild/openbsd-arm64@0.27.7':
+ resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -3864,8 +3946,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.27.4':
- resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
+ '@esbuild/openbsd-x64@0.27.7':
+ resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -3876,8 +3958,8 @@ packages:
cpu: [arm64]
os: [openharmony]
- '@esbuild/openharmony-arm64@0.27.4':
- resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
+ '@esbuild/openharmony-arm64@0.27.7':
+ resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
@@ -3894,8 +3976,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.27.4':
- resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
+ '@esbuild/sunos-x64@0.27.7':
+ resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -3912,8 +3994,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.27.4':
- resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
+ '@esbuild/win32-arm64@0.27.7':
+ resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -3930,8 +4012,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.27.4':
- resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
+ '@esbuild/win32-ia32@0.27.7':
+ resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -3948,8 +4030,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.27.4':
- resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
+ '@esbuild/win32-x64@0.27.7':
+ resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -3970,21 +4052,21 @@ packages:
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.23.3':
- resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==}
+ '@eslint/config-array@0.23.5':
+ resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/config-helpers@0.5.3':
- resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==}
+ '@eslint/config-helpers@0.5.5':
+ resolution: {integrity: sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/core@1.1.1':
- resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==}
+ '@eslint/core@1.2.1':
+ resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@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/css-tree@4.0.1':
+ resolution: {integrity: sha512-2fCSKRwoUHntYq9J1Lm28s2zeoCSNh1Cbk6Tg7k7ViwOnveIfZwPRFGwBglz+dzw2MHe5w5Fo9+VJfqL9nco2w==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
'@eslint/js@10.0.1':
resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
@@ -3995,14 +4077,18 @@ packages:
eslint:
optional: true
- '@eslint/object-schema@3.0.3':
- resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==}
+ '@eslint/object-schema@3.0.5':
+ resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==}
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}
+ '@eslint/plugin-kit@0.7.1':
+ resolution: {integrity: sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
'@floating-ui/core@1.7.5':
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
@@ -4018,12 +4104,12 @@ packages:
'@form-create/ant-design-vue@3.2.38':
resolution: {integrity: sha512-sXMOyHgD/zipdxEJkaxdQQIGDzaJ79JyThFh2cH3fbYJjEdes2Vaw/BwUGlFlS5lkRV5hqK3YydOaW02AxOfJQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/antd-designer@3.4.0':
resolution: {integrity: sha512-55wFRbsLJ02Fj4+CLJK2HJ628xsQRafzlmz2yhHFk99O8eMl523QpxD/0O4yH7e+azqakxW6H5WoFexG78qSgA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/component-antdv-frame@3.2.31':
resolution: {integrity: sha512-1pg+OsmZLnhIZJvg4dC14R0KNaRVGGN1pxZkY2hf0iFeoKViEMnhsRKAqJzjAf3uGE/2jSyXpjRpRPZi8Egwww==}
@@ -4079,22 +4165,22 @@ packages:
'@form-create/core@3.2.37':
resolution: {integrity: sha512-1Wwr+6xMrL/6XfeeZJtlhMIKOWjwdUxuTiOJEApk+Q+Stsaz15LtKqsffyZTs7mN5DajUGnDxW8MP/myYgABXw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/designer@3.4.0':
resolution: {integrity: sha512-g1vUqX977lIHuWtAIhgLKZGZw87YClA1sJnLOFkweGA5CBJDhqNhvC4N0M1idkuKmCJtS+aweCYmrL2FapjDsw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/element-ui@3.2.38':
resolution: {integrity: sha512-Ctsd7gw8STDlxxJ21M9+Q8b7BY82ILNRTMtY3wAAWKlIqtKsUexxob2IlGfvlFEk8nP78hPUH6ZksjYcm9YkKQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/naive-ui@3.2.38':
resolution: {integrity: sha512-e0RJlubfDa91OKoysa3p5HRhqgMLhOKVyd51O9gxhWHMZdNikbXhhDXEQE8f98JqKg9l2pv6zwkBJvsGj+gAGw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@form-create/utils@3.2.31':
resolution: {integrity: sha512-YcisHXuQEF0r9y2VKS2CB2nMQ2q8EkKvQXp4nPR9sjbsCabPZOXq2n2MrkWDMhwQNwep08/0NCf7z0wslHzyWQ==}
@@ -4122,28 +4208,28 @@ packages:
resolution: {integrity: sha512-RO/9j+URJnSfseWg9ZkEX9p+a3Ousd33DBU7rOafoZB08RqdzxFVYJ2/iM50dkBuD0o7WX7GYt1sLbNgCoE+pA==}
hasBin: true
- '@iconify-json/logos@1.2.10':
- resolution: {integrity: sha512-qxaXKJ6fu8jzTMPQdHtNxlfx6tBQ0jXRbHZIYy5Ilh8Lx9US9FsAdzZWUR8MXV8PnWTKGDFO4ZZee9VwerCyMA==}
+ '@iconify-json/logos@1.2.11':
+ resolution: {integrity: sha512-fOo4pGEatuyuCFNL+cwquYMa2Im0oJHRHV7lt/Qqs5Ode/lPImHCQcfTtPzZj7qYMPb/h8YHN3TG54uEowrjNQ==}
'@iconify-json/octicon@1.2.22':
resolution: {integrity: sha512-6m0IXGRR3ooNDXoQetk4JR8rijoXQGqSKPFsOYBFx7xMJeLgIo1dTRCY8P/4FJbIHUvWj/DfRzkFrPLAW8gHCQ==}
- '@iconify-json/simple-icons@1.2.75':
- resolution: {integrity: sha512-KvcCUbvcBWb0sbqLIxHoY8z5/piXY08wcY9gfMhF+ph3AfzGMaSmZFkUY71HSXAljQngXkgs4bdKdekO0HQWvg==}
+ '@iconify-json/simple-icons@1.2.78':
+ resolution: {integrity: sha512-I3lkNp0Qu7q2iZWkdcf/I2hqGhzK6qxdILh9T7XqowQrnpmG/BayDsiCf6PktDoWlW0U971xA5g+panm+NFrfQ==}
'@iconify-json/vscode-icons@1.2.45':
resolution: {integrity: sha512-ow+ueibMIq79ueM1kv6cOWgHx8jfh1XJQi2RrqMHb4HLbvIBlxpy5PCMvOJXlA68R6fBAHpWQeh6uWx7VKEVsA==}
- '@iconify/json@2.2.454':
- resolution: {integrity: sha512-U1c0+LBtcF4YDQGOVZpoA4w96hBcIVHFjBcg60pFdnF+CApRjnlIp27Jf1g7BaZlJ+vYcExyc/1EjUyZrY8MFQ==}
+ '@iconify/json@2.2.462':
+ resolution: {integrity: sha512-QyVED2ObaVWKgNZu3ikcCyK63GgZ6voobyJrNgTAyoI5xRXff0VHs2UxvWYvqqBJNaPGNqEQDmcJWo7uHdWOkg==}
'@iconify/tailwind4@1.2.3':
resolution: {integrity: sha512-z8SKiMHRASJKF/IY//87MF88lcB7ulxh8vlhQXXLWsBkNtOh6ese9R41MyGpQeqXdRvQVt+/fX2glQtHFjQ+MA==}
peerDependencies:
tailwindcss: '>= 4.0.0'
- '@iconify/tools@5.0.6':
- resolution: {integrity: sha512-94dmgES3W9j3Z9xcxSZh6sLBIYwVFykcIER3vV1DTTF/g3Eyr/kG3/QNm4GNhqKoXexg5tmCtVA9AAilO81e4w==}
+ '@iconify/tools@5.0.11':
+ resolution: {integrity: sha512-zur/06/zTSflUSoPARK5FfHNZQ9UYsoloPDQHLAZHbQqWhs0/tXS+KB70uOAt94dUB1F94JOkSqIOT2R4Deixg==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -4154,7 +4240,7 @@ packages:
'@iconify/vue@5.0.0':
resolution: {integrity: sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@inquirer/external-editor@1.0.3':
resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
@@ -4183,20 +4269,20 @@ packages:
vue-i18n:
optional: true
- '@intlify/core-base@11.3.0':
- resolution: {integrity: sha512-NNX5jIwF4TJBe7RtSKDMOA6JD9mp2mRcBHAwt2X+Q8PvnZub0yj5YYXlFu2AcESdgQpEv/5Yx2uOCV/yh7YkZg==}
+ '@intlify/core-base@11.3.2':
+ resolution: {integrity: sha512-cgsUaV/dyD6aS49UPgerIblrWeXAZHNaDWqm4LujOGC7IafSyhghGXEiSVvuDYaDPiQTP+tSFSTM1HIu7Yp1nA==}
engines: {node: '>= 16'}
- '@intlify/devtools-types@11.3.0':
- resolution: {integrity: sha512-G9CNL4WpANWVdUjubOIIS7/D2j/0j+1KJmhBJxHilWNKr9mmt3IjFV3Hq4JoBP23uOoC5ynxz/FHZ42M+YxfGw==}
+ '@intlify/devtools-types@11.3.2':
+ resolution: {integrity: sha512-q96G2ZZw0FNoXzejbjIf9dbfgz1xyYBZu6ZT4b5TE/55j8d1O9X5jv0k+U+L3fVe7uebPcqRQFD0ffm30i5mJA==}
engines: {node: '>= 16'}
- '@intlify/message-compiler@11.3.0':
- resolution: {integrity: sha512-RAJp3TMsqohg/Wa7bVF3cChRhecSYBLrTCQSj7j0UtWVFLP+6iEJoE2zb7GU5fp+fmG5kCbUdzhmlAUCWXiUJw==}
+ '@intlify/message-compiler@11.3.2':
+ resolution: {integrity: sha512-d/awyHUkNSaGPxBxT/qlUpfRizxHX9dt55CnW03xx5p1KmMyfYHKupCnvzINX+Na8JR8LAR7y32lPKjoeQGmzA==}
engines: {node: '>= 16'}
- '@intlify/shared@11.3.0':
- resolution: {integrity: sha512-LC6P/uay7rXL5zZ5+5iRJfLs/iUN8apu9tm8YqQVmW3Uq3X4A0dOFUIDuAmB7gAC29wTHOS3EiN/IosNSz0eNQ==}
+ '@intlify/shared@11.3.2':
+ resolution: {integrity: sha512-x66fjdH6i+lNYPae5URSQGTjBL68Av6hi09jvC5Ci96iTkwfqrPhCj46aylQZmgMaG89rOZCIKqS7ApC8ZDVjg==}
engines: {node: '>= 16'}
'@intlify/unplugin-vue-i18n@11.0.7':
@@ -4204,7 +4290,7 @@ packages:
engines: {node: '>= 20'}
peerDependencies:
petite-vue-i18n: '*'
- vue: ^3.5.30
+ vue: ^3.5.32
vue-i18n: '*'
peerDependenciesMeta:
petite-vue-i18n:
@@ -4218,7 +4304,7 @@ packages:
peerDependencies:
'@intlify/shared': ^9.0.0 || ^10.0.0 || ^11.0.0
'@vue/compiler-dom': ^3.0.0
- vue: ^3.5.30
+ vue: ^3.5.32
vue-i18n: ^9.0.0 || ^10.0.0 || ^11.0.0
peerDependenciesMeta:
'@intlify/shared':
@@ -4264,11 +4350,11 @@ packages:
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@jspm/generator@2.12.0':
- resolution: {integrity: sha512-UcXaHsu5gDiGk0T06cVfD31QWliOv1w3gT575uuZuDDdMqDxpka4rSFD5Jtd7eUSI8w07ZgTmq4pb+49CMGTxg==}
+ '@jspm/generator@2.13.0':
+ resolution: {integrity: sha512-bVWWXo8NU7RyeC+GnOOgz5eQp/VgJAqXQoZRSHBxMieJ/cgNfd9YY8wATInY0AOwPdHjxMj4pda+0VozSdqvyQ==}
- '@jspm/import-map@1.4.0':
- resolution: {integrity: sha512-HpzAnq/n/eExscsHnPtWrqMi/RXFXlAzIweajmcteyIEWjWK6X64yzzy0VMpBRKO3hFh1xwFIOdIItiMlNISOg==}
+ '@jspm/import-map@1.5.0':
+ resolution: {integrity: sha512-wvjrSEB2MCrpicc/tA0mYEsQ1Jgusnz+4ALwbp5IqGFcnxcTamU/VaVbodmEXFFg4GaPmC2LupUl7Bks6nWOhg==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
@@ -4282,8 +4368,8 @@ packages:
'@keyv/serialize@1.1.1':
resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==}
- '@lezer/common@1.5.1':
- resolution: {integrity: sha512-6YRVG9vBkaY7p1IVxL4s44n5nUnaNnGM2/AckNgYOnxTG2kWh1vR8BMxPseWPjRNpb5VtXnMpeYAEAADoRV1Iw==}
+ '@lezer/common@1.5.2':
+ resolution: {integrity: sha512-sxQE460fPZyU3sdc8lafxiPwJHBzZRy/udNFynGQky1SePYBdhkBl1kOagA9uT3pxR8K09bOrmTUqA9wb/PjSQ==}
'@lezer/highlight@1.2.3':
resolution: {integrity: sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==}
@@ -4308,8 +4394,8 @@ packages:
resolution: {integrity: sha512-0TbBVyvPrP7xGYBI/cP8UP+yl/z+HtbTttAD7FMAJgn/kXOTwh5/60TsqP9ZYY710forNfyV0N8P/IE/ujGZJg==}
engines: {node: '>=20.0.0'}
- '@manypkg/tools@2.1.0':
- resolution: {integrity: sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==}
+ '@manypkg/tools@2.1.1':
+ resolution: {integrity: sha512-CEFCOGzhFdx5sIehISBRS9Ev5D1Zp+24YT1uyOkaEcY8uAKeK+kA58NChYfUwXmAFerm3zWZWYhQViUf8XhQcg==}
engines: {node: '>=20.0.0'}
'@mapbox/node-pre-gyp@2.0.3':
@@ -4323,8 +4409,11 @@ packages:
'@microsoft/fetch-event-source@2.0.1':
resolution: {integrity: sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==}
- '@napi-rs/wasm-runtime@1.1.1':
- resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
+ '@napi-rs/wasm-runtime@1.1.3':
+ resolution: {integrity: sha512-xK9sGVbJWYb08+mTJt3/YV24WxvxpXcXtP6B172paPZ+Ts69Re9dAr7lKwJoeIx8OoeuimEiRZ7umkiUVClmmQ==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -4342,7 +4431,7 @@ packages:
resolution: {integrity: sha512-xxfRacF9cqQ5/umMhvhr0y2W4SkhzTmrrAHJ0UAAu/pIWfV/JPE9Hj0buH06bK7ZEUur+036gxkKlStI6UtDBw==}
peerDependencies:
vitepress: ^1.5.0 || ^2.0.0-alpha.1
- vue: ^3.5.30
+ vue: ^3.5.32
'@nolebase/vitepress-plugin-git-changelog@2.18.2':
resolution: {integrity: sha512-TT1nxP+iS+5K8OLtkEr1EZ4bhCa4iqggly0JTD7TsO01hcwzMovr0lRaxPTo/4i/0bwMiPcaKxpKJ2zJIiu4Kw==}
@@ -4368,282 +4457,282 @@ packages:
resolution: {integrity: sha512-XRO0zi2NIUKq2lUk3T1ecFSld1fMWRKE6naRFGkgkdeosx7IslyUKNv5Dcb5PJTja9tHJoFu0v/7yEpAkrkrTg==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@oxc-project/types@0.115.0':
- resolution: {integrity: sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==}
+ '@oxc-project/types@0.122.0':
+ resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==}
- '@oxc-project/types@0.120.0':
- resolution: {integrity: sha512-k1YNu55DuvAip/MGE1FTsIuU3FUCn6v/ujG9V7Nq5Df/kX2CWb13hhwD0lmJGMGqE+bE1MXvv9SZVnMzEXlWcg==}
+ '@oxc-project/types@0.124.0':
+ resolution: {integrity: sha512-VBFWMTBvHxS11Z5Lvlr3IWgrwhMTXV+Md+EQF0Xf60+wAdsGFTBx7X7K/hP4pi8N7dcm1RvcHwDxZ16Qx8keUg==}
- '@oxfmt/binding-android-arm-eabi@0.41.0':
- resolution: {integrity: sha512-REfrqeMKGkfMP+m/ScX4f5jJBSmVNYcpoDF8vP8f8eYPDuPGZmzp56NIUsYmx3h7f6NzC6cE3gqh8GDWrJHCKw==}
+ '@oxfmt/binding-android-arm-eabi@0.44.0':
+ resolution: {integrity: sha512-5UvghMd9SA/yvKTWCAxMAPXS1d2i054UeOf4iFjZjfayTwCINcC3oaSXjtbZfCaEpxgJod7XiOjTtby5yEv/BQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxfmt/binding-android-arm64@0.41.0':
- resolution: {integrity: sha512-s0b1dxNgb2KomspFV2LfogC2XtSJB42POXF4bMCLJyvQmAGos4ZtjGPfQreToQEaY0FQFjz3030ggI36rF1q5g==}
+ '@oxfmt/binding-android-arm64@0.44.0':
+ resolution: {integrity: sha512-IVudM1BWfvrYO++Khtzr8q9n5Rxu7msUvoFMqzGJVdX7HfUXUDHwaH2zHZNB58svx2J56pmCUzophyaPFkcG/A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxfmt/binding-darwin-arm64@0.41.0':
- resolution: {integrity: sha512-EGXGualADbv/ZmamE7/2DbsrYmjoPlAmHEpTL4vapLF4EfVD6fr8/uQDFnPJkUBjiSWFJZtFNsGeN1B6V3owmA==}
+ '@oxfmt/binding-darwin-arm64@0.44.0':
+ resolution: {integrity: sha512-eWCLAIKAHfx88EqEP1Ga2yz7qVcqDU5lemn4xck+07bH182hDdprOHjbogyk0In1Djys3T0/pO2JepFnRJ41Mg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxfmt/binding-darwin-x64@0.41.0':
- resolution: {integrity: sha512-WxySJEvdQQYMmyvISH3qDpTvoS0ebnIP63IMxLLWowJyPp/AAH0hdWtlo+iGNK5y3eVfa5jZguwNaQkDKWpGSw==}
+ '@oxfmt/binding-darwin-x64@0.44.0':
+ resolution: {integrity: sha512-eHTBznHLM49++dwz07MblQ2cOXyIgeedmE3Wgy4ptUESj38/qYZyRi1MPwC9olQJWssMeY6WI3UZ7YmU5ggvyQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxfmt/binding-freebsd-x64@0.41.0':
- resolution: {integrity: sha512-Y2kzMkv3U3oyuYaR4wTfGjOTYTXiFC/hXmG0yVASKkbh02BJkvD98Ij8bIevr45hNZ0DmZEgqiXF+9buD4yMYQ==}
+ '@oxfmt/binding-freebsd-x64@0.44.0':
+ resolution: {integrity: sha512-jLMmbj0u0Ft43QpkUVr/0v1ZfQCGWAvU+WznEHcN3wZC/q6ox7XeSJtk9P36CCpiDSUf3sGnzbIuG1KdEMEDJQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxfmt/binding-linux-arm-gnueabihf@0.41.0':
- resolution: {integrity: sha512-ptazDjdUyhket01IjPTT6ULS1KFuBfTUU97osTP96X5y/0oso+AgAaJzuH81oP0+XXyrWIHbRzozSAuQm4p48g==}
+ '@oxfmt/binding-linux-arm-gnueabihf@0.44.0':
+ resolution: {integrity: sha512-n+A/u/ByK1qV8FVGOwyaSpw5NPNl0qlZfgTBqHeGIqr8Qzq1tyWZ4lAaxPoe5mZqE3w88vn3+jZtMxriHPE7tg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm-musleabihf@0.41.0':
- resolution: {integrity: sha512-UkoL2OKxFD+56bPEBcdGn+4juTW4HRv/T6w1dIDLnvKKWr6DbarB/mtHXlADKlFiJubJz8pRkttOR7qjYR6lTA==}
+ '@oxfmt/binding-linux-arm-musleabihf@0.44.0':
+ resolution: {integrity: sha512-5eax+FkxyCqAi3Rw0mrZFr7+KTt/XweFsbALR+B5ljWBLBl8nHe4ADrUnb1gLEfQCJLl+Ca5FIVD4xEt95AwIw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm64-gnu@0.41.0':
- resolution: {integrity: sha512-gofu0PuumSOHYczD8p62CPY4UF6ee+rSLZJdUXkpwxg6pILiwSDBIouPskjF/5nF3A7QZTz2O9KFNkNxxFN9tA==}
+ '@oxfmt/binding-linux-arm64-gnu@0.44.0':
+ resolution: {integrity: sha512-58l8JaHxSGOmOMOG2CIrNsnkRJAj0YcHQCmvNACniOa/vd1iRHhlPajczegzS5jwMENlqgreyiTR9iNlke8qCw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-arm64-musl@0.41.0':
- resolution: {integrity: sha512-VfVZxL0+6RU86T8F8vKiDBa+iHsr8PAjQmKGBzSCAX70b6x+UOMFl+2dNihmKmUwqkCazCPfYjt6SuAPOeQJ3g==}
+ '@oxfmt/binding-linux-arm64-musl@0.44.0':
+ resolution: {integrity: sha512-AlObQIXyVRZ96LbtVljtFq0JqH5B92NU+BQeDFrXWBUWlCKAM0wF5GLfIhCLT5kQ3Sl+U0YjRJ7Alqj5hGQaCg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-ppc64-gnu@0.41.0':
- resolution: {integrity: sha512-bwzokz2eGvdfJbc0i+zXMJ4BBjQPqg13jyWpEEZDOrBCQ91r8KeY2Mi2kUeuMTZNFXju+jcAbAbpyJxRGla0eg==}
+ '@oxfmt/binding-linux-ppc64-gnu@0.44.0':
+ resolution: {integrity: sha512-YcFE8/q/BbrCiIiM5piwbkA6GwJc5QqhMQp2yDrqQ2fuVkZ7CInb1aIijZ/k8EXc72qXMSwKpVlBv1w/MsGO/A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-gnu@0.41.0':
- resolution: {integrity: sha512-POLM//PCH9uqDeNDwWL3b3DkMmI3oI2cU6hwc2lnztD1o7dzrQs3R9nq555BZ6wI7t2lyhT9CS+CRaz5X0XqLA==}
+ '@oxfmt/binding-linux-riscv64-gnu@0.44.0':
+ resolution: {integrity: sha512-eOdzs6RqkRzuqNHUX5C8ISN5xfGh4xDww8OEd9YAmc3OWN8oAe5bmlIqQ+rrHLpv58/0BuU48bxkhnIGjA/ATQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-musl@0.41.0':
- resolution: {integrity: sha512-NNK7PzhFqLUwx/G12Xtm6scGv7UITvyGdAR5Y+TlqsG+essnuRWR4jRNODWRjzLZod0T3SayRbnkSIWMBov33w==}
+ '@oxfmt/binding-linux-riscv64-musl@0.44.0':
+ resolution: {integrity: sha512-YBgNTxntD/QvlFUfgvh8bEdwOhXiquX8gaofZJAwYa/Xp1S1DQrFVZEeck7GFktr24DztsSp8N8WtWCBwxs0Hw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-s390x-gnu@0.41.0':
- resolution: {integrity: sha512-qVf/zDC5cN9eKe4qI/O/m445er1IRl6swsSl7jHkqmOSVfknwCe5JXitYjZca+V/cNJSU/xPlC5EFMabMMFDpw==}
+ '@oxfmt/binding-linux-s390x-gnu@0.44.0':
+ resolution: {integrity: sha512-GLIh1R6WHWshl/i4QQDNgj0WtT25aRO4HNUWEoitxiywyRdhTFmFEYT2rXlcl9U6/26vhmOqG5cRlMLG3ocaIA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-gnu@0.41.0':
- resolution: {integrity: sha512-ojxYWu7vUb6ysYqVCPHuAPVZHAI40gfZ0PDtZAMwVmh2f0V8ExpPIKoAKr7/8sNbAXJBBpZhs2coypIo2jJX4w==}
+ '@oxfmt/binding-linux-x64-gnu@0.44.0':
+ resolution: {integrity: sha512-gZOpgTlOsLcLfAF9qgpTr7FIIFSKnQN3hDf/0JvQ4CIwMY7h+eilNjxq/CorqvYcEOu+LRt1W4ZS7KccEHLOdA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-musl@0.41.0':
- resolution: {integrity: sha512-O2exZLBxoCMIv2vlvcbkdedazJPTdG0VSup+0QUCfYQtx751zCZNboX2ZUOiQ/gDTdhtXvSiot0h6GEGkOyalA==}
+ '@oxfmt/binding-linux-x64-musl@0.44.0':
+ resolution: {integrity: sha512-1CyS9JTB+pCUFYFI6pkQGGZaT/AY5gnhHVrQQLhFba6idP9AzVYm1xbdWfywoldTYvjxQJV6x4SuduCIfP3W+A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-openharmony-arm64@0.41.0':
- resolution: {integrity: sha512-N+31/VoL+z+NNBt8viy3I4NaIdPbiYeOnB884LKqvXldaE2dRztdPv3q5ipfZYv0RwFp7JfqS4I27K/DSHCakg==}
+ '@oxfmt/binding-openharmony-arm64@0.44.0':
+ resolution: {integrity: sha512-bmEv70Ak6jLr1xotCbF5TxIKjsmQaiX+jFRtnGtfA03tJPf6VG3cKh96S21boAt3JZc+Vjx8PYcDuLj39vM2Pw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxfmt/binding-win32-arm64-msvc@0.41.0':
- resolution: {integrity: sha512-Z7NAtu/RN8kjCQ1y5oDD0nTAeRswh3GJ93qwcW51srmidP7XPBmZbLlwERu1W5veCevQJtPS9xmkpcDTYsGIwQ==}
+ '@oxfmt/binding-win32-arm64-msvc@0.44.0':
+ resolution: {integrity: sha512-yWzB+oCpSnP/dmw85eFLAT5o35Ve5pkGS2uF/UCISpIwDqf1xa7OpmtomiqY/Vzg8VyvMbuf6vroF2khF/+1Vg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxfmt/binding-win32-ia32-msvc@0.41.0':
- resolution: {integrity: sha512-uNxxP3l4bJ6VyzIeRqCmBU2Q0SkCFgIhvx9/9dJ9V8t/v+jP1IBsuaLwCXGR8JPHtkj4tFp+RHtUmU2ZYAUpMA==}
+ '@oxfmt/binding-win32-ia32-msvc@0.44.0':
+ resolution: {integrity: sha512-TcWpo18xEIE3AmIG2kpr3kz5IEhQgnx0lazl2+8L+3eTopOAUevQcmlr4nhguImNWz0OMeOZrYZOhJNCf16nlQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxfmt/binding-win32-x64-msvc@0.41.0':
- resolution: {integrity: sha512-49ZSpbZ1noozyPapE8SUOSm3IN0Ze4b5nkO+4+7fq6oEYQQJFhE0saj5k/Gg4oewVPdjn0L3ZFeWk2Vehjcw7A==}
+ '@oxfmt/binding-win32-x64-msvc@0.44.0':
+ resolution: {integrity: sha512-oj8aLkPJZppIM4CMQNsyir9ybM1Xw/CfGPTSsTnzpVGyljgfbdP0EVUlURiGM0BDrmw5psQ6ArmGCcUY/yABaQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@oxlint-tsgolint/darwin-arm64@0.17.1':
- resolution: {integrity: sha512-JNWNwyvSDcUQSBlQRl10XrCeNcN66TMvDw3gIDQeop5SNa1F7wFhsEx4zitYb7fGHwGh9095tsNttmuCaNXCbw==}
+ '@oxlint-tsgolint/darwin-arm64@0.20.0':
+ resolution: {integrity: sha512-KKQcIHZHMxqpHUA1VXIbOG6chNCFkUWbQy6M+AFVtPKkA/3xAeJkJ3njoV66bfzwPHRcWQO+kcj5XqtbkjakoA==}
cpu: [arm64]
os: [darwin]
- '@oxlint-tsgolint/darwin-x64@0.17.1':
- resolution: {integrity: sha512-SluNf6CW88pgGPqQUGC5GoK5qESWo2ct1PRDbza3vbf9SK2npx3igvylGQIgE9qYYOcjgnVdLOJ0+q0gItgUmQ==}
+ '@oxlint-tsgolint/darwin-x64@0.20.0':
+ resolution: {integrity: sha512-7HeVMuclGfG+NLZi2ybY0T4fMI7/XxO/208rJk+zEIloKkVnlh11Wd241JMGwgNFXn+MLJbOqOfojDb2Dt4L1g==}
cpu: [x64]
os: [darwin]
- '@oxlint-tsgolint/linux-arm64@0.17.1':
- resolution: {integrity: sha512-BJxQ7/cdo2dNdGIBs2PIR6BaPA7cPfe+r1HE/uY+K7g2ygip+0LHB3GUO9GaNDZuWpsnDyjLYYowEGrVK8dokA==}
+ '@oxlint-tsgolint/linux-arm64@0.20.0':
+ resolution: {integrity: sha512-zxhUwz+WSxE6oWlZLK2z2ps9yC6ebmgoYmjAl0Oa48+GqkZ56NVgo+wb8DURNv6xrggzHStQxqQxe3mK51HZag==}
cpu: [arm64]
os: [linux]
- '@oxlint-tsgolint/linux-x64@0.17.1':
- resolution: {integrity: sha512-s6UjmuaJbZ4zz/wJKdEw/s5mc0t41rgwxQJCSHPuzMumMK6ylrB7nydhDf8ObTtzhTIZdAS/2S/uayJmDcGbxw==}
+ '@oxlint-tsgolint/linux-x64@0.20.0':
+ resolution: {integrity: sha512-/1l6FnahC9im8PK+Ekkx/V3yetO/PzZnJegE2FXcv/iXEhbeVxP/ouiTYcUQu9shT1FWJCSNti1VJHH+21Y1dg==}
cpu: [x64]
os: [linux]
- '@oxlint-tsgolint/win32-arm64@0.17.1':
- resolution: {integrity: sha512-EO/Oj0ixHX+UQdu9hM7YUzibZI888MvPUo/DF8lSxFBt4JNEt8qGkwJEbCYjB/1LhUNmPHzSw2Tr9dCFVfW9nw==}
+ '@oxlint-tsgolint/win32-arm64@0.20.0':
+ resolution: {integrity: sha512-oPZ5Yz8sVdo7P/5q+i3IKeix31eFZ55JAPa1+RGPoe9PoaYVsdMvR6Jvib6YtrqoJnFPlg3fjEjlEPL8VBKYJA==}
cpu: [arm64]
os: [win32]
- '@oxlint-tsgolint/win32-x64@0.17.1':
- resolution: {integrity: sha512-jhv7XktAJ1sMRSb//yDYTauFSZ06H81i2SLEBPaSUKxSKoPMK8p1ACUJlnmwZX2MgapRLEj1Ml22B6+HiM2YIA==}
+ '@oxlint-tsgolint/win32-x64@0.20.0':
+ resolution: {integrity: sha512-4stx8RHj3SP9vQyRF/yZbz5igtPvYMEUR8CUoha4BVNZihi39DpCR8qkU7lpjB5Ga1DRMo2pHaA4bdTOMaY4mw==}
cpu: [x64]
os: [win32]
- '@oxlint/binding-android-arm-eabi@1.56.0':
- resolution: {integrity: sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==}
+ '@oxlint/binding-android-arm-eabi@1.59.0':
+ resolution: {integrity: sha512-etYDw/UaEv936AQUd/CRMBVd+e+XuuU6wC+VzOv1STvsTyZenLChepLWqLtnyTTp4YMlM22ypzogDDwqYxv5cg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxlint/binding-android-arm64@1.56.0':
- resolution: {integrity: sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==}
+ '@oxlint/binding-android-arm64@1.59.0':
+ resolution: {integrity: sha512-TgLc7XVLKH2a4h8j3vn1MDjfK33i9MY60f/bKhRGWyVzbk5LCZ4X01VZG7iHrMmi5vYbAp8//Ponigx03CLsdw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxlint/binding-darwin-arm64@1.56.0':
- resolution: {integrity: sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==}
+ '@oxlint/binding-darwin-arm64@1.59.0':
+ resolution: {integrity: sha512-DXyFPf5ZKldMLloRHx/B9fsxsiTQomaw7cmEW3YIJko2HgCh+GUhp9gGYwHrqlLJPsEe3dYj9JebjX92D3j3AA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxlint/binding-darwin-x64@1.56.0':
- resolution: {integrity: sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==}
+ '@oxlint/binding-darwin-x64@1.59.0':
+ resolution: {integrity: sha512-LgvrsdgVLX1qWqIEmNsSmMXJhpAWdtUQ0M+oR0CySwi+9IHWyOGuIL8w8+u/kbZNMyZr4WUyYB5i0+D+AKgkLg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxlint/binding-freebsd-x64@1.56.0':
- resolution: {integrity: sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==}
+ '@oxlint/binding-freebsd-x64@1.59.0':
+ resolution: {integrity: sha512-bOJhqX/ny4hrFuTPlyk8foSRx/vLRpxJh0jOOKN2NWW6FScXHPAA5rQbrwdQPcgGB5V8Ua51RS03fke8ssBcug==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxlint/binding-linux-arm-gnueabihf@1.56.0':
- resolution: {integrity: sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==}
+ '@oxlint/binding-linux-arm-gnueabihf@1.59.0':
+ resolution: {integrity: sha512-vVUXxYMF9trXCsz4m9H6U0IjehosVHxBzVgJUxly1uz4W1PdDyicaBnpC0KRXsHYretLVe+uS9pJy8iM57Kujw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxlint/binding-linux-arm-musleabihf@1.56.0':
- resolution: {integrity: sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==}
+ '@oxlint/binding-linux-arm-musleabihf@1.59.0':
+ resolution: {integrity: sha512-TULQW8YBPGRWg5yZpFPL54HLOnJ3/HiX6VenDPi6YfxB/jlItwSMFh3/hCeSNbh+DAMaE1Py0j5MOaivHkI/9Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxlint/binding-linux-arm64-gnu@1.56.0':
- resolution: {integrity: sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==}
+ '@oxlint/binding-linux-arm64-gnu@1.59.0':
+ resolution: {integrity: sha512-Gt54Y4eqSgYJ90xipm24xeyaPV854706o/kiT8oZvUt3VDY7qqxdqyGqchMaujd87ib+/MXvnl9WkK8Cc1BExg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-arm64-musl@1.56.0':
- resolution: {integrity: sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==}
+ '@oxlint/binding-linux-arm64-musl@1.59.0':
+ resolution: {integrity: sha512-3CtsKp7NFB3OfqQzbuAecrY7GIZeiv7AD+xutU4tefVQzlfmTI7/ygWLrvkzsDEjTlMq41rYHxgsn6Yh8tybmA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxlint/binding-linux-ppc64-gnu@1.56.0':
- resolution: {integrity: sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==}
+ '@oxlint/binding-linux-ppc64-gnu@1.59.0':
+ resolution: {integrity: sha512-K0diOpT3ncDmOfl9I1HuvpEsAuTxkts0VYwIv/w6Xiy9CdwyPBVX88Ga9l8VlGgMrwBMnSY4xIvVlVY/fkQk7Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-riscv64-gnu@1.56.0':
- resolution: {integrity: sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==}
+ '@oxlint/binding-linux-riscv64-gnu@1.59.0':
+ resolution: {integrity: sha512-xAU7+QDU6kTJJ7mJLOGgo7oOjtAtkKyFZ0Yjdb5cEo3DiCCPFLvyr08rWiQh6evZ7RiUTf+o65NY/bqttzJiQQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-riscv64-musl@1.56.0':
- resolution: {integrity: sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==}
+ '@oxlint/binding-linux-riscv64-musl@1.59.0':
+ resolution: {integrity: sha512-KUmZmKlTTyauOnvUNVxK7G40sSSx0+w5l1UhaGsC6KPpOYHenx2oqJTnabmpLJicok7IC+3Y6fXAUOMyexaeJQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxlint/binding-linux-s390x-gnu@1.56.0':
- resolution: {integrity: sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==}
+ '@oxlint/binding-linux-s390x-gnu@1.59.0':
+ resolution: {integrity: sha512-4usRxC8gS0PGdkHnRmwJt/4zrQNZyk6vL0trCxwZSsAKM+OxhB8nKiR+mhjdBbl8lbMh2gc3bZpNN/ik8c4c2A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-x64-gnu@1.56.0':
- resolution: {integrity: sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==}
+ '@oxlint/binding-linux-x64-gnu@1.59.0':
+ resolution: {integrity: sha512-s/rNE2gDmbwAOOP493xk2X7M8LZfI1LJFSSW1+yanz3vuQCFPiHkx4GY+O1HuLUDtkzGlhtMrIcxxzyYLv308w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-x64-musl@1.56.0':
- resolution: {integrity: sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==}
+ '@oxlint/binding-linux-x64-musl@1.59.0':
+ resolution: {integrity: sha512-+yYj1udJa2UvvIUmEm0IcKgc0UlPMgz0nsSTvkPL2y6n0uU5LgIHSwVu4AHhrve6j9BpVSoRksnz8c9QcvITJA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxlint/binding-openharmony-arm64@1.56.0':
- resolution: {integrity: sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==}
+ '@oxlint/binding-openharmony-arm64@1.59.0':
+ resolution: {integrity: sha512-bUplUb48LYsB3hHlQXP2ZMOenpieWoOyppLAnnAhuPag3MGPnt+7caxE3w/Vl9wpQsTA3gzLntQi9rxWrs7Xqg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxlint/binding-win32-arm64-msvc@1.56.0':
- resolution: {integrity: sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==}
+ '@oxlint/binding-win32-arm64-msvc@1.59.0':
+ resolution: {integrity: sha512-/HLsLuz42rWl7h7ePdmMTpHm2HIDmPtcEMYgm5BBEHiEiuNOrzMaUpd2z7UnNni5LGN9obJy2YoAYBLXQwazrA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxlint/binding-win32-ia32-msvc@1.56.0':
- resolution: {integrity: sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==}
+ '@oxlint/binding-win32-ia32-msvc@1.59.0':
+ resolution: {integrity: sha512-rUPy+JnanpPwV/aJCPnxAD1fW50+XPI0VkWr7f0vEbqcdsS8NpB24Rw6RsS7SdpFv8Dw+8ugCwao5nCFbqOUSg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxlint/binding-win32-x64-msvc@1.56.0':
- resolution: {integrity: sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==}
+ '@oxlint/binding-win32-x64-msvc@1.59.0':
+ resolution: {integrity: sha512-xkE7puteDS/vUyRngLXW0t8WgdWoS/tfxXjhP/P7SMqPDx+hs44SpssO3h3qmTqECYEuXBUPzcAw5257Ka+ofA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
@@ -4750,11 +4839,6 @@ packages:
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@playwright/test@1.58.2':
- resolution: {integrity: sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==}
- engines: {node: '>=18'}
- hasBin: true
-
'@pnpm/config.env-replace@1.1.0':
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
engines: {node: '>=12.22.0'}
@@ -4763,8 +4847,8 @@ packages:
resolution: {integrity: sha512-2hf0s4pVrVEH8RvdJJ7YRKjQdiG8m0iAT26TTqXnCbK30kKwJW69VLmP5tED5zstmDRXcOeH5eRcrpkdwczQ9g==}
engines: {node: '>=18.12'}
- '@pnpm/error@1000.0.5':
- resolution: {integrity: sha512-GjH0TPjbVNrPnl/BAGoFuBLJ2sFfXNKbS33lll/Ehe9yw0fyc8Kdw7kO9if37yQqn6vaa4dAHKkPllum7f/IPQ==}
+ '@pnpm/error@1000.1.0':
+ resolution: {integrity: sha512-Dqc2IJJPjUatwc9Letw+vG29rnaMrDGi5g6WCx1HiZYm0obXbTmLygeRafMbgf+sLKXrWE1shOeiayQuczBdoA==}
engines: {node: '>=18.12'}
'@pnpm/network.ca-file@1.0.2':
@@ -4779,8 +4863,8 @@ packages:
resolution: {integrity: sha512-NLTXheat/u7OEGg5M5vF6Z85zx8uKUZE0+whtX/sbFV2XL48RdnOWGPTKYuVVkv8M+launaLUTgGEXNs/ess2w==}
engines: {node: '>=18.12'}
- '@pnpm/workspace.read-manifest@1000.3.0':
- resolution: {integrity: sha512-aBTT6pViHvR+ARJYpMpxbs5+OcIq/9HKQLvYxyTm6ozoRoVgrNogWTRNDnnQptc02h1EvdVSoR36cCB+aoKkLw==}
+ '@pnpm/workspace.read-manifest@1000.3.1':
+ resolution: {integrity: sha512-ojO1Anf4ITL7OskuUYoLI3bldQ36XNLpG2cYQZ4F6LZbBZnRY8umW6TeWzb9h/aX8UFwYp9vWbQ8R/FaMtMEeg==}
engines: {node: '>=18.12'}
'@polka/url@1.0.0-next.29':
@@ -4805,204 +4889,207 @@ packages:
'@quansync/fs@1.0.0':
resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
- '@rolldown/binding-android-arm64@1.0.0-rc.10':
- resolution: {integrity: sha512-jOHxwXhxmFKuXztiu1ORieJeTbx5vrTkcOkkkn2d35726+iwhrY1w/+nYY/AGgF12thg33qC3R1LMBF5tHTZHg==}
+ '@remirror/core-constants@3.0.0':
+ resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
+
+ '@rolldown/binding-android-arm64@1.0.0-rc.12':
+ resolution: {integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@rolldown/binding-android-arm64@1.0.0-rc.9':
- resolution: {integrity: sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==}
+ '@rolldown/binding-android-arm64@1.0.0-rc.15':
+ resolution: {integrity: sha512-YYe6aWruPZDtHNpwu7+qAHEMbQ/yRl6atqb/AhznLTnD3UY99Q1jE7ihLSahNWkF4EqRPVC4SiR4O0UkLK02tA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@rolldown/binding-darwin-arm64@1.0.0-rc.10':
- resolution: {integrity: sha512-gED05Teg/vtTZbIJBc4VNMAxAFDUPkuO/rAIyyxZjTj1a1/s6z5TII/5yMGZ0uLRCifEtwUQn8OlYzuYc0m70w==}
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.12':
+ resolution: {integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
- resolution: {integrity: sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==}
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.15':
+ resolution: {integrity: sha512-oArR/ig8wNTPYsXL+Mzhs0oxhxfuHRfG7Ikw7jXsw8mYOtk71W0OkF2VEVh699pdmzjPQsTjlD1JIOoHkLP1Fg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-rc.10':
- resolution: {integrity: sha512-rI15NcM1mA48lqrIxVkHfAqcyFLcQwyXWThy+BQ5+mkKKPvSO26ir+ZDp36AgYoYVkqvMcdS8zOE6SeBsR9e8A==}
+ '@rolldown/binding-darwin-x64@1.0.0-rc.12':
+ resolution: {integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-rc.9':
- resolution: {integrity: sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==}
+ '@rolldown/binding-darwin-x64@1.0.0-rc.15':
+ resolution: {integrity: sha512-YzeVqOqjPYvUbJSWJ4EDL8ahbmsIXQpgL3JVipmN+MX0XnXMeWomLN3Fb+nwCmP/jfyqte5I3XRSm7OfQrbyxw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-rc.10':
- resolution: {integrity: sha512-XZRXHdTa+4ME1MuDVp021+doQ+z6Ei4CCFmNc5/sKbqb8YmkiJdj8QKlV3rCI0AJtAeSB5n0WGPuJWNL9p/L2w==}
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.12':
+ resolution: {integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
- resolution: {integrity: sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==}
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.15':
+ resolution: {integrity: sha512-9Erhx956jeQ0nNTyif1+QWAXDRD38ZNjr//bSHrt6wDwB+QkAfl2q6Mn1k6OBPerznjRmbM10lgRb1Pli4xZPw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.10':
- resolution: {integrity: sha512-R0SQMRluISSLzFE20sPWYHVmJdDQnRyc/FzSCN72BqQmh2SOZUFG+N3/vBZpR4C6WpEUVYJLrYUXaj43sJsNLA==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
+ resolution: {integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
- resolution: {integrity: sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.15':
+ resolution: {integrity: sha512-cVwk0w8QbZJGTnP/AHQBs5yNwmpgGYStL88t4UIaqcvYJWBfS0s3oqVLZPwsPU6M0zlW4GqjP0Zq5MnAGwFeGA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.10':
- resolution: {integrity: sha512-Y1reMrV/o+cwpduYhJuOE3OMKx32RMYCidf14y+HssARRmhDuWXJ4yVguDg2R/8SyyGNo+auzz64LnPK9Hq6jg==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
+ resolution: {integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
- resolution: {integrity: sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.15':
+ resolution: {integrity: sha512-eBZ/u8iAK9SoHGanqe/jrPnY0JvBN6iXbVOsbO38mbz+ZJsaobExAm1Iu+rxa4S1l2FjG0qEZn4Rc6X8n+9M+w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.10':
- resolution: {integrity: sha512-vELN+HNb2IzuzSBUOD4NHmP9yrGwl1DVM29wlQvx1OLSclL0NgVWnVDKl/8tEks79EFek/kebQKnNJkIAA4W2g==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
+ resolution: {integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
- resolution: {integrity: sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.15':
+ resolution: {integrity: sha512-ZvRYMGrAklV9PEkgt4LQM6MjQX2P58HPAuecwYObY2DhS2t35R0I810bKi0wmaYORt6m/2Sm+Z+nFgb0WhXNcQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.10':
- resolution: {integrity: sha512-ZqrufYTgzxbHwpqOjzSsb0UV/aV2TFIY5rP8HdsiPTv/CuAgCRjM6s9cYFwQ4CNH+hf9Y4erHW1GjZuZ7WoI7w==}
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
+ resolution: {integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
- resolution: {integrity: sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==}
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.15':
+ resolution: {integrity: sha512-VDpgGBzgfg5hLg+uBpCLoFG5kVvEyafmfxGUV0UHLcL5irxAK7PKNeC2MwClgk6ZAiNhmo9FLhRYgvMmedLtnQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.10':
- resolution: {integrity: sha512-gSlmVS1FZJSRicA6IyjoRoKAFK7IIHBs7xJuHRSmjImqk3mPPWbR7RhbnfH2G6bcmMEllCt2vQ/7u9e6bBnByg==}
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
+ resolution: {integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
- resolution: {integrity: sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==}
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.15':
+ resolution: {integrity: sha512-y1uXY3qQWCzcPgRJATPSOUP4tCemh4uBdY7e3EZbVwCJTY3gLJWnQABgeUetvED+bt1FQ01OeZwvhLS2bpNrAQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.10':
- resolution: {integrity: sha512-eOCKUpluKgfObT2pHjztnaWEIbUabWzk3qPZ5PuacuPmr4+JtQG4k2vGTY0H15edaTnicgU428XW/IH6AimcQw==}
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
+ resolution: {integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
- resolution: {integrity: sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==}
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.15':
+ resolution: {integrity: sha512-023bTPBod7J3Y/4fzAN6QtpkSABR0rigtrwaP+qSEabUh5zf6ELr9Nc7GujaROuPY3uwdSIXWrvhn1KxOvurWA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.10':
- resolution: {integrity: sha512-Xdf2jQbfQowJnLcgYfD/m0Uu0Qj5OdxKallD78/IPPfzaiaI4KRAwZzHcKQ4ig1gtg1SuzC7jovNiM2TzQsBXA==}
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
+ resolution: {integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
- resolution: {integrity: sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==}
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.15':
+ resolution: {integrity: sha512-witB2O0/hU4CgfOOKUoeFgQ4GktPi1eEbAhaLAIpgD6+ZnhcPkUtPsoKKHRzmOoWPZue46IThdSgdo4XneOLYw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.10':
- resolution: {integrity: sha512-o1hYe8hLi1EY6jgPFyxQgQ1wcycX+qz8eEbVmot2hFkgUzPxy9+kF0u0NIQBeDq+Mko47AkaFFaChcvZa9UX9Q==}
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
+ resolution: {integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
- resolution: {integrity: sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==}
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.15':
+ resolution: {integrity: sha512-UCL68NJ0Ud5zRipXZE9dF5PmirzJE4E4BCIOOssEnM7wLDsxjc6Qb0sGDxTNRTP53I6MZpygyCpY8Aa8sPfKPg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.10':
- resolution: {integrity: sha512-Ugv9o7qYJudqQO5Y5y2N2SOo6S4WiqiNOpuQyoPInnhVzCY+wi/GHltcLHypG9DEUYMB0iTB/huJrpadiAcNcA==}
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.12':
+ resolution: {integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
- resolution: {integrity: sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==}
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.15':
+ resolution: {integrity: sha512-ApLruZq/ig+nhaE7OJm4lDjayUnOHVUa77zGeqnqZ9pn0ovdVbbNPerVibLXDmWeUZXjIYIT8V3xkT58Rm9u5Q==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.10':
- resolution: {integrity: sha512-7UODQb4fQUNT/vmgDZBl3XOBAIOutP5R3O/rkxg0aLfEGQ4opbCgU5vOw/scPe4xOqBwL9fw7/RP1vAMZ6QlAQ==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
+ resolution: {integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
- resolution: {integrity: sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.15':
+ resolution: {integrity: sha512-KmoUoU7HnN+Si5YWJigfTws1jz1bKBYDQKdbLspz0UaqjjFkddHsqorgiW1mxcAj88lYUE6NC/zJNwT+SloqtA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.10':
- resolution: {integrity: sha512-PYxKHMVHOb5NJuDL53vBUl1VwUjymDcYI6rzpIni0C9+9mTiJedvUxSk7/RPp7OOAm3v+EjgMu9bIy3N6b408w==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
+ resolution: {integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
- resolution: {integrity: sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.15':
+ resolution: {integrity: sha512-3P2A8L+x75qavWLe/Dll3EYBJLQmtkJN8rfh+U/eR3MqMgL/h98PhYI+JFfXuDPgPeCB7iZAKiqii5vqOvnA0g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@rolldown/pluginutils@1.0.0-rc.10':
- resolution: {integrity: sha512-UkVDEFk1w3mveXeKgaTuYfKWtPbvgck1dT8TUG3bnccrH0XtLTuAyfCoks4Q/M5ZGToSVJTIQYCzy2g/atAOeg==}
+ '@rolldown/pluginutils@1.0.0-rc.12':
+ resolution: {integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==}
- '@rolldown/pluginutils@1.0.0-rc.2':
- resolution: {integrity: sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==}
+ '@rolldown/pluginutils@1.0.0-rc.13':
+ resolution: {integrity: sha512-3ngTAv6F/Py35BsYbeeLeecvhMKdsKm4AoOETVhAA+Qc8nrA2I0kF7oa93mE9qnIurngOSpMnQ0x2nQY2FPviA==}
- '@rolldown/pluginutils@1.0.0-rc.9':
- resolution: {integrity: sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==}
+ '@rolldown/pluginutils@1.0.0-rc.15':
+ resolution: {integrity: sha512-UromN0peaE53IaBRe9W7CjrZgXl90fqGpK+mIZbA3qSTeYqg3pqpROBdIPvOG3F5ereDHNwoHBI2e50n1BDr1g==}
'@rollup/plugin-alias@6.0.0':
resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==}
@@ -5107,10 +5194,6 @@ packages:
peerDependencies:
rollup: ^1.20.0||^2.0.0
- '@rollup/pluginutils@4.2.1':
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
-
'@rollup/pluginutils@5.3.0':
resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
@@ -5120,141 +5203,141 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.60.0':
- resolution: {integrity: sha512-WOhNW9K8bR3kf4zLxbfg6Pxu2ybOUbB2AjMDHSQx86LIF4rH4Ft7vmMwNt0loO0eonglSNy4cpD3MKXXKQu0/A==}
+ '@rollup/rollup-android-arm-eabi@4.60.1':
+ resolution: {integrity: sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.60.0':
- resolution: {integrity: sha512-u6JHLll5QKRvjciE78bQXDmqRqNs5M/3GVqZeMwvmjaNODJih/WIrJlFVEihvV0MiYFmd+ZyPr9wxOVbPAG2Iw==}
+ '@rollup/rollup-android-arm64@4.60.1':
+ resolution: {integrity: sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.60.0':
- resolution: {integrity: sha512-qEF7CsKKzSRc20Ciu2Zw1wRrBz4g56F7r/vRwY430UPp/nt1x21Q/fpJ9N5l47WWvJlkNCPJz3QRVw008fi7yA==}
+ '@rollup/rollup-darwin-arm64@4.60.1':
+ resolution: {integrity: sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.60.0':
- resolution: {integrity: sha512-WADYozJ4QCnXCH4wPB+3FuGmDPoFseVCUrANmA5LWwGmC6FL14BWC7pcq+FstOZv3baGX65tZ378uT6WG8ynTw==}
+ '@rollup/rollup-darwin-x64@4.60.1':
+ resolution: {integrity: sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.60.0':
- resolution: {integrity: sha512-6b8wGHJlDrGeSE3aH5mGNHBjA0TTkxdoNHik5EkvPHCt351XnigA4pS7Wsj/Eo9Y8RBU6f35cjN9SYmCFBtzxw==}
+ '@rollup/rollup-freebsd-arm64@4.60.1':
+ resolution: {integrity: sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.60.0':
- resolution: {integrity: sha512-h25Ga0t4jaylMB8M/JKAyrvvfxGRjnPQIR8lnCayyzEjEOx2EJIlIiMbhpWxDRKGKF8jbNH01NnN663dH638mA==}
+ '@rollup/rollup-freebsd-x64@4.60.1':
+ resolution: {integrity: sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.60.0':
- resolution: {integrity: sha512-RzeBwv0B3qtVBWtcuABtSuCzToo2IEAIQrcyB/b2zMvBWVbjo8bZDjACUpnaafaxhTw2W+imQbP2BD1usasK4g==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
+ resolution: {integrity: sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.60.0':
- resolution: {integrity: sha512-Sf7zusNI2CIU1HLzuu9Tc5YGAHEZs5Lu7N1ssJG4Tkw6e0MEsN7NdjUDDfGNHy2IU+ENyWT+L2obgWiguWibWQ==}
+ '@rollup/rollup-linux-arm-musleabihf@4.60.1':
+ resolution: {integrity: sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.60.0':
- resolution: {integrity: sha512-DX2x7CMcrJzsE91q7/O02IJQ5/aLkVtYFryqCjduJhUfGKG6yJV8hxaw8pZa93lLEpPTP/ohdN4wFz7yp/ry9A==}
+ '@rollup/rollup-linux-arm64-gnu@4.60.1':
+ resolution: {integrity: sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.60.0':
- resolution: {integrity: sha512-09EL+yFVbJZlhcQfShpswwRZ0Rg+z/CsSELFCnPt3iK+iqwGsI4zht3secj5vLEs957QvFFXnzAT0FFPIxSrkQ==}
+ '@rollup/rollup-linux-arm64-musl@4.60.1':
+ resolution: {integrity: sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-loong64-gnu@4.60.0':
- resolution: {integrity: sha512-i9IcCMPr3EXm8EQg5jnja0Zyc1iFxJjZWlb4wr7U2Wx/GrddOuEafxRdMPRYVaXjgbhvqalp6np07hN1w9kAKw==}
+ '@rollup/rollup-linux-loong64-gnu@4.60.1':
+ resolution: {integrity: sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==}
cpu: [loong64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-loong64-musl@4.60.0':
- resolution: {integrity: sha512-DGzdJK9kyJ+B78MCkWeGnpXJ91tK/iKA6HwHxF4TAlPIY7GXEvMe8hBFRgdrR9Ly4qebR/7gfUs9y2IoaVEyog==}
+ '@rollup/rollup-linux-loong64-musl@4.60.1':
+ resolution: {integrity: sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==}
cpu: [loong64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-ppc64-gnu@4.60.0':
- resolution: {integrity: sha512-RwpnLsqC8qbS8z1H1AxBA1H6qknR4YpPR9w2XX0vo2Sz10miu57PkNcnHVaZkbqyw/kUWfKMI73jhmfi9BRMUQ==}
+ '@rollup/rollup-linux-ppc64-gnu@4.60.1':
+ resolution: {integrity: sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-ppc64-musl@4.60.0':
- resolution: {integrity: sha512-Z8pPf54Ly3aqtdWC3G4rFigZgNvd+qJlOE52fmko3KST9SoGfAdSRCwyoyG05q1HrrAblLbk1/PSIV+80/pxLg==}
+ '@rollup/rollup-linux-ppc64-musl@4.60.1':
+ resolution: {integrity: sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==}
cpu: [ppc64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-riscv64-gnu@4.60.0':
- resolution: {integrity: sha512-3a3qQustp3COCGvnP4SvrMHnPQ9d1vzCakQVRTliaz8cIp/wULGjiGpbcqrkv0WrHTEp8bQD/B3HBjzujVWLOA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.60.1':
+ resolution: {integrity: sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-musl@4.60.0':
- resolution: {integrity: sha512-pjZDsVH/1VsghMJ2/kAaxt6dL0psT6ZexQVrijczOf+PeP2BUqTHYejk3l6TlPRydggINOeNRhvpLa0AYpCWSQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.60.1':
+ resolution: {integrity: sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-s390x-gnu@4.60.0':
- resolution: {integrity: sha512-3ObQs0BhvPgiUVZrN7gqCSvmFuMWvWvsjG5ayJ3Lraqv+2KhOsp+pUbigqbeWqueGIsnn+09HBw27rJ+gYK4VQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.60.1':
+ resolution: {integrity: sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.60.0':
- resolution: {integrity: sha512-EtylprDtQPdS5rXvAayrNDYoJhIz1/vzN2fEubo3yLE7tfAw+948dO0g4M0vkTVFhKojnF+n6C8bDNe+gDRdTg==}
+ '@rollup/rollup-linux-x64-gnu@4.60.1':
+ resolution: {integrity: sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.60.0':
- resolution: {integrity: sha512-k09oiRCi/bHU9UVFqD17r3eJR9bn03TyKraCrlz5ULFJGdJGi7VOmm9jl44vOJvRJ6P7WuBi/s2A97LxxHGIdw==}
+ '@rollup/rollup-linux-x64-musl@4.60.1':
+ resolution: {integrity: sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-openbsd-x64@4.60.0':
- resolution: {integrity: sha512-1o/0/pIhozoSaDJoDcec+IVLbnRtQmHwPV730+AOD29lHEEo4F5BEUB24H0OBdhbBBDwIOSuf7vgg0Ywxdfiiw==}
+ '@rollup/rollup-openbsd-x64@4.60.1':
+ resolution: {integrity: sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==}
cpu: [x64]
os: [openbsd]
- '@rollup/rollup-openharmony-arm64@4.60.0':
- resolution: {integrity: sha512-pESDkos/PDzYwtyzB5p/UoNU/8fJo68vcXM9ZW2V0kjYayj1KaaUfi1NmTUTUpMn4UhU4gTuK8gIaFO4UGuMbA==}
+ '@rollup/rollup-openharmony-arm64@4.60.1':
+ resolution: {integrity: sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.60.0':
- resolution: {integrity: sha512-hj1wFStD7B1YBeYmvY+lWXZ7ey73YGPcViMShYikqKT1GtstIKQAtfUI6yrzPjAy/O7pO0VLXGmUVWXQMaYgTQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.60.1':
+ resolution: {integrity: sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.60.0':
- resolution: {integrity: sha512-SyaIPFoxmUPlNDq5EHkTbiKzmSEmq/gOYFI/3HHJ8iS/v1mbugVa7dXUzcJGQfoytp9DJFLhHH4U3/eTy2Bq4w==}
+ '@rollup/rollup-win32-ia32-msvc@4.60.1':
+ resolution: {integrity: sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-gnu@4.60.0':
- resolution: {integrity: sha512-RdcryEfzZr+lAr5kRm2ucN9aVlCCa2QNq4hXelZxb8GG0NJSazq44Z3PCCc8wISRuCVnGs0lQJVX5Vp6fKA+IA==}
+ '@rollup/rollup-win32-x64-gnu@4.60.1':
+ resolution: {integrity: sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.60.0':
- resolution: {integrity: sha512-PrsWNQ8BuE00O3Xsx3ALh2Df8fAj9+cvvX9AIA6o4KpATR98c9mud4XtDWVvsEuyia5U4tVSTKygawyJkjm60w==}
+ '@rollup/rollup-win32-x64-msvc@4.60.1':
+ resolution: {integrity: sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==}
cpu: [x64]
os: [win32]
@@ -5314,11 +5397,11 @@ packages:
'@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==}
+ '@stylistic/stylelint-plugin@5.1.0':
+ resolution: {integrity: sha512-TFvKCbJUEWUYCD+rDv45qhnStO6nRtbBngaCblS2JGh8c95S3jJi3fIotfF6EDo4IVM15UPa65WP+kp6GNvXRA==}
engines: {node: '>=20.19.0'}
peerDependencies:
- stylelint: ^17.0.0
+ stylelint: ^17.6.0
'@surma/rollup-plugin-off-main-thread@2.2.3':
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
@@ -5333,8 +5416,8 @@ packages:
peerDependencies:
acorn: ^8.9.0
- '@swc/helpers@0.5.19':
- resolution: {integrity: sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==}
+ '@swc/helpers@0.5.21':
+ resolution: {integrity: sha512-jI/VAmtdjB/RnI8GTnokyX7Ug8c+g+ffD6QRLa6XQewtnGyukKkKSk3wLTM3b5cjt1jNh9x0jfVlagdN2gDKQg==}
'@sxzz/popperjs-es@2.11.8':
resolution: {integrity: sha512-wOwESXvvED3S8xBmcPWHs2dUuzrE4XiZeFu7e1hROIJkm02a49N120pmOXxY33sBb6hArItm5W5tcg1cBtV+HQ==}
@@ -5438,17 +5521,17 @@ packages:
peerDependencies:
vite: ^5.2.0 || ^6 || ^7 || ^8
- '@tanstack/store@0.9.2':
- resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==}
+ '@tanstack/store@0.10.0':
+ resolution: {integrity: sha512-KXAPlXun5J9DjO5LYo+EVjVHGdHfOl5YWE9TVPh4MeHl6gIngIV0fC5rE22JTRZa9KCMiKidh5FG6ufE2usr7Q==}
'@tanstack/virtual-core@3.13.23':
resolution: {integrity: sha512-zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg==}
- '@tanstack/vue-store@0.9.2':
- resolution: {integrity: sha512-Cz2QvwWg/vDziuCnP5TVjmZroshM8rI+Yaifqiv6A5jK8eaMxD5r86SJLUtznnOEGmqpTOPdp3ryvWzuPVTZrA==}
+ '@tanstack/vue-store@0.10.0':
+ resolution: {integrity: sha512-bI1SFiXFpvxBSCnWPPG5gGyQVuwifTv46pS06T+qK63qgU9eBgK3W/wm9ObYkscMrd+qTr2Z3x9WtsuxnthkrQ==}
peerDependencies:
'@vue/composition-api': ^1.2.1
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -5456,7 +5539,7 @@ packages:
'@tanstack/vue-virtual@3.13.23':
resolution: {integrity: sha512-b5jPluAR6U3eOq6GWAYSpj3ugnAIZgGR0e6aGAgyRse0Yu6MVQQ0ZWm9SArSXWtageogn6bkVD8D//c4IjW3xQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@tinyflow-ai/ui@1.1.10':
resolution: {integrity: sha512-l3kIYNq3K7LPKdcR6Dl60qwE039O4bdl7vRNnc1gqL0Rnzh6KTwYiwGvnwU8v96aoqCbRdPfvuvaaSrJomGf3Q==}
@@ -5464,19 +5547,191 @@ packages:
'@tinyflow-ai/vue@1.1.10':
resolution: {integrity: sha512-wK27NL3V00eFYDPRSioYCrmEsk5mvRFNooJR2bEgdYGmYWXSRkwYzPQy4dn1MrmGDMsqNYK3XjKRRvN7g+lofg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@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.30
+ vue: ^3.5.32
peerDependenciesMeta:
tinymce:
optional: true
- '@tsdown/css@0.21.4':
- resolution: {integrity: sha512-2aU44SVyShHmL6VSefFBB0H8OXPqGqd6KwZ4+SP88DyyM+kZ1nBqzs65xf+HCyL/1NnidQtpA1wWkZLKgLv2SA==}
+ '@tiptap/core@3.22.3':
+ resolution: {integrity: sha512-Dv9MKK5BDWCF0N2l6/Pxv3JNCce2kwuWf2cKMBc2bEetx0Pn6o7zlFmSxMvYK4UtG1Tw9Yg/ZHi6QOFWK0Zm9Q==}
+ peerDependencies:
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-blockquote@3.22.3':
+ resolution: {integrity: sha512-IaUx3zh7yLHXzIXKL+fw/jzFhsIImdhJyw0lMhe8FfYrefFqXJFYW/sey6+L/e8B3AWvTksPA6VBwefzbH77JA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-bold@3.22.3':
+ resolution: {integrity: sha512-tysipHla2zCWr8XNIWRaW9O+7i7/SoEqnRqSRUUi2ailcJjlia+RBy3RykhkgyThrQDStu5KGBS/UvrXwA+O1A==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-bubble-menu@3.22.3':
+ resolution: {integrity: sha512-Y6zQjh0ypDg32HWgICEvmPSKjGLr39k3aDxxt/H0uQEZSfw4smT0hxUyyyjVjx68C6t6MTnwdfz0hPI5lL68vQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-bullet-list@3.22.3':
+ resolution: {integrity: sha512-xOmW/b1hgECIE6r3IeZvKn4VVlG3+dfTjCWE6lnnyLaqdNkNhKS1CwUmDZdYNLUS2ryIUtgz5ID1W/8A3PhbiA==}
+ peerDependencies:
+ '@tiptap/extension-list': ^3.22.3
+
+ '@tiptap/extension-code-block@3.22.3':
+ resolution: {integrity: sha512-RiQtEjDAPrHpdo6sw6b7fOw/PijqgFIsozKKkGcSeBgWHQuFg7q9OxJTj+l0e60rVwSu/5gmKEEobzM9bX+t2Q==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-code@3.22.3':
+ resolution: {integrity: sha512-wafWTDQOuMKtXpZEuk1PFQmzopabBciNLryL90MB9S03MNLaQQZYLnmYkDBlzAaLAbgF5QiC+2XZQEBQuTVjFQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-document@3.22.3':
+ resolution: {integrity: sha512-MCSr1PFPtTd++lA3H1RNgqAczAE59XXJ5wUFIQf2F+/0DPY5q2SU4g5QsNJVxPPft5mrNT4C6ty8xBPrALFEdA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-dropcursor@3.22.3':
+ resolution: {integrity: sha512-taXq9Tl5aybdFbptJtFRHX9LFJzbXphAbPp4/vutFyTrBu5meXDxuS+B9pEmE+Or0XcolTlW2nDZB0Tqnr18JQ==}
+ peerDependencies:
+ '@tiptap/extensions': ^3.22.3
+
+ '@tiptap/extension-floating-menu@3.22.3':
+ resolution: {integrity: sha512-0f8b4KZ3XKai8GXWseIYJGdOfQr3evtFbBo3U08zy2aYzMMXWG0zEF7qe5/oiYp2aZ95edjjITnEceviTsZkIg==}
+ peerDependencies:
+ '@floating-ui/dom': ^1.0.0
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-gapcursor@3.22.3':
+ resolution: {integrity: sha512-L/Px4UeQEVG/D9WIlcAOIej+4wyIBCMUSYicSR+hW68UsObe4rxVbUas1QgidQKm6DOhoT7U7D4KQHA/Gdg/7A==}
+ peerDependencies:
+ '@tiptap/extensions': ^3.22.3
+
+ '@tiptap/extension-hard-break@3.22.3':
+ resolution: {integrity: sha512-J0v8I99y9tbvVmgKYKzKP/JYNsWaZYS7avn4rzLft2OhnyTfwt3OoY8DtpHmmi6apSUaCtoWHWta/TmoEfK1nQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-heading@3.22.3':
+ resolution: {integrity: sha512-XBHuhiEV2EEhZHpOLcplLqAmBIhJciU3I6AtwmqeEqDC0P114uMEfAO7JGlbBZdCYotNer26PKnu44TBTeNtkw==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-highlight@3.22.3':
+ resolution: {integrity: sha512-iGDzQ3IuVQpfQcWsMEQ0B8q3R83bZZH6l6O2MuCmWbzm/p7mMi5vQwRCMLAbM9xFELq8KjDMHOWeER4fozp/Sg==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-horizontal-rule@3.22.3':
+ resolution: {integrity: sha512-wI2bFzScs+KgWeBH/BtypcVKeYelCyqV0RG8nxsZMWtPrBhqixzNd0Oi3gEKtjSjKUqMQ/kjJAIRuESr5UzlHA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-image@3.22.3':
+ resolution: {integrity: sha512-Qpp8c5LOQaNpHrzjqZtoxtIR+8sSqJ7k8v+8anmYw3nxjvt2kpfT28Vd7aWMX55ZS43LaxMx+MkZqbmgUmMP0w==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-italic@3.22.3':
+ resolution: {integrity: sha512-LteA4cb4EGCiUtrK2JHvDF/Zg0/YqV4DUyHhAAho+oGEQDupZlsS6m0ia5wQcclkiTLzsoPrwcSNu6RDGQ16wQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-link@3.22.3':
+ resolution: {integrity: sha512-S8/P2o9pv6B3kqLjH2TRWwSAximGbciNc6R8/QcN6HWLYxp0N0JoqN3rZHl9VWIBAGRWc4zkt80dhqrl2xmgfQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-list-item@3.22.3':
+ resolution: {integrity: sha512-80CNf4oO5y8+LdckT4CyMe1t01EyhpRrQC9H45JW20P7559Nrchp5my3vvMtIAJbpTPPZtcB7LwdzWGKsG5drg==}
+ peerDependencies:
+ '@tiptap/extension-list': ^3.22.3
+
+ '@tiptap/extension-list-keymap@3.22.3':
+ resolution: {integrity: sha512-pKuyj5llu35zd/s2u/H9aydKZjmPRAIK5P1q/YXULhhCNln2RnmuRfQ5NklAqTD3yGciQ2lxDwwf7J6iw3ergA==}
+ peerDependencies:
+ '@tiptap/extension-list': ^3.22.3
+
+ '@tiptap/extension-list@3.22.3':
+ resolution: {integrity: sha512-rqvv/dtqwbX+8KnPv0eMYp6PnBcuhPMol5cv1GlS8Nq/Cxt68EWGUHBuTFesw+hdnRQLmKwzoO1DlRn7PhxYRQ==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/extension-ordered-list@3.22.3':
+ resolution: {integrity: sha512-orAghtmd+K4Euu4BgI1hG+iZDXBYOyl5YTwiLBc2mQn+pqtZ9LqaH2us4ETwEwNP3/IWXGSAimUZ19nuL+eM2w==}
+ peerDependencies:
+ '@tiptap/extension-list': ^3.22.3
+
+ '@tiptap/extension-paragraph@3.22.3':
+ resolution: {integrity: sha512-oO7rhfyhEuwm+50s9K3GZPjYyEEEvFAvm1wXopvZnhbkBLydIWImBfrZoC5IQh4/sRDlTIjosV2C+ji5y0tUSg==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-placeholder@3.22.3':
+ resolution: {integrity: sha512-7vbtlDVO00odqCnsMSmA4b6wjL5PFdfExFsdsDO0K0VemqHZ/doIRx/tosNUD1VYSOyKQd8U7efUjkFyVoIPlg==}
+ peerDependencies:
+ '@tiptap/extensions': ^3.22.3
+
+ '@tiptap/extension-strike@3.22.3':
+ resolution: {integrity: sha512-jY2InoUlKkuk5KHoIDGdML1OCA2n6PRHAtxwHNkAmiYh0Khf0zaVPGFpx4dgQrN7W5Q1WE6oBZnjrvy6qb7w0g==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-text-align@3.22.3':
+ resolution: {integrity: sha512-dG1NHE0yGf7fYiOdabCJuecI2IJ1uogyY/QvZqvPNaxRjZDoXYuGlMtz9jEDiIdQSaPED2MSsS7KkuNFQIEMGg==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-text-style@3.22.3':
+ resolution: {integrity: sha512-JKmWAogM/LX9ZJmXJQalpcR77wWVtVXdRFgvHGsFomW9WFhZqcnIEDWR2sbpZHWtu8dml6eBQGhdLppJmxeFfA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-text@3.22.3':
+ resolution: {integrity: sha512-Q9R7JsTdomP5uUjtPjNKxHT1xoh/i9OJZnmgJLe7FcgZEaPOQ3bWxmKZoLZQfDfZjyB8BtH+Hc7nUvhCMOePxw==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extension-underline@3.22.3':
+ resolution: {integrity: sha512-Ch6CBWRa5w90yYSPUW6x9Py9JdrXMqk3pZ9OIlMYD8A7BqyZGfiHerX7XDMYDS09KjyK3U9XH60/zxYOzXdDLA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+
+ '@tiptap/extensions@3.22.3':
+ resolution: {integrity: sha512-s5eiMq0m5N6N+W7dU6rd60KgZyyCD7FvtPNNswISfPr12EQwJBfbjWwTqd0UKNzA4fNrhQEERXnzORkykttPeA==}
+ peerDependencies:
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+
+ '@tiptap/pm@3.22.3':
+ resolution: {integrity: sha512-NjfWjZuvrqmpICT+GZWNIjtOdhPyqFKDMtQy7tsQ5rErM9L2ZQdy/+T/BKSO1JdTeBhdg9OP+0yfsqoYp2aT6A==}
+
+ '@tiptap/starter-kit@3.22.3':
+ resolution: {integrity: sha512-vdW/Oo1fdwTL1VOQ5YYbTov00ANeHLquBVEZyL/EkV7Xv5io9rXQsCysJfTSHhiQlyr2MtWFB4+CPGuwXjQWOQ==}
+
+ '@tiptap/vue-3@3.22.3':
+ resolution: {integrity: sha512-wOGZiBwIJYCZXts5VWWGgseGCRMc8tO46tgaOXNyMLVl2h2cO6/CNEcPO2pgtuoLIHoV4KYvfpw6n+XqR9cqbA==}
+ peerDependencies:
+ '@floating-ui/dom': ^1.0.0
+ '@tiptap/core': ^3.22.3
+ '@tiptap/pm': ^3.22.3
+ vue: ^3.5.32
+
+ '@tsdown/css@0.21.7':
+ resolution: {integrity: sha512-kydfZ109LIXwoBDrdIeEVi+PtM8375X9d/6UtYtjhj6TS94J25gJVUXw9AyJE6THEqB6OdGKM5MLqJPutO4kkA==}
engines: {node: '>=20.19.0'}
peerDependencies:
postcss: ^8.4.0
@@ -5484,7 +5739,7 @@ packages:
postcss-modules: ^6.0.0
sass: '*'
sass-embedded: '*'
- tsdown: 0.21.4
+ tsdown: 0.21.7
peerDependenciesMeta:
postcss:
optional: true
@@ -5497,33 +5752,33 @@ packages:
sass-embedded:
optional: true
- '@turbo/darwin-64@2.8.20':
- resolution: {integrity: sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==}
+ '@turbo/darwin-64@2.9.6':
+ resolution: {integrity: sha512-X/56SnVXIQZBLKwniGTwEQTGmtE5brSACnKMBWpY3YafuxVYefrC2acamfjgxP7BG5w3I+6jf0UrLoSzgPcSJg==}
cpu: [x64]
os: [darwin]
- '@turbo/darwin-arm64@2.8.20':
- resolution: {integrity: sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==}
+ '@turbo/darwin-arm64@2.9.6':
+ resolution: {integrity: sha512-aalBeSl4agT/QtYGDyf/XLajedWzUC9Vg/pm/YO6QQ93vkQ91Vz5uK1ta5RbVRDozQSz4njxUNqRNmOXDzW+qw==}
cpu: [arm64]
os: [darwin]
- '@turbo/linux-64@2.8.20':
- resolution: {integrity: sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==}
+ '@turbo/linux-64@2.9.6':
+ resolution: {integrity: sha512-YKi05jnNHaD7vevgYwahpzGwbsNNTwzU2c7VZdmdFm7+cGDP4oREUWSsainiMfRqjRuolQxBwRn8wf1jmu+YZA==}
cpu: [x64]
os: [linux]
- '@turbo/linux-arm64@2.8.20':
- resolution: {integrity: sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==}
+ '@turbo/linux-arm64@2.9.6':
+ resolution: {integrity: sha512-02o/ZS69cOYEDczXvOB2xmyrtzjQ2hVFtWZK1iqxXUfzMmTjZK4UumrfNnjckSg+gqeBfnPRHa0NstA173Ik3g==}
cpu: [arm64]
os: [linux]
- '@turbo/windows-64@2.8.20':
- resolution: {integrity: sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==}
+ '@turbo/windows-64@2.9.6':
+ resolution: {integrity: sha512-wVdQjvnBI15wB6JrA+43CtUtagjIMmX6XYO758oZHAsCNSxqRlJtdyujih0D8OCnwCRWiGWGI63zAxR0hO6s9g==}
cpu: [x64]
os: [win32]
- '@turbo/windows-arm64@2.8.20':
- resolution: {integrity: sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==}
+ '@turbo/windows-arm64@2.9.6':
+ resolution: {integrity: sha512-1XUUyWW0W6FTSqGEhU8RHVqb2wP1SPkr7hIvBlMEwH9jr+sJQK5kqeosLJ/QaUv4ecSAd1ZhIrLoW7qslAzT4A==}
cpu: [arm64]
os: [win32]
@@ -5692,8 +5947,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@25.5.0':
- resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
+ '@types/node@25.6.0':
+ resolution: {integrity: sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==}
'@types/nprogress@0.2.3':
resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==}
@@ -5746,69 +6001,69 @@ packages:
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@typescript-eslint/eslint-plugin@8.57.1':
- resolution: {integrity: sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==}
+ '@typescript-eslint/eslint-plugin@8.58.1':
+ resolution: {integrity: sha512-eSkwoemjo76bdXl2MYqtxg51HNwUSkWfODUOQ3PaTLZGh9uIWWFZIjyjaJnex7wXDu+TRx+ATsnSxdN9YWfRTQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.57.1
+ '@typescript-eslint/parser': ^8.58.1
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/parser@8.57.1':
- resolution: {integrity: sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==}
+ '@typescript-eslint/parser@8.58.1':
+ resolution: {integrity: sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/project-service@8.57.1':
- resolution: {integrity: sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==}
+ '@typescript-eslint/project-service@8.58.1':
+ resolution: {integrity: sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/rule-tester@8.57.1':
- resolution: {integrity: sha512-gk0q0rLa7a1uEB0iD2t1GZELK1z6HfudiKYeSVhjQ5gW5FdL0OcZ+8f09Lg7NbmHSBF3V+S9BDuw0qoCFkHR+w==}
+ '@typescript-eslint/rule-tester@8.58.1':
+ resolution: {integrity: sha512-xNpISfU2bSCaw4zOy81xZJ3zC+CV6byOGRtMJGheAVqLGhRCX6NcA1UcKMpIWu4Vva8Jh76+j6VoeKKtYbeXNQ==}
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.57.1':
- resolution: {integrity: sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==}
+ '@typescript-eslint/scope-manager@8.58.1':
+ resolution: {integrity: sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.57.1':
- resolution: {integrity: sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==}
+ '@typescript-eslint/tsconfig-utils@8.58.1':
+ resolution: {integrity: sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/type-utils@8.57.1':
- resolution: {integrity: sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==}
+ '@typescript-eslint/type-utils@8.58.1':
+ resolution: {integrity: sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/types@8.57.1':
- resolution: {integrity: sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==}
+ '@typescript-eslint/types@8.58.1':
+ resolution: {integrity: sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.57.1':
- resolution: {integrity: sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==}
+ '@typescript-eslint/typescript-estree@8.58.1':
+ resolution: {integrity: sha512-w4w7WR7GHOjqqPnvAYbazq+Y5oS68b9CzasGtnd6jIeOIeKUzYzupGTB2T4LTPSv4d+WPeccbxuneTFHYgAAWg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/utils@8.57.1':
- resolution: {integrity: sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==}
+ '@typescript-eslint/utils@8.58.1':
+ resolution: {integrity: sha512-Ln8R0tmWC7pTtLOzgJzYTXSCjJ9rDNHAqTaVONF4FEi2qwce8mD9iSOxOpLFFvWp/wBFlew0mjM1L1ihYWfBdQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- typescript: '>=4.8.4 <6.0.0'
+ typescript: '>=4.8.4 <6.1.0'
- '@typescript-eslint/visitor-keys@8.57.1':
- resolution: {integrity: sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==}
+ '@typescript-eslint/visitor-keys@8.58.1':
+ resolution: {integrity: sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -5817,65 +6072,65 @@ packages:
'@v-c/async-validator@1.0.1':
resolution: {integrity: sha512-2WXdbTso13119ZLiwUv1JkmdL0K4ll69id4oE3ft3LQX+YAHOoJtfx080u26lLtypgZS32PguoohgB0BVo39rg==}
- '@v-c/cascader@1.0.2':
- resolution: {integrity: sha512-xv2CRJBPPVTos3k88Gs5urW//Q8rQ8+jTjdK8kmykURDvnYNs067dskvht+qU77Ocsk9b8Xt2omWDOfzAhjO0g==}
+ '@v-c/cascader@1.0.3':
+ resolution: {integrity: sha512-TaXkWxP3N6LW1yezeN+91k7BFYDSsWj1Y1ujWv51I0lJY4l0iwtjKDDmLLMYoqtUjnW1Onz1g1h6PtiDFALcXQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/checkbox@1.0.1':
resolution: {integrity: sha512-+QsE/0VfU6oeglwuHWYxRNTn3+eV08iG0uN/upDmqSGznezInzfUClh+t4acd/OxyJVtuob0WKsg/vPlT6WRWw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/collapse@1.0.0':
resolution: {integrity: sha512-y4NAl3j4mka193ZMDLHdISA8to61qoROG6/kTQ0myM2ZuEsonnEK1QWlqoEw3gveMsa6a4RdyoXLxdGdcJyp0Q==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/color-picker@1.0.6':
resolution: {integrity: sha512-XiTlEMG5p5jkCdKP7nbeo9EJrpdXnoW4uBOA2us8pVgA6m0GxrwMoCg//X+1XsuOaebG/1Swo65mjRuMBM6rZg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/dialog@1.0.3':
resolution: {integrity: sha512-NfeuaHC1PPaRyekoXN6G9AjRL5L9eQiV9tnkRp62GyCfZsHMFgdwlREW6buHifHe7dk4z/ilvGms5tnbw63R4A==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/drawer@1.0.2':
- resolution: {integrity: sha512-AhLr3avLgWUfAIFiBriHr3+A6/3gkHPxiZgjQDEXpEwkNCEkq+1L05d8kPWnZifHc3gOL/kmOvi1QuxmcZoSmg==}
+ '@v-c/drawer@1.0.3':
+ resolution: {integrity: sha512-k6oIWFZXtt9lR2A3zUzIVQZCl90adBy7bh1bs6uHPsEa5Ma73+7PbQlaxt0X+WQAVW9M5n9pqDAf6Qp7qexi+A==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/dropdown@1.0.2':
resolution: {integrity: sha512-D6TACf3jUiRWx4xW5h2+wVT9SMYxUasFlAHESYJr4ZMjLTLLM1Q8iBjkjhGF+vA0eYR5zqRTwlaacN0DNDZBPw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/image@1.0.7':
- resolution: {integrity: sha512-9mZtZRDp5kKSquclq+/9dEpSn8USB/r5k7s4YUcHrplZN8pfvNFB3ed1m/j/Tsozcuw5U0jS8iSOyUPDor+smA==}
+ '@v-c/image@1.0.10':
+ resolution: {integrity: sha512-rcFtfsmoZJrQoax+Y2rTxp60HcClNfPFrtwQCF8MAlCtkt+Z4wnavLikixW4H1QwJ1V8GOb4tPRjSUZslaU2xg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/input-number@1.0.5':
resolution: {integrity: sha512-YQBpV1KnuYf0o2XrbC+OEyP6lkyqv1XhzDVh3QhHO2bs/Jr3uSD8b3cxdEGU+gjoNJUcoZx7XiIzcYhLlvMctw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/input@1.0.2':
- resolution: {integrity: sha512-NzBor6XbUYP42zRrcaBUgWtQI1aIaN3oylmMdvSZ5UMcWsAXRNC8XKsedkFF/LLOEJBJ2NaTbomHRwkIjmtQAA==}
+ '@v-c/input@1.0.3':
+ resolution: {integrity: sha512-vQic9OWfREBlNfJeRcejMcOPhp4xnbHVbqeqo/TfCOf73Ym+zjWXRGXiqM/pIqV9v95zuhYen3KzMeJYM4pViA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/mentions@1.0.0':
resolution: {integrity: sha512-trkG1lvfiaIY7UnHn0gx6B01o3rFLEMin3KGp1q4oU6zOCRWde4ejZ+EHSvmXzOz2N+FlRMTE4EMJFi4w0oOlQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/menu@1.0.12':
- resolution: {integrity: sha512-3tM9YfDWbJmpiNLQo71UjYz3Qo/pzFgwSZ07TxKghQK+Fb80/bpalVylhoXPDNwEzeAwDHL2SDqvefd0xgunbA==}
+ '@v-c/menu@1.0.13':
+ resolution: {integrity: sha512-RbOuk+R0V2bm04daK5LvlJ95N/XS2k+YSnvrGUDCKVkCIAPEe6NZMU6clcj5F4yKtKwWDggq/n5NlJPfJKFSPA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/mini-decimal@1.0.1':
resolution: {integrity: sha512-76wZLdlkI017iDlaZMNOWZyDCv29YVabUJn5urQgIKtW4dnI5AkNXWtmLyhl/mu/OS7ZGisRi5ai/558QhLQxQ==}
@@ -5883,22 +6138,22 @@ packages:
'@v-c/mutate-observer@1.0.1':
resolution: {integrity: sha512-84+9KGORX8LY9u+K0DEGyRwRCJaky0sjRkXxBC7X/jahHJl8NQGQ0Gxve5IVwaxRTfZ9eftlRmHs90JD6Utfqg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/notification@1.0.0':
resolution: {integrity: sha512-aU5g+ZiYxp0KVdKuho067wJRF38Mv7MrQS95dwSJLsbDmVFBpjO3Lo3ptakfPkwn+7uwRytHKIf39t9QVGk+sg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/overflow@1.0.4':
- resolution: {integrity: sha512-27vuUWoLUz/WeUzYVubfVZ4YtthKCQ1FskYw2VIQw6ECnuTxG1yjj2UdSIoEunZFdU03VU1wU9DI6Qu0Vcp1tQ==}
+ '@v-c/overflow@1.0.5':
+ resolution: {integrity: sha512-Ae5aSZItOQHYzscs5JcmLPBLLEkpCS6c8IcHv9jABH0lZZGlZiUF4WBkAvSSnU8Q9f14BJ6dEb5XLwbwpyTZEQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/pagination@1.0.0':
resolution: {integrity: sha512-uYIMkvHKMtY+nwHTu5rXxiq6KPf0zGpZbtQTn1nDPng0tOyA1vLQ+R6OfE+1LOwuQqvFTEDnAq4vb90By+eBfw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/picker@1.0.4':
resolution: {integrity: sha512-B98FSgE+Kh6lNwa5msySFL8NNiF3fFkmFuuL14WEdb4f6q47XYH7YvcQa2jySXnbYPKHdykZMFo37f/0BzFaPw==}
@@ -5907,7 +6162,7 @@ packages:
dayjs: '>= 1.x'
luxon: '>= 3.x'
moment: '>= 2.x'
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
date-fns:
optional: true
@@ -5921,112 +6176,112 @@ packages:
'@v-c/portal@1.0.8':
resolution: {integrity: sha512-93elruWfHKrdtRkpFBNpi47YhQjA75tCuG8C/WvcQ9x/dp+H3i+y7h6t0iyyDjZu1w3d2U5+d43vtslmoQXBYg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/progress@1.0.0':
resolution: {integrity: sha512-kWDTU1uXnPDMmoezwyAECxuSH+WKn92OjSdk/GgDbQgZ0qNy9woOiRe5fOsrcy61agHdJxzf0MvsUy1b6bZVlA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/qrcode@1.0.0':
resolution: {integrity: sha512-OSMrYDhP/NQiUcO6J0X2X8BskHPRqX/E/F9npH3oayZgjCo5Aom+63Ja3J0u6SOmKP1JgLSgjrm5karc0671jw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/rate@1.0.1':
resolution: {integrity: sha512-ZWWY01LeKu9S/JncdvSr2gz2Kwwum3bB/AxzzCsuhCyg+9P4BLwX7S2WZDMiJ92uYEpiYladVTCa9XdSCPaCaQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/resize-observer@1.0.8':
resolution: {integrity: sha512-VH8WBsNfZA5KQ+CXVaQ1PK5B6FIHnuTdqOLrjRWiZTrIYDZi/MyREi9b21YDj55fbFWMRx4yapnO9tiZX1RNxA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/segmented@1.0.1':
- resolution: {integrity: sha512-qEaHzJxl3gfuZNn754iUcC+YrvPih0luD/wr51VInwOKQgEqaIm5R0fzs3uO57aA4zCuXrDn5LK0z6rFOF+IbQ==}
+ '@v-c/segmented@1.0.2':
+ resolution: {integrity: sha512-g/aWgURMJkytu05AACN3Pd9QKgka4ZQM8tl/y0AcabANldy2hmPIHek0ZH5dDdn5VmK1PhAfUTqtgDS19sLh5w==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/select@1.0.20':
resolution: {integrity: sha512-gmG5U7r8YgXIjGQZ5qjHM3felSlYAep7pBjJRzA8ALgHhx0CKRk6RTadVDXzWh7LwOFvlgTn7OLUMTU6RACoaQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/slick@1.0.2':
resolution: {integrity: sha512-8BbPxJgYST+tio9jyeFQgJb/3XSFhfWZN8Am7YVYeqsYsvn3g8wu61UZNSjlkp9ArOEe+ujOgX4izfDHeXh4RA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/slider@1.0.10':
resolution: {integrity: sha512-KMIVytBm8K8RQ+aPPraS28GmBptGHESF/gDRbGjOLD7xyivuQDJeEqVaUFY3EcCWsERjh4VP/L96gUbMTF0uag==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/steps@1.0.0':
resolution: {integrity: sha512-DPL0OOb8pDLlTPZB93b8+Saxiz6V5zEpGXKaCnsbXUuOhimkc7089AuEKfpMw+8x1SrVe+gapWf5RRHWXUm2pg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/switch@1.0.0':
resolution: {integrity: sha512-VIem244KJkYfqDgofpgHjK00sGL9rJ/9OtmK4Gbs4hnPsrTtzHDBRltYxR4IT7HQleathZfj6NhcZ1bjdWKYUw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/table@1.0.3':
- resolution: {integrity: sha512-VsklYM8M/fSrx+djBJJ0+nUiyzav9w3kZQYtojCnLPg2d2BKORtDKw8WRcpIaZZjDUSJcOh9LOSoY7GA+JKwBQ==}
+ '@v-c/table@1.0.4':
+ resolution: {integrity: sha512-Fvf5WzGidDdkRHa8pRiIKS38E8v+goa2Y8fktwB586+gEM1IwcWFGSnioa6tOH/hA0N2mCWfdAp+qFWb9LXRdw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/tabs@1.0.1':
- resolution: {integrity: sha512-6G6cWKdxb8l3IuR802mZGV+l8GAvCEJCoVQcyG3BwiBYOeOii6eyET5D+yMp7mC7dsFRxc2y7q0krxyo97CosQ==}
+ '@v-c/tabs@1.0.2':
+ resolution: {integrity: sha512-FA/lG5TaYOVFhB3WjJ2x6O8egREm9FWdfEbnY1Tmg3D1avkxYDhISHlW4ot3NvWb8Ds4MxBe0T9xg206o0LHEw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@v-c/textarea@1.0.3':
- resolution: {integrity: sha512-oCpqdOyiNPFgLRUw913IjTdIMVtryy9maJEaSz+ledn/cVO4OJ44dEP8eCnhxlHTfduLKesKIlDoRIBhLu4qqQ==}
+ '@v-c/textarea@1.0.4':
+ resolution: {integrity: sha512-VrQrLjKsiFh3bngXDULK+mUI4RmTT0hqDOUChsGmo5dZGgcmzsDbVLFluYCvpV+InUsnn2jGSQEuqMQy1Vga+g==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/tooltip@1.0.3':
resolution: {integrity: sha512-72EkTfhb67RPJvMXIW6HUYiZ+Jdrb7tBQmS3wDtFDNU7uIrS5DQLyXJDCu9qWlrPv7cQ/RHA4JfCINw88vchzw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/tour@1.0.3':
resolution: {integrity: sha512-y4DVJPP7jvL+MWUMAKQWxLAMXSWJEfZXaKASPn3DKbSQ8drBhsjMXwcep3glAfrCjCKfj/QD3OrUMxqydi4qFw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/tree-select@1.0.3':
resolution: {integrity: sha512-N4mK8JXrCU+GFfhLG/zat3TAUt0Ju+P4S3hN6PlmuHPikQ4OWEA91CA8Br83i4zpW9TCH7xP0EfMUvhLtjqbsA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/tree@1.0.5':
resolution: {integrity: sha512-u6tja/kV9mupXWhFT+RtLUVqhCvNtb7LHuKkh4pka8sy5goQ7MjIODciuXn8mizIlEw3rGopq7C7auC9Sg1K8w==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/trigger@1.0.14':
resolution: {integrity: sha512-3flCLvHvW2fJ8Rg/m4kCk7UGtL9GsrPgeSbdQJ1FU5+sZmfT2bcPwQZM824e7VFLmgaYPLiaQOL3l46uEPFWLw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/upload@1.0.0':
resolution: {integrity: sha512-W92PNCD61aM/B5w8oUzHQSDHur1T8484726Ls0IoNMO5nPiF/15eEE3RuuI/t7xXQVP/fA06hNSwzXwGWdDg1w==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/util@1.0.19':
resolution: {integrity: sha512-apJGS4BVzhXbrNR6jxXF18jAiOWIn/UNmGjgSvB5r4ba9Wr/ireKCfJvhuuNsZi+scLaM0W3ghB81PbQ5vwoJg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@v-c/virtual-list@1.0.6':
resolution: {integrity: sha512-eXGbU1zME4pXAfQSBfhp1BkqBP3XYSX03CRJg7tsHgwXoaw8DE7pLuxzFSa+COJ66oOdYn99XS/sHTiz34aQCA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@valibot/to-json-schema@1.6.0':
resolution: {integrity: sha512-d6rYyK5KVa2XdqamWgZ4/Nr+cXhxjy7lmpe6Iajw15J/jmU+gyxl2IEd1Otg1d7Rl3gOQL5reulnSypzBtYy1A==}
@@ -6048,7 +6303,7 @@ packages:
peerDependencies:
'@types/video.js': 7.x
video.js: 7.x
- vue: ^3.5.30
+ vue: ^3.5.32
'@videojs/http-streaming@2.16.3':
resolution: {integrity: sha512-91CJv5PnFBzNBvyEjt+9cPzTK/xoVixARj2g7ZAvItA+5bx8VKdk5RxCz/PP2kdzz9W+NiDUMPkdmTsosmy69Q==}
@@ -6077,50 +6332,50 @@ packages:
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
- vue: ^3.5.30
+ vue: ^3.5.32
'@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.30
+ vue: ^3.5.32
- '@vitejs/plugin-vue@6.0.5':
- resolution: {integrity: sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==}
+ '@vitejs/plugin-vue@6.0.6':
+ resolution: {integrity: sha512-u9HHgfrq3AjXlysn0eINFnWQOJQLO9WN6VprZ8FXl7A2bYisv3Hui9Ij+7QZ41F/WYWarHjwBbXtD7dKg3uxbg==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
- vue: ^3.5.30
+ vue: ^3.5.32
- '@vitest/expect@4.1.0':
- resolution: {integrity: sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==}
+ '@vitest/expect@4.1.4':
+ resolution: {integrity: sha512-iPBpra+VDuXmBFI3FMKHSFXp3Gx5HfmSCE8X67Dn+bwephCnQCaB7qWK2ldHa+8ncN8hJU8VTMcxjPpyMkUjww==}
- '@vitest/mocker@4.1.0':
- resolution: {integrity: sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==}
+ '@vitest/mocker@4.1.4':
+ resolution: {integrity: sha512-R9HTZBhW6yCSGbGQnDnH3QHfJxokKN4KB+Yvk9Q1le7eQNYwiCyKxmLmurSpFy6BzJanSLuEUDrD+j97Q+ZLPg==}
peerDependencies:
msw: ^2.4.9
- vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- '@vitest/pretty-format@4.1.0':
- resolution: {integrity: sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==}
+ '@vitest/pretty-format@4.1.4':
+ resolution: {integrity: sha512-ddmDHU0gjEUyEVLxtZa7xamrpIefdEETu3nZjWtHeZX4QxqJ7tRxSteHVXJOcr8jhiLoGAhkK4WJ3WqBpjx42A==}
- '@vitest/runner@4.1.0':
- resolution: {integrity: sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==}
+ '@vitest/runner@4.1.4':
+ resolution: {integrity: sha512-xTp7VZ5aXP5ZJrn15UtJUWlx6qXLnGtF6jNxHepdPHpMfz/aVPx+htHtgcAL2mDXJgKhpoo2e9/hVJsIeFbytQ==}
- '@vitest/snapshot@4.1.0':
- resolution: {integrity: sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==}
+ '@vitest/snapshot@4.1.4':
+ resolution: {integrity: sha512-MCjCFgaS8aZz+m5nTcEcgk/xhWv0rEH4Yl53PPlMXOZ1/Ka2VcZU6CJ+MgYCZbcJvzGhQRjVrGQNZqkGPttIKw==}
- '@vitest/spy@4.1.0':
- resolution: {integrity: sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==}
+ '@vitest/spy@4.1.4':
+ resolution: {integrity: sha512-XxNdAsKW7C+FLydqFJLb5KhJtl3PGCMmYwFRfhvIgxJvLSXhhVI1zM8f1qD3Zg7RCjTSzDVyct6sghs9UEgBEQ==}
- '@vitest/utils@4.1.0':
- resolution: {integrity: sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==}
+ '@vitest/utils@4.1.4':
+ resolution: {integrity: sha512-13QMT+eysM5uVGa1rG4kegGYNp6cnQcsTc67ELFbhNLQO+vgsygtYJx2khvdt4gVQqSSpC/KT5FZZxUpP3Oatw==}
'@volar/language-core@2.4.28':
resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==}
@@ -6135,7 +6390,7 @@ packages:
resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==}
engines: {node: '>=20.19.0'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
vue:
optional: true
@@ -6172,17 +6427,17 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.5.30':
- resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
+ '@vue/compiler-core@3.5.32':
+ resolution: {integrity: sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==}
- '@vue/compiler-dom@3.5.30':
- resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
+ '@vue/compiler-dom@3.5.32':
+ resolution: {integrity: sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==}
- '@vue/compiler-sfc@3.5.30':
- resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
+ '@vue/compiler-sfc@3.5.32':
+ resolution: {integrity: sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==}
- '@vue/compiler-ssr@3.5.30':
- resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
+ '@vue/compiler-ssr@3.5.32':
+ resolution: {integrity: sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==}
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
@@ -6190,45 +6445,45 @@ packages:
'@vue/devtools-api@7.7.9':
resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
- '@vue/devtools-api@8.1.0':
- resolution: {integrity: sha512-O44X57jjkLKbLEc4OgL/6fEPOOanRJU8kYpCE8qfKlV96RQZcdzrcLI5mxMuVRUeXhHKIHGhCpHacyCk0HyO4w==}
+ '@vue/devtools-api@8.1.1':
+ resolution: {integrity: sha512-bsDMJ07b3GN1puVwJb/fyFnj/U2imyswK5UQVLZwVl7O05jDrt6BHxeG5XffmOOdasOj/bOmIjxJvGPxU7pcqw==}
- '@vue/devtools-core@8.1.0':
- resolution: {integrity: sha512-LvD1VgDpoHmYL00IgKRLKktF6SsPAb0yaV8wB8q2jRwsAWvqhS8+vsMLEGKNs7uoKyymXhT92dhxgf/wir6YGQ==}
+ '@vue/devtools-core@8.1.1':
+ resolution: {integrity: sha512-bCCsSABp1/ot4j8xJEycM6Mtt2wbuucfByr6hMgjbYhrtlscOJypZKvy8f1FyWLYrLTchB5Qz216Lm92wfbq0A==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@vue/devtools-kit@7.7.9':
resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
- '@vue/devtools-kit@8.1.0':
- resolution: {integrity: sha512-/NZlS4WtGIB54DA/z10gzk+n/V7zaqSzYZOVlg2CfdnpIKdB61bd7JDIMxf/zrtX41zod8E2/bbEBoW/d7x70Q==}
+ '@vue/devtools-kit@8.1.1':
+ resolution: {integrity: sha512-gVBaBv++i+adg4JpH71k9ppl4soyR7Y2McEqO5YNgv0BI1kMZ7BDX5gnwkZ5COYgiCyhejZG+yGNrBAjj6Coqg==}
'@vue/devtools-shared@7.7.9':
resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
- '@vue/devtools-shared@8.1.0':
- resolution: {integrity: sha512-h8uCb4Qs8UT8VdTT5yjY6tOJ//qH7EpxToixR0xqejR55t5OdISIg7AJ7eBkhBs8iu1qG5gY3QQNN1DF1EelAA==}
+ '@vue/devtools-shared@8.1.1':
+ resolution: {integrity: sha512-+h4ttmJYl/txpxHKaoZcaKpC+pvckgLzIDiSQlaQ7kKthKh8KuwoLW2D8hPJEnqKzXOvu15UHEoGyngAXCz0EQ==}
'@vue/language-core@3.2.6':
resolution: {integrity: sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==}
- '@vue/reactivity@3.5.30':
- resolution: {integrity: sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==}
+ '@vue/reactivity@3.5.32':
+ resolution: {integrity: sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==}
- '@vue/runtime-core@3.5.30':
- resolution: {integrity: sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==}
+ '@vue/runtime-core@3.5.32':
+ resolution: {integrity: sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==}
- '@vue/runtime-dom@3.5.30':
- resolution: {integrity: sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==}
+ '@vue/runtime-dom@3.5.32':
+ resolution: {integrity: sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==}
- '@vue/server-renderer@3.5.30':
- resolution: {integrity: sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==}
+ '@vue/server-renderer@3.5.32':
+ resolution: {integrity: sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@vue/shared@3.5.30':
- resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
+ '@vue/shared@3.5.32':
+ resolution: {integrity: sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==}
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -6242,12 +6497,12 @@ packages:
'@vueuse/core@13.9.0':
resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@vueuse/core@14.2.1':
resolution: {integrity: sha512-3vwDzV+GDUNpdegRY6kzpLm4Igptq+GA0QkJ3W61Iv27YWwW/ufSlOfgQIpN6FZRMG0mkaz4gglJRtq5SeJyIQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@vueuse/integrations@12.8.2':
resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==}
@@ -6305,7 +6560,7 @@ packages:
qrcode: ^1.5
sortablejs: ^1
universal-cookie: ^7 || ^8
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
async-validator:
optional: true
@@ -6347,7 +6602,7 @@ packages:
'@vueuse/motion@3.0.3':
resolution: {integrity: sha512-4B+ITsxCI9cojikvrpaJcLXyq0spj3sdlzXjzesWdMRd99hhtFI6OJ/1JsqwtF73YooLe0hUn/xDR6qCtmn5GQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@vueuse/shared@12.0.0':
resolution: {integrity: sha512-3i6qtcq2PIio5i/vVYidkkcgvmTjCqrf26u+Fd4LhnbBmIT6FN8y6q/GJERp8lfcB9zVEfjdV0Br0443qZuJpw==}
@@ -6358,29 +6613,29 @@ packages:
'@vueuse/shared@13.9.0':
resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
'@vueuse/shared@14.2.1':
resolution: {integrity: sha512-shTJncjV9JTI4oVNyF1FQonetYAiTBd+Qj7cY89SWbXSkx7gyhrgtEdF2ZAVWS1S3SHlaROO6F2IesJxQEkZBw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@vxe-ui/core@4.4.3':
- resolution: {integrity: sha512-IIwi5+h7Yopq3Ps+JtlSmggUQZg3wvzuad2xuWGR9sNzR/r0qlWKfax7qimrM2UNpVhSF1jI+3Z9+3yg+HPYTw==}
+ '@vxe-ui/core@4.4.4':
+ resolution: {integrity: sha512-vC7vRHZYApHnQrdMfTdPKAbaGY74lnLaH/2GTujtPdFP4CDp9nM9BwHMzm2nMJOg7sa9RYczI3Pd13zpTNxcCw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- '@xmldom/xmldom@0.8.11':
- resolution: {integrity: sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==}
+ '@xmldom/xmldom@0.8.12':
+ resolution: {integrity: sha512-9k/gHF6n/pAi/9tqr3m3aqkuiNosYTurLLUtc7xQ9sxB/wm7WPygCv8GYa6mS0fLJEHhqMC1ATYhz++U/lRHqg==}
engines: {node: '>=10.0.0'}
- '@xyflow/svelte@1.5.1':
- resolution: {integrity: sha512-PsurMZxEaTrAwt+PzQtzEkwZwJ9dSc92kusz1rNJTogU1ATxIwheznO2R+RCf2GNuyRuExeDn26WwwBTqkCIhg==}
+ '@xyflow/svelte@1.5.2':
+ resolution: {integrity: sha512-jPLc2cwRmrkXSv/jvsNDQqTGCsNyTWURKtBl28UCH3BdOAA3CIc0/oQ0EvIcjPdzr0NwvWMgq9TmLdjOIccCEQ==}
peerDependencies:
svelte: ^5.25.0
- '@xyflow/system@0.0.75':
- resolution: {integrity: sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==}
+ '@xyflow/system@0.0.76':
+ resolution: {integrity: sha512-hvwvnRS1B3REwVDlWexsq7YQaPZeG3/mKo1jv38UmnpWmxihp14bW6VtEOuHEwJX2FvzFw8k77LyKSk/wiZVNA==}
abbrev@2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
@@ -6422,8 +6677,8 @@ packages:
ajv@8.18.0:
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- algoliasearch@5.49.2:
- resolution: {integrity: sha512-1K0wtDaRONwfhL4h8bbJ9qTjmY6rhGgRvvagXkMBsAOMNr+3Q2SffHECh9DIuNVrMA1JwA0zCwhyepgBZVakng==}
+ algoliasearch@5.50.1:
+ resolution: {integrity: sha512-/bwdue1/8LWELn/DBalGRfuLsXBLXULJo/yOeavJtDu8rBwxIzC6/Rz9Jg19S21VkJvRuZO1k8CZXBMS73mYbA==}
engines: {node: '>= 14.0.0'}
alien-signals@3.1.2:
@@ -6464,10 +6719,10 @@ packages:
resolution: {integrity: sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==}
engines: {node: '>=12.22.0'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- antdv-next@1.1.6:
- resolution: {integrity: sha512-jTGDghXpEfD/jVBnJL3lDVdk90d7NwH6am3qjKzdN7Tup9a8QGiUL5dynNat9ZJ/W4qJdpsHvp04t0g5pZKNEQ==}
+ antdv-next@1.1.9:
+ resolution: {integrity: sha512-lC4pEn7d+SPwVvSnfDC4G4b6WKniq3VDKU/tUSHa8W6emgkVH0pcsvD0bHQ5c14MSEVlgB4xUVs6X9qihTfh8w==}
anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
@@ -6583,8 +6838,8 @@ packages:
peerDependencies:
axios: '>= 0.17.0'
- axios@1.13.6:
- resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
+ axios@1.15.0:
+ resolution: {integrity: sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
@@ -6628,8 +6883,8 @@ packages:
bare-abort-controller:
optional: true
- bare-fs@4.5.6:
- resolution: {integrity: sha512-1QovqDrR80Pmt5HPAsMsXTCFcDYr+NSUKW6nd6WO5v0JBmnItc/irNRzm2KOQ5oZ69P37y+AMujNyNtG+1Rggw==}
+ bare-fs@4.7.0:
+ resolution: {integrity: sha512-xzqKsCFxAek9aezYhjJuJRXBIaYlg/0OGDTZp+T8eYmYMlm66cs6cYko02drIyjN2CBbi+I6L7YfXyqpqtKRXA==}
engines: {bare: '>=1.16.0'}
peerDependencies:
bare-buffer: '*'
@@ -6637,19 +6892,22 @@ packages:
bare-buffer:
optional: true
- bare-os@3.8.0:
- resolution: {integrity: sha512-Dc9/SlwfxkXIGYhvMQNUtKaXCaGkZYGcd1vuNUUADVqzu4/vQfvnMkYYOUnt2VwQ2AqKr/8qAVFRtwETljgeFg==}
+ bare-os@3.8.7:
+ resolution: {integrity: sha512-G4Gr1UsGeEy2qtDTZwL7JFLo2wapUarz7iTMcYcMFdS89AIQuBoyjgXZz0Utv7uHs3xA9LckhVbeBi8lEQrC+w==}
engines: {bare: '>=1.14.0'}
bare-path@3.0.0:
resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==}
- bare-stream@2.10.0:
- resolution: {integrity: sha512-DOPZF/DDcDruKDA43cOw6e9Quq5daua7ygcAwJE/pKJsRWhgSSemi7qVNGE5kyDIxIeN1533G/zfbvWX7Wcb9w==}
+ bare-stream@2.13.0:
+ resolution: {integrity: sha512-3zAJRZMDFGjdn+RVnNpF9kuELw+0Fl3lpndM4NcEOhb9zwtSo/deETfuIwMSE5BXanA0FrN1qVjffGwAg2Y7EA==}
peerDependencies:
+ bare-abort-controller: '*'
bare-buffer: '*'
bare-events: '*'
peerDependenciesMeta:
+ bare-abort-controller:
+ optional: true
bare-buffer:
optional: true
bare-events:
@@ -6661,8 +6919,8 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- baseline-browser-mapping@2.10.10:
- resolution: {integrity: sha512-sUoJ3IMxx4AyRqO4MLeHlnGDkyXRoUG0/AI9fjK+vS72ekpV0yWVY7O0BVjmBcRtkNcsAO2QDZ4tdKKGoI6YaQ==}
+ baseline-browser-mapping@2.10.18:
+ resolution: {integrity: sha512-VSnGQAOLtP5mib/DPyg2/t+Tlv65NTBz83BJBJvmLVHHuKJVaDOBvJJykiT5TR++em5nfAySPccDZDa4oSrn8A==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -6713,22 +6971,22 @@ packages:
bpmn-moddle@8.1.0:
resolution: {integrity: sha512-yI5OAFfYVJwViKTsTsonVfCBPtB3MlefADUORwNIxxBOMp21vnoxuxsdgUWlPH/dvAEZh/+mr8UtqOBNu8NC5Q==}
- brace-expansion@1.1.12:
- resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
+ brace-expansion@1.1.14:
+ resolution: {integrity: sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==}
- brace-expansion@2.0.2:
- resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@2.1.0:
+ resolution: {integrity: sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==}
- brace-expansion@5.0.4:
- resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
+ brace-expansion@5.0.5:
+ resolution: {integrity: sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==}
engines: {node: 18 || 20 || >=22}
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.28.1:
- resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
+ browserslist@4.28.2:
+ resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -6742,16 +7000,16 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- builtin-modules@5.0.0:
- resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==}
+ builtin-modules@5.1.0:
+ resolution: {integrity: sha512-c5JxaDrzwRjq3WyJkI1AGR5xy6Gr6udlt7sQPbl09+3ckB+Zo2qqQ2KhCTBr7Q8dHB43bENGYEk4xddrFH/b7A==}
engines: {node: '>=18.20'}
bundle-name@4.1.0:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
- c12@3.3.3:
- resolution: {integrity: sha512-750hTRvgBy5kcMNPdh95Qo+XUBeGo8C7nsKSmedDmaQI+E0r82DwHeM6vBewDe4rGFbnxoa4V9pw+sPh5+Iz8Q==}
+ c12@3.3.4:
+ resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==}
peerDependencies:
magicast: '*'
peerDependenciesMeta:
@@ -6773,8 +7031,8 @@ packages:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ call-bind@1.0.9:
+ resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==}
engines: {node: '>= 0.4'}
call-bound@1.0.4:
@@ -6813,8 +7071,8 @@ packages:
camunda-bpmn-moddle@7.0.1:
resolution: {integrity: sha512-Br8Diu6roMpziHdpl66Dhnm0DTnCFMrSD9zwLV08LpD52QA0UsXxU87XfHf08HjuB7ly0Hd1bvajZRpf9hbmYQ==}
- caniuse-lite@1.0.30001781:
- resolution: {integrity: sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==}
+ caniuse-lite@1.0.30001787:
+ resolution: {integrity: sha512-mNcrMN9KeI68u7muanUpEejSLghOKlVhRqS/Za2IeyGllJ9I9otGpR9g3nsw7n4W378TE/LyIteA0+/FOZm4Kg==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -6882,8 +7140,8 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- citty@0.2.1:
- resolution: {integrity: sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==}
+ citty@0.2.2:
+ resolution: {integrity: sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==}
class-variance-authority@0.7.1:
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
@@ -6899,10 +7157,6 @@ packages:
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
engines: {node: '>=4'}
- clear-module@4.1.2:
- resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==}
- engines: {node: '>=8'}
-
cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
@@ -6922,10 +7176,6 @@ packages:
clipboard@2.0.11:
resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==}
- clipboardy@4.0.0:
- resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
- engines: {node: '>=18'}
-
cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
@@ -7060,38 +7310,34 @@ packages:
resolution: {integrity: sha512-N4oog6YJWbR9kGyXvS7jEykLDXIE2C0ILYqNBZBp9iwiJpoCBWYsuAdW6PPFn6w06jjnC+3JstVvWHO4cZqvRg==}
engines: {node: '>=18'}
- connect-history-api-fallback@1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
-
- consola@2.15.3:
- resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
-
consola@3.4.2:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
- conventional-changelog-angular@8.3.0:
- resolution: {integrity: sha512-DOuBwYSqWzfwuRByY9O4oOIvDlkUCTDzfbOgcSbkY+imXXj+4tmrEFao3K+FxemClYfYnZzsvudbwrhje9VHDA==}
+ conventional-changelog-angular@8.3.1:
+ resolution: {integrity: sha512-6gfI3otXK5Ph5DfCOI1dblr+kN3FAm5a97hYoQkqNZxOaYa5WKfXH+AnpsmS+iUH2mgVC2Cg2Qw9m5OKcmNrIg==}
engines: {node: '>=18'}
- conventional-changelog-conventionalcommits@9.3.0:
- resolution: {integrity: sha512-kYFx6gAyjSIMwNtASkI3ZE99U1fuVDJr0yTYgVy+I2QG46zNZfl2her+0+eoviG82c5WQvW1jMt1eOQTeJLodA==}
+ conventional-changelog-conventionalcommits@9.3.1:
+ resolution: {integrity: sha512-dTYtpIacRpcZgrvBYvBfArMmK2xvIpv2TaxM0/ZI5CBtNUzvF2x0t15HsbRABWprS6UPmvj+PzHVjSx4qAVKyw==}
engines: {node: '>=18'}
- conventional-commits-parser@6.3.0:
- resolution: {integrity: sha512-RfOq/Cqy9xV9bOA8N+ZH6DlrDR+5S3Mi0B5kACEjESpE+AviIpAptx9a9cFpWCCvgRtWT+0BbUw+e1BZfts9jg==}
+ conventional-commits-parser@6.4.0:
+ resolution: {integrity: sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==}
engines: {node: '>=18'}
hasBin: true
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.2.2:
- resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
+ cookie-es@1.2.3:
+ resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==}
- cookie-es@2.0.0:
- resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
+ cookie-es@2.0.1:
+ resolution: {integrity: sha512-aVf4A4hI2w70LnF7GG+7xDQUkliwiXWXFvTjkip4+b64ygDQ2sJPRSKFDHbxn8o0xu9QzPkMuuiWIXyFSE2slA==}
+
+ cookie-es@3.1.1:
+ resolution: {integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg==}
copy-anything@3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
@@ -7113,8 +7359,8 @@ packages:
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- cosmiconfig-typescript-loader@6.2.0:
- resolution: {integrity: sha512-GEN39v7TgdxgIoNcdkRE3uiAzQt3UXLyHbRHD6YoL048XAeOomyxaP+Hh/+2C6C2wYjxJ2onhJcsQp+L4YEkVQ==}
+ cosmiconfig-typescript-loader@6.3.0:
+ resolution: {integrity: sha512-Akr82WH1Wfqatyiqpj8HDkO2o2KmJRu1FhKfSNJP3K4IdXwHfEyL7MOb62i1AGQVLtIQM+iCE9CGOtrfhR+mmA==}
engines: {node: '>=v18'}
peerDependencies:
'@types/node': '*'
@@ -7172,45 +7418,45 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- cspell-config-lib@9.7.0:
- resolution: {integrity: sha512-pguh8A3+bSJ1OOrKCiQan8bvaaY125de76OEFz7q1Pq309lIcDrkoL/W4aYbso/NjrXaIw6OjkgPMGRBI/IgGg==}
- engines: {node: '>=20'}
+ cspell-config-lib@10.0.0:
+ resolution: {integrity: sha512-HWK7SRnJ3N/kOThw/uzmXmQYCzBxu58Jkq2hHyte1voDl118BeNFoaNRWMpYdHbBi3kCj8gaZu8wGtm+Zmdhxw==}
+ engines: {node: '>=22.18.0'}
- cspell-dictionary@9.7.0:
- resolution: {integrity: sha512-k/Wz0so32+0QEqQe21V9m4BNXM5ZN6lz3Ix/jLCbMxFIPl6wT711ftjOWIEMFhvUOP0TWXsbzcuE9mKtS5mTig==}
- engines: {node: '>=20'}
+ cspell-dictionary@10.0.0:
+ resolution: {integrity: sha512-KubSoEAJO+77KPSSWjoLCz0+MIWVNq3joGTSyxucAZrBSJD64Y1O4BHHr1aj6XHIZwXhWWNScQlrQR3OcIulng==}
+ engines: {node: '>=22.18.0'}
- cspell-gitignore@9.7.0:
- resolution: {integrity: sha512-MtoYuH4ah4K6RrmaF834npMcRsTKw0658mC6yvmBacUQOmwB/olqyuxF3fxtbb55HDb7cXDQ35t1XuwwGEQeZw==}
- engines: {node: '>=20'}
+ cspell-gitignore@10.0.0:
+ resolution: {integrity: sha512-55XLH9Y52eR7QgyV28Uaw8V9cN1YZ3PQIyrN9YBR4ndQNBKJxO9+jX1nwSspwnccCZiE/N+GGxFzRBb75JDSCw==}
+ engines: {node: '>=22.18.0'}
hasBin: true
- cspell-glob@9.7.0:
- resolution: {integrity: sha512-LUeAoEsoCJ+7E3TnUmWBscpVQOmdwBejMlFn0JkXy6LQzxrybxXBKf65RSdIv1o5QtrhQIMa358xXYQG0sv/tA==}
- engines: {node: '>=20'}
+ cspell-glob@10.0.0:
+ resolution: {integrity: sha512-bXS35fMcA9X7GEkfnWBfoPd/vTnxxfXW+YHt6tWxu5fejfs00qUbjWp1oLC9FxRaXWxIkfsYp2mi1k1jYl4RVw==}
+ engines: {node: '>=22.18.0'}
- cspell-grammar@9.7.0:
- resolution: {integrity: sha512-oEYME+7MJztfVY1C06aGcJgEYyqBS/v/ETkQGPzf/c6ObSAPRcUbVtsXZgnR72Gru9aBckc70xJcD6bELdoWCA==}
- engines: {node: '>=20'}
+ cspell-grammar@10.0.0:
+ resolution: {integrity: sha512-49udtYzkcCYEIDJbFOb4IwiAJebOYZnYvG6o6Ep19Tq0Xwjk7i4vxUprNiFNDCWFbcbJRPE9cpwQUVwp5WFGLw==}
+ engines: {node: '>=22.18.0'}
hasBin: true
- cspell-io@9.7.0:
- resolution: {integrity: sha512-V7x0JHAUCcJPRCH8c0MQkkaKmZD2yotxVyrNEx2SZTpvnKrYscLEnUUTWnGJIIf9znzISqw116PLnYu2c+zd6Q==}
- engines: {node: '>=20'}
+ cspell-io@10.0.0:
+ resolution: {integrity: sha512-NQCAUhx9DwKApxPuFl7EK1K1XSaQEAPld45yjjwv93xF8rJkEGkgzOwjbqafwAD20eKYv1a7oj/9EC0S5jETSw==}
+ engines: {node: '>=22.18.0'}
- cspell-lib@9.7.0:
- resolution: {integrity: sha512-aTx/aLRpnuY1RJnYAu+A8PXfm1oIUdvAQ4W9E66bTgp1LWI+2G2++UtaPxRIgI0olxE9vcXqUnKpjOpO+5W9bQ==}
- engines: {node: '>=20'}
+ cspell-lib@10.0.0:
+ resolution: {integrity: sha512-PowW6JEjuv/F2aFEirZvBxpzHdchOnpsUJbeIcFcai0++taLTbHQObROBEBf7e0S8DnHpVD5TZkqrTME5e44wg==}
+ engines: {node: '>=22.18.0'}
- cspell-trie-lib@9.7.0:
- resolution: {integrity: sha512-a2YqmcraL3g6I/4gY7SYWEZfP73oLluUtxO7wxompk/kOG2K1FUXyQfZXaaR7HxVv10axT1+NrjhOmXpfbI6LA==}
- engines: {node: '>=20'}
+ cspell-trie-lib@10.0.0:
+ resolution: {integrity: sha512-R8qrMx10E/bm3Lecslwxn9XYo5NzSRK1rtandEX5n9UmEYHoBXjZELkg5+TOnV8VgrVaJSK57XtcGrbKp/4kSg==}
+ engines: {node: '>=22.18.0'}
peerDependencies:
- '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-types': 10.0.0
- cspell@9.7.0:
- resolution: {integrity: sha512-ftxOnkd+scAI7RZ1/ksgBZRr0ouC7QRKtPQhD/PbLTKwAM62sSvRhE1bFsuW3VKBn/GilWzTjkJ40WmnDqH5iQ==}
- engines: {node: '>=20.18'}
+ cspell@10.0.0:
+ resolution: {integrity: sha512-R25gsSR1SLlcGyw48fwJwp0PjXrVdl7RDO/Dm5+s4DvC1uQSlyiUxsr/8ZtbyC/MPeUJFQN9B4luqLlSm0WelQ==}
+ engines: {node: '>=22.18.0'}
hasBin: true
css-functions-list@3.3.3:
@@ -7220,9 +7466,6 @@ packages:
css-render@0.15.14:
resolution: {integrity: sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==}
- css-select@4.3.0:
- resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
-
css-select@5.2.2:
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
@@ -7495,11 +7738,11 @@ packages:
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
- defu@6.1.4:
- resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
+ defu@6.1.7:
+ resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==}
- delaunator@5.0.1:
- resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
+ delaunator@5.1.0:
+ resolution: {integrity: sha512-AGrQ4QSgssa1NGmWmLPqN5NY2KajF5MqxetNEO+o0n3ZwZZeTmt7bBnvzHWrmkZFxGgr4HdyFgelzgi06otLuQ==}
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -7543,8 +7786,8 @@ packages:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- devalue@5.6.4:
- resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==}
+ devalue@5.7.1:
+ resolution: {integrity: sha512-MUbZ586EgQqdRnC4yDrlod3BEdyvE4TapGYHMW2CiaW+KkkFmWEFqBUaLltEZCGi0iFXCEjRF0OjF0DV2QHjOA==}
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
@@ -7584,9 +7827,6 @@ packages:
dom-scroll-into-view@2.0.1:
resolution: {integrity: sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==}
- dom-serializer@1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
-
dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
@@ -7599,10 +7839,6 @@ packages:
domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- domhandler@4.3.1:
- resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
- engines: {node: '>= 4'}
-
domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
@@ -7617,9 +7853,6 @@ packages:
dompurify@3.3.3:
resolution: {integrity: sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==}
- domutils@2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
-
domutils@3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
@@ -7638,16 +7871,8 @@ packages:
resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
engines: {node: '>=18'}
- dotenv-expand@8.0.3:
- resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
- engines: {node: '>=12'}
-
- dotenv@16.6.1:
- resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
- engines: {node: '>=12'}
-
- dotenv@17.3.1:
- resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==}
+ dotenv@17.4.2:
+ resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
engines: {node: '>=12'}
dotenv@8.6.0:
@@ -7689,13 +7914,13 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.321:
- resolution: {integrity: sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==}
+ electron-to-chromium@1.5.335:
+ resolution: {integrity: sha512-q9n5T4BR4Xwa2cwbrwcsDJtHD/enpQ5S1xF1IAtdqf5AAgqDFmR/aakqH3ChFdqd/QXJhS3rnnXFtexU7rax6Q==}
- element-plus@2.13.6:
- resolution: {integrity: sha512-XHgwXr8Fjz6i+6BaqFhAbae/dJbG7bBAAlHrY3pWL7dpj+JcqcOyKYt4Oy5KP86FQwS1k4uIZDjCx2FyUR5lDg==}
+ element-plus@2.13.7:
+ resolution: {integrity: sha512-XdHATFZOyzVFL1DaHQ90IOJQSg9UnSAV+bhDW+YB5UoZ0Hxs50mwqjqfwXkuwpSag+VXXizVcErBR6Movo5daw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
@@ -7728,9 +7953,6 @@ packages:
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
- entities@2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
-
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -7768,8 +7990,8 @@ packages:
errx@0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
- es-abstract@1.24.1:
- resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
+ es-abstract@1.24.2:
+ resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==}
engines: {node: '>= 0.4'}
es-define-property@1.0.1:
@@ -7811,8 +8033,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- esbuild@0.27.4:
- resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==}
+ esbuild@0.27.7:
+ resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==}
engines: {node: '>=18'}
hasBin: true
@@ -7861,8 +8083,8 @@ packages:
'@eslint/json':
optional: true
- eslint-plugin-better-tailwindcss@4.3.2:
- resolution: {integrity: sha512-1DLX2QmHmOj3u667f8vEI0zKoRc0Y1qJt33tfIeIkpTyzWaz9b2GzWBLD4bR+WJ/kxzC0Skcbx7cMerRWQ6OYg==}
+ eslint-plugin-better-tailwindcss@4.4.1:
+ resolution: {integrity: sha512-ueFciTgj2M+4YklYdtvpbMA3Nn22z60sQoSA4bnctOP4h0daUhJKAsDaGi888N00qWtIUqeK5Ikt6xnNnHPg2g==}
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
@@ -7900,8 +8122,8 @@ packages:
peerDependencies:
eslint: '>=8.23.0'
- eslint-plugin-perfectionist@5.7.0:
- resolution: {integrity: sha512-WRHj7OZS/INutQ/gKN5C1ZGnMhkQ3oKZQAA2I7rl5yM8keBtSd9oj/qlJaHuwh5873FhMPqYlttcadF0YsTN7g==}
+ eslint-plugin-perfectionist@5.8.0:
+ resolution: {integrity: sha512-k8uIptWIxkUclonCFGyDzgYs9NI+Qh0a7cUXS3L7IYZDEsjXuimFBVbxXPQQngWqMiaxJRwbtYB4smMGMqF+cw==}
engines: {node: ^20.0.0 || >=22.0.0}
peerDependencies:
eslint: ^8.45.0 || ^9.0.0 || ^10.0.0
@@ -7911,8 +8133,8 @@ packages:
peerDependencies:
eslint: ^9.0.0 || ^10.0.0
- eslint-plugin-unicorn@63.0.0:
- resolution: {integrity: sha512-Iqecl9118uQEXYh7adylgEmGfkn5es3/mlQTLLkd4pXkIk9CTGrAbeUux+YljSa2ohXCBmQQ0+Ej1kZaFgcfkA==}
+ eslint-plugin-unicorn@64.0.0:
+ resolution: {integrity: sha512-rNZwalHh8i0UfPlhNwg5BTUO1CMdKNmjqe+TgzOTZnpKoi8VBgsW7u9qCHIdpxEzZ1uwrJrPF0uRb7l//K38gA==}
engines: {node: ^20.10.0 || >=21.0.0}
peerDependencies:
eslint: '>=9.38.0'
@@ -7958,8 +8180,8 @@ packages:
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- eslint@10.1.0:
- resolution: {integrity: sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==}
+ eslint@10.2.0:
+ resolution: {integrity: sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==}
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
hasBin: true
peerDependencies:
@@ -7988,8 +8210,13 @@ packages:
resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
- esrap@2.2.4:
- resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==}
+ esrap@2.2.5:
+ resolution: {integrity: sha512-/yLB1538mag+dn0wsePTe8C0rDIjUOaJpMs2McodSzmM2msWcZsBSdRtg6HOBt0A/r82BN+Md3pgwSc/uWt2Ig==}
+ peerDependencies:
+ '@typescript-eslint/types': ^8.2.0
+ peerDependenciesMeta:
+ '@typescript-eslint/types':
+ optional: true
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
@@ -8033,10 +8260,6 @@ packages:
evtd@0.2.4:
resolution: {integrity: sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
execa@9.6.1:
resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==}
engines: {node: ^18.19.0 || >=20.5.0}
@@ -8079,11 +8302,20 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-string-truncated-width@1.2.1:
+ resolution: {integrity: sha512-Q9acT/+Uu3GwGj+5w/zsGuQjh9O1TyywhIwAxHudtWrgF09nHOPrvTLhQevPbttcxjr/SNN7mJmfOw/B1bXgow==}
+
+ fast-string-width@1.1.0:
+ resolution: {integrity: sha512-O3fwIVIH5gKB38QNbdg+3760ZmGz0SZMgvwJbA1b2TGXceKE6A2cOlfogh1iw8lr049zPyd7YADHy+B7U4W9bQ==}
+
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
- fast-xml-parser@4.5.5:
- resolution: {integrity: sha512-cK9c5I/DwIOI7/Q7AlGN3DuTdwN61gwSfL8rvuVPK+0mcCNHHGxRrpiFtaZZRfRMJL3Gl8B2AFlBG6qXf03w9A==}
+ fast-wrap-ansi@0.1.6:
+ resolution: {integrity: sha512-HlUwET7a5gqjURj70D5jl7aC3Zmy4weA1SHUfM0JFI0Ptq987NH2TwbBFLoERhfwk+E+eaq4EK3jXoT+R3yp3w==}
+
+ fast-xml-parser@4.5.6:
+ resolution: {integrity: sha512-Yd4vkROfJf8AuJrDIVMVmYfULKmIJszVsMv7Vo71aocsKgFxpdlpSHXSaInvyYfgw2PRuObQSW2GFpVMUjxu9A==}
hasBin: true
fastest-levenshtein@1.0.16:
@@ -8157,8 +8389,8 @@ packages:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
- flat-cache@6.1.21:
- resolution: {integrity: sha512-2u7cJfSf7Th7NxEk/VzQjnPoglok2YCsevS7TSbJjcDQWJPbqUUnSYtriHSvtnq+fRZHy1s0ugk4ApnQyhPGoQ==}
+ flat-cache@6.1.22:
+ resolution: {integrity: sha512-N2dnzVJIphnNsjHcrxGW7DePckJ6haPrSFqpsBUhHYgwtKGVq4JrBGielEGD2fCVnsGm1zlBVZ8wGhkyuetgug==}
flatted@3.4.2:
resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==}
@@ -8283,10 +8515,6 @@ packages:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
@@ -8298,8 +8526,8 @@ packages:
get-tsconfig@4.13.7:
resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==}
- giget@2.0.0:
- resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
+ giget@3.2.0:
+ resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==}
hasBin: true
git-raw-commits@5.0.1:
@@ -8359,12 +8587,8 @@ packages:
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
engines: {node: '>=18'}
- globals@16.5.0:
- resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
- engines: {node: '>=18'}
-
- globals@17.4.0:
- resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==}
+ globals@17.5.0:
+ resolution: {integrity: sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==}
engines: {node: '>=18'}
globalthis@1.0.4:
@@ -8379,8 +8603,8 @@ packages:
resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
- globby@16.1.1:
- resolution: {integrity: sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==}
+ globby@16.2.0:
+ resolution: {integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==}
engines: {node: '>=20'}
globjoin@0.1.4:
@@ -8410,15 +8634,15 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- h3@1.15.10:
- resolution: {integrity: sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==}
+ h3@1.15.11:
+ resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==}
hammerjs@2.0.8:
resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==}
engines: {node: '>=0.8.0'}
- happy-dom@20.8.4:
- resolution: {integrity: sha512-GKhjq4OQCYB4VLFBzv8mmccUadwlAusOZOI7hC1D9xDIT5HhzkJK17c4el2f6R6C715P9xB4uiMxeKUa2nHMwQ==}
+ happy-dom@20.8.9:
+ resolution: {integrity: sha512-Tz23LR9T9jOGVZm2x1EPdXqwA37G/owYMxRwU0E4miurAtFsPMQ1d2Jc2okUaSjZqAFz2oEn3FLXC5a0a+siyA==}
engines: {node: '>=20.0.0'}
has-bigints@1.1.0:
@@ -8462,10 +8686,6 @@ packages:
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
- he@1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
-
hey-listen@1.0.8:
resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
@@ -8486,17 +8706,12 @@ packages:
hookified@1.15.1:
resolution: {integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==}
- hookified@2.1.0:
- resolution: {integrity: sha512-ootKng4eaxNxa7rx6FJv2YKef3DuhqbEj3l70oGXwddPQEEnISm50TEZQclqiLTAtilT2nu7TErtCO523hHkyg==}
+ hookified@2.1.1:
+ resolution: {integrity: sha512-AHb76R16GB5EsPBE2J7Ko5kiEyXwviB9P5SMrAKcuAu4vJPZttViAbj9+tZeaQE5zjDme+1vcHP78Yj/WoAveA==}
htm@3.1.1:
resolution: {integrity: sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ==}
- html-minifier-terser@6.1.0:
- resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
- engines: {node: '>=12'}
- hasBin: true
-
html-minifier-terser@7.2.0:
resolution: {integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==}
engines: {node: ^14.13.1 || >=16.0.0}
@@ -8527,17 +8742,13 @@ packages:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
- httpxy@0.3.1:
- resolution: {integrity: sha512-XjG/CEoofEisMrnFr0D6U6xOZ4mRfnwcYQ9qvvnT4lvnX8BoeA3x3WofB75D+vZwpaobFVkBIHrZzoK40w8XSw==}
+ httpxy@0.5.0:
+ resolution: {integrity: sha512-qwX7QX/rK2visT10/b7bSeZWQOMlSm3svTD0pZpU+vJjNUP0YHtNv4c3z+MO+MSnGuRFWJFdCZiV+7F7dXIOzg==}
human-id@4.1.3:
resolution: {integrity: sha512-tsYlhAYpjCKa//8rXZ9DqKEawhPoSytweBC2eNvcaDK+57RZLHGqNs3PZTQO6yekLFSuvA6AlnAfrw1uBvtb+Q==}
hasBin: true
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
human-signals@8.0.1:
resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
engines: {node: '>=18.18.0'}
@@ -8583,6 +8794,10 @@ packages:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
+ import-fresh@4.0.0:
+ resolution: {integrity: sha512-Fpi660c7VPDM3fPKYovStd9IP1CPOikf6v/dGxJJMmHPcwYQIMJ4W7kO1avBYEpMqkCh+Dx3Ln6H7VYqgztLjw==}
+ engines: {node: '>=22.15'}
+
import-meta-resolve@4.2.0:
resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
@@ -8815,10 +9030,6 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
@@ -8871,10 +9082,6 @@ packages:
resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==}
engines: {node: '>=16'}
- is64bit@2.0.0:
- resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
- engines: {node: '>=18'}
-
isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
@@ -8953,9 +9160,6 @@ packages:
json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- json-schema@0.4.0:
- resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
-
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@@ -8982,8 +9186,8 @@ packages:
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
- katex@0.16.40:
- resolution: {integrity: sha512-1DJcK/L05k1Y9Gf7wMcyuqFOL6BiY3vY0CFcAM/LPRN04NALxcl6u7lOWNsp3f/bCHWxigzQl6FbR95XJ4R84Q==}
+ katex@0.16.45:
+ resolution: {integrity: sha512-pQpZbdBu7wCTmQUh7ufPmLr0pFoObnGUoL/yhtwJDgmmQpbkg/0HSVti25Fu4rmd1oCR6NGWe9vqTWuWv3GcNA==}
hasBin: true
keycode@2.2.1:
@@ -9028,58 +9232,53 @@ packages:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
- lefthook-darwin-arm64@2.1.4:
- resolution: {integrity: sha512-BUAAE9+rUrjr39a+wH/1zHmGrDdwUQ2Yq/z6BQbM/yUb9qtXBRcQ5eOXxApqWW177VhGBpX31aqIlfAZ5Q7wzw==}
+ lefthook-darwin-arm64@2.1.5:
+ resolution: {integrity: sha512-VITTaw8PxxyE26gkZ8UcwIa5ZrWnKNRGLeeSrqri40cQdXvLTEoMq2tjjw7eiL9UcB0waRReDdzydevy9GOPUQ==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@2.1.4:
- resolution: {integrity: sha512-K1ncIMEe84fe+ss1hQNO7rIvqiKy2TJvTFpkypvqFodT7mJXZn7GLKYTIXdIuyPAYthRa9DwFnx5uMoHwD2F1Q==}
+ lefthook-darwin-x64@2.1.5:
+ resolution: {integrity: sha512-AvtjYiW0BSGHBGrdvL313seUymrW9FxI+6JJwJ+ZSaa2sH81etrTB0wAwlH1L9VfFwK9+gWvatZBvLfF3L4fPw==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@2.1.4:
- resolution: {integrity: sha512-PVUhjOhVN71YaYsVdQyNbFZ4a2jFB2Tg5hKrrn9kaWpx64aLz/XivLjwr8sEuTaP1GRlEWBpW6Bhrcsyo39qFw==}
+ lefthook-freebsd-arm64@2.1.5:
+ resolution: {integrity: sha512-mXjJwe8jKGWGiBYUxfQY1ab3Nn5NhafqT9q3KJz8m5joGGQj4JD0cbWxF1nVBLBWsDGbWZRZunTCMGcIScT2bQ==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@2.1.4:
- resolution: {integrity: sha512-ZWV9o/LeyWNEBoVO+BhLqxH3rGTba05nkm5NvMjEFSj7LbUNUDbQmupZwtHl1OMGJO66eZP0CalzRfUH6GhBxQ==}
+ lefthook-freebsd-x64@2.1.5:
+ resolution: {integrity: sha512-exD69dCjc1K45BxatDPGoH4NmEvgLKPm4kJLOWn1fTeHRKZwWiFPwnjknEoG2OemlCDHmCU++5X40kMEG0WBlA==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@2.1.4:
- resolution: {integrity: sha512-iWN0pGnTjrIvNIcSI1vQBJXUbybTqJ5CLMniPA0olabMXQfPDrdMKVQe+mgdwHK+E3/Y0H0ZNL3lnOj6Sk6szA==}
+ lefthook-linux-arm64@2.1.5:
+ resolution: {integrity: sha512-57TDKC5ewWpsCLZQKIJMHumFEObYKVundmPpiWhX491hINRZYYOL/26yrnVnNcidThRzTiTC+HLcuplLcaXtbA==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@2.1.4:
- resolution: {integrity: sha512-96bTBE/JdYgqWYAJDh+/e/0MaxJ25XTOAk7iy/fKoZ1ugf6S0W9bEFbnCFNooXOcxNVTan5xWKfcjJmPIKtsJA==}
- cpu: [x64]
- os: [linux]
-
- lefthook-openbsd-arm64@2.1.4:
- resolution: {integrity: sha512-oYUoK6AIJNEr9lUSpIMj6g7sWzotvtc3ryw7yoOyQM6uqmEduw73URV/qGoUcm4nqqmR93ZalZwR2r3Gd61zvw==}
+ lefthook-openbsd-arm64@2.1.5:
+ resolution: {integrity: sha512-5aSwK7vV3A6t0w9PnxCMiVjQlcvopBP50BtmnnLnNJyAYHnFbZ0Baq5M0WkE9IsUkWSux0fe6fd0jDkuG711MA==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@2.1.4:
- resolution: {integrity: sha512-i/Dv9Jcm68y9cggr1PhyUhOabBGP9+hzQPoiyOhKks7y9qrJl79A8XfG6LHekSuYc2VpiSu5wdnnrE1cj2nfTg==}
+ lefthook-openbsd-x64@2.1.5:
+ resolution: {integrity: sha512-Y+pPdDuENJ8qWnUgL02xxhpjblc0WnwXvWGfqnl3WZrAgHzQpwx3G6469RID/wlNVdHYAlw3a8UkFSMYsTzXvA==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@2.1.4:
- resolution: {integrity: sha512-hSww7z+QX4YMnw2lK7DMrs3+w7NtxksuMKOkCKGyxUAC/0m1LAICo0ZbtdDtZ7agxRQQQ/SEbzFRhU5ysNcbjA==}
+ lefthook-windows-arm64@2.1.5:
+ resolution: {integrity: sha512-2PlcFBjTzJaMufw0c28kfhB/0zmaRCU0TRPPsil/HU2YNOExod4upPGLk9qjgsOmb2YVWFz6zq6u7+D1yqmzTQ==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@2.1.4:
- resolution: {integrity: sha512-eE68LwnogxwcPgGsbVGPGxmghyMGmU9SdGwcc+uhGnUxPz1jL89oECMWJNc36zjVK24umNeDAzB5KA3lw1MuWw==}
+ lefthook-windows-x64@2.1.5:
+ resolution: {integrity: sha512-yiAh8qxml6uqy10jDxOdN9fOQpyLxBFY1fgCEAhn7sVJYmJKRhjqSBwZX6LG5MQjzr29KStrIdw7TR3lf3rT7Q==}
cpu: [x64]
os: [win32]
- lefthook@2.1.4:
- resolution: {integrity: sha512-JNfJ5gAn0KADvJ1I6/xMcx70+/6TL6U9gqGkKvPw5RNMfatC7jIg0Evl97HN846xmfz959BV70l8r3QsBJk30w==}
+ lefthook@2.1.5:
+ resolution: {integrity: sha512-yB9IFWurFllusbPZqvG0EavTmpNXPya2MuO7Li7YT78xAj3uCQ3AgmW9TVUbTTsSMhsegbiAMRpwfEk2TP1P0A==}
hasBin: true
less@4.6.4:
@@ -9179,8 +9378,11 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- listhen@1.9.0:
- resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
+ linkifyjs@4.3.2:
+ resolution: {integrity: sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==}
+
+ listhen@1.9.1:
+ resolution: {integrity: sha512-4EhoyVcXEpNlY5HJRSQpH7Rba94M8N2JmI62ePjl0lrJKXSfG0F1FAgHGxBoz/T3pe41sUEwkIRRIcaUL0/Ofw==}
hasBin: true
listr2@9.0.5:
@@ -9209,8 +9411,8 @@ packages:
locko@1.1.0:
resolution: {integrity: sha512-pYB2dzRY93fJkg2RIl41AMNgTQftEjyTK9vlPrGOJvuGQsOjb267VJBw15BjiN3RBd1oBoKkOu9E2dRdFKIfAA==}
- lodash-es@4.17.23:
- resolution: {integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==}
+ lodash-es@4.18.1:
+ resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
lodash-unified@1.0.3:
resolution: {integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==}
@@ -9258,8 +9460,8 @@ packages:
lodash.upperfirst@4.3.1:
resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
- lodash@4.17.23:
- resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
+ lodash@4.18.1:
+ resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
log-symbols@7.0.1:
resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
@@ -9279,8 +9481,8 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.2.7:
- resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==}
+ lru-cache@11.3.4:
+ resolution: {integrity: sha512-ysVTXR2AtduoU+XfgKgAm9Rw7wHxfgnHm0zVzLqD4eAyJAvvirBIxw422a3aRnOL8OQhCd0gL6X0Z3w9uMiljg==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -9289,7 +9491,7 @@ packages:
lucide-vue-next@0.577.0:
resolution: {integrity: sha512-py05bAfv9SHVJqscbiOnjcnLlEmOffA58a+7XhZuFxrs6txe1E8VoR1ngWGTYO+9aVKABAz8l3ee3PqiQN9QPA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
luxon@3.7.2:
resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==}
@@ -9326,8 +9528,8 @@ packages:
resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
hasBin: true
- marked@17.0.5:
- resolution: {integrity: sha512-6hLvc0/JEbRjRgzI6wnT2P1XuM1/RrrDEX0kPt0N7jGm1133g6X7DlxFasUIx+72aKAr904GTxhSLDrd5DIlZg==}
+ marked@17.0.6:
+ resolution: {integrity: sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==}
engines: {node: '>= 20'}
hasBin: true
@@ -9367,9 +9569,6 @@ packages:
mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
- mdn-data@2.23.0:
- resolution: {integrity: sha512-786vq1+4079JSeu2XdcDjrhi/Ry7BWtjDl9WtGPWLiIHb2T66GvIVflZTBoSNZ5JqTtJGYEVMuFA/lbQlMOyDQ==}
-
mdn-data@2.27.1:
resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==}
@@ -9390,9 +9589,6 @@ packages:
resolution: {integrity: sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==}
engines: {node: '>=20'}
- merge-stream@2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
-
merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
@@ -9442,10 +9638,6 @@ packages:
engines: {node: '>=16'}
hasBin: true
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
mimic-function@5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
@@ -9465,8 +9657,8 @@ packages:
min-dom@5.3.0:
resolution: {integrity: sha512-0w5FEBgPAyHhmFojW3zxd7we3D+m5XYS3E/06OyvxmbHJoiQVa4Nagj6RWvoAKYRw5xth6cP5TMePc5cR1M9hA==}
- minimatch@10.2.4:
- resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
+ minimatch@10.2.5:
+ resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
engines: {node: 18 || 20 || >=22}
minimatch@3.1.5:
@@ -9491,8 +9683,8 @@ packages:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass-flush@1.0.5:
- resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ minipass-flush@1.0.7:
+ resolution: {integrity: sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==}
engines: {node: '>= 8'}
minipass-pipeline@1.2.4:
@@ -9561,7 +9753,7 @@ packages:
resolution: {integrity: sha512-reo8Esw0p58liZwbUutC7meW24Xbn3EwNv91zReWKm2W4JPu+zfgJRn/F7aO0BFmvN+h2brA2M5lRvYqLq4kuA==}
engines: {node: '>=20'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
@@ -9583,8 +9775,8 @@ packages:
engines: {node: '>= 4.4.x'}
hasBin: true
- nitropack@2.13.2:
- resolution: {integrity: sha512-R5TMzSBoTDG4gi6Y+pvvyCNnooShHePHsHxMLP9EXDGdrlR5RvNdSd4e5k8z0/EzP9Ske7ABRMDWg6O7Dm2OYw==}
+ nitropack@2.13.3:
+ resolution: {integrity: sha512-C8vO7RxkU0AQ3HbYUumuG6MVM5JjRaBchke/rYFOp3EvrLtTBHZYhDVGECdpa27vNuOYRzm3GtQMn2YDOjDJLA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -9627,22 +9819,19 @@ packages:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- node-forge@1.3.3:
- resolution: {integrity: sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==}
+ node-forge@1.4.0:
+ resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==}
engines: {node: '>= 6.13.0'}
node-gyp-build@4.8.4:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
- node-html-parser@5.4.2:
- resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
-
node-mock-http@1.0.4:
resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==}
- node-releases@2.0.36:
- resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
+ node-releases@2.0.37:
+ resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==}
nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
@@ -9661,10 +9850,6 @@ packages:
normalize-wheel-es@1.2.0:
resolution: {integrity: sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==}
- npm-run-path@5.3.0:
- resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
npm-run-path@6.0.0:
resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
engines: {node: '>=18'}
@@ -9678,11 +9863,6 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nypm@0.6.5:
- resolution: {integrity: sha512-K6AJy1GMVyfyMXRVB88700BJqNUkByijGJM8kEHpLdcAt+vSQAVfkWWHYzuRXHSY6xA2sNc5RjTj0p9rE2izVQ==}
- engines: {node: '>=18'}
- hasBin: true
-
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
@@ -9714,10 +9894,6 @@ packages:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
onetime@7.0.0:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
@@ -9741,6 +9917,9 @@ packages:
resolution: {integrity: sha512-lBX72MWFduWEf7v7uWf5DHp9Jn5BI8bNPGuFgtXMmr2uDz2Gz2749y3am3agSDdkhHPHYmmxEGSKH85ZLGzgXw==}
engines: {node: '>=20'}
+ orderedmap@2.1.1:
+ resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==}
+
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
@@ -9748,21 +9927,21 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
- oxfmt@0.41.0:
- resolution: {integrity: sha512-sKLdJZdQ3bw6x9qKiT7+eID4MNEXlDHf5ZacfIircrq6Qwjk0L6t2/JQlZZrVHTXJawK3KaMuBoJnEJPcqCEdg==}
+ oxfmt@0.44.0:
+ resolution: {integrity: sha512-lnncqvHewyRvaqdrnntVIrZV2tEddz8lbvPsQzG/zlkfvgZkwy0HP1p/2u1aCDToeg1jb9zBpbJdfkV73Itw+w==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
- oxlint-tsgolint@0.17.1:
- resolution: {integrity: sha512-gJc7hb1ZQFbWjRDYpu1XG+5IRdr1S/Jz/W2ohcpaqIXuDmHU0ujGiM0x05J0nIfwMF3HOEcANi/+j6T0Uecdpg==}
+ oxlint-tsgolint@0.20.0:
+ resolution: {integrity: sha512-/Uc9TQyN1l8w9QNvXtVHYtz+SzDJHKpb5X0UnHodl0BVzijUPk0LPlDOHAvogd1UI+iy9ZSF6gQxEqfzUxCULQ==}
hasBin: true
- oxlint@1.56.0:
- resolution: {integrity: sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==}
+ oxlint@1.59.0:
+ resolution: {integrity: sha512-0xBLeGGjP4vD9pygRo8iuOkOzEU1MqOnfiOl7KYezL/QvWL8NUg6n03zXc7ZVqltiOpUxBk2zgHI3PnRIEdAvw==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
- oxlint-tsgolint: '>=0.15.0'
+ oxlint-tsgolint: '>=0.18.0'
peerDependenciesMeta:
oxlint-tsgolint:
optional: true
@@ -9830,10 +10009,6 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- parent-module@2.0.0:
- resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
- engines: {node: '>=8'}
-
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -9907,9 +10082,6 @@ packages:
resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
engines: {node: '>=18'}
- pathe@0.2.0:
- resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
-
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
@@ -9925,12 +10097,12 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ picomatch@2.3.2:
+ resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==}
engines: {node: '>=8.6'}
- picomatch@4.0.3:
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ picomatch@4.0.4:
+ resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
engines: {node: '>=12'}
pify@4.0.1:
@@ -9955,7 +10127,7 @@ packages:
resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
peerDependencies:
typescript: '>=4.5.0'
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
typescript:
optional: true
@@ -9970,13 +10142,13 @@ packages:
pkg-types@2.3.0:
resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==}
- playwright-core@1.58.2:
- resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==}
+ playwright-core@1.59.1:
+ resolution: {integrity: sha512-HBV/RJg81z5BiiZ9yPzIiClYV/QMsDCKUyogwH9p3MCP6IYjUFu/MActgYAvK0oWyV9NlwM3GLBjADyWgydVyg==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.58.2:
- resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==}
+ playwright@1.59.1:
+ resolution: {integrity: sha512-C8oWjPR3F81yljW9o5OxcWzfh6avkVwDD2VYdwIGqTkl+OGFISgypqzfu7dOe4QNLL2aqcWBmI3PMtLIK233lw==}
engines: {node: '>=18'}
hasBin: true
@@ -10063,16 +10235,16 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.5.8:
- resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
+ postcss@8.5.9:
+ resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==}
engines: {node: ^10 || ^12 || >=14}
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==}
+ preact@10.29.1:
+ resolution: {integrity: sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -10113,11 +10285,70 @@ packages:
property-information@7.1.0:
resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
+ prosemirror-changeset@2.4.0:
+ resolution: {integrity: sha512-LvqH2v7Q2SF6yxatuPP2e8vSUKS/L+xAU7dPDC4RMyHMhZoGDfBC74mYuyYF4gLqOEG758wajtyhNnsTkuhvng==}
+
+ prosemirror-collab@1.3.1:
+ resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
+
+ prosemirror-commands@1.7.1:
+ resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==}
+
+ prosemirror-dropcursor@1.8.2:
+ resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==}
+
+ prosemirror-gapcursor@1.4.1:
+ resolution: {integrity: sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==}
+
+ prosemirror-history@1.5.0:
+ resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==}
+
+ prosemirror-inputrules@1.5.1:
+ resolution: {integrity: sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw==}
+
+ prosemirror-keymap@1.2.3:
+ resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
+
+ prosemirror-markdown@1.13.4:
+ resolution: {integrity: sha512-D98dm4cQ3Hs6EmjK500TdAOew4Z03EV71ajEFiWra3Upr7diytJsjF4mPV2dW+eK5uNectiRj0xFxYI9NLXDbw==}
+
+ prosemirror-menu@1.3.0:
+ resolution: {integrity: sha512-TImyPXCHPcDsSka2/lwJ6WjTASr4re/qWq1yoTTuLOqfXucwF6VcRa2LWCkM/EyTD1UO3CUwiH8qURJoWJRxwg==}
+
+ prosemirror-model@1.25.4:
+ resolution: {integrity: sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA==}
+
+ prosemirror-schema-basic@1.2.4:
+ resolution: {integrity: sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ==}
+
+ prosemirror-schema-list@1.5.1:
+ resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==}
+
+ prosemirror-state@1.4.4:
+ resolution: {integrity: sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==}
+
+ prosemirror-tables@1.8.5:
+ resolution: {integrity: sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==}
+
+ prosemirror-trailing-node@3.0.0:
+ resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==}
+ peerDependencies:
+ prosemirror-model: ^1.22.1
+ prosemirror-state: ^1.4.2
+ prosemirror-view: ^1.33.8
+
+ prosemirror-transform@1.12.0:
+ resolution: {integrity: sha512-GxboyN4AMIsoHNtz5uf2r2Ru551i5hWeCMD6E2Ib4Eogqoub0NflniaBPVQ4MrGE5yZ8JV9tUHg9qcZTTrcN4w==}
+
+ prosemirror-view@1.41.8:
+ resolution: {integrity: sha512-TnKDdohEatgyZNGCDWIdccOHXhYloJwbwU+phw/a23KBvJIR9lWQWW7WHHK3vBdOLDNuF7TaX98GObUZOWkOnA==}
+
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- proxy-from-env@1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ proxy-from-env@2.1.0:
+ resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==}
+ engines: {node: '>=10'}
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
@@ -10139,8 +10370,8 @@ packages:
resolution: {integrity: sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==}
engines: {node: '>=12.20'}
- qified@0.9.0:
- resolution: {integrity: sha512-4q61YgkHbY6gmwkqm0BsxyLDO3UYdrdiJTJ7JiaZb3xpW1duxn135SB7KqUEkCiuu5O4W+TtwEWP2VjmSRanvA==}
+ qified@0.9.1:
+ resolution: {integrity: sha512-n7mar4T0xQ+39dE2vGTAlbxUEpndwPANH0kDef1/MYsB8Bba9wshkybIRx74qgcvKQPEWErf9AqAdYjhzY2Ilg==}
engines: {node: '>=20'}
qrcode@1.5.4:
@@ -10148,8 +10379,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- qs@6.15.0:
- resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
+ qs@6.15.1:
+ resolution: {integrity: sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==}
engines: {node: '>=0.6'}
quansync@0.2.11:
@@ -10174,11 +10405,8 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- rc9@2.1.2:
- resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
-
- rc9@3.0.0:
- resolution: {integrity: sha512-MGOue0VqscKWQ104udASX/3GYDcKyPI4j4F8gu/jHHzglpmy9a/anZK3PNe8ug6aZFl+9GxLtdhe3kVZuMaQbA==}
+ rc9@3.0.1:
+ resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==}
rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
@@ -10265,14 +10493,14 @@ packages:
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.13.0:
- resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
+ regjsparser@0.13.1:
+ resolution: {integrity: sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==}
hasBin: true
- reka-ui@2.9.2:
- resolution: {integrity: sha512-/t4e6y1hcG+uDuRfpg6tbMz3uUEvRzNco6NeYTufoJeUghy5Iosxos5YL/p+ieAsid84sdMX9OrgDqpEuCJhBw==}
+ reka-ui@2.9.5:
+ resolution: {integrity: sha512-6cZGIMgEeslpFLJ7IihaCSMPp1cJgl2eDkZ2vBMdl+HPUVBaV/iDPMWu3abT2KUkj1lir+oyHq5KelOTT9OheQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
@@ -10322,8 +10550,8 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
- resolve@1.22.11:
- resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
+ resolve@1.22.12:
+ resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==}
engines: {node: '>= 0.4'}
hasBin: true
@@ -10346,14 +10574,14 @@ packages:
robust-predicates@3.0.3:
resolution: {integrity: sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==}
- rolldown-plugin-dts@0.22.5:
- resolution: {integrity: sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==}
+ rolldown-plugin-dts@0.23.2:
+ resolution: {integrity: sha512-PbSqLawLgZBGcOGT3yqWBGn4cX+wh2nt5FuBGdcMHyOhoukmjbhYAl8NT9sE4U38Cm9tqLOIQeOrvzeayM0DLQ==}
engines: {node: '>=20.19.0'}
peerDependencies:
'@ts-macro/tsc': ^0.3.6
- '@typescript/native-preview': '>=7.0.0-dev.20250601.1'
- rolldown: ^1.0.0-rc.3
- typescript: ^5.0.0 || ^6.0.0-beta
+ '@typescript/native-preview': '>=7.0.0-dev.20260325.1'
+ rolldown: ^1.0.0-rc.12
+ typescript: ^5.0.0 || ^6.0.0
vue-tsc: ~3.2.0
peerDependenciesMeta:
'@ts-macro/tsc':
@@ -10369,13 +10597,13 @@ packages:
resolution: {integrity: sha512-7H8oH5A8+L96pbBTPCt/rZrwayEhZY5/ejhdk9nRODH32H1v7+bfkaCr+kS15DcGQ7VC1HcWdQVNABFYgrMOzg==}
engines: {node: '>=20.19.0'}
- rolldown@1.0.0-rc.10:
- resolution: {integrity: sha512-q7j6vvarRFmKpgJUT8HCAUljkgzEp4LAhPlJUvQhA5LA1SUL36s5QCysMutErzL3EbNOZOkoziSx9iZC4FddKA==}
+ rolldown@1.0.0-rc.12:
+ resolution: {integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
- rolldown@1.0.0-rc.9:
- resolution: {integrity: sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==}
+ rolldown@1.0.0-rc.15:
+ resolution: {integrity: sha512-Ff31guA5zT6WjnGp0SXw76X6hzGRk/OQq2hE+1lcDe+lJdHSgnSX6nK3erbONHyCbpSj9a9E+uX/OvytZoWp2g==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
@@ -10397,11 +10625,14 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.60.0:
- resolution: {integrity: sha512-yqjxruMGBQJ2gG4HtjZtAfXArHomazDHoFwFFmZZl0r7Pdo7qCIXKqKHZc8yeoMgzJJ+pO6pEEHa+V7uzWlrAQ==}
+ rollup@4.60.1:
+ resolution: {integrity: sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rope-sequence@1.3.4:
+ resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
+
run-applescript@7.1.0:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
@@ -10446,125 +10677,125 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass-embedded-all-unknown@1.98.0:
- resolution: {integrity: sha512-6n4RyK7/1mhdfYvpP3CClS3fGoYqDvRmLClCESS6I7+SAzqjxvGG6u5Fo+cb1nrPNbbilgbM4QKdgcgWHO9NCA==}
+ sass-embedded-all-unknown@1.99.0:
+ resolution: {integrity: sha512-qPIRG8Uhjo6/OKyAKixTnwMliTz+t9K6Duk0mx5z+K7n0Ts38NSJz2sjDnc7cA/8V9Lb3q09H38dZ1CLwD+ssw==}
cpu: ['!arm', '!arm64', '!riscv64', '!x64']
- sass-embedded-android-arm64@1.98.0:
- resolution: {integrity: sha512-M9Ra98A6vYJHpwhoC/5EuH1eOshQ9ZyNwC8XifUDSbRl/cGeQceT1NReR9wFj3L7s1pIbmes1vMmaY2np0uAKQ==}
+ sass-embedded-android-arm64@1.99.0:
+ resolution: {integrity: sha512-fNHhdnP23yqqieCbAdym4N47AleSwjbNt6OYIYx4DdACGdtERjQB4iOX/TaKsW034MupfF7SjnAAK8w7Ptldtg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [android]
- sass-embedded-android-arm@1.98.0:
- resolution: {integrity: sha512-LjGiMhHgu7VL1n7EJxTCre1x14bUsWd9d3dnkS2rku003IWOI/fxc7OXgaKagoVzok1kv09rzO3vFXJR5ZeONQ==}
+ sass-embedded-android-arm@1.99.0:
+ resolution: {integrity: sha512-EHvJ0C7/VuP78Qr6f8gIUVUmCqIorEQpw2yp3cs3SMg02ZuumlhjXvkTcFBxHmFdFR23vTNk1WnhY6QSeV1nFQ==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [android]
- sass-embedded-android-riscv64@1.98.0:
- resolution: {integrity: sha512-WPe+0NbaJIZE1fq/RfCZANMeIgmy83x4f+SvFOG7LhUthHpZWcOcrPTsCKKmN3xMT3iw+4DXvqTYOCYGRL3hcQ==}
+ sass-embedded-android-riscv64@1.99.0:
+ resolution: {integrity: sha512-4zqDFRvgGDTL5vTHuIhRxUpXFoh0Cy7Gm5Ywk19ASd8Settmd14YdPRZPmMxfgS1GH292PofV1fq1ifiSEJWBw==}
engines: {node: '>=14.0.0'}
cpu: [riscv64]
os: [android]
- sass-embedded-android-x64@1.98.0:
- resolution: {integrity: sha512-zrD25dT7OHPEgLWuPEByybnIfx4rnCtfge4clBgjZdZ3lF6E7qNLRBtSBmoFflh6Vg0RlEjJo5VlpnTMBM5MQQ==}
+ sass-embedded-android-x64@1.99.0:
+ resolution: {integrity: sha512-Uk53k/dGYt04RjOL4gFjZ0Z9DH9DKh8IA8WsXUkNqsxerAygoy3zqRBS2zngfE9K2jiOM87q+1R1p87ory9oQQ==}
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==}
+ sass-embedded-darwin-arm64@1.99.0:
+ resolution: {integrity: sha512-u61/7U3IGLqoO6gL+AHeiAtlTPFwJK1+964U8gp45ZN0hzh1yrARf5O1mivXv8NnNgJvbG2wWJbiNZP0lG/lTg==}
engines: {node: '>=14.0.0'}
cpu: [arm64]
os: [darwin]
- sass-embedded-darwin-x64@1.98.0:
- resolution: {integrity: sha512-OLBOCs/NPeiMqTdOrMFbVHBQFj19GS3bSVSxIhcCq16ZyhouUkYJEZjxQgzv9SWA2q6Ki8GCqp4k6jMeUY9dcA==}
+ sass-embedded-darwin-x64@1.99.0:
+ resolution: {integrity: sha512-j/kkk/NcXdIameLezSfXjgCiBkVcA+G60AXrX768/3g0miK1g7M9dj7xOhCb1i7/wQeiEI3rw2LLuO63xRIn4A==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [darwin]
- sass-embedded-linux-arm64@1.98.0:
- resolution: {integrity: sha512-axOE3t2MTBwCtkUCbrdM++Gj0gC0fdHJPrgzQ+q1WUmY9NoNMGqflBtk5mBZaWUeha2qYO3FawxCB8lctFwCtw==}
+ sass-embedded-linux-arm64@1.99.0:
+ resolution: {integrity: sha512-btNcFpItcB56L40n8hDeL7sRSMLDXQ56nB5h2deddJx1n60rpKSElJmkaDGHtpkrY+CTtDRV0FZDjHeTJddYew==}
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==}
+ sass-embedded-linux-arm@1.99.0:
+ resolution: {integrity: sha512-d4IjJZrX2+AwB2YCy1JySwdptJECNP/WfAQLUl8txI3ka8/d3TUI155GtelnoZUkio211PwIeFvvAeZ9RXPQnw==}
engines: {node: '>=14.0.0'}
cpu: [arm]
os: [linux]
libc: glibc
- sass-embedded-linux-musl-arm64@1.98.0:
- resolution: {integrity: sha512-LeqNxQA8y4opjhe68CcFvMzCSrBuJqYVFbwElEj9bagHXQHTp9xVPJRn6VcrC+0VLEDq13HVXMv7RslIuU0zmA==}
+ sass-embedded-linux-musl-arm64@1.99.0:
+ resolution: {integrity: sha512-Hi2bt/IrM5P4FBKz6EcHAlniwfpoz9mnTdvSd58y+avA3SANM76upIkAdSayA8ZGwyL3gZokru1AKDPF9lJDNw==}
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==}
+ sass-embedded-linux-musl-arm@1.99.0:
+ resolution: {integrity: sha512-2gvHOupgIw3ytatXT4nFUow71LFbuOZPEwG+HUzcNQDH8ue4Ez8cr03vsv5MDv3lIjOKcXwDvWD980t18MwkoQ==}
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==}
+ sass-embedded-linux-musl-riscv64@1.99.0:
+ resolution: {integrity: sha512-mKqGvVaJ9rHMqyZsF0kikQe4NO0f4osb67+X6nLhBiVDKvyazQHJ3zJQreNefIE36yL2sjHIclSB//MprzaQDg==}
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==}
+ sass-embedded-linux-musl-x64@1.99.0:
+ resolution: {integrity: sha512-huhgOMmOc30r7CH7qbRbT9LerSEGSnWuS4CYNOskr9BvNeQp4dIneFufNRGZ7hkOAxUM8DglxIZJN/cyAT95Ew==}
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==}
+ sass-embedded-linux-riscv64@1.99.0:
+ resolution: {integrity: sha512-mevFPIFAVhrH90THifxLfOntFmHtcEKOcdWnep2gJ0X4DVva4AiVIRlQe/7w9JFx5+gnDRE1oaJJkzuFUuYZsA==}
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==}
+ sass-embedded-linux-x64@1.99.0:
+ resolution: {integrity: sha512-9k7IkULqIZdCIVt4Mboryt6vN8Mjmm3EhI1P3mClU5y5i3wLK5ExC3cbVWk047KsID/fvB1RLslqghXJx5BoxA==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [linux]
libc: glibc
- sass-embedded-unknown-all@1.98.0:
- resolution: {integrity: sha512-C4MMzcAo3oEDQnW7L8SBgB9F2Fq5qHPnaYTZRMOH3Mp/7kM4OooBInXpCiiFjLnjY95hzP4KyctVx0uYR6MYlQ==}
+ sass-embedded-unknown-all@1.99.0:
+ resolution: {integrity: sha512-P7MxiUtL/XzGo3PX0CaB8lNNEFLQWKikPA8pbKytx9ZCLZSDkt2NJcdAbblB/sqMs4AV3EK2NadV8rI/diq3xg==}
os: ['!android', '!darwin', '!linux', '!win32']
- sass-embedded-win32-arm64@1.98.0:
- resolution: {integrity: sha512-nP/10xbAiPbhQkMr3zQfXE4TuOxPzWRQe1Hgbi90jv2R4TbzbqQTuZVOaJf7KOAN4L2Bo6XCTRjK5XkVnwZuwQ==}
+ sass-embedded-win32-arm64@1.99.0:
+ resolution: {integrity: sha512-8whpsW7S+uO8QApKfQuc36m3P9EISzbVZOgC79goob4qGy09u8Gz/rYvw8h1prJDSjltpHGhOzBE6LDz7WvzVw==}
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==}
+ sass-embedded-win32-x64@1.99.0:
+ resolution: {integrity: sha512-ipuOv1R2K4MHeuCEAZGpuUbAgma4gb0sdacyrTjJtMOy/OY9UvWfVlwErdB09KIkp4fPDpQJDJfvYN6bC8jeNg==}
engines: {node: '>=14.0.0'}
cpu: [x64]
os: [win32]
- sass-embedded@1.98.0:
- resolution: {integrity: sha512-Do7u6iRb6K+lrllcTkB1BXcHwOxcKe3rEfOF/GcCLE2w3WpddakRAosJOHFUR37DpsvimQXEt5abs3NzUjEIqg==}
+ sass-embedded@1.99.0:
+ resolution: {integrity: sha512-gF/juR1aX02lZHkvwxdF80SapkQeg2fetoDF6gIQkNbSw5YEUFspMkyGTjPjgZSgIHuZpy+Wz4PlebKnLXMjdg==}
engines: {node: '>=16.0.0'}
hasBin: true
- sass@1.98.0:
- resolution: {integrity: sha512-+4N/u9dZ4PrgzGgPlKnaaRQx64RO0JBKs9sDhQ2pLgN6JQZ25uPQZKQYaBJU48Kd5BxgXoJ4e09Dq7nMcOUW3A==}
+ sass@1.99.0:
+ resolution: {integrity: sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -10624,8 +10855,8 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serialize-javascript@7.0.4:
- resolution: {integrity: sha512-DuGdB+Po43Q5Jxwpzt1lhyFSYKryqoNjQSA9M92tyw0lyHIOur+XCalOUe0KTJpyqzT8+fQ5A0Jf7vCx/NKmIg==}
+ serialize-javascript@7.0.5:
+ resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==}
engines: {node: '>=20.0.0'}
serve-placeholder@2.0.2:
@@ -10667,8 +10898,8 @@ packages:
shiki@2.5.0:
resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==}
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ side-channel-list@1.0.1:
+ resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==}
engines: {node: '>= 0.4'}
side-channel-map@1.0.1:
@@ -10727,8 +10958,8 @@ packages:
resolution: {integrity: sha512-KAkBqZl3c2GvNgNhcoyJae1aKldDW0LO279wF9bk1PnluRTETKBq0WyzRXxEhoQLk56yHaOY4JCBEKDuJIET5g==}
engines: {node: '>=20.0.0'}
- smol-toml@1.6.0:
- resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==}
+ smol-toml@1.6.1:
+ resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==}
engines: {node: '>= 18'}
sortablejs@1.14.0:
@@ -10788,9 +11019,6 @@ packages:
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
- std-env@3.10.0:
- resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
-
std-env@4.0.0:
resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==}
@@ -10878,10 +11106,6 @@ packages:
resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
engines: {node: '>=10'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
@@ -10928,8 +11152,8 @@ packages:
stylelint: ^16.18.0 || ^17.0.0
stylelint-order: ^7.0.0 || ^8.0.0
- stylelint-config-recommended-scss@17.0.0:
- resolution: {integrity: sha512-VkVD9r7jfUT/dq3mA3/I1WXXk2U71rO5wvU2yIil9PW5o1g3UM7Xc82vHmuVJHV7Y8ok5K137fmW5u3HbhtTOA==}
+ stylelint-config-recommended-scss@17.0.1:
+ resolution: {integrity: sha512-x5DVehzJudcwF0od3sGpgkln2PLLranFE7twwbp7dqDINCyZvwzFkMc6TLhNOvazRiVBJYATQLouJY0xPGB8WA==}
engines: {node: '>=20'}
peerDependencies:
postcss: ^8.3.3
@@ -10969,8 +11193,8 @@ packages:
peerDependencies:
stylelint: ^16.8.2 || ^17.0.0
- stylelint@17.5.0:
- resolution: {integrity: sha512-o/NS6zhsPZFmgUm5tXX4pVNg1XDOZSlucLdf2qow/lVn4JIyzZIQ5b3kad1ugqUj3GSIgr2u5lQw7X8rjqw33g==}
+ stylelint@17.7.0:
+ resolution: {integrity: sha512-n/+4RheCRl+cecGnF+S/Adz59iCRaK9BVznJYB+a7GOksfwNzjiOPnYv17pTO0HgRse9IiqbMtekGNhOb2tVYQ==}
engines: {node: '>=20.19.0'}
hasBin: true
@@ -11001,8 +11225,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte@5.54.1:
- resolution: {integrity: sha512-ow8tncN097Ty8U1H+C3bM1xNlsCbnO2UZeN0lWBnv8f3jKho7QTTQ2LWbMXrPQDodLjH91n4kpNnLolyRhVE6A==}
+ svelte@5.55.3:
+ resolution: {integrity: sha512-dS1N+i3bA1v+c4UDb750MlN5vCO82G6vxh8HeTsPsTdJ1BLsN1zxSyDlIdBBqUjqZ/BxEwM8UrFf98aaoVnZFQ==}
engines: {node: '>=18'}
sver@2.0.1:
@@ -11028,10 +11252,6 @@ packages:
resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
engines: {node: ^14.18.0 || >=16.0.0}
- system-architecture@0.1.0:
- resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
- engines: {node: '>=18'}
-
tabbable@6.4.0:
resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==}
@@ -11043,8 +11263,8 @@ packages:
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
engines: {node: '>=20'}
- tailwind-csstree@0.1.5:
- resolution: {integrity: sha512-ZHCKXz+TcBj7CJYStiuAtNenPpdHMrhgotOSNJ3UQTSTgwTfAyoyTA2SNW4oD8+2T6xt6awM7CZSU2+PXx9V3w==}
+ tailwind-csstree@0.3.1:
+ resolution: {integrity: sha512-v147gLOR+E+9H4dNaP9rBeS/S/CTQJMRItlX9jLOXjdBGfSRauLwiz7LBCViaQmn6URXIlOdN6iMzSzOaeoUUw==}
engines: {node: '>=18.18'}
peerDependencies:
'@eslint/css': '>=1.0.0'
@@ -11058,27 +11278,27 @@ packages:
tailwindcss@4.2.2:
resolution: {integrity: sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==}
- tapable@2.3.0:
- resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
+ tapable@2.3.2:
+ resolution: {integrity: sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==}
engines: {node: '>=6'}
tar-stream@3.1.8:
resolution: {integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==}
- tar@7.5.12:
- resolution: {integrity: sha512-9TsuLcdhOn4XztcQqhNyq1KOwOOED/3k58JAvtULiYqbO8B/0IBAAIE1hj0Svmm58k27TmcigyDI0deMlgG3uw==}
+ tar@7.5.13:
+ resolution: {integrity: sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==}
engines: {node: '>=18'}
- tdesign-icons-vue-next@0.4.2:
- resolution: {integrity: sha512-mTPk1ApcCA9oxDiSs9ttMdd09H8ICBooZIr2bwDEELnYr60sYSUbvWojQ2tp84MUAMuw21HgyVyGkT49db0GFg==}
+ tdesign-icons-vue-next@0.4.4:
+ resolution: {integrity: sha512-UPKyR5pea840aeI5p/k8VLVgfyVzndSyE4t1yRBD8uYWiuV0p29jZbDn8hMnes9Tz5JPgywCGzbk4QJzt684NA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- tdesign-vue-next@1.18.5:
- resolution: {integrity: sha512-lc/zhb7sWH6wB4YNbLzNPhwhxYdWqdZpBBgjk9umAomJaPsKW1Y7eLLRFuBuvIopsjvWDE9gvFfI5K6vEZUFnw==}
+ tdesign-vue-next@1.19.0:
+ resolution: {integrity: sha512-+Q9ZYBT1VcuFnU6SRRCP5hMZi0zFBj/Ktj25Aztv51YdFkgVDs98xz5i3mjQBwQmafZjQBe58i+8udzkRdvw0g==}
engines: {node: '>= 18'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
teex@1.0.1:
resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==}
@@ -11119,15 +11339,19 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+ tinyclip@0.1.12:
+ resolution: {integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==}
+ engines: {node: ^16.14.0 || >= 17.3.0}
+
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- tinyexec@1.0.4:
- resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
+ tinyexec@1.1.1:
+ resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==}
engines: {node: '>=18'}
- tinyglobby@0.2.15:
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
+ tinyglobby@0.2.16:
+ resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
engines: {node: '>=12.0.0'}
tinymce@7.9.2:
@@ -11191,17 +11415,17 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
- tsdown@0.21.4:
- resolution: {integrity: sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==}
+ tsdown@0.21.7:
+ resolution: {integrity: sha512-ukKIxKQzngkWvOYJAyptudclkm4VQqbjq+9HF5K5qDO8GJsYtMh8gIRwicbnZEnvFPr6mquFwYAVZ8JKt3rY2g==}
engines: {node: '>=20.19.0'}
hasBin: true
peerDependencies:
'@arethetypeswrong/core': ^0.18.1
- '@tsdown/css': 0.21.4
- '@tsdown/exe': 0.21.4
+ '@tsdown/css': 0.21.7
+ '@tsdown/exe': 0.21.7
'@vitejs/devtools': '*'
publint: ^0.3.0
- typescript: ^5.0.0
+ typescript: ^5.0.0 || ^6.0.0
unplugin-unused: ^0.5.0
peerDependenciesMeta:
'@arethetypeswrong/core':
@@ -11228,8 +11452,8 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- turbo@2.8.20:
- resolution: {integrity: sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==}
+ turbo@2.9.6:
+ resolution: {integrity: sha512-+v2QJey7ZUeUiuigkU+uFfklvNUyPI2VO2vBpMYJA+a1hKFLFiKtUYlRHdb3P9CrAvMzi0upbjI4WT+zKtqkBg==}
hasBin: true
tw-animate-css@1.4.0:
@@ -11272,6 +11496,11 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ typescript@6.0.2:
+ resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
@@ -11294,11 +11523,11 @@ packages:
unctx@2.5.0:
resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
- undici-types@7.18.2:
- resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+ undici-types@7.19.2:
+ resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
- undici@7.24.5:
- resolution: {integrity: sha512-3IWdCpjgxp15CbJnsi/Y9TCDE7HWVN19j1hmzVhoAkY/+CJx449tVxT5wZc1Gwg8J+P0LWvzlBzxYRnHJ+1i7Q==}
+ undici@7.24.8:
+ resolution: {integrity: sha512-6KQ/+QxK49Z/p3HO6E5ZCZWNnCasyZLa5ExaVYyvPxUwKtbCPMKELJOqh7EqOle0t9cH/7d2TaaTRRa6Nhs4YQ==}
engines: {node: '>=20.18.1'}
unenv@2.0.0-rc.24:
@@ -11328,8 +11557,8 @@ packages:
resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==}
engines: {node: '>=20'}
- unimport@6.0.2:
- resolution: {integrity: sha512-ZSOkrDw380w+KIPniY3smyXh2h7H9v2MNr9zejDuh239o5sdea44DRAYrv+rfUi2QGT186P2h0GPGKvy8avQ5g==}
+ unimport@6.1.0:
+ resolution: {integrity: sha512-ocgNKyiqj7Hw7oHt7A7D3za3fq28eShe1EloL6hsoQgn7CF51Y4CqFT9ISG3rEy0JpA8CCz/sY5h5OovOn62VQ==}
engines: {node: '>=18.12.0'}
unique-string@2.0.0:
@@ -11401,7 +11630,7 @@ packages:
resolution: {integrity: sha512-0171rToKyJtoz+faE9CSGtAhCF7//t8sJueyyfZujf4RcKtoHLU/wqcsnuH5aq3tDB+I/Tg6IXiWgPvI+TK/zw==}
engines: {node: '>=20.19.0'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
unplugin@2.3.11:
resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==}
@@ -11411,8 +11640,8 @@ packages:
resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==}
engines: {node: ^20.19.0 || >=22.12.0}
- unrun@0.2.32:
- resolution: {integrity: sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==}
+ unrun@0.2.34:
+ resolution: {integrity: sha512-LyaghRBR++r7svhDK6tnDz2XaYHWdneBOA0jbS8wnRsHerI9MFljX4fIiTgbbNbEVzZ0C9P1OjWLLe1OqoaaEw==}
engines: {node: '>=20.19.0'}
hasBin: true
peerDependencies:
@@ -11421,8 +11650,8 @@ packages:
synckit:
optional: true
- unstorage@1.17.4:
- resolution: {integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==}
+ unstorage@1.17.5:
+ resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==}
peerDependencies:
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
@@ -11508,8 +11737,8 @@ packages:
resolution: {integrity: sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA==}
engines: {node: '>=18'}
- uqr@0.1.2:
- resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
+ uqr@0.1.3:
+ resolution: {integrity: sha512-0rjE8iEJe4YmT9TOhwsZtqCMRLc5DXZUI2UEYUUg63ikBkqqE5EYWaI0etFe/5KUcmcYwLih2RND1kq+hrUJXA==}
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -11528,8 +11757,8 @@ packages:
typescript:
optional: true
- validator@13.15.26:
- resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==}
+ validator@13.15.35:
+ resolution: {integrity: sha512-TQ5pAGhd5whStmqWvYF4OjQROlmv9SMFVt37qoCBdqRffuuklWYQlCNnEs2ZaIBD1kZRNnikiZOS1eqgkar0iw==}
engines: {node: '>= 0.10'}
varint@6.0.0:
@@ -11538,12 +11767,12 @@ packages:
vdirs@0.1.8:
resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vee-validate@4.15.1:
resolution: {integrity: sha512-DkFsiTwEKau8VIxyZBGdO6tOudD+QoUBPuHj3e6QFqmbfCRj1ArmYWue9lEp6jLSWBIw4XPlDLjFIZNLdRAMSg==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vfile-message@4.0.3:
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
@@ -11575,11 +11804,6 @@ packages:
peerDependencies:
vite: '>=2.0.0'
- vite-plugin-html@3.2.2:
- resolution: {integrity: sha512-vb9C9kcdzcIo/Oc3CLZVS03dL5pDlOFuhGlZYDCJ840BhWl/0nGeZWf3Qy7NlOayscY4Cm/QRgULCQkEZige5Q==}
- peerDependencies:
- vite: '>=2.0.0'
-
vite-plugin-inspect@11.3.3:
resolution: {integrity: sha512-u2eV5La99oHoYPHE6UvbwgEqKKOQGz86wMg40CCosP6q8BkB6e5xPneZfYagK4ojPJSj5anHCrnvC20DpwVdRA==}
engines: {node: '>=14'}
@@ -11605,8 +11829,8 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- vite-plugin-vue-devtools@8.1.0:
- resolution: {integrity: sha512-4AvNRePfni3+PqOunACmAImC6SJVpUv6f7/g4oakyre9hYdEMrvDYlNmTZQsJPzVLMcGzn1FvSEqJ/n4HQ9cDg==}
+ vite-plugin-vue-devtools@8.1.1:
+ resolution: {integrity: sha512-9qTpOmZ2vHpvlI9hdVXAQ1Ry4I8GcBArU7aPi0qfIaV7fQIXy0L1nb6X4mFY2Gw0dYshHuLbIl0Ulb572SCjsQ==}
engines: {node: '>=v14.21.3'}
peerDependencies:
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -11647,14 +11871,14 @@ packages:
terser:
optional: true
- vite@8.0.1:
- resolution: {integrity: sha512-wt+Z2qIhfFt85uiyRt5LPU4oVEJBXj8hZNWKeqFG4gRG/0RaRGJ7njQCwzFVjO+v4+Ipmf5CY7VdmZRAYYBPHw==}
+ vite@8.0.8:
+ resolution: {integrity: sha512-dbU7/iLVa8KZALJyLOBOQ88nOXtNG8vxKuOT4I2mD+Ya70KPceF4IAmDsmU0h1Qsn5bPrvsY9HJstCRh3hG6Uw==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
'@types/node': ^20.19.0 || >=22.12.0
'@vitejs/devtools': ^0.1.0
- esbuild: ^0.27.0
+ esbuild: ^0.27.0 || ^0.28.0
jiti: '>=1.21.0'
less: ^4.0.0
sass: ^1.70.0
@@ -11690,8 +11914,8 @@ packages:
yaml:
optional: true
- vitepress-plugin-group-icons@1.7.1:
- resolution: {integrity: sha512-3ZPcIqwHNBg1btrOOSecOqv8yJxHdu3W2ugxE5LusclDF005LAm60URMEmBQrkgl4JvM32AqJirqghK6lGIk8g==}
+ vitepress-plugin-group-icons@1.7.3:
+ resolution: {integrity: sha512-Nj2znOveQC7KH1CQ1k2WlVvEDAuymhumcUvD51ognVUv2yjrfAhOzL1VEESPzoJN0kWoRxXK+iu+OKNLe7unGQ==}
peerDependencies:
vite: '>=3'
peerDependenciesMeta:
@@ -11710,21 +11934,23 @@ packages:
postcss:
optional: true
- vitest@4.1.0:
- resolution: {integrity: sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==}
+ vitest@4.1.4:
+ resolution: {integrity: sha512-tFuJqTxKb8AvfyqMfnavXdzfy3h3sWZRWwfluGbkeR7n0HUev+FmNgZ8SDrRBTVrVCjgH5cA21qGbCffMNtWvg==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@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
+ '@vitest/browser-playwright': 4.1.4
+ '@vitest/browser-preview': 4.1.4
+ '@vitest/browser-webdriverio': 4.1.4
+ '@vitest/coverage-istanbul': 4.1.4
+ '@vitest/coverage-v8': 4.1.4
+ '@vitest/ui': 4.1.4
happy-dom: '*'
jsdom: '*'
- vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ vite: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
@@ -11738,6 +11964,10 @@ packages:
optional: true
'@vitest/browser-webdriverio':
optional: true
+ '@vitest/coverage-istanbul':
+ optional: true
+ '@vitest/coverage-v8':
+ optional: true
'@vitest/ui':
optional: true
happy-dom:
@@ -11748,7 +11978,7 @@ packages:
vooks@0.2.12:
resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vscode-languageserver-textdocument@1.0.12:
resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
@@ -11768,7 +11998,7 @@ packages:
hasBin: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
'@vue/composition-api':
optional: true
@@ -11776,7 +12006,7 @@ packages:
vue-dompurify-html@5.3.0:
resolution: {integrity: sha512-HJQGBHbfSPcb6Mu97McdKbX7TqRHZa6Ji8OCpCNyuHca5QvQZ8IiuwghFPSO8OkSQfqXPNPKFMZdCOrnGGmOSQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vue-eslint-parser@10.4.0:
resolution: {integrity: sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==}
@@ -11784,16 +12014,16 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
- vue-i18n@11.3.0:
- resolution: {integrity: sha512-1J+xDfDJTLhDxElkd3+XUhT7FYSZd2b8pa7IRKGxhWH/8yt6PTvi3xmWhGwhYT5EaXdatui11pF2R6tL73/zPA==}
+ vue-i18n@11.3.2:
+ resolution: {integrity: sha512-gmFrvM+iuf2AH4ygligw/pC7PRJ63AdRNE68E0GPlQ83Mzfyck6g6cRQC3KzkYXr+ZidR91wq+5YBmAMpkgE1A==}
engines: {node: '>= 16'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vue-json-viewer@3.0.4:
resolution: {integrity: sha512-pnC080rTub6YjccthVSNQod2z9Sl5IUUq46srXtn6rxwhW8QM4rlYn+CTSLFKXWfw+N3xv77Cioxw7B4XUKIbQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vue-router@5.0.4:
resolution: {integrity: sha512-lCqDLCI2+fKVRl2OzXuzdSWmxXFLQRxQbmHugnRpTMyYiT+hNaycV0faqG5FBHDXoYrZ6MQcX87BvbY8mQ20Bg==}
@@ -11801,7 +12031,7 @@ packages:
'@pinia/colada': '>=0.21.2'
'@vue/compiler-sfc': ^3.5.17
pinia: ^3.0.4
- vue: ^3.5.30
+ vue: ^3.5.32
peerDependenciesMeta:
'@pinia/colada':
optional: true
@@ -11813,7 +12043,7 @@ packages:
vue-tippy@6.7.1:
resolution: {integrity: sha512-gdHbBV5/Vc8gH87hQHLA7TN1K4BlLco3MAPrTb70ZYGXxx+55rAU4a4mt0fIoP+gB3etu1khUZ6c29Br1n0CiA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vue-tsc@3.2.6:
resolution: {integrity: sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==}
@@ -11825,7 +12055,7 @@ packages:
resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==}
engines: {node: '>=10.15.0'}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vue3-print-nb@0.1.4:
resolution: {integrity: sha512-LExI7viEzplR6ZKQ2b+V4U0cwGYbVD4fut/XHvk3UPGlT5CcvIGs6VlwGp107aKgk6P8Pgx4rco3Rehv2lti3A==}
@@ -11833,10 +12063,10 @@ packages:
vue3-signature@0.2.4:
resolution: {integrity: sha512-XFwwFVK9OG3F085pKIq2SlNVqx32WdFH+TXbGEWc5FfEKpx8oMmZuAwZZ50K/pH2FgmJSE8IRwU9DDhrLpd6iA==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- vue@3.5.30:
- resolution: {integrity: sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==}
+ vue@3.5.32:
+ resolution: {integrity: sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -11846,18 +12076,18 @@ packages:
vuedraggable@4.1.0:
resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
vueuc@0.4.65:
resolution: {integrity: sha512-lXuMl+8gsBmruudfxnMF9HW4be8rFziylXFu1VHVNbLVhRTXXV4njvpRuJapD/8q+oFEMSfQMH16E/85VoWRyQ==}
peerDependencies:
- vue: ^3.5.30
+ vue: ^3.5.32
- vxe-pc-ui@4.13.13:
- resolution: {integrity: sha512-apPR9BkDX79DILsCsk+n77FwFrNcuxdfrUYmXzH9JanaejOM43RlIWDDNVrKZ+55xIvDn4uKlHTsjBmDIGFIZw==}
+ vxe-pc-ui@4.13.23:
+ resolution: {integrity: sha512-FRicMKRas/qod0L3j4WUCb/R6rmKGGC18NlWccFspHY+nTvxa9mcgjGAAnIkOGd8OBXexEvCYKAadS5Bc1bAUA==}
- vxe-table@4.18.8:
- resolution: {integrity: sha512-b8IO7bYST3m5l30DmDt6NvQMkrxbSQ0l6FNsMBGT8gCqWY9i02VFqnmECQFiORCKPYWk43MvynBANdwhqKAd3A==}
+ vxe-table@4.18.12:
+ resolution: {integrity: sha512-FjcM/YWV5ytStY8lUR+wTQ26rtvuEugf1om8qyApVVyVVIaEixYwM7ufrcK0s4nUKiDcUVRE06OTDt0dz4kGXA==}
w3c-keyname@2.2.8:
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
@@ -11887,6 +12117,7 @@ packages:
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@3.0.0:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
@@ -12130,8 +12361,8 @@ packages:
youch-core@0.3.3:
resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==}
- youch@4.1.0:
- resolution: {integrity: sha512-cYekNh2tUoU+voS11X0D0UQntVCSO6LQ1h10VriQGmfbpf0mnGTruwZICts23UUNiZCXm8H8hQBtRrdsbhuNNg==}
+ youch@4.1.1:
+ resolution: {integrity: sha512-mxW3qiSnl+GRxXsaUMzv2Mbada1Y8CDltET9UxejDQe6DBYlSekghl5U5K0ReAikcHDi0G1vKZEmmo/NWAGKLA==}
zeebe-bpmn-moddle@1.12.0:
resolution: {integrity: sha512-wYKfgdV5suCNx4IVaq0qOjHRxSQ5XOkxfwC8EBHuGCtmEVk8zv1VRg0opV0kVQe89jvRH3iF3Yl/DoB6qiCV5Q==}
@@ -12164,117 +12395,117 @@ packages:
snapshots:
- '@algolia/abtesting@1.15.2':
+ '@algolia/abtesting@1.16.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)(search-insights@2.17.3)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)':
dependencies:
- '@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)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@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-plugin-algolia-insights@1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)':
dependencies:
- '@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.50.1)(algoliasearch@5.50.1)
+ '@algolia/client-search': 5.50.1
+ algoliasearch: 5.50.1
- '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.49.2)(algoliasearch@5.49.2)':
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)':
dependencies:
- '@algolia/client-search': 5.49.2
- algoliasearch: 5.49.2
+ '@algolia/client-search': 5.50.1
+ algoliasearch: 5.50.1
- '@algolia/client-abtesting@5.49.2':
+ '@algolia/client-abtesting@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/client-analytics@5.49.2':
+ '@algolia/client-analytics@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/client-common@5.49.2': {}
+ '@algolia/client-common@5.50.1': {}
- '@algolia/client-insights@5.49.2':
+ '@algolia/client-insights@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/client-personalization@5.49.2':
+ '@algolia/client-personalization@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/client-query-suggestions@5.49.2':
+ '@algolia/client-query-suggestions@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/client-search@5.49.2':
+ '@algolia/client-search@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/ingestion@1.49.2':
+ '@algolia/ingestion@1.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/monitoring@1.49.2':
+ '@algolia/monitoring@1.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/recommend@5.49.2':
+ '@algolia/recommend@5.50.1':
dependencies:
- '@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.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
- '@algolia/requester-browser-xhr@5.49.2':
+ '@algolia/requester-browser-xhr@5.50.1':
dependencies:
- '@algolia/client-common': 5.49.2
+ '@algolia/client-common': 5.50.1
- '@algolia/requester-fetch@5.49.2':
+ '@algolia/requester-fetch@5.50.1':
dependencies:
- '@algolia/client-common': 5.49.2
+ '@algolia/client-common': 5.50.1
- '@algolia/requester-node-http@5.49.2':
+ '@algolia/requester-node-http@5.50.1':
dependencies:
- '@algolia/client-common': 5.49.2
+ '@algolia/client-common': 5.50.1
'@ant-design/colors@6.0.0':
dependencies:
@@ -12284,6 +12515,10 @@ snapshots:
dependencies:
'@ant-design/fast-color': 2.0.6
+ '@ant-design/colors@8.0.1':
+ dependencies:
+ '@ant-design/fast-color': 3.0.1
+
'@ant-design/fast-color@2.0.6':
dependencies:
'@babel/runtime': 7.29.2
@@ -12292,78 +12527,77 @@ snapshots:
'@ant-design/icons-svg@4.4.2': {}
- '@ant-design/icons-vue@7.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@ant-design/icons-vue@7.0.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@ant-design/colors': 6.0.0
'@ant-design/icons-svg': 4.4.2
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@antdv-next/cssinjs@1.0.5(vue@3.5.30(typescript@5.9.3))':
+ '@antdv-next/cssinjs@1.0.6(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
csstype: 3.2.3
stylis: 4.3.6
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@antdv-next/icons@1.0.5(vue@3.5.30(typescript@5.9.3))':
+ '@antdv-next/icons@1.0.6(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@ant-design/colors': 7.2.1
'@ant-design/icons-svg': 4.4.2
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
'@antfu/install-pkg@1.1.0':
dependencies:
package-manager-detector: 1.6.0
- tinyexec: 1.0.4
+ tinyexec: 1.1.1
- '@apideck/better-ajv-errors@0.3.6(ajv@8.18.0)':
+ '@apideck/better-ajv-errors@0.3.7(ajv@8.18.0)':
dependencies:
ajv: 8.18.0
- json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
- '@ast-grep/napi-darwin-arm64@0.42.0':
+ '@ast-grep/napi-darwin-arm64@0.42.1':
optional: true
- '@ast-grep/napi-darwin-x64@0.42.0':
+ '@ast-grep/napi-darwin-x64@0.42.1':
optional: true
- '@ast-grep/napi-linux-arm64-gnu@0.42.0':
+ '@ast-grep/napi-linux-arm64-gnu@0.42.1':
optional: true
- '@ast-grep/napi-linux-arm64-musl@0.42.0':
+ '@ast-grep/napi-linux-arm64-musl@0.42.1':
optional: true
- '@ast-grep/napi-linux-x64-gnu@0.42.0':
+ '@ast-grep/napi-linux-x64-gnu@0.42.1':
optional: true
- '@ast-grep/napi-linux-x64-musl@0.42.0':
+ '@ast-grep/napi-linux-x64-musl@0.42.1':
optional: true
- '@ast-grep/napi-win32-arm64-msvc@0.42.0':
+ '@ast-grep/napi-win32-arm64-msvc@0.42.1':
optional: true
- '@ast-grep/napi-win32-ia32-msvc@0.42.0':
+ '@ast-grep/napi-win32-ia32-msvc@0.42.1':
optional: true
- '@ast-grep/napi-win32-x64-msvc@0.42.0':
+ '@ast-grep/napi-win32-x64-msvc@0.42.1':
optional: true
- '@ast-grep/napi@0.42.0':
+ '@ast-grep/napi@0.42.1':
optionalDependencies:
- '@ast-grep/napi-darwin-arm64': 0.42.0
- '@ast-grep/napi-darwin-x64': 0.42.0
- '@ast-grep/napi-linux-arm64-gnu': 0.42.0
- '@ast-grep/napi-linux-arm64-musl': 0.42.0
- '@ast-grep/napi-linux-x64-gnu': 0.42.0
- '@ast-grep/napi-linux-x64-musl': 0.42.0
- '@ast-grep/napi-win32-arm64-msvc': 0.42.0
- '@ast-grep/napi-win32-ia32-msvc': 0.42.0
- '@ast-grep/napi-win32-x64-msvc': 0.42.0
+ '@ast-grep/napi-darwin-arm64': 0.42.1
+ '@ast-grep/napi-darwin-x64': 0.42.1
+ '@ast-grep/napi-linux-arm64-gnu': 0.42.1
+ '@ast-grep/napi-linux-arm64-musl': 0.42.1
+ '@ast-grep/napi-linux-x64-gnu': 0.42.1
+ '@ast-grep/napi-linux-x64-musl': 0.42.1
+ '@ast-grep/napi-win32-arm64-msvc': 0.42.1
+ '@ast-grep/napi-win32-ia32-msvc': 0.42.1
+ '@ast-grep/napi-win32-x64-msvc': 0.42.1
'@babel/code-frame@7.29.0':
dependencies:
@@ -12401,10 +12635,10 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@8.0.0-rc.2':
+ '@babel/generator@8.0.0-rc.3':
dependencies:
- '@babel/parser': 8.0.0-rc.2
- '@babel/types': 8.0.0-rc.2
+ '@babel/parser': 8.0.0-rc.3
+ '@babel/types': 8.0.0-rc.3
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
'@types/jsesc': 2.5.1
@@ -12418,7 +12652,7 @@ snapshots:
dependencies:
'@babel/compat-data': 7.29.0
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.28.1
+ browserslist: 4.28.2
lru-cache: 5.1.1
semver: 6.3.1
@@ -12449,7 +12683,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.28.6
debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.11
+ resolve: 1.22.12
transitivePeerDependencies:
- supports-color
@@ -12515,7 +12749,7 @@ snapshots:
'@babel/helper-validator-identifier@7.28.5': {}
- '@babel/helper-validator-identifier@8.0.0-rc.2': {}
+ '@babel/helper-validator-identifier@8.0.0-rc.3': {}
'@babel/helper-validator-option@7.27.1': {}
@@ -12536,9 +12770,9 @@ snapshots:
dependencies:
'@babel/types': 7.29.0
- '@babel/parser@8.0.0-rc.2':
+ '@babel/parser@8.0.0-rc.3':
dependencies:
- '@babel/types': 8.0.0-rc.2
+ '@babel/types': 8.0.0-rc.3
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.0)':
dependencies:
@@ -13091,21 +13325,21 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@babel/types@8.0.0-rc.2':
+ '@babel/types@8.0.0-rc.3':
dependencies:
'@babel/helper-string-parser': 8.0.0-rc.3
- '@babel/helper-validator-identifier': 8.0.0-rc.2
+ '@babel/helper-validator-identifier': 8.0.0-rc.3
'@bpmn-io/cm-theme@0.1.0-alpha.2':
dependencies:
- '@codemirror/language': 6.12.2
- '@codemirror/view': 6.40.0
+ '@codemirror/language': 6.12.3
+ '@codemirror/view': 6.41.0
'@lezer/highlight': 1.2.3
'@bpmn-io/diagram-js-ui@0.2.3':
dependencies:
htm: 3.1.1
- preact: 10.29.0
+ preact: 10.29.1
'@bpmn-io/extract-process-variables@0.8.0':
dependencies:
@@ -13118,10 +13352,10 @@ snapshots:
'@camunda/feel-builtins': 1.1.0
'@codemirror/autocomplete': 6.20.1
'@codemirror/commands': 6.10.3
- '@codemirror/language': 6.12.2
+ '@codemirror/language': 6.12.3
'@codemirror/lint': 6.9.5
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
+ '@codemirror/view': 6.41.0
'@lezer/highlight': 1.2.3
min-dom: 5.3.0
mitt: 3.0.1
@@ -13129,12 +13363,12 @@ snapshots:
'@bpmn-io/feel-lint@3.1.0':
dependencies:
'@bpmn-io/lezer-feel': 2.3.1
- '@codemirror/language': 6.12.2
+ '@codemirror/language': 6.12.3
'@bpmn-io/feelin@6.1.0':
dependencies:
'@bpmn-io/lezer-feel': 2.3.1
- '@lezer/common': 1.5.1
+ '@lezer/common': 1.5.2
luxon: 3.7.2
min-dash: 5.0.0
@@ -13142,8 +13376,8 @@ snapshots:
dependencies:
'@bpmn-io/lezer-feel': 2.3.1
'@codemirror/autocomplete': 6.20.1
- '@codemirror/language': 6.12.2
- '@lezer/common': 1.5.1
+ '@codemirror/language': 6.12.3
+ '@lezer/common': 1.5.2
'@bpmn-io/lezer-feel@2.3.1':
dependencies:
@@ -13151,11 +13385,11 @@ snapshots:
'@lezer/lr': 1.4.8
min-dash: 5.0.0
- '@bpmn-io/properties-panel@3.40.4':
+ '@bpmn-io/properties-panel@3.40.6':
dependencies:
'@bpmn-io/feel-editor': 2.5.2
- '@carbon/icons': 11.76.0
- '@codemirror/view': 6.40.0
+ '@carbon/icons': 11.78.0
+ '@codemirror/view': 6.41.0
classnames: 2.5.1
feelers: 1.5.1
focus-trap: 8.0.1
@@ -13166,19 +13400,19 @@ snapshots:
'@cacheable/memory@2.0.8':
dependencies:
- '@cacheable/utils': 2.4.0
+ '@cacheable/utils': 2.4.1
'@keyv/bigmap': 1.3.1(keyv@5.6.0)
hookified: 1.15.1
keyv: 5.6.0
- '@cacheable/utils@2.4.0':
+ '@cacheable/utils@2.4.1':
dependencies:
hashery: 1.5.1
keyv: 5.6.0
'@camunda/feel-builtins@1.1.0': {}
- '@carbon/icons@11.76.0':
+ '@carbon/icons@11.78.0':
dependencies:
'@ibm/telemetry-js': 1.11.0
@@ -13219,7 +13453,7 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.30.0(@types/node@25.5.0)':
+ '@changesets/cli@2.30.0(@types/node@25.6.0)':
dependencies:
'@changesets/apply-release-plan': 7.1.0
'@changesets/assemble-release-plan': 6.0.9
@@ -13235,7 +13469,7 @@ snapshots:
'@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@25.5.0)
+ '@inquirer/external-editor': 1.0.3(@types/node@25.6.0)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
enquirer: 2.4.1
@@ -13340,36 +13574,39 @@ snapshots:
human-id: 4.1.3
prettier: 2.8.8
- '@clack/core@1.1.0':
+ '@clack/core@1.2.0':
dependencies:
+ fast-wrap-ansi: 0.1.6
sisteransi: 1.0.5
- '@clack/prompts@1.1.0':
+ '@clack/prompts@1.2.0':
dependencies:
- '@clack/core': 1.1.0
+ '@clack/core': 1.2.0
+ fast-string-width: 1.1.0
+ fast-wrap-ansi: 0.1.6
sisteransi: 1.0.5
'@cloudflare/kv-asset-handler@0.4.2': {}
'@codemirror/autocomplete@6.20.1':
dependencies:
- '@codemirror/language': 6.12.2
+ '@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
- '@lezer/common': 1.5.1
+ '@codemirror/view': 6.41.0
+ '@lezer/common': 1.5.2
'@codemirror/commands@6.10.3':
dependencies:
- '@codemirror/language': 6.12.2
+ '@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
- '@lezer/common': 1.5.1
+ '@codemirror/view': 6.41.0
+ '@lezer/common': 1.5.2
- '@codemirror/language@6.12.2':
+ '@codemirror/language@6.12.3':
dependencies:
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
- '@lezer/common': 1.5.1
+ '@codemirror/view': 6.41.0
+ '@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.8
style-mod: 4.1.3
@@ -13377,28 +13614,28 @@ snapshots:
'@codemirror/lint@6.9.5':
dependencies:
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
+ '@codemirror/view': 6.41.0
crelt: 1.0.6
'@codemirror/state@6.6.0':
dependencies:
'@marijn/find-cluster-break': 1.0.2
- '@codemirror/view@6.40.0':
+ '@codemirror/view@6.41.0':
dependencies:
'@codemirror/state': 6.6.0
crelt: 1.0.6
style-mod: 4.1.3
w3c-keyname: 2.2.8
- '@commitlint/cli@20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
+ '@commitlint/cli@20.5.0(@types/node@25.6.0)(conventional-commits-parser@6.4.0)(typescript@6.0.2)':
dependencies:
'@commitlint/format': 20.5.0
'@commitlint/lint': 20.5.0
- '@commitlint/load': 20.5.0(@types/node@25.5.0)(typescript@5.9.3)
- '@commitlint/read': 20.5.0(conventional-commits-parser@6.3.0)
+ '@commitlint/load': 20.5.0(@types/node@25.6.0)(typescript@6.0.2)
+ '@commitlint/read': 20.5.0(conventional-commits-parser@6.4.0)
'@commitlint/types': 20.5.0
- tinyexec: 1.0.4
+ tinyexec: 1.1.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -13409,7 +13646,7 @@ snapshots:
'@commitlint/config-conventional@20.5.0':
dependencies:
'@commitlint/types': 20.5.0
- conventional-changelog-conventionalcommits: 9.3.0
+ conventional-changelog-conventionalcommits: 9.3.1
'@commitlint/config-validator@20.5.0':
dependencies:
@@ -13444,14 +13681,14 @@ snapshots:
'@commitlint/rules': 20.5.0
'@commitlint/types': 20.5.0
- '@commitlint/load@20.5.0(@types/node@25.5.0)(typescript@5.9.3)':
+ '@commitlint/load@20.5.0(@types/node@25.6.0)(typescript@6.0.2)':
dependencies:
'@commitlint/config-validator': 20.5.0
'@commitlint/execute-rule': 20.0.0
'@commitlint/resolve-extends': 20.5.0
'@commitlint/types': 20.5.0
- 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)
+ cosmiconfig: 9.0.1(typescript@6.0.2)
+ cosmiconfig-typescript-loader: 6.3.0(@types/node@25.6.0)(cosmiconfig@9.0.1(typescript@6.0.2))(typescript@6.0.2)
is-plain-obj: 4.1.0
lodash.mergewith: 4.6.2
picocolors: 1.1.1
@@ -13464,16 +13701,16 @@ snapshots:
'@commitlint/parse@20.5.0':
dependencies:
'@commitlint/types': 20.5.0
- conventional-changelog-angular: 8.3.0
- conventional-commits-parser: 6.3.0
+ conventional-changelog-angular: 8.3.1
+ conventional-commits-parser: 6.4.0
- '@commitlint/read@20.5.0(conventional-commits-parser@6.3.0)':
+ '@commitlint/read@20.5.0(conventional-commits-parser@6.4.0)':
dependencies:
'@commitlint/top-level': 20.4.3
'@commitlint/types': 20.5.0
- git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0)
+ git-raw-commits: 5.0.1(conventional-commits-parser@6.4.0)
minimist: 1.2.8
- tinyexec: 1.0.4
+ tinyexec: 1.1.1
transitivePeerDependencies:
- conventional-commits-filter
- conventional-commits-parser
@@ -13502,18 +13739,18 @@ snapshots:
'@commitlint/types@20.5.0':
dependencies:
- conventional-commits-parser: 6.3.0
+ conventional-commits-parser: 6.4.0
picocolors: 1.1.1
- '@conventional-changelog/git-client@2.6.0(conventional-commits-parser@6.3.0)':
+ '@conventional-changelog/git-client@2.7.0(conventional-commits-parser@6.4.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
+ conventional-commits-parser: 6.4.0
- '@cspell/cspell-bundled-dicts@9.7.0':
+ '@cspell/cspell-bundled-dicts@10.0.0':
dependencies:
'@cspell/dict-ada': 4.1.1
'@cspell/dict-al': 1.1.1
@@ -13528,11 +13765,11 @@ snapshots:
'@cspell/dict-data-science': 2.0.13
'@cspell/dict-django': 4.1.6
'@cspell/dict-docker': 1.1.17
- '@cspell/dict-dotnet': 5.0.12
+ '@cspell/dict-dotnet': 5.0.13
'@cspell/dict-elixir': 4.0.8
'@cspell/dict-en-common-misspellings': 2.1.12
- '@cspell/dict-en-gb-mit': 3.1.21
- '@cspell/dict-en_us': 4.4.32
+ '@cspell/dict-en-gb-mit': 3.1.22
+ '@cspell/dict-en_us': 4.4.33
'@cspell/dict-filetypes': 3.0.18
'@cspell/dict-flutter': 1.1.1
'@cspell/dict-fonts': 4.0.6
@@ -13566,7 +13803,7 @@ snapshots:
'@cspell/dict-rust': 4.1.2
'@cspell/dict-scala': 5.0.9
'@cspell/dict-shell': 1.1.2
- '@cspell/dict-software-terms': 5.2.1
+ '@cspell/dict-software-terms': 5.2.2
'@cspell/dict-sql': 2.2.1
'@cspell/dict-svelte': 1.0.7
'@cspell/dict-swift': 2.0.6
@@ -13575,25 +13812,25 @@ snapshots:
'@cspell/dict-vue': 3.0.5
'@cspell/dict-zig': 1.0.0
- '@cspell/cspell-json-reporter@9.7.0':
+ '@cspell/cspell-json-reporter@10.0.0':
dependencies:
- '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-types': 10.0.0
- '@cspell/cspell-performance-monitor@9.7.0': {}
+ '@cspell/cspell-performance-monitor@10.0.0': {}
- '@cspell/cspell-pipe@9.7.0': {}
+ '@cspell/cspell-pipe@10.0.0': {}
- '@cspell/cspell-resolver@9.7.0':
+ '@cspell/cspell-resolver@10.0.0':
dependencies:
global-directory: 5.0.0
- '@cspell/cspell-service-bus@9.7.0': {}
+ '@cspell/cspell-service-bus@10.0.0': {}
- '@cspell/cspell-types@9.7.0': {}
+ '@cspell/cspell-types@10.0.0': {}
- '@cspell/cspell-worker@9.7.0':
+ '@cspell/cspell-worker@10.0.0':
dependencies:
- cspell-lib: 9.7.0
+ cspell-lib: 10.0.0
'@cspell/dict-ada@4.1.1': {}
@@ -13623,15 +13860,15 @@ snapshots:
'@cspell/dict-docker@1.1.17': {}
- '@cspell/dict-dotnet@5.0.12': {}
+ '@cspell/dict-dotnet@5.0.13': {}
'@cspell/dict-elixir@4.0.8': {}
'@cspell/dict-en-common-misspellings@2.1.12': {}
- '@cspell/dict-en-gb-mit@3.1.21': {}
+ '@cspell/dict-en-gb-mit@3.1.22': {}
- '@cspell/dict-en_us@4.4.32': {}
+ '@cspell/dict-en_us@4.4.33': {}
'@cspell/dict-filetypes@3.0.18': {}
@@ -13706,7 +13943,7 @@ snapshots:
'@cspell/dict-shell@1.1.2': {}
- '@cspell/dict-software-terms@5.2.1': {}
+ '@cspell/dict-software-terms@5.2.2': {}
'@cspell/dict-sql@2.2.1': {}
@@ -13722,28 +13959,28 @@ snapshots:
'@cspell/dict-zig@1.0.0': {}
- '@cspell/dynamic-import@9.7.0':
+ '@cspell/dynamic-import@10.0.0':
dependencies:
- '@cspell/url': 9.7.0
+ '@cspell/url': 10.0.0
import-meta-resolve: 4.2.0
- '@cspell/filetypes@9.7.0': {}
+ '@cspell/filetypes@10.0.0': {}
- '@cspell/rpc@9.7.0': {}
+ '@cspell/rpc@10.0.0': {}
- '@cspell/strong-weak-map@9.7.0': {}
+ '@cspell/strong-weak-map@10.0.0': {}
- '@cspell/url@9.7.0': {}
+ '@cspell/url@10.0.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.30(typescript@5.9.3))':
+ '@css-render/vue3-ssr@0.15.14(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@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-calc@3.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
dependencies:
'@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
'@csstools/css-tokenizer': 4.0.0
@@ -13752,7 +13989,7 @@ snapshots:
dependencies:
'@csstools/css-tokenizer': 4.0.0
- '@csstools/css-syntax-patches-for-csstree@1.1.1(css-tree@3.2.1)':
+ '@csstools/css-syntax-patches-for-csstree@1.1.3(css-tree@3.2.1)':
optionalDependencies:
css-tree: 3.2.1
@@ -13779,10 +14016,10 @@ snapshots:
'@docsearch/css@3.8.2': {}
- '@docsearch/js@3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)':
+ '@docsearch/js@3.8.2(@algolia/client-search@5.50.1)(search-insights@2.17.3)':
dependencies:
- '@docsearch/react': 3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)
- preact: 10.29.0
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.50.1)(search-insights@2.17.3)
+ preact: 10.29.1
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -13790,33 +14027,33 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.50.1)(search-insights@2.17.3)':
dependencies:
- '@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)
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.50.1)(algoliasearch@5.50.1)
'@docsearch/css': 3.8.2
- algoliasearch: 5.49.2
+ algoliasearch: 5.50.1
optionalDependencies:
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@element-plus/icons-vue@2.3.2(vue@3.5.30(typescript@5.9.3))':
+ '@element-plus/icons-vue@2.3.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@emnapi/core@1.9.1':
+ '@emnapi/core@1.9.2':
dependencies:
- '@emnapi/wasi-threads': 1.2.0
+ '@emnapi/wasi-threads': 1.2.1
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.9.1':
+ '@emnapi/runtime@1.9.2':
dependencies:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.2.0':
+ '@emnapi/wasi-threads@1.2.1':
dependencies:
tslib: 2.8.1
optional: true
@@ -13834,7 +14071,7 @@ snapshots:
'@es-joy/jsdoccomment@0.84.0':
dependencies:
'@types/estree': 1.0.8
- '@typescript-eslint/types': 8.57.1
+ '@typescript-eslint/types': 8.58.1
comment-parser: 1.4.5
esquery: 1.7.0
jsdoc-type-pratt-parser: 7.1.1
@@ -13845,7 +14082,7 @@ snapshots:
'@esbuild/aix-ppc64@0.25.12':
optional: true
- '@esbuild/aix-ppc64@0.27.4':
+ '@esbuild/aix-ppc64@0.27.7':
optional: true
'@esbuild/android-arm64@0.21.5':
@@ -13854,7 +14091,7 @@ snapshots:
'@esbuild/android-arm64@0.25.12':
optional: true
- '@esbuild/android-arm64@0.27.4':
+ '@esbuild/android-arm64@0.27.7':
optional: true
'@esbuild/android-arm@0.21.5':
@@ -13863,7 +14100,7 @@ snapshots:
'@esbuild/android-arm@0.25.12':
optional: true
- '@esbuild/android-arm@0.27.4':
+ '@esbuild/android-arm@0.27.7':
optional: true
'@esbuild/android-x64@0.21.5':
@@ -13872,7 +14109,7 @@ snapshots:
'@esbuild/android-x64@0.25.12':
optional: true
- '@esbuild/android-x64@0.27.4':
+ '@esbuild/android-x64@0.27.7':
optional: true
'@esbuild/darwin-arm64@0.21.5':
@@ -13881,7 +14118,7 @@ snapshots:
'@esbuild/darwin-arm64@0.25.12':
optional: true
- '@esbuild/darwin-arm64@0.27.4':
+ '@esbuild/darwin-arm64@0.27.7':
optional: true
'@esbuild/darwin-x64@0.21.5':
@@ -13890,7 +14127,7 @@ snapshots:
'@esbuild/darwin-x64@0.25.12':
optional: true
- '@esbuild/darwin-x64@0.27.4':
+ '@esbuild/darwin-x64@0.27.7':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
@@ -13899,7 +14136,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.25.12':
optional: true
- '@esbuild/freebsd-arm64@0.27.4':
+ '@esbuild/freebsd-arm64@0.27.7':
optional: true
'@esbuild/freebsd-x64@0.21.5':
@@ -13908,7 +14145,7 @@ snapshots:
'@esbuild/freebsd-x64@0.25.12':
optional: true
- '@esbuild/freebsd-x64@0.27.4':
+ '@esbuild/freebsd-x64@0.27.7':
optional: true
'@esbuild/linux-arm64@0.21.5':
@@ -13917,7 +14154,7 @@ snapshots:
'@esbuild/linux-arm64@0.25.12':
optional: true
- '@esbuild/linux-arm64@0.27.4':
+ '@esbuild/linux-arm64@0.27.7':
optional: true
'@esbuild/linux-arm@0.21.5':
@@ -13926,7 +14163,7 @@ snapshots:
'@esbuild/linux-arm@0.25.12':
optional: true
- '@esbuild/linux-arm@0.27.4':
+ '@esbuild/linux-arm@0.27.7':
optional: true
'@esbuild/linux-ia32@0.21.5':
@@ -13935,7 +14172,7 @@ snapshots:
'@esbuild/linux-ia32@0.25.12':
optional: true
- '@esbuild/linux-ia32@0.27.4':
+ '@esbuild/linux-ia32@0.27.7':
optional: true
'@esbuild/linux-loong64@0.21.5':
@@ -13944,7 +14181,7 @@ snapshots:
'@esbuild/linux-loong64@0.25.12':
optional: true
- '@esbuild/linux-loong64@0.27.4':
+ '@esbuild/linux-loong64@0.27.7':
optional: true
'@esbuild/linux-mips64el@0.21.5':
@@ -13953,7 +14190,7 @@ snapshots:
'@esbuild/linux-mips64el@0.25.12':
optional: true
- '@esbuild/linux-mips64el@0.27.4':
+ '@esbuild/linux-mips64el@0.27.7':
optional: true
'@esbuild/linux-ppc64@0.21.5':
@@ -13962,7 +14199,7 @@ snapshots:
'@esbuild/linux-ppc64@0.25.12':
optional: true
- '@esbuild/linux-ppc64@0.27.4':
+ '@esbuild/linux-ppc64@0.27.7':
optional: true
'@esbuild/linux-riscv64@0.21.5':
@@ -13971,7 +14208,7 @@ snapshots:
'@esbuild/linux-riscv64@0.25.12':
optional: true
- '@esbuild/linux-riscv64@0.27.4':
+ '@esbuild/linux-riscv64@0.27.7':
optional: true
'@esbuild/linux-s390x@0.21.5':
@@ -13980,7 +14217,7 @@ snapshots:
'@esbuild/linux-s390x@0.25.12':
optional: true
- '@esbuild/linux-s390x@0.27.4':
+ '@esbuild/linux-s390x@0.27.7':
optional: true
'@esbuild/linux-x64@0.21.5':
@@ -13989,13 +14226,13 @@ snapshots:
'@esbuild/linux-x64@0.25.12':
optional: true
- '@esbuild/linux-x64@0.27.4':
+ '@esbuild/linux-x64@0.27.7':
optional: true
'@esbuild/netbsd-arm64@0.25.12':
optional: true
- '@esbuild/netbsd-arm64@0.27.4':
+ '@esbuild/netbsd-arm64@0.27.7':
optional: true
'@esbuild/netbsd-x64@0.21.5':
@@ -14004,13 +14241,13 @@ snapshots:
'@esbuild/netbsd-x64@0.25.12':
optional: true
- '@esbuild/netbsd-x64@0.27.4':
+ '@esbuild/netbsd-x64@0.27.7':
optional: true
'@esbuild/openbsd-arm64@0.25.12':
optional: true
- '@esbuild/openbsd-arm64@0.27.4':
+ '@esbuild/openbsd-arm64@0.27.7':
optional: true
'@esbuild/openbsd-x64@0.21.5':
@@ -14019,13 +14256,13 @@ snapshots:
'@esbuild/openbsd-x64@0.25.12':
optional: true
- '@esbuild/openbsd-x64@0.27.4':
+ '@esbuild/openbsd-x64@0.27.7':
optional: true
'@esbuild/openharmony-arm64@0.25.12':
optional: true
- '@esbuild/openharmony-arm64@0.27.4':
+ '@esbuild/openharmony-arm64@0.27.7':
optional: true
'@esbuild/sunos-x64@0.21.5':
@@ -14034,7 +14271,7 @@ snapshots:
'@esbuild/sunos-x64@0.25.12':
optional: true
- '@esbuild/sunos-x64@0.27.4':
+ '@esbuild/sunos-x64@0.27.7':
optional: true
'@esbuild/win32-arm64@0.21.5':
@@ -14043,7 +14280,7 @@ snapshots:
'@esbuild/win32-arm64@0.25.12':
optional: true
- '@esbuild/win32-arm64@0.27.4':
+ '@esbuild/win32-arm64@0.27.7':
optional: true
'@esbuild/win32-ia32@0.21.5':
@@ -14052,7 +14289,7 @@ snapshots:
'@esbuild/win32-ia32@0.25.12':
optional: true
- '@esbuild/win32-ia32@0.27.4':
+ '@esbuild/win32-ia32@0.27.7':
optional: true
'@esbuild/win32-x64@0.21.5':
@@ -14061,52 +14298,57 @@ snapshots:
'@esbuild/win32-x64@0.25.12':
optional: true
- '@esbuild/win32-x64@0.27.4':
+ '@esbuild/win32-x64@0.27.7':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.1.0(jiti@2.6.1))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.7.1(eslint@10.2.0(jiti@2.6.1))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
ignore: 7.0.5
- '@eslint-community/eslint-utils@4.9.1(eslint@10.1.0(jiti@2.6.1))':
+ '@eslint-community/eslint-utils@4.9.1(eslint@10.2.0(jiti@2.6.1))':
dependencies:
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.2': {}
- '@eslint/config-array@0.23.3':
+ '@eslint/config-array@0.23.5':
dependencies:
- '@eslint/object-schema': 3.0.3
+ '@eslint/object-schema': 3.0.5
debug: 4.4.3
- minimatch: 10.2.4
+ minimatch: 10.2.5
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.5.3':
+ '@eslint/config-helpers@0.5.5':
dependencies:
- '@eslint/core': 1.1.1
+ '@eslint/core': 1.2.1
- '@eslint/core@1.1.1':
+ '@eslint/core@1.2.1':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/css-tree@3.6.9':
+ '@eslint/css-tree@4.0.1':
dependencies:
- mdn-data: 2.23.0
+ mdn-data: 2.27.1
source-map-js: 1.2.1
- '@eslint/js@10.0.1(eslint@10.1.0(jiti@2.6.1))':
+ '@eslint/js@10.0.1(eslint@10.2.0(jiti@2.6.1))':
optionalDependencies:
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
- '@eslint/object-schema@3.0.3': {}
+ '@eslint/object-schema@3.0.5': {}
'@eslint/plugin-kit@0.6.1':
dependencies:
- '@eslint/core': 1.1.1
+ '@eslint/core': 1.2.1
+ levn: 0.4.1
+
+ '@eslint/plugin-kit@0.7.1':
+ dependencies:
+ '@eslint/core': 1.2.1
levn: 0.4.1
'@floating-ui/core@1.7.5':
@@ -14120,37 +14362,37 @@ snapshots:
'@floating-ui/utils@0.2.11': {}
- '@floating-ui/vue@1.1.11(vue@3.5.30(typescript@5.9.3))':
+ '@floating-ui/vue@1.1.11(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@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))
+ vue-demi: 0.14.10(vue@3.5.32(typescript@6.0.2))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@form-create/ant-design-vue@3.2.38(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/ant-design-vue@3.2.38(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@form-create/component-antdv-frame': 3.2.31
'@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.30(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.32(typescript@6.0.2))
'@form-create/utils': 3.2.31
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@form-create/antd-designer@3.4.0(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/antd-designer@3.4.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@form-create/ant-design-vue': 3.2.38(vue@3.5.30(typescript@5.9.3))
+ '@form-create/ant-design-vue': 3.2.38(vue@3.5.32(typescript@6.0.2))
'@form-create/component-wangeditor': 3.2.14
'@form-create/utils': 3.2.31
- ant-design-vue: 4.2.6(vue@3.5.30(typescript@5.9.3))
+ ant-design-vue: 4.2.6(vue@3.5.32(typescript@6.0.2))
codemirror: 6.65.7
js-beautify: 1.15.4
- marked: 17.0.5
+ marked: 17.0.6
signature_pad: 5.1.3
- vue: 3.5.30(typescript@5.9.3)
- vuedraggable: 4.1.0(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.32(typescript@6.0.2)
+ vuedraggable: 4.1.0(vue@3.5.32(typescript@6.0.2))
'@form-create/component-antdv-frame@3.2.31':
dependencies:
@@ -14218,27 +14460,27 @@ snapshots:
dependencies:
wangeditor: 4.7.15
- '@form-create/core@3.2.37(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/core@3.2.37(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@form-create/utils': 3.2.31
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@form-create/designer@3.4.0(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/designer@3.4.0(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@form-create/component-wangeditor': 3.2.14
- '@form-create/element-ui': 3.2.38(vue@3.5.30(typescript@5.9.3))
+ '@form-create/element-ui': 3.2.38(vue@3.5.32(typescript@6.0.2))
'@form-create/utils': 3.2.31
codemirror: 6.65.7
- element-plus: 2.13.6(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ element-plus: 2.13.7(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
js-beautify: 1.15.4
- marked: 17.0.5
+ marked: 17.0.6
signature_pad: 5.1.3
- vue: 3.5.30(typescript@5.9.3)
- vuedraggable: 4.1.0(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.32(typescript@6.0.2)
+ vuedraggable: 4.1.0(vue@3.5.32(typescript@6.0.2))
transitivePeerDependencies:
- typescript
- '@form-create/element-ui@3.2.38(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/element-ui@3.2.38(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@form-create/component-elm-checkbox': 3.2.31
'@form-create/component-elm-frame': 3.2.31
@@ -14248,11 +14490,11 @@ snapshots:
'@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.30(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.32(typescript@6.0.2))
'@form-create/utils': 3.2.31
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@form-create/naive-ui@3.2.38(vue@3.5.30(typescript@5.9.3))':
+ '@form-create/naive-ui@3.2.38(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@form-create/component-naive-checkbox': 3.2.31
'@form-create/component-naive-frame': 3.2.31
@@ -14260,9 +14502,9 @@ snapshots:
'@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.30(typescript@5.9.3))
+ '@form-create/core': 3.2.37(vue@3.5.32(typescript@6.0.2))
'@form-create/utils': 3.2.31
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
'@form-create/utils@3.2.31': {}
@@ -14283,7 +14525,7 @@ snapshots:
'@ibm/telemetry-js@1.11.0': {}
- '@iconify-json/logos@1.2.10':
+ '@iconify-json/logos@1.2.11':
dependencies:
'@iconify/types': 2.0.0
@@ -14291,7 +14533,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.75':
+ '@iconify-json/simple-icons@1.2.78':
dependencies:
'@iconify/types': 2.0.0
@@ -14299,19 +14541,19 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify/json@2.2.454':
+ '@iconify/json@2.2.462':
dependencies:
'@iconify/types': 2.0.0
pathe: 2.0.3
'@iconify/tailwind4@1.2.3(tailwindcss@4.2.2)':
dependencies:
- '@iconify/tools': 5.0.6
+ '@iconify/tools': 5.0.11
'@iconify/types': 2.0.0
'@iconify/utils': 3.1.0
tailwindcss: 4.2.2
- '@iconify/tools@5.0.6':
+ '@iconify/tools@5.0.11':
dependencies:
'@cyberalien/svg-utils': 1.2.8
'@iconify/types': 2.0.0
@@ -14329,30 +14571,30 @@ snapshots:
'@iconify/types': 2.0.0
mlly: 1.8.2
- '@iconify/vue@5.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@iconify/vue@5.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@inquirer/external-editor@1.0.3(@types/node@25.5.0)':
+ '@inquirer/external-editor@1.0.3(@types/node@25.6.0)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
'@internationalized/date@3.12.0':
dependencies:
- '@swc/helpers': 0.5.19
+ '@swc/helpers': 0.5.21
'@internationalized/number@3.6.5':
dependencies:
- '@swc/helpers': 0.5.19
+ '@swc/helpers': 0.5.21
- '@intlify/bundle-utils@11.0.7(vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)))':
+ '@intlify/bundle-utils@11.0.7(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))':
dependencies:
- '@intlify/message-compiler': 11.3.0
- '@intlify/shared': 11.3.0
+ '@intlify/message-compiler': 11.3.2
+ '@intlify/shared': 11.3.2
acorn: 8.16.0
esbuild: 0.25.12
escodegen: 2.1.0
@@ -14361,43 +14603,43 @@ snapshots:
source-map-js: 1.2.1
yaml-eslint-parser: 1.3.2
optionalDependencies:
- vue-i18n: 11.3.0(vue@3.5.30(typescript@5.9.3))
+ vue-i18n: 11.3.2(vue@3.5.32(typescript@6.0.2))
- '@intlify/core-base@11.3.0':
+ '@intlify/core-base@11.3.2':
dependencies:
- '@intlify/devtools-types': 11.3.0
- '@intlify/message-compiler': 11.3.0
- '@intlify/shared': 11.3.0
+ '@intlify/devtools-types': 11.3.2
+ '@intlify/message-compiler': 11.3.2
+ '@intlify/shared': 11.3.2
- '@intlify/devtools-types@11.3.0':
+ '@intlify/devtools-types@11.3.2':
dependencies:
- '@intlify/core-base': 11.3.0
- '@intlify/shared': 11.3.0
+ '@intlify/core-base': 11.3.2
+ '@intlify/shared': 11.3.2
- '@intlify/message-compiler@11.3.0':
+ '@intlify/message-compiler@11.3.2':
dependencies:
- '@intlify/shared': 11.3.0
+ '@intlify/shared': 11.3.2
source-map-js: 1.2.1
- '@intlify/shared@11.3.0': {}
+ '@intlify/shared@11.3.2': {}
- '@intlify/unplugin-vue-i18n@11.0.7(@vue/compiler-dom@3.5.30)(eslint@10.1.0(jiti@2.6.1))(rollup@4.60.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))':
+ '@intlify/unplugin-vue-i18n@11.0.7(@vue/compiler-dom@3.5.32)(eslint@10.2.0(jiti@2.6.1))(rollup@4.60.1)(typescript@6.0.2)(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(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.60.0)
- '@typescript-eslint/scope-manager': 8.57.1
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
+ '@intlify/bundle-utils': 11.0.7(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))
+ '@intlify/shared': 11.3.2
+ '@intlify/vue-i18n-extensions': 8.0.0(@intlify/shared@11.3.2)(@vue/compiler-dom@3.5.32)(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
+ '@typescript-eslint/scope-manager': 8.58.1
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
debug: 4.4.3
fast-glob: 3.3.3
pathe: 2.0.3
picocolors: 1.1.1
unplugin: 2.3.11
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
- vue-i18n: 11.3.0(vue@3.5.30(typescript@5.9.3))
+ vue-i18n: 11.3.2(vue@3.5.32(typescript@6.0.2))
transitivePeerDependencies:
- '@vue/compiler-dom'
- eslint
@@ -14405,14 +14647,14 @@ snapshots:
- supports-color
- typescript
- '@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))':
+ '@intlify/vue-i18n-extensions@8.0.0(@intlify/shared@11.3.2)(@vue/compiler-dom@3.5.32)(vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@babel/parser': 7.29.2
optionalDependencies:
- '@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))
+ '@intlify/shared': 11.3.2
+ '@vue/compiler-dom': 3.5.32
+ vue: 3.5.32(typescript@6.0.2)
+ vue-i18n: 11.3.2(vue@3.5.32(typescript@6.0.2))
'@ioredis/commands@1.5.1': {}
@@ -14455,14 +14697,14 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
- '@jspm/generator@2.12.0':
+ '@jspm/generator@2.13.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.4.0
+ '@jspm/import-map': 1.5.0
es-module-lexer: 1.7.0
- minimatch: 10.2.4
+ minimatch: 10.2.5
node-fetch-cache: 5.1.0
pako: 2.1.0
sver: 2.0.1
@@ -14473,7 +14715,7 @@ snapshots:
- react-native-b4a
- supports-color
- '@jspm/import-map@1.4.0': {}
+ '@jspm/import-map@1.5.0': {}
'@juggle/resize-observer@3.4.0': {}
@@ -14485,19 +14727,19 @@ snapshots:
'@keyv/serialize@1.1.1': {}
- '@lezer/common@1.5.1': {}
+ '@lezer/common@1.5.2': {}
'@lezer/highlight@1.2.3':
dependencies:
- '@lezer/common': 1.5.1
+ '@lezer/common': 1.5.2
'@lezer/lr@1.4.8':
dependencies:
- '@lezer/common': 1.5.1
+ '@lezer/common': 1.5.2
'@lezer/markdown@1.6.3':
dependencies:
- '@lezer/common': 1.5.1
+ '@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@manypkg/find-root@1.1.0':
@@ -14509,7 +14751,7 @@ snapshots:
'@manypkg/find-root@3.1.0':
dependencies:
- '@manypkg/tools': 2.1.0
+ '@manypkg/tools': 2.1.1
'@manypkg/get-packages@1.1.3':
dependencies:
@@ -14523,13 +14765,13 @@ snapshots:
'@manypkg/get-packages@3.1.0':
dependencies:
'@manypkg/find-root': 3.1.0
- '@manypkg/tools': 2.1.0
+ '@manypkg/tools': 2.1.1
- '@manypkg/tools@2.1.0':
+ '@manypkg/tools@2.1.1':
dependencies:
jju: 1.4.0
js-yaml: 4.1.1
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
'@mapbox/node-pre-gyp@2.0.3':
dependencies:
@@ -14539,7 +14781,7 @@ snapshots:
node-fetch: 2.7.0
nopt: 8.1.0
semver: 7.7.4
- tar: 7.5.12
+ tar: 7.5.13
transitivePeerDependencies:
- encoding
- supports-color
@@ -14548,10 +14790,10 @@ snapshots:
'@microsoft/fetch-event-source@2.0.1': {}
- '@napi-rs/wasm-runtime@1.1.1':
+ '@napi-rs/wasm-runtime@1.1.3(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)':
dependencies:
- '@emnapi/core': 1.9.1
- '@emnapi/runtime': 1.9.1
+ '@emnapi/core': 1.9.2
+ '@emnapi/runtime': 1.9.2
'@tybys/wasm-util': 0.10.1
optional: true
@@ -14567,27 +14809,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.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.1)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))':
+ '@nolebase/ui@2.18.2(vitepress@1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2))(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@iconify-json/octicon': 1.2.22
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.1)(typescript@5.9.3)
- vue: 3.5.30(typescript@5.9.3)
+ vitepress: 1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2)
+ vue: 3.5.32(typescript@6.0.2)
- '@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.1)(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.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2))(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@iconify-json/octicon': 1.2.22
- '@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.1)(typescript@5.9.3))(vue@3.5.30(typescript@5.9.3))
+ '@nolebase/ui': 2.18.2(vitepress@1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2))(vue@3.5.32(typescript@6.0.2))
colorette: 2.0.20
date-fns: 4.1.0
- defu: 6.1.4
+ defu: 6.1.7
es-toolkit: 1.45.1
execa: 9.6.1
globby: 14.1.0
gray-matter: 4.0.3
less: 4.6.4
uncrypto: 0.1.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.1)(typescript@5.9.3)
+ vitepress: 1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2)
transitivePeerDependencies:
- vue
@@ -14597,9 +14839,9 @@ snapshots:
'@nuxt/kit@3.21.2(magicast@0.5.2)':
dependencies:
- c12: 3.3.3(magicast@0.5.2)
+ c12: 3.3.4(magicast@0.5.2)
consola: 3.4.2
- defu: 6.1.4
+ defu: 6.1.7
destr: 2.0.5
errx: 0.1.0
exsolve: 1.0.8
@@ -14611,10 +14853,10 @@ snapshots:
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
- rc9: 3.0.0
+ rc9: 3.0.1
scule: 1.3.0
semver: 7.7.4
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
ufo: 1.6.3
unctx: 2.5.0
untyped: 2.0.0
@@ -14624,9 +14866,9 @@ snapshots:
'@nuxt/kit@4.4.2(magicast@0.5.2)':
dependencies:
- c12: 3.3.3(magicast@0.5.2)
+ c12: 3.3.4(magicast@0.5.2)
consola: 3.4.2
- defu: 6.1.4
+ defu: 6.1.7
destr: 2.0.5
errx: 0.1.0
exsolve: 1.0.8
@@ -14637,10 +14879,10 @@ snapshots:
ohash: 2.0.11
pathe: 2.0.3
pkg-types: 2.3.0
- rc9: 3.0.0
+ rc9: 3.0.1
scule: 1.3.0
semver: 7.7.4
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
ufo: 1.6.3
unctx: 2.5.0
untyped: 2.0.0
@@ -14651,140 +14893,140 @@ snapshots:
'@ota-meshi/ast-token-store@0.3.0': {}
- '@oxc-project/types@0.115.0': {}
+ '@oxc-project/types@0.122.0': {}
- '@oxc-project/types@0.120.0': {}
+ '@oxc-project/types@0.124.0': {}
- '@oxfmt/binding-android-arm-eabi@0.41.0':
+ '@oxfmt/binding-android-arm-eabi@0.44.0':
optional: true
- '@oxfmt/binding-android-arm64@0.41.0':
+ '@oxfmt/binding-android-arm64@0.44.0':
optional: true
- '@oxfmt/binding-darwin-arm64@0.41.0':
+ '@oxfmt/binding-darwin-arm64@0.44.0':
optional: true
- '@oxfmt/binding-darwin-x64@0.41.0':
+ '@oxfmt/binding-darwin-x64@0.44.0':
optional: true
- '@oxfmt/binding-freebsd-x64@0.41.0':
+ '@oxfmt/binding-freebsd-x64@0.44.0':
optional: true
- '@oxfmt/binding-linux-arm-gnueabihf@0.41.0':
+ '@oxfmt/binding-linux-arm-gnueabihf@0.44.0':
optional: true
- '@oxfmt/binding-linux-arm-musleabihf@0.41.0':
+ '@oxfmt/binding-linux-arm-musleabihf@0.44.0':
optional: true
- '@oxfmt/binding-linux-arm64-gnu@0.41.0':
+ '@oxfmt/binding-linux-arm64-gnu@0.44.0':
optional: true
- '@oxfmt/binding-linux-arm64-musl@0.41.0':
+ '@oxfmt/binding-linux-arm64-musl@0.44.0':
optional: true
- '@oxfmt/binding-linux-ppc64-gnu@0.41.0':
+ '@oxfmt/binding-linux-ppc64-gnu@0.44.0':
optional: true
- '@oxfmt/binding-linux-riscv64-gnu@0.41.0':
+ '@oxfmt/binding-linux-riscv64-gnu@0.44.0':
optional: true
- '@oxfmt/binding-linux-riscv64-musl@0.41.0':
+ '@oxfmt/binding-linux-riscv64-musl@0.44.0':
optional: true
- '@oxfmt/binding-linux-s390x-gnu@0.41.0':
+ '@oxfmt/binding-linux-s390x-gnu@0.44.0':
optional: true
- '@oxfmt/binding-linux-x64-gnu@0.41.0':
+ '@oxfmt/binding-linux-x64-gnu@0.44.0':
optional: true
- '@oxfmt/binding-linux-x64-musl@0.41.0':
+ '@oxfmt/binding-linux-x64-musl@0.44.0':
optional: true
- '@oxfmt/binding-openharmony-arm64@0.41.0':
+ '@oxfmt/binding-openharmony-arm64@0.44.0':
optional: true
- '@oxfmt/binding-win32-arm64-msvc@0.41.0':
+ '@oxfmt/binding-win32-arm64-msvc@0.44.0':
optional: true
- '@oxfmt/binding-win32-ia32-msvc@0.41.0':
+ '@oxfmt/binding-win32-ia32-msvc@0.44.0':
optional: true
- '@oxfmt/binding-win32-x64-msvc@0.41.0':
+ '@oxfmt/binding-win32-x64-msvc@0.44.0':
optional: true
- '@oxlint-tsgolint/darwin-arm64@0.17.1':
+ '@oxlint-tsgolint/darwin-arm64@0.20.0':
optional: true
- '@oxlint-tsgolint/darwin-x64@0.17.1':
+ '@oxlint-tsgolint/darwin-x64@0.20.0':
optional: true
- '@oxlint-tsgolint/linux-arm64@0.17.1':
+ '@oxlint-tsgolint/linux-arm64@0.20.0':
optional: true
- '@oxlint-tsgolint/linux-x64@0.17.1':
+ '@oxlint-tsgolint/linux-x64@0.20.0':
optional: true
- '@oxlint-tsgolint/win32-arm64@0.17.1':
+ '@oxlint-tsgolint/win32-arm64@0.20.0':
optional: true
- '@oxlint-tsgolint/win32-x64@0.17.1':
+ '@oxlint-tsgolint/win32-x64@0.20.0':
optional: true
- '@oxlint/binding-android-arm-eabi@1.56.0':
+ '@oxlint/binding-android-arm-eabi@1.59.0':
optional: true
- '@oxlint/binding-android-arm64@1.56.0':
+ '@oxlint/binding-android-arm64@1.59.0':
optional: true
- '@oxlint/binding-darwin-arm64@1.56.0':
+ '@oxlint/binding-darwin-arm64@1.59.0':
optional: true
- '@oxlint/binding-darwin-x64@1.56.0':
+ '@oxlint/binding-darwin-x64@1.59.0':
optional: true
- '@oxlint/binding-freebsd-x64@1.56.0':
+ '@oxlint/binding-freebsd-x64@1.59.0':
optional: true
- '@oxlint/binding-linux-arm-gnueabihf@1.56.0':
+ '@oxlint/binding-linux-arm-gnueabihf@1.59.0':
optional: true
- '@oxlint/binding-linux-arm-musleabihf@1.56.0':
+ '@oxlint/binding-linux-arm-musleabihf@1.59.0':
optional: true
- '@oxlint/binding-linux-arm64-gnu@1.56.0':
+ '@oxlint/binding-linux-arm64-gnu@1.59.0':
optional: true
- '@oxlint/binding-linux-arm64-musl@1.56.0':
+ '@oxlint/binding-linux-arm64-musl@1.59.0':
optional: true
- '@oxlint/binding-linux-ppc64-gnu@1.56.0':
+ '@oxlint/binding-linux-ppc64-gnu@1.59.0':
optional: true
- '@oxlint/binding-linux-riscv64-gnu@1.56.0':
+ '@oxlint/binding-linux-riscv64-gnu@1.59.0':
optional: true
- '@oxlint/binding-linux-riscv64-musl@1.56.0':
+ '@oxlint/binding-linux-riscv64-musl@1.59.0':
optional: true
- '@oxlint/binding-linux-s390x-gnu@1.56.0':
+ '@oxlint/binding-linux-s390x-gnu@1.59.0':
optional: true
- '@oxlint/binding-linux-x64-gnu@1.56.0':
+ '@oxlint/binding-linux-x64-gnu@1.59.0':
optional: true
- '@oxlint/binding-linux-x64-musl@1.56.0':
+ '@oxlint/binding-linux-x64-musl@1.59.0':
optional: true
- '@oxlint/binding-openharmony-arm64@1.56.0':
+ '@oxlint/binding-openharmony-arm64@1.59.0':
optional: true
- '@oxlint/binding-win32-arm64-msvc@1.56.0':
+ '@oxlint/binding-win32-arm64-msvc@1.59.0':
optional: true
- '@oxlint/binding-win32-ia32-msvc@1.56.0':
+ '@oxlint/binding-win32-ia32-msvc@1.59.0':
optional: true
- '@oxlint/binding-win32-x64-msvc@1.56.0':
+ '@oxlint/binding-win32-x64-msvc@1.59.0':
optional: true
'@parcel/watcher-android-arm64@2.5.6':
@@ -14820,7 +15062,7 @@ snapshots:
'@parcel/watcher-wasm@2.5.6':
dependencies:
is-glob: 4.0.3
- picomatch: 4.0.3
+ picomatch: 4.0.4
'@parcel/watcher-win32-arm64@2.5.6':
optional: true
@@ -14836,7 +15078,7 @@ snapshots:
detect-libc: 2.1.2
is-glob: 4.0.3
node-addon-api: 7.1.1
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
'@parcel/watcher-android-arm64': 2.5.6
'@parcel/watcher-darwin-arm64': 2.5.6
@@ -14857,15 +15099,11 @@ snapshots:
'@pkgr/core@0.2.9': {}
- '@playwright/test@1.58.2':
- dependencies:
- playwright: 1.58.2
-
'@pnpm/config.env-replace@1.1.0': {}
'@pnpm/constants@1001.3.1': {}
- '@pnpm/error@1000.0.5':
+ '@pnpm/error@1000.1.0':
dependencies:
'@pnpm/constants': 1001.3.1
@@ -14881,10 +15119,10 @@ snapshots:
'@pnpm/types@1001.3.0': {}
- '@pnpm/workspace.read-manifest@1000.3.0':
+ '@pnpm/workspace.read-manifest@1000.3.1':
dependencies:
'@pnpm/constants': 1001.3.1
- '@pnpm/error': 1000.0.5
+ '@pnpm/error': 1000.1.0
'@pnpm/types': 1001.3.0
read-yaml-file: 2.1.0
@@ -14910,109 +15148,116 @@ snapshots:
dependencies:
quansync: 1.0.0
- '@rolldown/binding-android-arm64@1.0.0-rc.10':
+ '@remirror/core-constants@3.0.0': {}
+
+ '@rolldown/binding-android-arm64@1.0.0-rc.12':
optional: true
- '@rolldown/binding-android-arm64@1.0.0-rc.9':
+ '@rolldown/binding-android-arm64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-darwin-arm64@1.0.0-rc.10':
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.12':
optional: true
- '@rolldown/binding-darwin-arm64@1.0.0-rc.9':
+ '@rolldown/binding-darwin-arm64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-rc.10':
+ '@rolldown/binding-darwin-x64@1.0.0-rc.12':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-rc.9':
+ '@rolldown/binding-darwin-x64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-rc.10':
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.12':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-rc.9':
+ '@rolldown/binding-freebsd-x64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.10':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.10':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.10':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-rc.9':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.10':
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9':
+ '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.10':
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9':
+ '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.10':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-rc.9':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-rc.15':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.10':
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-rc.9':
+ '@rolldown/binding-linux-x64-musl@1.0.0-rc.15':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.10':
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
optional: true
- '@rolldown/binding-openharmony-arm64@1.0.0-rc.9':
+ '@rolldown/binding-openharmony-arm64@1.0.0-rc.15':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.10':
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)':
dependencies:
- '@napi-rs/wasm-runtime': 1.1.1
+ '@napi-rs/wasm-runtime': 1.1.3(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-rc.9':
+ '@rolldown/binding-wasm32-wasi@1.0.0-rc.15':
dependencies:
- '@napi-rs/wasm-runtime': 1.1.1
+ '@emnapi/core': 1.9.2
+ '@emnapi/runtime': 1.9.2
+ '@napi-rs/wasm-runtime': 1.1.3(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.10':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.15':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.10':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-rc.9':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-rc.15':
optional: true
- '@rolldown/pluginutils@1.0.0-rc.10': {}
+ '@rolldown/pluginutils@1.0.0-rc.12': {}
- '@rolldown/pluginutils@1.0.0-rc.2': {}
+ '@rolldown/pluginutils@1.0.0-rc.13': {}
- '@rolldown/pluginutils@1.0.0-rc.9': {}
+ '@rolldown/pluginutils@1.0.0-rc.15': {}
- '@rollup/plugin-alias@6.0.0(rollup@4.60.0)':
+ '@rollup/plugin-alias@6.0.0(rollup@4.60.1)':
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
'@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(rollup@2.80.0)':
dependencies:
@@ -15023,31 +15268,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@29.0.2(rollup@4.60.0)':
+ '@rollup/plugin-commonjs@29.0.2(rollup@4.60.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.5.0(picomatch@4.0.3)
+ fdir: 6.5.0(picomatch@4.0.4)
is-reference: 1.2.1
magic-string: 0.30.21
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
- '@rollup/plugin-inject@5.0.5(rollup@4.60.0)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.60.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
estree-walker: 2.0.2
magic-string: 0.30.21
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
- '@rollup/plugin-json@6.1.0(rollup@4.60.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.60.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
'@rollup/plugin-node-resolve@15.3.1(rollup@2.80.0)':
dependencies:
@@ -15055,19 +15300,19 @@ snapshots:
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.11
+ resolve: 1.22.12
optionalDependencies:
rollup: 2.80.0
- '@rollup/plugin-node-resolve@16.0.3(rollup@4.60.0)':
+ '@rollup/plugin-node-resolve@16.0.3(rollup@4.60.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.11
+ resolve: 1.22.12
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
'@rollup/plugin-replace@2.4.2(rollup@2.80.0)':
dependencies:
@@ -15075,12 +15320,12 @@ snapshots:
magic-string: 0.25.9
rollup: 2.80.0
- '@rollup/plugin-replace@6.0.3(rollup@4.60.0)':
+ '@rollup/plugin-replace@6.0.3(rollup@4.60.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
magic-string: 0.30.21
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
'@rollup/plugin-terser@0.4.4(rollup@2.80.0)':
dependencies:
@@ -15090,115 +15335,110 @@ snapshots:
optionalDependencies:
rollup: 2.80.0
- '@rollup/plugin-terser@1.0.0(rollup@4.60.0)':
+ '@rollup/plugin-terser@1.0.0(rollup@4.60.1)':
dependencies:
- serialize-javascript: 7.0.4
+ serialize-javascript: 7.0.5
smob: 1.6.1
terser: 5.46.1
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
'@rollup/pluginutils@3.1.0(rollup@2.80.0)':
dependencies:
'@types/estree': 0.0.39
estree-walker: 1.0.1
- picomatch: 2.3.1
+ picomatch: 2.3.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.80.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
rollup: 2.80.0
- '@rollup/pluginutils@5.3.0(rollup@4.60.0)':
+ '@rollup/pluginutils@5.3.0(rollup@4.60.1)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.3
+ picomatch: 4.0.4
optionalDependencies:
- rollup: 4.60.0
+ rollup: 4.60.1
- '@rollup/rollup-android-arm-eabi@4.60.0':
+ '@rollup/rollup-android-arm-eabi@4.60.1':
optional: true
- '@rollup/rollup-android-arm64@4.60.0':
+ '@rollup/rollup-android-arm64@4.60.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.60.0':
+ '@rollup/rollup-darwin-arm64@4.60.1':
optional: true
- '@rollup/rollup-darwin-x64@4.60.0':
+ '@rollup/rollup-darwin-x64@4.60.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.60.0':
+ '@rollup/rollup-freebsd-arm64@4.60.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.60.0':
+ '@rollup/rollup-freebsd-x64@4.60.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.60.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.60.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.60.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.60.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.60.0':
+ '@rollup/rollup-linux-arm64-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.60.0':
+ '@rollup/rollup-linux-arm64-musl@4.60.1':
optional: true
- '@rollup/rollup-linux-loong64-gnu@4.60.0':
+ '@rollup/rollup-linux-loong64-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-loong64-musl@4.60.0':
+ '@rollup/rollup-linux-loong64-musl@4.60.1':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.60.0':
+ '@rollup/rollup-linux-ppc64-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-ppc64-musl@4.60.0':
+ '@rollup/rollup-linux-ppc64-musl@4.60.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.60.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.60.0':
+ '@rollup/rollup-linux-riscv64-musl@4.60.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.60.0':
+ '@rollup/rollup-linux-s390x-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.60.0':
+ '@rollup/rollup-linux-x64-gnu@4.60.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.60.0':
+ '@rollup/rollup-linux-x64-musl@4.60.1':
optional: true
- '@rollup/rollup-openbsd-x64@4.60.0':
+ '@rollup/rollup-openbsd-x64@4.60.1':
optional: true
- '@rollup/rollup-openharmony-arm64@4.60.0':
+ '@rollup/rollup-openharmony-arm64@4.60.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.60.0':
+ '@rollup/rollup-win32-arm64-msvc@4.60.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.60.0':
+ '@rollup/rollup-win32-ia32-msvc@4.60.1':
optional: true
- '@rollup/rollup-win32-x64-gnu@4.60.0':
+ '@rollup/rollup-win32-x64-gnu@4.60.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.60.0':
+ '@rollup/rollup-win32-x64-msvc@4.60.1':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
@@ -15264,16 +15504,16 @@ snapshots:
'@standard-schema/spec@1.1.0': {}
- '@stylistic/stylelint-plugin@5.0.1(stylelint@17.5.0(typescript@5.9.3))':
+ '@stylistic/stylelint-plugin@5.1.0(stylelint@17.7.0(typescript@6.0.2))':
dependencies:
'@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: 8.5.9
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
style-search: 0.1.0
- stylelint: 17.5.0(typescript@5.9.3)
+ stylelint: 17.7.0(typescript@6.0.2)
'@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
@@ -15282,15 +15522,15 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.12
- '@svelte-put/shortcut@4.1.0(svelte@5.54.1)':
+ '@svelte-put/shortcut@4.1.0(svelte@5.55.3(@typescript-eslint/types@8.58.1))':
dependencies:
- svelte: 5.54.1
+ svelte: 5.55.3(@typescript-eslint/types@8.58.1)
'@sveltejs/acorn-typescript@1.0.9(acorn@8.16.0)':
dependencies:
acorn: 8.16.0
- '@swc/helpers@0.5.19':
+ '@swc/helpers@0.5.21':
dependencies:
tslib: 2.8.1
@@ -15362,79 +15602,271 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 4.2.2
- '@tailwindcss/vite@4.2.2(vite@8.0.1(@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.1)(yaml@2.8.3))':
+ '@tailwindcss/vite@4.2.2(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))':
dependencies:
'@tailwindcss/node': 4.2.2
'@tailwindcss/oxide': 4.2.2
tailwindcss: 4.2.2
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
- '@tanstack/store@0.9.2': {}
+ '@tanstack/store@0.10.0': {}
'@tanstack/virtual-core@3.13.23': {}
- '@tanstack/vue-store@0.9.2(vue@3.5.30(typescript@5.9.3))':
+ '@tanstack/vue-store@0.10.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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/store': 0.10.0
+ vue: 3.5.32(typescript@6.0.2)
+ vue-demi: 0.14.10(vue@3.5.32(typescript@6.0.2))
- '@tanstack/vue-virtual@3.13.23(vue@3.5.30(typescript@5.9.3))':
+ '@tanstack/vue-virtual@3.13.23(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@tanstack/virtual-core': 3.13.23
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@tinyflow-ai/ui@1.1.10(svelte@5.54.1)':
+ '@tinyflow-ai/ui@1.1.10(svelte@5.55.3(@typescript-eslint/types@8.58.1))':
dependencies:
'@floating-ui/dom': 1.7.6
- '@xyflow/svelte': 1.5.1(svelte@5.54.1)
+ '@xyflow/svelte': 1.5.2(svelte@5.55.3(@typescript-eslint/types@8.58.1))
transitivePeerDependencies:
- svelte
- '@tinyflow-ai/vue@1.1.10(svelte@5.54.1)(vue@3.5.30(typescript@5.9.3))':
+ '@tinyflow-ai/vue@1.1.10(svelte@5.55.3(@typescript-eslint/types@8.58.1))(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@tinyflow-ai/ui': 1.1.10(svelte@5.54.1)
- vue: 3.5.30(typescript@5.9.3)
+ '@tinyflow-ai/ui': 1.1.10(svelte@5.55.3(@typescript-eslint/types@8.58.1))
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- svelte
- '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.2)(vue@3.5.30(typescript@5.9.3))':
+ '@tinymce/tinymce-vue@6.3.0(tinymce@7.9.2)(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
tinymce: 7.9.2
- '@tsdown/css@0.21.4(jiti@2.6.1)(postcss@8.5.8)(sass-embedded@1.98.0)(sass@1.98.0)(tsdown@0.21.4)(yaml@2.8.3)':
+ '@tiptap/core@3.22.3(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/extension-blockquote@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-bold@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-bubble-menu@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@floating-ui/dom': 1.7.6
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+ optional: true
+
+ '@tiptap/extension-bullet-list@3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extension-list': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-code-block@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/extension-code@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-document@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-dropcursor@3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extensions': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-floating-menu@3.22.3(@floating-ui/dom@1.7.6)(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@floating-ui/dom': 1.7.6
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+ optional: true
+
+ '@tiptap/extension-gapcursor@3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extensions': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-hard-break@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-heading@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-highlight@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-horizontal-rule@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/extension-image@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-italic@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-link@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+ linkifyjs: 4.3.2
+
+ '@tiptap/extension-list-item@3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extension-list': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-list-keymap@3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extension-list': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/extension-ordered-list@3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extension-list': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-paragraph@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-placeholder@3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/extensions': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-strike@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-text-align@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-text-style@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-text@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extension-underline@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+
+ '@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/pm@3.22.3':
+ dependencies:
+ prosemirror-changeset: 2.4.0
+ prosemirror-collab: 1.3.1
+ prosemirror-commands: 1.7.1
+ prosemirror-dropcursor: 1.8.2
+ prosemirror-gapcursor: 1.4.1
+ prosemirror-history: 1.5.0
+ prosemirror-inputrules: 1.5.1
+ prosemirror-keymap: 1.2.3
+ prosemirror-markdown: 1.13.4
+ prosemirror-menu: 1.3.0
+ prosemirror-model: 1.25.4
+ prosemirror-schema-basic: 1.2.4
+ prosemirror-schema-list: 1.5.1
+ prosemirror-state: 1.4.4
+ prosemirror-tables: 1.8.5
+ prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)
+ prosemirror-transform: 1.12.0
+ prosemirror-view: 1.41.8
+
+ '@tiptap/starter-kit@3.22.3':
+ dependencies:
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/extension-blockquote': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-bold': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-bullet-list': 3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-code': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-code-block': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-document': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-dropcursor': 3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-gapcursor': 3.22.3(@tiptap/extensions@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-hard-break': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-heading': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-horizontal-rule': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-italic': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-link': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-list': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-list-item': 3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-list-keymap': 3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-ordered-list': 3.22.3(@tiptap/extension-list@3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3))
+ '@tiptap/extension-paragraph': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-strike': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-text': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extension-underline': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))
+ '@tiptap/extensions': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+
+ '@tiptap/vue-3@3.22.3(@floating-ui/dom@1.7.6)(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)(vue@3.5.32(typescript@6.0.2))':
+ dependencies:
+ '@floating-ui/dom': 1.7.6
+ '@tiptap/core': 3.22.3(@tiptap/pm@3.22.3)
+ '@tiptap/pm': 3.22.3
+ vue: 3.5.32(typescript@6.0.2)
+ optionalDependencies:
+ '@tiptap/extension-bubble-menu': 3.22.3(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+ '@tiptap/extension-floating-menu': 3.22.3(@floating-ui/dom@1.7.6)(@tiptap/core@3.22.3(@tiptap/pm@3.22.3))(@tiptap/pm@3.22.3)
+
+ '@tsdown/css@0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(jiti@2.6.1)(postcss@8.5.9)(sass-embedded@1.99.0)(sass@1.99.0)(tsdown@0.21.7)(yaml@2.8.3)':
dependencies:
lightningcss: 1.32.0
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.8)(yaml@2.8.3)
- rolldown: 1.0.0-rc.9
- tsdown: 0.21.4(@tsdown/css@0.21.4)(publint@0.3.18)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.6(typescript@5.9.3))
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.9)(yaml@2.8.3)
+ rolldown: 1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
+ tsdown: 0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(@tsdown/css@0.21.7)(publint@0.3.18)(synckit@0.11.12)(typescript@6.0.2)(vue-tsc@3.2.6(typescript@6.0.2))
optionalDependencies:
- postcss: 8.5.8
- sass: 1.98.0
- sass-embedded: 1.98.0
+ postcss: 8.5.9
+ sass: 1.99.0
+ sass-embedded: 1.99.0
transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
- jiti
- tsx
- yaml
- '@turbo/darwin-64@2.8.20':
+ '@turbo/darwin-64@2.9.6':
optional: true
- '@turbo/darwin-arm64@2.8.20':
+ '@turbo/darwin-arm64@2.9.6':
optional: true
- '@turbo/linux-64@2.8.20':
+ '@turbo/linux-64@2.9.6':
optional: true
- '@turbo/linux-arm64@2.8.20':
+ '@turbo/linux-arm64@2.9.6':
optional: true
- '@turbo/windows-64@2.8.20':
+ '@turbo/windows-64@2.9.6':
optional: true
- '@turbo/windows-arm64@2.8.20':
+ '@turbo/windows-arm64@2.9.6':
optional: true
'@tybys/wasm-util@0.10.1':
@@ -15623,9 +16055,9 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@25.5.0':
+ '@types/node@25.6.0':
dependencies:
- undici-types: 7.18.2
+ undici-types: 7.19.2
'@types/nprogress@0.2.3': {}
@@ -15633,13 +16065,13 @@ snapshots:
'@types/qrcode@1.5.6':
dependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
'@types/qs@6.15.0': {}
'@types/readdir-glob@1.1.5':
dependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
'@types/resolve@1.20.2': {}
@@ -15667,52 +16099,52 @@ snapshots:
'@types/ws@8.18.1':
dependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
- '@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/scope-manager': 8.57.1
- '@typescript-eslint/type-utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.57.1
- eslint: 10.1.0(jiti@2.6.1)
+ '@typescript-eslint/parser': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ '@typescript-eslint/scope-manager': 8.58.1
+ '@typescript-eslint/type-utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ '@typescript-eslint/utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ '@typescript-eslint/visitor-keys': 8.58.1
+ eslint: 10.2.0(jiti@2.6.1)
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ ts-api-utils: 2.5.0(typescript@6.0.2)
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.57.1
- '@typescript-eslint/types': 8.57.1
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/visitor-keys': 8.57.1
+ '@typescript-eslint/scope-manager': 8.58.1
+ '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/visitor-keys': 8.58.1
debug: 4.4.3
- eslint: 10.1.0(jiti@2.6.1)
- typescript: 5.9.3
+ eslint: 10.2.0(jiti@2.6.1)
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.57.1(typescript@5.9.3)':
+ '@typescript-eslint/project-service@8.58.1(typescript@6.0.2)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/types': 8.57.1
+ '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/types': 8.58.1
debug: 4.4.3
- typescript: 5.9.3
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/rule-tester@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/rule-tester@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)':
dependencies:
- '@typescript-eslint/parser': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
ajv: 6.14.0
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
semver: 7.7.4
@@ -15720,322 +16152,322 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/scope-manager@8.57.1':
+ '@typescript-eslint/scope-manager@8.58.1':
dependencies:
- '@typescript-eslint/types': 8.57.1
- '@typescript-eslint/visitor-keys': 8.57.1
+ '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/visitor-keys': 8.58.1
- '@typescript-eslint/tsconfig-utils@8.57.1(typescript@5.9.3)':
+ '@typescript-eslint/tsconfig-utils@8.58.1(typescript@6.0.2)':
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
- '@typescript-eslint/type-utils@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/type-utils@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)':
dependencies:
- '@typescript-eslint/types': 8.57.1
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
debug: 4.4.3
- eslint: 10.1.0(jiti@2.6.1)
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ eslint: 10.2.0(jiti@2.6.1)
+ ts-api-utils: 2.5.0(typescript@6.0.2)
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.57.1': {}
+ '@typescript-eslint/types@8.58.1': {}
- '@typescript-eslint/typescript-estree@8.57.1(typescript@5.9.3)':
+ '@typescript-eslint/typescript-estree@8.58.1(typescript@6.0.2)':
dependencies:
- '@typescript-eslint/project-service': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/types': 8.57.1
- '@typescript-eslint/visitor-keys': 8.57.1
+ '@typescript-eslint/project-service': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/tsconfig-utils': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/visitor-keys': 8.58.1
debug: 4.4.3
- minimatch: 10.2.4
+ minimatch: 10.2.5
semver: 7.7.4
- tinyglobby: 0.2.15
- ts-api-utils: 2.5.0(typescript@5.9.3)
- typescript: 5.9.3
+ tinyglobby: 0.2.16
+ ts-api-utils: 2.5.0(typescript@6.0.2)
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)':
+ '@typescript-eslint/utils@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
- '@typescript-eslint/scope-manager': 8.57.1
- '@typescript-eslint/types': 8.57.1
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
- eslint: 10.1.0(jiti@2.6.1)
- typescript: 5.9.3
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.58.1
+ '@typescript-eslint/types': 8.58.1
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
+ eslint: 10.2.0(jiti@2.6.1)
+ typescript: 6.0.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.57.1':
+ '@typescript-eslint/visitor-keys@8.58.1':
dependencies:
- '@typescript-eslint/types': 8.57.1
+ '@typescript-eslint/types': 8.58.1
eslint-visitor-keys: 5.0.1
'@ungap/structured-clone@1.3.0': {}
'@v-c/async-validator@1.0.1': {}
- '@v-c/cascader@1.0.2(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/cascader@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/select': 1.0.20(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.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/select': 1.0.20(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tree': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/checkbox@1.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/checkbox@1.0.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/collapse@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/collapse@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/color-picker@1.0.6(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/color-picker@1.0.6(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@ant-design/fast-color': 3.0.1
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/dialog@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/dialog@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/drawer@1.0.2(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/drawer@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/dropdown@1.0.2(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/dropdown@1.0.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/trigger': 1.0.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/image@1.0.7(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/image@1.0.10(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/input-number@1.0.5(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/input-number@1.0.5(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
+ '@v-c/input': 1.0.3(vue@3.5.32(typescript@6.0.2))
'@v-c/mini-decimal': 1.0.1
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/input@1.0.2(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/input@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/mentions@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/mentions@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/input': 1.0.2(vue@3.5.30(typescript@5.9.3))
- '@v-c/menu': 1.0.12(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.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/input': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/menu': 1.0.13(vue@3.5.32(typescript@6.0.2))
+ '@v-c/textarea': 1.0.4(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/menu@1.0.12(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/menu@1.0.13(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
- '@v-c/trigger': 1.0.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/overflow': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
'@v-c/mini-decimal@1.0.1': {}
- '@v-c/mutate-observer@1.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/mutate-observer@1.0.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(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.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/notification@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/notification@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/overflow@1.0.4(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/overflow@1.0.5(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(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.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/pagination@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/pagination@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@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/picker@1.0.4(date-fns@4.1.0)(dayjs@1.11.20)(luxon@3.7.2)(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/overflow': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
date-fns: 4.1.0
dayjs: 1.11.20
luxon: 3.7.2
- '@v-c/portal@1.0.8(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/portal@1.0.8(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/progress@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/progress@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/qrcode@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/qrcode@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/rate@1.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/rate@1.0.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/resize-observer@1.0.8(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/resize-observer@1.0.8(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
resize-observer-polyfill: 1.5.1
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/segmented@1.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/segmented@1.0.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/select@1.0.20(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/select@1.0.20(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
- '@v-c/trigger': 1.0.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(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/overflow': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/slick@1.0.2(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/slick@1.0.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
es-toolkit: 1.45.1
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/slider@1.0.10(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/slider@1.0.10(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/steps@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/steps@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/switch@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/switch@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/table@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/table@1.0.4(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(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/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/tabs@1.0.1(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/tabs@1.0.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/dropdown': 1.0.2(vue@3.5.30(typescript@5.9.3))
- '@v-c/menu': 1.0.12(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.19(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.32(typescript@6.0.2))
+ '@v-c/menu': 1.0.13(vue@3.5.32(typescript@6.0.2))
+ '@v-c/overflow': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/textarea@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/textarea@1.0.4(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/input': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/tooltip@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/tooltip@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/trigger': 1.0.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/tour@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/tour@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/portal': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/trigger': 1.0.14(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/tree-select@1.0.3(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/tree-select@1.0.3(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/select': 1.0.20(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.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/select': 1.0.20(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tree': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/tree@1.0.5(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/tree@1.0.5(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(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/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/trigger@1.0.14(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/trigger@1.0.14(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/portal': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/upload@1.0.0(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/upload@1.0.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/util': 1.0.19(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/util@1.0.19(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/util@1.0.19(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@v-c/virtual-list@1.0.6(vue@3.5.30(typescript@5.9.3))':
+ '@v-c/virtual-list@1.0.6(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
- '@v-c/util': 1.0.19(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.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@valibot/to-json-schema@1.6.0(valibot@1.3.1(typescript@5.9.3))':
+ '@valibot/to-json-schema@1.6.0(valibot@1.3.1(typescript@6.0.2))':
dependencies:
- valibot: 1.3.1(typescript@5.9.3)
+ valibot: 1.3.1(typescript@6.0.2)
- '@vee-validate/zod@4.15.1(vue@3.5.30(typescript@5.9.3))(zod@3.25.76)':
+ '@vee-validate/zod@4.15.1(vue@3.5.32(typescript@6.0.2))(zod@3.25.76)':
dependencies:
type-fest: 4.41.0
- vee-validate: 4.15.1(vue@3.5.30(typescript@5.9.3))
+ vee-validate: 4.15.1(vue@3.5.32(typescript@6.0.2))
zod: 3.25.76
transitivePeerDependencies:
- vue
- '@vercel/nft@1.5.0(rollup@4.60.0)':
+ '@vercel/nft@1.5.0(rollup@4.60.1)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.3
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
acorn: 8.16.0
acorn-import-attributes: 1.9.5(acorn@8.16.0)
async-sema: 3.1.1
@@ -16044,18 +16476,18 @@ snapshots:
glob: 13.0.6
graceful-fs: 4.2.11
node-gyp-build: 4.8.4
- picomatch: 4.0.3
+ picomatch: 4.0.4
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- rollup
- supports-color
- '@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))':
+ '@videojs-player/vue@1.0.0(@types/video.js@7.3.58)(video.js@7.21.7)(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@types/video.js': 7.3.58
video.js: 7.21.7
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
'@videojs/http-streaming@2.16.3(video.js@7.21.7)':
dependencies:
@@ -16080,71 +16512,71 @@ snapshots:
global: 4.4.0
is-function: 1.0.2
- '@vite-pwa/vitepress@1.1.0(vite-plugin-pwa@1.2.0(vite@8.0.1(@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.1)(yaml@2.8.3))(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.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0))':
dependencies:
- vite-plugin-pwa: 1.2.0(vite@8.0.1(@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.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0)
+ vite-plugin-pwa: 1.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0)
- '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))':
+ '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))':
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.10
+ '@rolldown/pluginutils': 1.0.0-rc.15
'@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vue: 3.5.30(typescript@5.9.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- supports-color
- '@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.1))(vue@3.5.30(typescript@5.9.3))':
+ '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.6.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1))(vue@3.5.32(typescript@6.0.2))':
dependencies:
- 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.1)
- vue: 3.5.30(typescript@5.9.3)
+ vite: 5.4.21(@types/node@25.6.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)
+ vue: 3.5.32(typescript@6.0.2)
- '@vitejs/plugin-vue@6.0.5(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3))':
+ '@vitejs/plugin-vue@6.0.6(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@rolldown/pluginutils': 1.0.0-rc.2
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vue: 3.5.30(typescript@5.9.3)
+ '@rolldown/pluginutils': 1.0.0-rc.13
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@vitest/expect@4.1.0':
+ '@vitest/expect@4.1.4':
dependencies:
'@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 4.1.0
- '@vitest/utils': 4.1.0
+ '@vitest/spy': 4.1.4
+ '@vitest/utils': 4.1.4
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))':
+ '@vitest/mocker@4.1.4(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))':
dependencies:
- '@vitest/spy': 4.1.0
+ '@vitest/spy': 4.1.4
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
- '@vitest/pretty-format@4.1.0':
+ '@vitest/pretty-format@4.1.4':
dependencies:
tinyrainbow: 3.1.0
- '@vitest/runner@4.1.0':
+ '@vitest/runner@4.1.4':
dependencies:
- '@vitest/utils': 4.1.0
+ '@vitest/utils': 4.1.4
pathe: 2.0.3
- '@vitest/snapshot@4.1.0':
+ '@vitest/snapshot@4.1.4':
dependencies:
- '@vitest/pretty-format': 4.1.0
- '@vitest/utils': 4.1.0
+ '@vitest/pretty-format': 4.1.4
+ '@vitest/utils': 4.1.4
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@4.1.0': {}
+ '@vitest/spy@4.1.4': {}
- '@vitest/utils@4.1.0':
+ '@vitest/utils@4.1.4':
dependencies:
- '@vitest/pretty-format': 4.1.0
+ '@vitest/pretty-format': 4.1.4
convert-source-map: 2.0.0
tinyrainbow: 3.1.0
@@ -16160,15 +16592,15 @@ snapshots:
path-browserify: 1.0.1
vscode-uri: 3.1.0
- '@vue-macros/common@3.1.2(vue@3.5.30(typescript@5.9.3))':
+ '@vue-macros/common@3.1.2(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@vue/compiler-sfc': 3.5.30
+ '@vue/compiler-sfc': 3.5.32
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: 3.5.32(typescript@6.0.2)
'@vue/babel-helper-vue-transform-on@1.5.0': {}
@@ -16184,7 +16616,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.30
+ '@vue/shared': 3.5.32
optionalDependencies:
'@babel/core': 7.29.0
transitivePeerDependencies:
@@ -16200,7 +16632,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.30
+ '@vue/shared': 3.5.32
optionalDependencies:
'@babel/core': 7.29.0
transitivePeerDependencies:
@@ -16213,7 +16645,7 @@ snapshots:
'@babel/helper-module-imports': 7.28.6
'@babel/helper-plugin-utils': 7.28.6
'@babel/parser': 7.29.2
- '@vue/compiler-sfc': 3.5.30
+ '@vue/compiler-sfc': 3.5.32
transitivePeerDependencies:
- supports-color
@@ -16224,39 +16656,39 @@ snapshots:
'@babel/helper-module-imports': 7.28.6
'@babel/helper-plugin-utils': 7.28.6
'@babel/parser': 7.29.2
- '@vue/compiler-sfc': 3.5.30
+ '@vue/compiler-sfc': 3.5.32
transitivePeerDependencies:
- supports-color
- '@vue/compiler-core@3.5.30':
+ '@vue/compiler-core@3.5.32':
dependencies:
'@babel/parser': 7.29.2
- '@vue/shared': 3.5.30
+ '@vue/shared': 3.5.32
entities: 7.0.1
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.30':
+ '@vue/compiler-dom@3.5.32':
dependencies:
- '@vue/compiler-core': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/compiler-core': 3.5.32
+ '@vue/shared': 3.5.32
- '@vue/compiler-sfc@3.5.30':
+ '@vue/compiler-sfc@3.5.32':
dependencies:
'@babel/parser': 7.29.2
- '@vue/compiler-core': 3.5.30
- '@vue/compiler-dom': 3.5.30
- '@vue/compiler-ssr': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/compiler-core': 3.5.32
+ '@vue/compiler-dom': 3.5.32
+ '@vue/compiler-ssr': 3.5.32
+ '@vue/shared': 3.5.32
estree-walker: 2.0.2
magic-string: 0.30.21
- postcss: 8.5.8
+ postcss: 8.5.9
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.30':
+ '@vue/compiler-ssr@3.5.32':
dependencies:
- '@vue/compiler-dom': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/compiler-dom': 3.5.32
+ '@vue/shared': 3.5.32
'@vue/devtools-api@6.6.4': {}
@@ -16264,15 +16696,15 @@ snapshots:
dependencies:
'@vue/devtools-kit': 7.7.9
- '@vue/devtools-api@8.1.0':
+ '@vue/devtools-api@8.1.1':
dependencies:
- '@vue/devtools-kit': 8.1.0
+ '@vue/devtools-kit': 8.1.1
- '@vue/devtools-core@8.1.0(vue@3.5.30(typescript@5.9.3))':
+ '@vue/devtools-core@8.1.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@vue/devtools-kit': 8.1.0
- '@vue/devtools-shared': 8.1.0
- vue: 3.5.30(typescript@5.9.3)
+ '@vue/devtools-kit': 8.1.1
+ '@vue/devtools-shared': 8.1.1
+ vue: 3.5.32(typescript@6.0.2)
'@vue/devtools-kit@7.7.9':
dependencies:
@@ -16284,9 +16716,9 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.6
- '@vue/devtools-kit@8.1.0':
+ '@vue/devtools-kit@8.1.1':
dependencies:
- '@vue/devtools-shared': 8.1.0
+ '@vue/devtools-shared': 8.1.1
birpc: 2.9.0
hookable: 5.5.3
perfect-debounce: 2.1.0
@@ -16295,87 +16727,87 @@ snapshots:
dependencies:
rfdc: 1.4.1
- '@vue/devtools-shared@8.1.0': {}
+ '@vue/devtools-shared@8.1.1': {}
'@vue/language-core@3.2.6':
dependencies:
'@volar/language-core': 2.4.28
- '@vue/compiler-dom': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/compiler-dom': 3.5.32
+ '@vue/shared': 3.5.32
alien-signals: 3.1.2
muggle-string: 0.4.1
path-browserify: 1.0.1
- picomatch: 4.0.3
+ picomatch: 4.0.4
- '@vue/reactivity@3.5.30':
+ '@vue/reactivity@3.5.32':
dependencies:
- '@vue/shared': 3.5.30
+ '@vue/shared': 3.5.32
- '@vue/runtime-core@3.5.30':
+ '@vue/runtime-core@3.5.32':
dependencies:
- '@vue/reactivity': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/reactivity': 3.5.32
+ '@vue/shared': 3.5.32
- '@vue/runtime-dom@3.5.30':
+ '@vue/runtime-dom@3.5.32':
dependencies:
- '@vue/reactivity': 3.5.30
- '@vue/runtime-core': 3.5.30
- '@vue/shared': 3.5.30
+ '@vue/reactivity': 3.5.32
+ '@vue/runtime-core': 3.5.32
+ '@vue/shared': 3.5.32
csstype: 3.2.3
- '@vue/server-renderer@3.5.30(vue@3.5.30(typescript@5.9.3))':
+ '@vue/server-renderer@3.5.32(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@vue/compiler-ssr': 3.5.30
- '@vue/shared': 3.5.30
- vue: 3.5.30(typescript@5.9.3)
+ '@vue/compiler-ssr': 3.5.32
+ '@vue/shared': 3.5.32
+ vue: 3.5.32(typescript@6.0.2)
- '@vue/shared@3.5.30': {}
+ '@vue/shared@3.5.32': {}
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.4
vue-component-type-helpers: 2.2.12
- '@vueuse/core@12.0.0(typescript@5.9.3)':
+ '@vueuse/core@12.0.0(typescript@6.0.2)':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 12.0.0
- '@vueuse/shared': 12.0.0(typescript@5.9.3)
- vue: 3.5.30(typescript@5.9.3)
+ '@vueuse/shared': 12.0.0(typescript@6.0.2)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- '@vueuse/core@12.8.2(typescript@5.9.3)':
+ '@vueuse/core@12.8.2(typescript@6.0.2)':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 12.8.2
- '@vueuse/shared': 12.8.2(typescript@5.9.3)
- vue: 3.5.30(typescript@5.9.3)
+ '@vueuse/shared': 12.8.2(typescript@6.0.2)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- '@vueuse/core@13.9.0(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/core@13.9.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 13.9.0
- '@vueuse/shared': 13.9.0(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@vueuse/shared': 13.9.0(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@vueuse/core@14.2.1(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/core@14.2.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 14.2.1
- '@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
- vue: 3.5.30(typescript@5.9.3)
+ '@vueuse/shared': 14.2.1(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- '@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)':
+ '@vueuse/integrations@12.8.2(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(typescript@6.0.2)':
dependencies:
- '@vueuse/core': 12.8.2(typescript@5.9.3)
- '@vueuse/shared': 12.8.2(typescript@5.9.3)
- vue: 3.5.30(typescript@5.9.3)
+ '@vueuse/core': 12.8.2(typescript@6.0.2)
+ '@vueuse/shared': 12.8.2(typescript@6.0.2)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
async-validator: 4.2.5
- axios: 1.13.6
+ axios: 1.15.0
change-case: 5.4.4
focus-trap: 7.8.0
nprogress: 0.2.0
@@ -16384,14 +16816,14 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@vueuse/integrations@14.2.1(async-validator@4.2.5)(axios@1.13.6)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/integrations@14.2.1(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@8.0.1)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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)
+ '@vueuse/core': 14.2.1(vue@3.5.32(typescript@6.0.2))
+ '@vueuse/shared': 14.2.1(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
async-validator: 4.2.5
- axios: 1.13.6
+ axios: 1.15.0
change-case: 5.4.4
focus-trap: 8.0.1
nprogress: 0.2.0
@@ -16406,55 +16838,55 @@ snapshots:
'@vueuse/metadata@14.2.1': {}
- '@vueuse/motion@3.0.3(magicast@0.5.2)(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/motion@3.0.3(magicast@0.5.2)(vue@3.5.32(typescript@6.0.2))':
dependencies:
- '@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
+ '@vueuse/core': 13.9.0(vue@3.5.32(typescript@6.0.2))
+ '@vueuse/shared': 13.9.0(vue@3.5.32(typescript@6.0.2))
+ defu: 6.1.7
framesync: 6.1.2
popmotion: 11.0.5
style-value-types: 5.1.2
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
'@nuxt/kit': 3.21.2(magicast@0.5.2)
transitivePeerDependencies:
- magicast
- '@vueuse/shared@12.0.0(typescript@5.9.3)':
+ '@vueuse/shared@12.0.0(typescript@6.0.2)':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- '@vueuse/shared@12.8.2(typescript@5.9.3)':
+ '@vueuse/shared@12.8.2(typescript@6.0.2)':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- '@vueuse/shared@13.9.0(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/shared@13.9.0(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@vueuse/shared@14.2.1(vue@3.5.30(typescript@5.9.3))':
+ '@vueuse/shared@14.2.1(vue@3.5.32(typescript@6.0.2))':
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- '@vxe-ui/core@4.4.3(vue@3.5.30(typescript@5.9.3))':
+ '@vxe-ui/core@4.4.4(vue@3.5.32(typescript@6.0.2))':
dependencies:
dom-zindex: 1.0.6
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
xe-utils: 4.0.4
- '@xmldom/xmldom@0.8.11': {}
+ '@xmldom/xmldom@0.8.12': {}
- '@xyflow/svelte@1.5.1(svelte@5.54.1)':
+ '@xyflow/svelte@1.5.2(svelte@5.55.3(@typescript-eslint/types@8.58.1))':
dependencies:
- '@svelte-put/shortcut': 4.1.0(svelte@5.54.1)
- '@xyflow/system': 0.0.75
- svelte: 5.54.1
+ '@svelte-put/shortcut': 4.1.0(svelte@5.55.3(@typescript-eslint/types@8.58.1))
+ '@xyflow/system': 0.0.76
+ svelte: 5.55.3(@typescript-eslint/types@8.58.1)
- '@xyflow/system@0.0.75':
+ '@xyflow/system@0.0.76':
dependencies:
'@types/d3-drag': 3.0.7
'@types/d3-interpolate': 3.0.4
@@ -16507,22 +16939,22 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- algoliasearch@5.49.2:
+ algoliasearch@5.50.1:
dependencies:
- '@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
+ '@algolia/abtesting': 1.16.1
+ '@algolia/client-abtesting': 5.50.1
+ '@algolia/client-analytics': 5.50.1
+ '@algolia/client-common': 5.50.1
+ '@algolia/client-insights': 5.50.1
+ '@algolia/client-personalization': 5.50.1
+ '@algolia/client-query-suggestions': 5.50.1
+ '@algolia/client-search': 5.50.1
+ '@algolia/ingestion': 1.50.1
+ '@algolia/monitoring': 1.50.1
+ '@algolia/recommend': 5.50.1
+ '@algolia/requester-browser-xhr': 5.50.1
+ '@algolia/requester-fetch': 5.50.1
+ '@algolia/requester-node-http': 5.50.1
alien-signals@3.1.2: {}
@@ -16548,10 +16980,10 @@ snapshots:
ansis@4.2.0: {}
- ant-design-vue@4.2.6(vue@3.5.30(typescript@5.9.3)):
+ ant-design-vue@4.2.6(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@ant-design/colors': 6.0.0
- '@ant-design/icons-vue': 7.0.1(vue@3.5.30(typescript@5.9.3))
+ '@ant-design/icons-vue': 7.0.1(vue@3.5.32(typescript@6.0.2))
'@babel/runtime': 7.29.2
'@ctrl/tinycolor': 4.2.0
'@emotion/hash': 0.9.2
@@ -16563,62 +16995,62 @@ snapshots:
dayjs: 1.11.20
dom-align: 1.12.4
dom-scroll-into-view: 2.0.1
- lodash: 4.17.23
- lodash-es: 4.17.23
+ lodash: 4.18.1
+ lodash-es: 4.18.1
resize-observer-polyfill: 1.5.1
scroll-into-view-if-needed: 2.2.31
shallow-equal: 1.2.1
stylis: 4.3.6
throttle-debounce: 5.0.2
- vue: 3.5.30(typescript@5.9.3)
- vue-types: 3.0.2(vue@3.5.30(typescript@5.9.3))
+ vue: 3.5.32(typescript@6.0.2)
+ vue-types: 3.0.2(vue@3.5.32(typescript@6.0.2))
warning: 4.0.3
- antdv-next@1.1.6(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.30(typescript@5.9.3)):
+ antdv-next@1.1.9(date-fns@4.1.0)(luxon@3.7.2)(vue@3.5.32(typescript@6.0.2)):
dependencies:
- '@ant-design/colors': 7.2.1
+ '@ant-design/colors': 8.0.1
'@ant-design/fast-color': 3.0.1
- '@antdv-next/cssinjs': 1.0.5(vue@3.5.30(typescript@5.9.3))
- '@antdv-next/icons': 1.0.5(vue@3.5.30(typescript@5.9.3))
+ '@antdv-next/cssinjs': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ '@antdv-next/icons': 1.0.6(vue@3.5.32(typescript@6.0.2))
'@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.3(vue@3.5.30(typescript@5.9.3))
- '@v-c/drawer': 1.0.2(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.7(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.5(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.12(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.20(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.14(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.19(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))
+ '@v-c/cascader': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/checkbox': 1.0.1(vue@3.5.32(typescript@6.0.2))
+ '@v-c/collapse': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/color-picker': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ '@v-c/dialog': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/drawer': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/dropdown': 1.0.2(vue@3.5.32(typescript@6.0.2))
+ '@v-c/image': 1.0.10(vue@3.5.32(typescript@6.0.2))
+ '@v-c/input': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/input-number': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/mentions': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/menu': 1.0.13(vue@3.5.32(typescript@6.0.2))
+ '@v-c/mutate-observer': 1.0.1(vue@3.5.32(typescript@6.0.2))
+ '@v-c/notification': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/pagination': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/picker': 1.0.4(date-fns@4.1.0)(dayjs@1.11.20)(luxon@3.7.2)(vue@3.5.32(typescript@6.0.2))
+ '@v-c/progress': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/qrcode': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/rate': 1.0.1(vue@3.5.32(typescript@6.0.2))
+ '@v-c/resize-observer': 1.0.8(vue@3.5.32(typescript@6.0.2))
+ '@v-c/segmented': 1.0.2(vue@3.5.32(typescript@6.0.2))
+ '@v-c/select': 1.0.20(vue@3.5.32(typescript@6.0.2))
+ '@v-c/slick': 1.0.2(vue@3.5.32(typescript@6.0.2))
+ '@v-c/slider': 1.0.10(vue@3.5.32(typescript@6.0.2))
+ '@v-c/steps': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/switch': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/table': 1.0.4(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tabs': 1.0.2(vue@3.5.32(typescript@6.0.2))
+ '@v-c/textarea': 1.0.4(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tooltip': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tour': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tree': 1.0.5(vue@3.5.32(typescript@6.0.2))
+ '@v-c/tree-select': 1.0.3(vue@3.5.32(typescript@6.0.2))
+ '@v-c/trigger': 1.0.14(vue@3.5.32(typescript@6.0.2))
+ '@v-c/upload': 1.0.0(vue@3.5.32(typescript@6.0.2))
+ '@v-c/util': 1.0.19(vue@3.5.32(typescript@6.0.2))
+ '@v-c/virtual-list': 1.0.6(vue@3.5.32(typescript@6.0.2))
+ '@vueuse/core': 14.2.1(vue@3.5.32(typescript@6.0.2))
dayjs: 1.11.20
es-toolkit: 1.45.1
scroll-into-view-if-needed: 3.1.0
@@ -16632,7 +17064,7 @@ snapshots:
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
- picomatch: 2.3.1
+ picomatch: 2.3.2
archiver-utils@5.0.2:
dependencies:
@@ -16640,7 +17072,7 @@ snapshots:
graceful-fs: 4.2.11
is-stream: 2.0.1
lazystream: 1.0.1
- lodash: 4.17.23
+ lodash: 4.18.1
normalize-path: 3.0.0
readable-stream: 4.7.0
@@ -16690,9 +17122,9 @@ snapshots:
arraybuffer.prototype.slice@1.0.4:
dependencies:
array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
+ call-bind: 1.0.9
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
es-errors: 1.3.0
get-intrinsic: 1.3.0
is-array-buffer: 3.0.5
@@ -16708,7 +17140,7 @@ snapshots:
ast-kit@3.0.0-beta.1:
dependencies:
- '@babel/parser': 8.0.0-rc.2
+ '@babel/parser': 8.0.0-rc.3
estree-walker: 3.0.3
pathe: 2.0.3
@@ -16744,17 +17176,17 @@ snapshots:
dependencies:
possible-typed-array-names: 1.1.0
- axios-mock-adapter@2.1.0(axios@1.13.6):
+ axios-mock-adapter@2.1.0(axios@1.15.0):
dependencies:
- axios: 1.13.6
+ axios: 1.15.0
fast-deep-equal: 3.1.3
is-buffer: 2.0.5
- axios@1.13.6:
+ axios@1.15.0:
dependencies:
follow-redirects: 1.15.11
form-data: 4.0.5
- proxy-from-env: 1.1.0
+ proxy-from-env: 2.1.0
transitivePeerDependencies:
- debug
@@ -16792,31 +17224,30 @@ snapshots:
bare-events@2.8.2: {}
- bare-fs@4.5.6:
+ bare-fs@4.7.0:
dependencies:
bare-events: 2.8.2
bare-path: 3.0.0
- bare-stream: 2.10.0(bare-events@2.8.2)
+ bare-stream: 2.13.0(bare-events@2.8.2)
bare-url: 2.4.0
fast-fifo: 1.3.2
transitivePeerDependencies:
- bare-abort-controller
- react-native-b4a
- bare-os@3.8.0: {}
+ bare-os@3.8.7: {}
bare-path@3.0.0:
dependencies:
- bare-os: 3.8.0
+ bare-os: 3.8.7
- bare-stream@2.10.0(bare-events@2.8.2):
+ bare-stream@2.13.0(bare-events@2.8.2):
dependencies:
streamx: 2.25.0
teex: 1.0.1
optionalDependencies:
bare-events: 2.8.2
transitivePeerDependencies:
- - bare-abort-controller
- react-native-b4a
bare-url@2.4.0:
@@ -16825,7 +17256,7 @@ snapshots:
base64-js@1.5.1: {}
- baseline-browser-mapping@2.10.10: {}
+ baseline-browser-mapping@2.10.18: {}
benz-amr-recorder@1.1.5:
dependencies:
@@ -16860,10 +17291,10 @@ snapshots:
widest-line: 5.0.0
wrap-ansi: 9.0.2
- bpmn-js-properties-panel@5.23.0(@bpmn-io/properties-panel@3.40.4)(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-properties-panel@5.23.0(@bpmn-io/properties-panel@3.40.6)(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.40.4
+ '@bpmn-io/properties-panel': 3.40.6
array-move: 4.0.0
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)
@@ -16896,16 +17327,16 @@ snapshots:
moddle: 6.2.3
moddle-xml: 10.1.0
- brace-expansion@1.1.12:
+ brace-expansion@1.1.14:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.2:
+ brace-expansion@2.1.0:
dependencies:
balanced-match: 1.0.2
- brace-expansion@5.0.4:
+ brace-expansion@5.0.5:
dependencies:
balanced-match: 4.0.4
@@ -16913,13 +17344,13 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.28.1:
+ browserslist@4.28.2:
dependencies:
- baseline-browser-mapping: 2.10.10
- caniuse-lite: 1.0.30001781
- electron-to-chromium: 1.5.321
- node-releases: 2.0.36
- update-browserslist-db: 1.2.3(browserslist@4.28.1)
+ baseline-browser-mapping: 2.10.18
+ caniuse-lite: 1.0.30001787
+ electron-to-chromium: 1.5.335
+ node-releases: 2.0.37
+ update-browserslist-db: 1.2.3(browserslist@4.28.2)
buffer-crc32@1.0.0: {}
@@ -16930,26 +17361,26 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@5.0.0: {}
+ builtin-modules@5.1.0: {}
bundle-name@4.1.0:
dependencies:
run-applescript: 7.1.0
- c12@3.3.3(magicast@0.5.2):
+ c12@3.3.4(magicast@0.5.2):
dependencies:
chokidar: 5.0.0
confbox: 0.2.4
- defu: 6.1.4
- dotenv: 17.3.1
+ defu: 6.1.7
+ dotenv: 17.4.2
exsolve: 1.0.8
- giget: 2.0.0
+ giget: 3.2.0
jiti: 2.6.1
ohash: 2.0.11
pathe: 2.0.3
perfect-debounce: 2.1.0
pkg-types: 2.3.0
- rc9: 2.1.2
+ rc9: 3.0.1
optionalDependencies:
magicast: 0.5.2
@@ -16960,10 +17391,10 @@ snapshots:
'@npmcli/fs': 5.0.0
fs-minipass: 3.0.3
glob: 13.0.6
- lru-cache: 11.2.7
+ lru-cache: 11.3.4
minipass: 7.1.3
minipass-collect: 2.0.1
- minipass-flush: 1.0.5
+ minipass-flush: 1.0.7
minipass-pipeline: 1.2.4
p-map: 7.0.4
ssri: 13.0.1
@@ -16971,17 +17402,17 @@ snapshots:
cacheable@2.3.4:
dependencies:
'@cacheable/memory': 2.0.8
- '@cacheable/utils': 2.4.0
+ '@cacheable/utils': 2.4.1
hookified: 1.15.1
keyv: 5.6.0
- qified: 0.9.0
+ qified: 0.9.1
call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
- call-bind@1.0.8:
+ call-bind@1.0.9:
dependencies:
call-bind-apply-helpers: 1.0.2
es-define-property: 1.0.1
@@ -17018,7 +17449,7 @@ snapshots:
camunda-bpmn-moddle@7.0.1: {}
- caniuse-lite@1.0.30001781: {}
+ caniuse-lite@1.0.30001787: {}
ccount@2.0.1: {}
@@ -17073,7 +17504,7 @@ snapshots:
parse5: 7.3.0
parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
- undici: 7.24.5
+ undici: 7.24.8
whatwg-mimetype: 4.0.0
chokidar@4.0.3:
@@ -17090,8 +17521,8 @@ snapshots:
circular-dependency-scanner@3.0.1:
dependencies:
- '@ast-grep/napi': 0.42.0
- '@vue/compiler-sfc': 3.5.30
+ '@ast-grep/napi': 0.42.1
+ '@vue/compiler-sfc': 3.5.32
commander: 14.0.3
get-tsconfig: 4.13.7
listr2: 9.0.5
@@ -17105,7 +17536,7 @@ snapshots:
dependencies:
consola: 3.4.2
- citty@0.2.1: {}
+ citty@0.2.2: {}
class-variance-authority@0.7.1:
dependencies:
@@ -17121,11 +17552,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- clear-module@4.1.2:
- dependencies:
- parent-module: 2.0.0
- resolve-from: 5.0.0
-
cli-boxes@3.0.0: {}
cli-cursor@5.0.0:
@@ -17145,12 +17571,6 @@ snapshots:
select: 1.1.2
tiny-emitter: 2.1.0
- clipboardy@4.0.0:
- dependencies:
- execa: 8.0.1
- is-wsl: 3.1.1
- is64bit: 2.0.0
-
cliui@6.0.0:
dependencies:
string-width: 4.2.3
@@ -17269,30 +17689,28 @@ snapshots:
graceful-fs: 4.2.11
xdg-basedir: 5.1.0
- connect-history-api-fallback@1.6.0: {}
-
- consola@2.15.3: {}
-
consola@3.4.2: {}
- conventional-changelog-angular@8.3.0:
+ conventional-changelog-angular@8.3.1:
dependencies:
compare-func: 2.0.0
- conventional-changelog-conventionalcommits@9.3.0:
+ conventional-changelog-conventionalcommits@9.3.1:
dependencies:
compare-func: 2.0.0
- conventional-commits-parser@6.3.0:
+ conventional-commits-parser@6.4.0:
dependencies:
'@simple-libs/stream-utils': 1.2.0
meow: 13.2.0
convert-source-map@2.0.0: {}
- cookie-es@1.2.2: {}
+ cookie-es@1.2.3: {}
- cookie-es@2.0.0: {}
+ cookie-es@2.0.1: {}
+
+ cookie-es@3.1.1: {}
copy-anything@3.0.5:
dependencies:
@@ -17304,7 +17722,7 @@ snapshots:
core-js-compat@3.49.0:
dependencies:
- browserslist: 4.28.1
+ browserslist: 4.28.2
core-js-pure@3.49.0: {}
@@ -17312,12 +17730,12 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3):
+ cosmiconfig-typescript-loader@6.3.0(@types/node@25.6.0)(cosmiconfig@9.0.1(typescript@6.0.2))(typescript@6.0.2):
dependencies:
- '@types/node': 25.5.0
- cosmiconfig: 9.0.1(typescript@5.9.3)
+ '@types/node': 25.6.0
+ cosmiconfig: 9.0.1(typescript@6.0.2)
jiti: 2.6.1
- typescript: 5.9.3
+ typescript: 6.0.2
cosmiconfig@7.1.0:
dependencies:
@@ -17327,14 +17745,14 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.3
- cosmiconfig@9.0.1(typescript@5.9.3):
+ cosmiconfig@9.0.1(typescript@6.0.2):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
crc-32@1.2.2: {}
@@ -17368,96 +17786,95 @@ snapshots:
crypto-random-string@2.0.0: {}
- cspell-config-lib@9.7.0:
+ cspell-config-lib@10.0.0:
dependencies:
- '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-types': 10.0.0
comment-json: 4.6.2
- smol-toml: 1.6.0
+ smol-toml: 1.6.1
yaml: 2.8.3
- cspell-dictionary@9.7.0:
+ cspell-dictionary@10.0.0:
dependencies:
- '@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)
+ '@cspell/cspell-performance-monitor': 10.0.0
+ '@cspell/cspell-pipe': 10.0.0
+ '@cspell/cspell-types': 10.0.0
+ cspell-trie-lib: 10.0.0(@cspell/cspell-types@10.0.0)
fast-equals: 6.0.0
- cspell-gitignore@9.7.0:
+ cspell-gitignore@10.0.0:
dependencies:
- '@cspell/url': 9.7.0
- cspell-glob: 9.7.0
- cspell-io: 9.7.0
+ '@cspell/url': 10.0.0
+ cspell-glob: 10.0.0
+ cspell-io: 10.0.0
- cspell-glob@9.7.0:
+ cspell-glob@10.0.0:
dependencies:
- '@cspell/url': 9.7.0
- picomatch: 4.0.3
+ '@cspell/url': 10.0.0
+ picomatch: 4.0.4
- cspell-grammar@9.7.0:
+ cspell-grammar@10.0.0:
dependencies:
- '@cspell/cspell-pipe': 9.7.0
- '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-pipe': 10.0.0
+ '@cspell/cspell-types': 10.0.0
- cspell-io@9.7.0:
+ cspell-io@10.0.0:
dependencies:
- '@cspell/cspell-service-bus': 9.7.0
- '@cspell/url': 9.7.0
+ '@cspell/cspell-service-bus': 10.0.0
+ '@cspell/url': 10.0.0
- cspell-lib@9.7.0:
+ cspell-lib@10.0.0:
dependencies:
- '@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.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)
+ '@cspell/cspell-bundled-dicts': 10.0.0
+ '@cspell/cspell-performance-monitor': 10.0.0
+ '@cspell/cspell-pipe': 10.0.0
+ '@cspell/cspell-resolver': 10.0.0
+ '@cspell/cspell-types': 10.0.0
+ '@cspell/dynamic-import': 10.0.0
+ '@cspell/filetypes': 10.0.0
+ '@cspell/rpc': 10.0.0
+ '@cspell/strong-weak-map': 10.0.0
+ '@cspell/url': 10.0.0
+ cspell-config-lib: 10.0.0
+ cspell-dictionary: 10.0.0
+ cspell-glob: 10.0.0
+ cspell-grammar: 10.0.0
+ cspell-io: 10.0.0
+ cspell-trie-lib: 10.0.0(@cspell/cspell-types@10.0.0)
env-paths: 4.0.0
gensequence: 8.0.8
- import-fresh: 3.3.1
+ import-fresh: 4.0.0
resolve-from: 5.0.0
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.1.0
xdg-basedir: 5.1.0
- cspell-trie-lib@9.7.0(@cspell/cspell-types@9.7.0):
+ cspell-trie-lib@10.0.0(@cspell/cspell-types@10.0.0):
dependencies:
- '@cspell/cspell-types': 9.7.0
+ '@cspell/cspell-types': 10.0.0
- cspell@9.7.0:
+ cspell@10.0.0:
dependencies:
- '@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
+ '@cspell/cspell-json-reporter': 10.0.0
+ '@cspell/cspell-performance-monitor': 10.0.0
+ '@cspell/cspell-pipe': 10.0.0
+ '@cspell/cspell-types': 10.0.0
+ '@cspell/cspell-worker': 10.0.0
+ '@cspell/dynamic-import': 10.0.0
+ '@cspell/url': 10.0.0
ansi-regex: 6.2.2
chalk: 5.6.2
chalk-template: 1.1.2
commander: 14.0.3
- 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
+ cspell-config-lib: 10.0.0
+ cspell-dictionary: 10.0.0
+ cspell-gitignore: 10.0.0
+ cspell-glob: 10.0.0
+ cspell-io: 10.0.0
+ cspell-lib: 10.0.0
fast-json-stable-stringify: 2.1.0
flatted: 3.4.2
semver: 7.7.4
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
css-functions-list@3.3.3: {}
@@ -17466,14 +17883,6 @@ snapshots:
'@emotion/hash': 0.8.0
csstype: 3.0.11
- css-select@4.3.0:
- dependencies:
- boolbase: 1.0.0
- css-what: 6.2.2
- domhandler: 4.3.1
- domutils: 2.8.0
- nth-check: 2.1.1
-
css-select@5.2.2:
dependencies:
boolbase: 1.0.0
@@ -17534,7 +17943,7 @@ snapshots:
d3-delaunay@6.0.4:
dependencies:
- delaunator: 5.0.1
+ delaunator: 5.1.0
d3-dispatch@3.0.1: {}
@@ -17733,9 +18142,9 @@ snapshots:
has-property-descriptors: 1.0.2
object-keys: 1.1.1
- defu@6.1.4: {}
+ defu@6.1.7: {}
- delaunator@5.0.1:
+ delaunator@5.1.0:
dependencies:
robust-predicates: 3.0.3
@@ -17749,7 +18158,7 @@ snapshots:
dependencies:
'@babel/parser': 7.29.2
'@babel/traverse': 7.29.0
- '@vue/compiler-sfc': 3.5.30
+ '@vue/compiler-sfc': 3.5.32
callsite: 1.0.0
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -17760,13 +18169,13 @@ snapshots:
is-core-module: 2.16.1
js-yaml: 3.14.2
json5: 2.2.3
- lodash: 4.17.23
+ lodash: 4.18.1
minimatch: 7.4.9
multimatch: 5.0.0
please-upgrade-node: 3.2.0
readdirp: 3.6.0
require-package-name: 2.0.1
- resolve: 1.22.11
+ resolve: 1.22.12
resolve-from: 5.0.0
semver: 7.7.4
yargs: 16.2.0
@@ -17787,7 +18196,7 @@ snapshots:
detect-libc@2.1.2: {}
- devalue@5.6.4: {}
+ devalue@5.7.1: {}
devlop@1.1.0:
dependencies:
@@ -17840,12 +18249,6 @@ snapshots:
dom-scroll-into-view@2.0.1: {}
- dom-serializer@1.4.1:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 4.3.1
- entities: 2.2.0
-
dom-serializer@2.0.0:
dependencies:
domelementtype: 2.3.0
@@ -17858,10 +18261,6 @@ snapshots:
domelementtype@2.3.0: {}
- domhandler@4.3.1:
- dependencies:
- domelementtype: 2.3.0
-
domhandler@5.0.3:
dependencies:
domelementtype: 2.3.0
@@ -17874,12 +18273,6 @@ snapshots:
optionalDependencies:
'@types/trusted-types': 2.0.7
- domutils@2.8.0:
- dependencies:
- dom-serializer: 1.4.1
- domelementtype: 2.3.0
- domhandler: 4.3.1
-
domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
@@ -17903,11 +18296,7 @@ snapshots:
dependencies:
type-fest: 4.41.0
- dotenv-expand@8.0.3: {}
-
- dotenv@16.6.1: {}
-
- dotenv@17.3.1: {}
+ dotenv@17.4.2: {}
dotenv@8.6.0: {}
@@ -17941,25 +18330,25 @@ snapshots:
dependencies:
jake: 10.9.4
- electron-to-chromium@1.5.321: {}
+ electron-to-chromium@1.5.335: {}
- element-plus@2.13.6(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
+ element-plus@2.13.7(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@ctrl/tinycolor': 4.2.0
- '@element-plus/icons-vue': 2.3.2(vue@3.5.30(typescript@5.9.3))
+ '@element-plus/icons-vue': 2.3.2(vue@3.5.32(typescript@6.0.2))
'@floating-ui/dom': 1.7.6
'@popperjs/core': '@sxzz/popperjs-es@2.11.8'
'@types/lodash': 4.17.24
'@types/lodash-es': 4.17.12
- '@vueuse/core': 12.0.0(typescript@5.9.3)
+ '@vueuse/core': 12.0.0(typescript@6.0.2)
async-validator: 4.2.5
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)
+ lodash: 4.18.1
+ lodash-es: 4.18.1
+ lodash-unified: 1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.18.1)(lodash@4.18.1)
memoize-one: 6.0.0
normalize-wheel-es: 1.2.0
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
vue-component-type-helpers: 3.2.6
transitivePeerDependencies:
- typescript
@@ -17984,15 +18373,13 @@ snapshots:
enhanced-resolve@5.20.1:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.3.0
+ tapable: 2.3.2
enquirer@2.4.1:
dependencies:
ansi-colors: 4.1.3
strip-ansi: 6.0.1
- entities@2.2.0: {}
-
entities@4.5.0: {}
entities@6.0.1: {}
@@ -18020,12 +18407,12 @@ snapshots:
errx@0.1.0: {}
- es-abstract@1.24.1:
+ es-abstract@1.24.2:
dependencies:
array-buffer-byte-length: 1.0.2
arraybuffer.prototype.slice: 1.0.4
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
data-view-buffer: 1.0.2
data-view-byte-length: 1.0.2
@@ -18159,34 +18546,34 @@ snapshots:
'@esbuild/win32-ia32': 0.25.12
'@esbuild/win32-x64': 0.25.12
- esbuild@0.27.4:
+ esbuild@0.27.7:
optionalDependencies:
- '@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
+ '@esbuild/aix-ppc64': 0.27.7
+ '@esbuild/android-arm': 0.27.7
+ '@esbuild/android-arm64': 0.27.7
+ '@esbuild/android-x64': 0.27.7
+ '@esbuild/darwin-arm64': 0.27.7
+ '@esbuild/darwin-x64': 0.27.7
+ '@esbuild/freebsd-arm64': 0.27.7
+ '@esbuild/freebsd-x64': 0.27.7
+ '@esbuild/linux-arm': 0.27.7
+ '@esbuild/linux-arm64': 0.27.7
+ '@esbuild/linux-ia32': 0.27.7
+ '@esbuild/linux-loong64': 0.27.7
+ '@esbuild/linux-mips64el': 0.27.7
+ '@esbuild/linux-ppc64': 0.27.7
+ '@esbuild/linux-riscv64': 0.27.7
+ '@esbuild/linux-s390x': 0.27.7
+ '@esbuild/linux-x64': 0.27.7
+ '@esbuild/netbsd-arm64': 0.27.7
+ '@esbuild/netbsd-x64': 0.27.7
+ '@esbuild/openbsd-arm64': 0.27.7
+ '@esbuild/openbsd-x64': 0.27.7
+ '@esbuild/openharmony-arm64': 0.27.7
+ '@esbuild/sunos-x64': 0.27.7
+ '@esbuild/win32-arm64': 0.27.7
+ '@esbuild/win32-ia32': 0.27.7
+ '@esbuild/win32-x64': 0.27.7
escalade@3.2.0: {}
@@ -18208,148 +18595,148 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@10.1.0(jiti@2.6.1)):
+ eslint-compat-utils@0.5.1(eslint@10.2.0(jiti@2.6.1)):
dependencies:
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
semver: 7.7.4
- eslint-json-compat-utils@0.2.3(eslint@10.1.0(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
+ eslint-json-compat-utils@0.2.3(eslint@10.2.0(jiti@2.6.1))(jsonc-eslint-parser@3.1.0):
dependencies:
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
esquery: 1.7.0
jsonc-eslint-parser: 3.1.0
- eslint-plugin-better-tailwindcss@4.3.2(eslint@10.1.0(jiti@2.6.1))(oxlint@1.56.0(oxlint-tsgolint@0.17.1))(tailwindcss@4.2.2)(typescript@5.9.3):
+ eslint-plugin-better-tailwindcss@4.4.1(eslint@10.2.0(jiti@2.6.1))(oxlint@1.59.0(oxlint-tsgolint@0.20.0))(tailwindcss@4.2.2)(typescript@6.0.2):
dependencies:
- '@eslint/css-tree': 3.6.9
- '@valibot/to-json-schema': 1.6.0(valibot@1.3.1(typescript@5.9.3))
+ '@eslint/css-tree': 4.0.1
+ '@valibot/to-json-schema': 1.6.0(valibot@1.3.1(typescript@6.0.2))
enhanced-resolve: 5.20.1
jiti: 2.6.1
synckit: 0.11.12
- tailwind-csstree: 0.1.5
+ tailwind-csstree: 0.3.1
tailwindcss: 4.2.2
tsconfig-paths-webpack-plugin: 4.2.0
- valibot: 1.3.1(typescript@5.9.3)
+ valibot: 1.3.1(typescript@6.0.2)
optionalDependencies:
- eslint: 10.1.0(jiti@2.6.1)
- oxlint: 1.56.0(oxlint-tsgolint@0.17.1)
+ eslint: 10.2.0(jiti@2.6.1)
+ oxlint: 1.59.0(oxlint-tsgolint@0.20.0)
transitivePeerDependencies:
- '@eslint/css'
- typescript
- eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.57.1(typescript@5.9.3))(@typescript-eslint/utils@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(@typescript-eslint/typescript-estree@8.58.1(typescript@6.0.2))(@typescript-eslint/utils@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1)):
dependencies:
'@es-joy/jsdoccomment': 0.84.0
- '@typescript-eslint/rule-tester': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3)
- '@typescript-eslint/utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 10.1.0(jiti@2.6.1)
+ '@typescript-eslint/rule-tester': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ '@typescript-eslint/typescript-estree': 8.58.1(typescript@6.0.2)
+ '@typescript-eslint/utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ eslint: 10.2.0(jiti@2.6.1)
- eslint-plugin-es-x@7.8.0(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-es-x@7.8.0(eslint@10.2.0(jiti@2.6.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.2
- eslint: 10.1.0(jiti@2.6.1)
- eslint-compat-utils: 0.5.1(eslint@10.1.0(jiti@2.6.1))
+ eslint: 10.2.0(jiti@2.6.1)
+ eslint-compat-utils: 0.5.1(eslint@10.2.0(jiti@2.6.1))
- eslint-plugin-jsonc@3.1.2(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-jsonc@3.1.2(eslint@10.2.0(jiti@2.6.1)):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
- '@eslint/core': 1.1.1
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
+ '@eslint/core': 1.2.1
'@eslint/plugin-kit': 0.6.1
'@ota-meshi/ast-token-store': 0.3.0
diff-sequences: 29.6.3
- eslint: 10.1.0(jiti@2.6.1)
- eslint-json-compat-utils: 0.2.3(eslint@10.1.0(jiti@2.6.1))(jsonc-eslint-parser@3.1.0)
+ eslint: 10.2.0(jiti@2.6.1)
+ eslint-json-compat-utils: 0.2.3(eslint@10.2.0(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.24.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-n@17.24.0(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
enhanced-resolve: 5.20.1
- eslint: 10.1.0(jiti@2.6.1)
- eslint-plugin-es-x: 7.8.0(eslint@10.1.0(jiti@2.6.1))
+ eslint: 10.2.0(jiti@2.6.1)
+ eslint-plugin-es-x: 7.8.0(eslint@10.2.0(jiti@2.6.1))
get-tsconfig: 4.13.7
globals: 15.15.0
globrex: 0.1.2
ignore: 5.3.2
semver: 7.7.4
- ts-declaration-location: 1.0.7(typescript@5.9.3)
+ ts-declaration-location: 1.0.7(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- eslint-plugin-perfectionist@5.7.0(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3):
+ eslint-plugin-perfectionist@5.8.0(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2):
dependencies:
- '@typescript-eslint/utils': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
- eslint: 10.1.0(jiti@2.6.1)
+ '@typescript-eslint/utils': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
+ eslint: 10.2.0(jiti@2.6.1)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-pnpm@1.6.0(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-pnpm@1.6.0(eslint@10.2.0(jiti@2.6.1)):
dependencies:
empathic: 2.0.0
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
jsonc-eslint-parser: 3.1.0
pathe: 2.0.3
pnpm-workspace-yaml: 1.6.0
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
yaml: 2.8.3
yaml-eslint-parser: 2.0.0
- eslint-plugin-unicorn@63.0.0(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-unicorn@64.0.0(eslint@10.2.0(jiti@2.6.1)):
dependencies:
'@babel/helper-validator-identifier': 7.28.5
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
change-case: 5.4.4
ci-info: 4.4.0
clean-regexp: 1.0.0
core-js-compat: 3.49.0
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
find-up-simple: 1.0.1
- globals: 16.5.0
+ globals: 17.5.0
indent-string: 5.0.0
is-builtin-module: 5.0.0
jsesc: 3.1.0
pluralize: 8.0.0
regexp-tree: 0.1.27
- regjsparser: 0.13.0
+ regjsparser: 0.13.1
semver: 7.7.4
strip-indent: 4.1.1
- eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.58.1(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1)):
dependencies:
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.57.1(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/eslint-plugin': 8.58.1(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
- eslint-plugin-vue@10.8.0(@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3))(eslint@10.1.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.1.0(jiti@2.6.1))):
+ eslint-plugin-vue@10.8.0(@typescript-eslint/parser@8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2))(eslint@10.2.0(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1))):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
- eslint: 10.1.0(jiti@2.6.1)
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
+ eslint: 10.2.0(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.4.0(eslint@10.1.0(jiti@2.6.1))
+ vue-eslint-parser: 10.4.0(eslint@10.2.0(jiti@2.6.1))
xml-name-validator: 4.0.0
optionalDependencies:
- '@typescript-eslint/parser': 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.58.1(eslint@10.2.0(jiti@2.6.1))(typescript@6.0.2)
- eslint-plugin-yml@3.3.1(eslint@10.1.0(jiti@2.6.1)):
+ eslint-plugin-yml@3.3.1(eslint@10.2.0(jiti@2.6.1)):
dependencies:
- '@eslint/core': 1.1.1
+ '@eslint/core': 1.2.1
'@eslint/plugin-kit': 0.6.1
'@ota-meshi/ast-token-store': 0.3.0
debug: 4.4.3
diff-sequences: 29.6.3
escape-string-regexp: 5.0.0
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
natural-compare: 1.4.0
yaml-eslint-parser: 2.0.0
transitivePeerDependencies:
@@ -18366,14 +18753,14 @@ snapshots:
eslint-visitor-keys@5.0.1: {}
- eslint@10.1.0(jiti@2.6.1):
+ eslint@10.2.0(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1))
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.2.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.2
- '@eslint/config-array': 0.23.3
- '@eslint/config-helpers': 0.5.3
- '@eslint/core': 1.1.1
- '@eslint/plugin-kit': 0.6.1
+ '@eslint/config-array': 0.23.5
+ '@eslint/config-helpers': 0.5.5
+ '@eslint/core': 1.2.1
+ '@eslint/plugin-kit': 0.7.1
'@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.3
@@ -18395,7 +18782,7 @@ snapshots:
imurmurhash: 0.1.4
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
- minimatch: 10.2.4
+ minimatch: 10.2.5
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
@@ -18423,10 +18810,11 @@ snapshots:
dependencies:
estraverse: 5.3.0
- esrap@2.2.4:
+ esrap@2.2.5(@typescript-eslint/types@8.58.1):
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- '@typescript-eslint/types': 8.57.1
+ optionalDependencies:
+ '@typescript-eslint/types': 8.58.1
esrecurse@4.3.0:
dependencies:
@@ -18460,18 +18848,6 @@ snapshots:
evtd@0.2.4: {}
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
execa@9.6.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
@@ -18519,9 +18895,19 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-string-truncated-width@1.2.1: {}
+
+ fast-string-width@1.1.0:
+ dependencies:
+ fast-string-truncated-width: 1.2.1
+
fast-uri@3.1.0: {}
- fast-xml-parser@4.5.5:
+ fast-wrap-ansi@0.1.6:
+ dependencies:
+ fast-string-width: 1.1.0
+
+ fast-xml-parser@4.5.6:
dependencies:
strnum: 1.1.2
@@ -18531,9 +18917,9 @@ snapshots:
dependencies:
reusify: 1.1.0
- fdir@6.5.0(picomatch@4.0.3):
+ fdir@6.5.0(picomatch@4.0.4):
optionalDependencies:
- picomatch: 4.0.3
+ picomatch: 4.0.4
feelers@1.5.1:
dependencies:
@@ -18543,11 +18929,11 @@ snapshots:
'@bpmn-io/lezer-feel': 2.3.1
'@codemirror/autocomplete': 6.20.1
'@codemirror/commands': 6.10.3
- '@codemirror/language': 6.12.2
+ '@codemirror/language': 6.12.3
'@codemirror/lint': 6.9.5
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.40.0
- '@lezer/common': 1.5.1
+ '@codemirror/view': 6.41.0
+ '@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.8
'@lezer/markdown': 1.6.3
@@ -18566,7 +18952,7 @@ snapshots:
file-entry-cache@11.1.2:
dependencies:
- flat-cache: 6.1.21
+ flat-cache: 6.1.22
file-entry-cache@8.0.0:
dependencies:
@@ -18611,7 +18997,7 @@ snapshots:
flatted: 3.4.2
keyv: 4.5.4
- flat-cache@6.1.21:
+ flat-cache@6.1.22:
dependencies:
cacheable: 2.3.4
flatted: 3.4.2
@@ -18697,7 +19083,7 @@ snapshots:
function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-properties: 1.2.1
functions-have-names: 1.2.3
@@ -18740,8 +19126,6 @@ snapshots:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@8.0.1: {}
-
get-stream@9.0.1:
dependencies:
'@sec-ant/readable-stream': 0.4.1
@@ -18757,18 +19141,11 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- giget@2.0.0:
- dependencies:
- citty: 0.1.6
- consola: 3.4.2
- defu: 6.1.4
- node-fetch-native: 1.6.7
- nypm: 0.6.5
- pathe: 2.0.3
+ giget@3.2.0: {}
- git-raw-commits@5.0.1(conventional-commits-parser@6.3.0):
+ git-raw-commits@5.0.1(conventional-commits-parser@6.4.0):
dependencies:
- '@conventional-changelog/git-client': 2.6.0(conventional-commits-parser@6.3.0)
+ '@conventional-changelog/git-client': 2.7.0(conventional-commits-parser@6.4.0)
meow: 13.2.0
transitivePeerDependencies:
- conventional-commits-filter
@@ -18795,14 +19172,14 @@ snapshots:
dependencies:
foreground-child: 3.3.1
jackspeak: 4.2.3
- minimatch: 10.2.4
+ minimatch: 10.2.5
minipass: 7.1.3
package-json-from-dist: 1.0.1
path-scurry: 2.0.2
glob@13.0.6:
dependencies:
- minimatch: 10.2.4
+ minimatch: 10.2.5
minipass: 7.1.3
path-scurry: 2.0.2
@@ -18845,9 +19222,7 @@ snapshots:
globals@15.15.0: {}
- globals@16.5.0: {}
-
- globals@17.4.0: {}
+ globals@17.5.0: {}
globalthis@1.0.4:
dependencies:
@@ -18872,7 +19247,7 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.3.0
- globby@16.1.1:
+ globby@16.2.0:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
fast-glob: 3.3.3
@@ -18906,11 +19281,11 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3@1.15.10:
+ h3@1.15.11:
dependencies:
- cookie-es: 1.2.2
+ cookie-es: 1.2.3
crossws: 0.3.5
- defu: 6.1.4
+ defu: 6.1.7
destr: 2.0.5
iron-webcrypto: 1.2.1
node-mock-http: 1.0.4
@@ -18920,9 +19295,9 @@ snapshots:
hammerjs@2.0.8: {}
- happy-dom@20.8.4:
+ happy-dom@20.8.9:
dependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
'@types/whatwg-mimetype': 3.0.2
'@types/ws': 8.18.1
entities: 7.0.1
@@ -18978,8 +19353,6 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
- he@1.2.0: {}
-
hey-listen@1.0.8: {}
highlight.js@11.11.1: {}
@@ -18994,20 +19367,10 @@ snapshots:
hookified@1.15.1: {}
- hookified@2.1.0: {}
+ hookified@2.1.1: {}
htm@3.1.1: {}
- html-minifier-terser@6.1.0:
- dependencies:
- camel-case: 4.1.2
- clean-css: 5.3.3
- commander: 8.3.0
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.46.1
-
html-minifier-terser@7.2.0:
dependencies:
camel-case: 4.1.2
@@ -19053,12 +19416,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- httpxy@0.3.1: {}
+ httpxy@0.5.0: {}
human-id@4.1.3: {}
- human-signals@5.0.0: {}
-
human-signals@8.0.1: {}
iconv-lite@0.6.3:
@@ -19091,6 +19452,8 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-fresh@4.0.0: {}
+
import-meta-resolve@4.2.0: {}
import-without-cache@0.2.5: {}
@@ -19137,7 +19500,7 @@ snapshots:
is-array-buffer@3.0.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
get-intrinsic: 1.3.0
@@ -19164,7 +19527,7 @@ snapshots:
is-builtin-module@5.0.0:
dependencies:
- builtin-modules: 5.0.0
+ builtin-modules: 5.1.0
is-callable@1.2.7: {}
@@ -19286,8 +19649,6 @@ snapshots:
is-stream@2.0.1: {}
- is-stream@3.0.0: {}
-
is-stream@4.0.1: {}
is-string@1.1.1:
@@ -19332,10 +19693,6 @@ snapshots:
dependencies:
is-inside-container: 1.0.0
- is64bit@2.0.0:
- dependencies:
- system-architecture: 0.1.0
-
isarray@1.0.0: {}
isarray@2.0.5: {}
@@ -19403,8 +19760,6 @@ snapshots:
json-schema-traverse@1.0.0: {}
- json-schema@0.4.0: {}
-
json-stable-stringify-without-jsonify@1.0.1: {}
json5@2.2.3: {}
@@ -19434,7 +19789,7 @@ snapshots:
jsonpointer@5.0.1: {}
- katex@0.16.40:
+ katex@0.16.45:
dependencies:
commander: 8.3.0
@@ -19470,48 +19825,44 @@ snapshots:
dependencies:
readable-stream: 2.3.8
- lefthook-darwin-arm64@2.1.4:
+ lefthook-darwin-arm64@2.1.5:
optional: true
- lefthook-darwin-x64@2.1.4:
+ lefthook-darwin-x64@2.1.5:
optional: true
- lefthook-freebsd-arm64@2.1.4:
+ lefthook-freebsd-arm64@2.1.5:
optional: true
- lefthook-freebsd-x64@2.1.4:
+ lefthook-freebsd-x64@2.1.5:
optional: true
- lefthook-linux-arm64@2.1.4:
+ lefthook-linux-arm64@2.1.5:
optional: true
- lefthook-linux-x64@2.1.4:
+ lefthook-openbsd-arm64@2.1.5:
optional: true
- lefthook-openbsd-arm64@2.1.4:
+ lefthook-openbsd-x64@2.1.5:
optional: true
- lefthook-openbsd-x64@2.1.4:
+ lefthook-windows-arm64@2.1.5:
optional: true
- lefthook-windows-arm64@2.1.4:
+ lefthook-windows-x64@2.1.5:
optional: true
- lefthook-windows-x64@2.1.4:
- optional: true
-
- lefthook@2.1.4:
+ lefthook@2.1.5:
optionalDependencies:
- 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
+ lefthook-darwin-arm64: 2.1.5
+ lefthook-darwin-x64: 2.1.5
+ lefthook-freebsd-arm64: 2.1.5
+ lefthook-freebsd-x64: 2.1.5
+ lefthook-linux-arm64: 2.1.5
+ lefthook-openbsd-arm64: 2.1.5
+ lefthook-openbsd-x64: 2.1.5
+ lefthook-windows-arm64: 2.1.5
+ lefthook-windows-x64: 2.1.5
less@4.6.4:
dependencies:
@@ -19590,26 +19941,28 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- listhen@1.9.0:
+ linkifyjs@4.3.2: {}
+
+ listhen@1.9.1:
dependencies:
'@parcel/watcher': 2.5.6
'@parcel/watcher-wasm': 2.5.6
- citty: 0.1.6
- clipboardy: 4.0.0
+ citty: 0.2.2
consola: 3.4.2
crossws: 0.3.5
- defu: 6.1.4
+ defu: 6.1.7
get-port-please: 3.2.0
- h3: 1.15.10
+ h3: 1.15.11
http-shutdown: 1.2.2
jiti: 2.6.1
mlly: 1.8.2
- node-forge: 1.3.3
- pathe: 1.1.2
- std-env: 3.10.0
+ node-forge: 1.4.0
+ pathe: 2.0.3
+ std-env: 4.0.0
+ tinyclip: 0.1.12
ufo: 1.6.3
untun: 0.1.3
- uqr: 0.1.2
+ uqr: 0.1.3
listr2@9.0.5:
dependencies:
@@ -19642,13 +19995,13 @@ snapshots:
locko@1.1.0: {}
- lodash-es@4.17.23: {}
+ lodash-es@4.18.1: {}
- lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.17.23)(lodash@4.17.23):
+ lodash-unified@1.0.3(@types/lodash-es@4.17.12)(lodash-es@4.18.1)(lodash@4.18.1):
dependencies:
'@types/lodash-es': 4.17.12
- lodash: 4.17.23
- lodash-es: 4.17.23
+ lodash: 4.18.1
+ lodash-es: 4.18.1
lodash.camelcase@4.3.0: {}
@@ -19676,7 +20029,7 @@ snapshots:
lodash.upperfirst@4.3.1: {}
- lodash@4.17.23: {}
+ lodash@4.18.1: {}
log-symbols@7.0.1:
dependencies:
@@ -19701,15 +20054,15 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.2.7: {}
+ lru-cache@11.3.4: {}
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lucide-vue-next@0.577.0(vue@3.5.30(typescript@5.9.3)):
+ lucide-vue-next@0.577.0(vue@3.5.32(typescript@6.0.2)):
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
luxon@3.7.2: {}
@@ -19756,7 +20109,7 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- marked@17.0.5: {}
+ marked@17.0.6: {}
markmap-common@0.16.0:
dependencies:
@@ -19775,7 +20128,7 @@ snapshots:
'@babel/runtime': 7.29.2
highlight.js: 11.11.1
js-yaml: 4.1.1
- katex: 0.16.40
+ katex: 0.16.45
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)
@@ -19816,8 +20169,6 @@ snapshots:
mdn-data@2.0.28: {}
- mdn-data@2.23.0: {}
-
mdn-data@2.27.1: {}
mdurl@2.0.0: {}
@@ -19830,8 +20181,6 @@ snapshots:
meow@14.1.0: {}
- merge-stream@2.0.0: {}
-
merge2@1.4.1: {}
micromark-util-character@2.1.1:
@@ -19854,7 +20203,7 @@ snapshots:
micromatch@4.0.8:
dependencies:
braces: 3.0.3
- picomatch: 2.3.1
+ picomatch: 2.3.2
mime-db@1.52.0: {}
@@ -19873,8 +20222,6 @@ snapshots:
mime@4.1.0: {}
- mimic-fn@4.0.0: {}
-
mimic-function@5.0.1: {}
min-dash@4.2.3: {}
@@ -19896,25 +20243,25 @@ snapshots:
domify: 3.0.0
min-dash: 5.0.0
- minimatch@10.2.4:
+ minimatch@10.2.5:
dependencies:
- brace-expansion: 5.0.4
+ brace-expansion: 5.0.5
minimatch@3.1.5:
dependencies:
- brace-expansion: 1.1.12
+ brace-expansion: 1.1.14
minimatch@5.1.9:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 2.1.0
minimatch@7.4.9:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 2.1.0
minimatch@9.0.9:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 2.1.0
minimist@1.2.8: {}
@@ -19922,7 +20269,7 @@ snapshots:
dependencies:
minipass: 7.1.3
- minipass-flush@1.0.5:
+ minipass-flush@1.0.7:
dependencies:
minipass: 3.3.6
@@ -19967,7 +20314,7 @@ snapshots:
dependencies:
'@babel/runtime': 7.29.2
'@videojs/vhs-utils': 3.0.5
- '@xmldom/xmldom': 0.8.11
+ '@xmldom/xmldom': 0.8.12
global: 4.4.0
mri@1.2.0: {}
@@ -19991,10 +20338,10 @@ snapshots:
'@babel/runtime': 7.29.2
global: 4.4.0
- naive-ui@2.44.1(vue@3.5.30(typescript@5.9.3)):
+ naive-ui@2.44.1(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@css-render/plugin-bem': 0.15.14(css-render@0.15.14)
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.30(typescript@5.9.3))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.32(typescript@6.0.2))
'@types/lodash': 4.17.24
'@types/lodash-es': 4.17.12
async-validator: 4.2.5
@@ -20004,14 +20351,14 @@ snapshots:
date-fns-tz: 3.2.0(date-fns@4.1.0)
evtd: 0.2.4
highlight.js: 11.11.1
- lodash: 4.17.23
- lodash-es: 4.17.23
+ lodash: 4.18.1
+ lodash-es: 4.18.1
seemly: 0.3.10
treemate: 0.3.11
- 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))
+ vdirs: 0.1.8(vue@3.5.32(typescript@6.0.2))
+ vooks: 0.2.12(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
+ vueuc: 0.4.65(vue@3.5.32(typescript@6.0.2))
nanoid@3.3.11: {}
@@ -20027,45 +20374,45 @@ snapshots:
sax: 1.6.0
optional: true
- nitropack@2.13.2(rolldown@1.0.0-rc.9):
+ nitropack@2.13.3(rolldown@1.0.0-rc.15):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.2
- '@rollup/plugin-alias': 6.0.0(rollup@4.60.0)
- '@rollup/plugin-commonjs': 29.0.2(rollup@4.60.0)
- '@rollup/plugin-inject': 5.0.5(rollup@4.60.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.60.0)
- '@rollup/plugin-node-resolve': 16.0.3(rollup@4.60.0)
- '@rollup/plugin-replace': 6.0.3(rollup@4.60.0)
- '@rollup/plugin-terser': 1.0.0(rollup@4.60.0)
- '@vercel/nft': 1.5.0(rollup@4.60.0)
+ '@rollup/plugin-alias': 6.0.0(rollup@4.60.1)
+ '@rollup/plugin-commonjs': 29.0.2(rollup@4.60.1)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.60.1)
+ '@rollup/plugin-json': 6.1.0(rollup@4.60.1)
+ '@rollup/plugin-node-resolve': 16.0.3(rollup@4.60.1)
+ '@rollup/plugin-replace': 6.0.3(rollup@4.60.1)
+ '@rollup/plugin-terser': 1.0.0(rollup@4.60.1)
+ '@vercel/nft': 1.5.0(rollup@4.60.1)
archiver: 7.0.1
- c12: 3.3.3(magicast@0.5.2)
+ c12: 3.3.4(magicast@0.5.2)
chokidar: 5.0.0
- citty: 0.2.1
+ citty: 0.2.2
compatx: 0.2.0
confbox: 0.2.4
consola: 3.4.2
- cookie-es: 2.0.0
+ cookie-es: 2.0.1
croner: 10.0.1
crossws: 0.3.5
db0: 0.3.4
- defu: 6.1.4
+ defu: 6.1.7
destr: 2.0.5
dot-prop: 10.1.0
- esbuild: 0.27.4
+ esbuild: 0.27.7
escape-string-regexp: 5.0.0
etag: 1.8.1
exsolve: 1.0.8
- globby: 16.1.1
+ globby: 16.2.0
gzip-size: 7.0.0
- h3: 1.15.10
+ h3: 1.15.11
hookable: 5.5.3
- httpxy: 0.3.1
+ httpxy: 0.5.0
ioredis: 5.10.1
jiti: 2.6.1
klona: 2.0.6
knitwork: 1.3.0
- listhen: 1.9.0
+ listhen: 1.9.1
magic-string: 0.30.21
magicast: 0.5.2
mime: 4.1.0
@@ -20079,8 +20426,8 @@ snapshots:
pkg-types: 2.3.0
pretty-bytes: 7.1.0
radix3: 1.1.2
- rollup: 4.60.0
- rollup-plugin-visualizer: 7.0.1(rolldown@1.0.0-rc.9)(rollup@4.60.0)
+ rollup: 4.60.1
+ rollup-plugin-visualizer: 7.0.1(rolldown@1.0.0-rc.15)(rollup@4.60.1)
scule: 1.3.0
semver: 7.7.4
serve-placeholder: 2.0.2
@@ -20092,12 +20439,12 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.5.0
unenv: 2.0.0-rc.24
- unimport: 6.0.2
+ unimport: 6.1.0
unplugin-utils: 0.3.1
- unstorage: 1.17.4(db0@0.3.4)(ioredis@5.10.1)
+ unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1)
untyped: 2.0.0
unwasm: 0.5.3
- youch: 4.1.0
+ youch: 4.1.1
youch-core: 0.3.3
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -20160,18 +20507,13 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- node-forge@1.3.3: {}
+ node-forge@1.4.0: {}
node-gyp-build@4.8.4: {}
- node-html-parser@5.4.2:
- dependencies:
- css-select: 4.3.0
- he: 1.2.0
-
node-mock-http@1.0.4: {}
- node-releases@2.0.36: {}
+ node-releases@2.0.37: {}
nopt@7.2.1:
dependencies:
@@ -20185,10 +20527,6 @@ snapshots:
normalize-wheel-es@1.2.0: {}
- npm-run-path@5.3.0:
- dependencies:
- path-key: 4.0.0
-
npm-run-path@6.0.0:
dependencies:
path-key: 4.0.0
@@ -20202,12 +20540,6 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nypm@0.6.5:
- dependencies:
- citty: 0.2.1
- pathe: 2.0.3
- tinyexec: 1.0.4
-
object-inspect@1.13.4: {}
object-keys@1.1.1: {}
@@ -20218,7 +20550,7 @@ snapshots:
object.assign@4.1.7:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
@@ -20239,10 +20571,6 @@ snapshots:
dependencies:
ee-first: 1.1.1
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
onetime@7.0.0:
dependencies:
mimic-function: 5.0.1
@@ -20289,6 +20617,8 @@ snapshots:
stdin-discarder: 0.3.1
string-width: 8.2.0
+ orderedmap@2.1.1: {}
+
outdent@0.5.0: {}
own-keys@1.0.1:
@@ -20297,61 +20627,61 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
- oxfmt@0.41.0:
+ oxfmt@0.44.0:
dependencies:
tinypool: 2.1.0
optionalDependencies:
- '@oxfmt/binding-android-arm-eabi': 0.41.0
- '@oxfmt/binding-android-arm64': 0.41.0
- '@oxfmt/binding-darwin-arm64': 0.41.0
- '@oxfmt/binding-darwin-x64': 0.41.0
- '@oxfmt/binding-freebsd-x64': 0.41.0
- '@oxfmt/binding-linux-arm-gnueabihf': 0.41.0
- '@oxfmt/binding-linux-arm-musleabihf': 0.41.0
- '@oxfmt/binding-linux-arm64-gnu': 0.41.0
- '@oxfmt/binding-linux-arm64-musl': 0.41.0
- '@oxfmt/binding-linux-ppc64-gnu': 0.41.0
- '@oxfmt/binding-linux-riscv64-gnu': 0.41.0
- '@oxfmt/binding-linux-riscv64-musl': 0.41.0
- '@oxfmt/binding-linux-s390x-gnu': 0.41.0
- '@oxfmt/binding-linux-x64-gnu': 0.41.0
- '@oxfmt/binding-linux-x64-musl': 0.41.0
- '@oxfmt/binding-openharmony-arm64': 0.41.0
- '@oxfmt/binding-win32-arm64-msvc': 0.41.0
- '@oxfmt/binding-win32-ia32-msvc': 0.41.0
- '@oxfmt/binding-win32-x64-msvc': 0.41.0
+ '@oxfmt/binding-android-arm-eabi': 0.44.0
+ '@oxfmt/binding-android-arm64': 0.44.0
+ '@oxfmt/binding-darwin-arm64': 0.44.0
+ '@oxfmt/binding-darwin-x64': 0.44.0
+ '@oxfmt/binding-freebsd-x64': 0.44.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.44.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.44.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.44.0
+ '@oxfmt/binding-linux-arm64-musl': 0.44.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.44.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.44.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.44.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.44.0
+ '@oxfmt/binding-linux-x64-gnu': 0.44.0
+ '@oxfmt/binding-linux-x64-musl': 0.44.0
+ '@oxfmt/binding-openharmony-arm64': 0.44.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.44.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.44.0
+ '@oxfmt/binding-win32-x64-msvc': 0.44.0
- oxlint-tsgolint@0.17.1:
+ oxlint-tsgolint@0.20.0:
optionalDependencies:
- '@oxlint-tsgolint/darwin-arm64': 0.17.1
- '@oxlint-tsgolint/darwin-x64': 0.17.1
- '@oxlint-tsgolint/linux-arm64': 0.17.1
- '@oxlint-tsgolint/linux-x64': 0.17.1
- '@oxlint-tsgolint/win32-arm64': 0.17.1
- '@oxlint-tsgolint/win32-x64': 0.17.1
+ '@oxlint-tsgolint/darwin-arm64': 0.20.0
+ '@oxlint-tsgolint/darwin-x64': 0.20.0
+ '@oxlint-tsgolint/linux-arm64': 0.20.0
+ '@oxlint-tsgolint/linux-x64': 0.20.0
+ '@oxlint-tsgolint/win32-arm64': 0.20.0
+ '@oxlint-tsgolint/win32-x64': 0.20.0
- oxlint@1.56.0(oxlint-tsgolint@0.17.1):
+ oxlint@1.59.0(oxlint-tsgolint@0.20.0):
optionalDependencies:
- '@oxlint/binding-android-arm-eabi': 1.56.0
- '@oxlint/binding-android-arm64': 1.56.0
- '@oxlint/binding-darwin-arm64': 1.56.0
- '@oxlint/binding-darwin-x64': 1.56.0
- '@oxlint/binding-freebsd-x64': 1.56.0
- '@oxlint/binding-linux-arm-gnueabihf': 1.56.0
- '@oxlint/binding-linux-arm-musleabihf': 1.56.0
- '@oxlint/binding-linux-arm64-gnu': 1.56.0
- '@oxlint/binding-linux-arm64-musl': 1.56.0
- '@oxlint/binding-linux-ppc64-gnu': 1.56.0
- '@oxlint/binding-linux-riscv64-gnu': 1.56.0
- '@oxlint/binding-linux-riscv64-musl': 1.56.0
- '@oxlint/binding-linux-s390x-gnu': 1.56.0
- '@oxlint/binding-linux-x64-gnu': 1.56.0
- '@oxlint/binding-linux-x64-musl': 1.56.0
- '@oxlint/binding-openharmony-arm64': 1.56.0
- '@oxlint/binding-win32-arm64-msvc': 1.56.0
- '@oxlint/binding-win32-ia32-msvc': 1.56.0
- '@oxlint/binding-win32-x64-msvc': 1.56.0
- oxlint-tsgolint: 0.17.1
+ '@oxlint/binding-android-arm-eabi': 1.59.0
+ '@oxlint/binding-android-arm64': 1.59.0
+ '@oxlint/binding-darwin-arm64': 1.59.0
+ '@oxlint/binding-darwin-x64': 1.59.0
+ '@oxlint/binding-freebsd-x64': 1.59.0
+ '@oxlint/binding-linux-arm-gnueabihf': 1.59.0
+ '@oxlint/binding-linux-arm-musleabihf': 1.59.0
+ '@oxlint/binding-linux-arm64-gnu': 1.59.0
+ '@oxlint/binding-linux-arm64-musl': 1.59.0
+ '@oxlint/binding-linux-ppc64-gnu': 1.59.0
+ '@oxlint/binding-linux-riscv64-gnu': 1.59.0
+ '@oxlint/binding-linux-riscv64-musl': 1.59.0
+ '@oxlint/binding-linux-s390x-gnu': 1.59.0
+ '@oxlint/binding-linux-x64-gnu': 1.59.0
+ '@oxlint/binding-linux-x64-musl': 1.59.0
+ '@oxlint/binding-openharmony-arm64': 1.59.0
+ '@oxlint/binding-win32-arm64-msvc': 1.59.0
+ '@oxlint/binding-win32-ia32-msvc': 1.59.0
+ '@oxlint/binding-win32-x64-msvc': 1.59.0
+ oxlint-tsgolint: 0.20.0
p-filter@2.1.0:
dependencies:
@@ -20413,10 +20743,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parent-module@2.0.0:
- dependencies:
- callsites: 3.1.0
-
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.29.0
@@ -20471,15 +20797,13 @@ snapshots:
path-scurry@2.0.2:
dependencies:
- lru-cache: 11.2.7
+ lru-cache: 11.3.4
minipass: 7.1.3
path-type@4.0.0: {}
path-type@6.0.0: {}
- pathe@0.2.0: {}
-
pathe@1.1.2: {}
pathe@2.0.3: {}
@@ -20490,25 +20814,25 @@ snapshots:
picocolors@1.1.1: {}
- picomatch@2.3.1: {}
+ picomatch@2.3.2: {}
- picomatch@4.0.3: {}
+ picomatch@4.0.4: {}
pify@4.0.1: {}
- 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))):
+ pinia-plugin-persistedstate@4.7.1(@nuxt/kit@4.4.2(magicast@0.5.2))(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))):
dependencies:
- defu: 6.1.4
+ defu: 6.1.7
optionalDependencies:
'@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@6.0.2)(vue@3.5.32(typescript@6.0.2))
- pinia@3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3)):
+ pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@vue/devtools-api': 7.7.9
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
pkcs7@1.0.4:
dependencies:
@@ -20526,11 +20850,11 @@ snapshots:
exsolve: 1.0.8
pathe: 2.0.3
- playwright-core@1.58.2: {}
+ playwright-core@1.59.1: {}
- playwright@1.58.2:
+ playwright@1.59.1:
dependencies:
- playwright-core: 1.58.2
+ playwright-core: 1.59.1
optionalDependencies:
fsevents: 2.3.2
@@ -20559,32 +20883,32 @@ snapshots:
dependencies:
htmlparser2: 8.0.2
js-tokens: 9.0.1
- postcss: 8.5.8
- postcss-safe-parser: 6.0.0(postcss@8.5.8)
+ postcss: 8.5.9
+ postcss-safe-parser: 6.0.0(postcss@8.5.9)
- postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.8)(yaml@2.8.3):
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.9)(yaml@2.8.3):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.6.1
- postcss: 8.5.8
+ postcss: 8.5.9
yaml: 2.8.3
postcss-media-query-parser@0.2.3: {}
postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@6.0.0(postcss@8.5.8):
+ postcss-safe-parser@6.0.0(postcss@8.5.9):
dependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
- postcss-safe-parser@7.0.1(postcss@8.5.8):
+ postcss-safe-parser@7.0.1(postcss@8.5.9):
dependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
- postcss-scss@4.0.9(postcss@8.5.8):
+ postcss-scss@4.0.9(postcss@8.5.9):
dependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
postcss-selector-parser@6.0.10:
dependencies:
@@ -20596,13 +20920,13 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sorting@10.0.0(postcss@8.5.8):
+ postcss-sorting@10.0.0(postcss@8.5.9):
dependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
postcss-value-parser@4.2.0: {}
- postcss@8.5.8:
+ postcss@8.5.9:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -20610,7 +20934,7 @@ snapshots:
powershell-utils@0.1.0: {}
- preact@10.29.0: {}
+ preact@10.29.1: {}
prelude-ls@1.2.1: {}
@@ -20634,9 +20958,112 @@ snapshots:
property-information@7.1.0: {}
+ prosemirror-changeset@2.4.0:
+ dependencies:
+ prosemirror-transform: 1.12.0
+
+ prosemirror-collab@1.3.1:
+ dependencies:
+ prosemirror-state: 1.4.4
+
+ prosemirror-commands@1.7.1:
+ dependencies:
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+
+ prosemirror-dropcursor@1.8.2:
+ dependencies:
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+ prosemirror-view: 1.41.8
+
+ prosemirror-gapcursor@1.4.1:
+ dependencies:
+ prosemirror-keymap: 1.2.3
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-view: 1.41.8
+
+ prosemirror-history@1.5.0:
+ dependencies:
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+ prosemirror-view: 1.41.8
+ rope-sequence: 1.3.4
+
+ prosemirror-inputrules@1.5.1:
+ dependencies:
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+
+ prosemirror-keymap@1.2.3:
+ dependencies:
+ prosemirror-state: 1.4.4
+ w3c-keyname: 2.2.8
+
+ prosemirror-markdown@1.13.4:
+ dependencies:
+ '@types/markdown-it': 14.1.2
+ markdown-it: 14.1.1
+ prosemirror-model: 1.25.4
+
+ prosemirror-menu@1.3.0:
+ dependencies:
+ crelt: 1.0.6
+ prosemirror-commands: 1.7.1
+ prosemirror-history: 1.5.0
+ prosemirror-state: 1.4.4
+
+ prosemirror-model@1.25.4:
+ dependencies:
+ orderedmap: 2.1.1
+
+ prosemirror-schema-basic@1.2.4:
+ dependencies:
+ prosemirror-model: 1.25.4
+
+ prosemirror-schema-list@1.5.1:
+ dependencies:
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+
+ prosemirror-state@1.4.4:
+ dependencies:
+ prosemirror-model: 1.25.4
+ prosemirror-transform: 1.12.0
+ prosemirror-view: 1.41.8
+
+ prosemirror-tables@1.8.5:
+ dependencies:
+ prosemirror-keymap: 1.2.3
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+ prosemirror-view: 1.41.8
+
+ prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8):
+ dependencies:
+ '@remirror/core-constants': 3.0.0
+ escape-string-regexp: 4.0.0
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-view: 1.41.8
+
+ prosemirror-transform@1.12.0:
+ dependencies:
+ prosemirror-model: 1.25.4
+
+ prosemirror-view@1.41.8:
+ dependencies:
+ prosemirror-model: 1.25.4
+ prosemirror-state: 1.4.4
+ prosemirror-transform: 1.12.0
+
proto-list@1.2.4: {}
- proxy-from-env@1.1.0: {}
+ proxy-from-env@2.1.0: {}
prr@1.0.1:
optional: true
@@ -20656,9 +21083,9 @@ snapshots:
dependencies:
escape-goat: 4.0.0
- qified@0.9.0:
+ qified@0.9.1:
dependencies:
- hookified: 2.1.0
+ hookified: 2.1.1
qrcode@1.5.4:
dependencies:
@@ -20666,7 +21093,7 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
- qs@6.15.0:
+ qs@6.15.1:
dependencies:
side-channel: 1.1.0
@@ -20686,14 +21113,9 @@ snapshots:
range-parser@1.2.1: {}
- rc9@2.1.2:
+ rc9@3.0.1:
dependencies:
- defu: 6.1.4
- destr: 2.0.5
-
- rc9@3.0.0:
- dependencies:
- defu: 6.1.4
+ defu: 6.1.7
destr: 2.0.5
rc@1.2.8:
@@ -20739,7 +21161,7 @@ snapshots:
readdirp@3.6.0:
dependencies:
- picomatch: 2.3.1
+ picomatch: 2.3.2
readdirp@4.1.2: {}
@@ -20753,9 +21175,9 @@ snapshots:
reflect.getprototypeof@1.0.10:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -20782,7 +21204,7 @@ snapshots:
regexp.prototype.flags@1.5.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
define-properties: 1.2.1
es-errors: 1.3.0
get-proto: 1.0.1
@@ -20794,7 +21216,7 @@ snapshots:
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.2
regjsgen: 0.8.0
- regjsparser: 0.13.0
+ regjsparser: 0.13.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.1
@@ -20808,23 +21230,23 @@ snapshots:
regjsgen@0.8.0: {}
- regjsparser@0.13.0:
+ regjsparser@0.13.1:
dependencies:
jsesc: 3.1.0
- reka-ui@2.9.2(vue@3.5.30(typescript@5.9.3)):
+ reka-ui@2.9.5(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@floating-ui/dom': 1.7.6
- '@floating-ui/vue': 1.1.11(vue@3.5.30(typescript@5.9.3))
+ '@floating-ui/vue': 1.1.11(vue@3.5.32(typescript@6.0.2))
'@internationalized/date': 3.12.0
'@internationalized/number': 3.6.5
- '@tanstack/vue-virtual': 3.13.23(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))
+ '@tanstack/vue-virtual': 3.13.23(vue@3.5.32(typescript@6.0.2))
+ '@vueuse/core': 14.2.1(vue@3.5.32(typescript@6.0.2))
+ '@vueuse/shared': 14.2.1(vue@3.5.32(typescript@6.0.2))
aria-hidden: 1.2.6
- defu: 6.1.4
+ defu: 6.1.7
ohash: 2.0.11
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- '@vue/composition-api'
@@ -20860,8 +21282,9 @@ snapshots:
resolve.exports@2.0.3: {}
- resolve@1.22.11:
+ resolve@1.22.12:
dependencies:
+ es-errors: 1.3.0
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -20882,21 +21305,22 @@ snapshots:
robust-predicates@3.0.3: {}
- rolldown-plugin-dts@0.22.5(rolldown@1.0.0-rc.9)(typescript@5.9.3)(vue-tsc@3.2.6(typescript@5.9.3)):
+ rolldown-plugin-dts@0.23.2(rolldown@1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2))(typescript@6.0.2)(vue-tsc@3.2.6(typescript@6.0.2)):
dependencies:
- '@babel/generator': 8.0.0-rc.2
- '@babel/helper-validator-identifier': 8.0.0-rc.2
- '@babel/parser': 8.0.0-rc.2
- '@babel/types': 8.0.0-rc.2
+ '@babel/generator': 8.0.0-rc.3
+ '@babel/helper-validator-identifier': 8.0.0-rc.3
+ '@babel/parser': 8.0.0-rc.3
+ '@babel/types': 8.0.0-rc.3
ast-kit: 3.0.0-beta.1
birpc: 4.0.0
dts-resolver: 2.1.3
get-tsconfig: 4.13.7
obug: 2.1.1
- rolldown: 1.0.0-rc.9
+ picomatch: 4.0.4
+ rolldown: 1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
optionalDependencies:
- typescript: 5.9.3
- vue-tsc: 3.2.6(typescript@5.9.3)
+ typescript: 6.0.2
+ vue-tsc: 3.2.6(typescript@6.0.2)
transitivePeerDependencies:
- oxc-resolver
@@ -20904,93 +21328,98 @@ snapshots:
dependencies:
magic-string: 0.30.21
- rolldown@1.0.0-rc.10:
+ rolldown@1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2):
dependencies:
- '@oxc-project/types': 0.120.0
- '@rolldown/pluginutils': 1.0.0-rc.10
+ '@oxc-project/types': 0.122.0
+ '@rolldown/pluginutils': 1.0.0-rc.12
optionalDependencies:
- '@rolldown/binding-android-arm64': 1.0.0-rc.10
- '@rolldown/binding-darwin-arm64': 1.0.0-rc.10
- '@rolldown/binding-darwin-x64': 1.0.0-rc.10
- '@rolldown/binding-freebsd-x64': 1.0.0-rc.10
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.10
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.10
- '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.10
- '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.10
- '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.10
- '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.10
- '@rolldown/binding-linux-x64-musl': 1.0.0-rc.10
- '@rolldown/binding-openharmony-arm64': 1.0.0-rc.10
- '@rolldown/binding-wasm32-wasi': 1.0.0-rc.10
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.10
- '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.10
+ '@rolldown/binding-android-arm64': 1.0.0-rc.12
+ '@rolldown/binding-darwin-arm64': 1.0.0-rc.12
+ '@rolldown/binding-darwin-x64': 1.0.0-rc.12
+ '@rolldown/binding-freebsd-x64': 1.0.0-rc.12
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.12
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.12
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.12
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.12
+ '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.12
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.12
+ '@rolldown/binding-linux-x64-musl': 1.0.0-rc.12
+ '@rolldown/binding-openharmony-arm64': 1.0.0-rc.12
+ '@rolldown/binding-wasm32-wasi': 1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.12
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.12
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
- rolldown@1.0.0-rc.9:
+ rolldown@1.0.0-rc.15:
dependencies:
- '@oxc-project/types': 0.115.0
- '@rolldown/pluginutils': 1.0.0-rc.9
+ '@oxc-project/types': 0.124.0
+ '@rolldown/pluginutils': 1.0.0-rc.15
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
+ '@rolldown/binding-android-arm64': 1.0.0-rc.15
+ '@rolldown/binding-darwin-arm64': 1.0.0-rc.15
+ '@rolldown/binding-darwin-x64': 1.0.0-rc.15
+ '@rolldown/binding-freebsd-x64': 1.0.0-rc.15
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.15
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.15
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.15
+ '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.15
+ '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.15
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.15
+ '@rolldown/binding-linux-x64-musl': 1.0.0-rc.15
+ '@rolldown/binding-openharmony-arm64': 1.0.0-rc.15
+ '@rolldown/binding-wasm32-wasi': 1.0.0-rc.15
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.15
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.15
- rollup-plugin-visualizer@7.0.1(rolldown@1.0.0-rc.9)(rollup@4.60.0):
+ rollup-plugin-visualizer@7.0.1(rolldown@1.0.0-rc.15)(rollup@4.60.1):
dependencies:
open: 11.0.0
- picomatch: 4.0.3
+ picomatch: 4.0.4
source-map: 0.7.6
yargs: 18.0.0
optionalDependencies:
- rolldown: 1.0.0-rc.9
- rollup: 4.60.0
+ rolldown: 1.0.0-rc.15
+ rollup: 4.60.1
rollup@2.80.0:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.60.0:
+ rollup@4.60.1:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.60.0
- '@rollup/rollup-android-arm64': 4.60.0
- '@rollup/rollup-darwin-arm64': 4.60.0
- '@rollup/rollup-darwin-x64': 4.60.0
- '@rollup/rollup-freebsd-arm64': 4.60.0
- '@rollup/rollup-freebsd-x64': 4.60.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.60.0
- '@rollup/rollup-linux-arm-musleabihf': 4.60.0
- '@rollup/rollup-linux-arm64-gnu': 4.60.0
- '@rollup/rollup-linux-arm64-musl': 4.60.0
- '@rollup/rollup-linux-loong64-gnu': 4.60.0
- '@rollup/rollup-linux-loong64-musl': 4.60.0
- '@rollup/rollup-linux-ppc64-gnu': 4.60.0
- '@rollup/rollup-linux-ppc64-musl': 4.60.0
- '@rollup/rollup-linux-riscv64-gnu': 4.60.0
- '@rollup/rollup-linux-riscv64-musl': 4.60.0
- '@rollup/rollup-linux-s390x-gnu': 4.60.0
- '@rollup/rollup-linux-x64-gnu': 4.60.0
- '@rollup/rollup-linux-x64-musl': 4.60.0
- '@rollup/rollup-openbsd-x64': 4.60.0
- '@rollup/rollup-openharmony-arm64': 4.60.0
- '@rollup/rollup-win32-arm64-msvc': 4.60.0
- '@rollup/rollup-win32-ia32-msvc': 4.60.0
- '@rollup/rollup-win32-x64-gnu': 4.60.0
- '@rollup/rollup-win32-x64-msvc': 4.60.0
+ '@rollup/rollup-android-arm-eabi': 4.60.1
+ '@rollup/rollup-android-arm64': 4.60.1
+ '@rollup/rollup-darwin-arm64': 4.60.1
+ '@rollup/rollup-darwin-x64': 4.60.1
+ '@rollup/rollup-freebsd-arm64': 4.60.1
+ '@rollup/rollup-freebsd-x64': 4.60.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.60.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.60.1
+ '@rollup/rollup-linux-arm64-gnu': 4.60.1
+ '@rollup/rollup-linux-arm64-musl': 4.60.1
+ '@rollup/rollup-linux-loong64-gnu': 4.60.1
+ '@rollup/rollup-linux-loong64-musl': 4.60.1
+ '@rollup/rollup-linux-ppc64-gnu': 4.60.1
+ '@rollup/rollup-linux-ppc64-musl': 4.60.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.60.1
+ '@rollup/rollup-linux-riscv64-musl': 4.60.1
+ '@rollup/rollup-linux-s390x-gnu': 4.60.1
+ '@rollup/rollup-linux-x64-gnu': 4.60.1
+ '@rollup/rollup-linux-x64-musl': 4.60.1
+ '@rollup/rollup-openbsd-x64': 4.60.1
+ '@rollup/rollup-openharmony-arm64': 4.60.1
+ '@rollup/rollup-win32-arm64-msvc': 4.60.1
+ '@rollup/rollup-win32-ia32-msvc': 4.60.1
+ '@rollup/rollup-win32-x64-gnu': 4.60.1
+ '@rollup/rollup-win32-x64-msvc': 4.60.1
fsevents: 2.3.3
+ rope-sequence@1.3.4: {}
+
run-applescript@7.1.0: {}
run-parallel@1.2.0:
@@ -21013,7 +21442,7 @@ snapshots:
safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
get-intrinsic: 1.3.0
has-symbols: 1.1.0
@@ -21040,65 +21469,65 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-embedded-all-unknown@1.98.0:
+ sass-embedded-all-unknown@1.99.0:
dependencies:
- sass: 1.98.0
+ sass: 1.99.0
optional: true
- sass-embedded-android-arm64@1.98.0:
+ sass-embedded-android-arm64@1.99.0:
optional: true
- sass-embedded-android-arm@1.98.0:
+ sass-embedded-android-arm@1.99.0:
optional: true
- sass-embedded-android-riscv64@1.98.0:
+ sass-embedded-android-riscv64@1.99.0:
optional: true
- sass-embedded-android-x64@1.98.0:
+ sass-embedded-android-x64@1.99.0:
optional: true
- sass-embedded-darwin-arm64@1.98.0:
+ sass-embedded-darwin-arm64@1.99.0:
optional: true
- sass-embedded-darwin-x64@1.98.0:
+ sass-embedded-darwin-x64@1.99.0:
optional: true
- sass-embedded-linux-arm64@1.98.0:
+ sass-embedded-linux-arm64@1.99.0:
optional: true
- sass-embedded-linux-arm@1.98.0:
+ sass-embedded-linux-arm@1.99.0:
optional: true
- sass-embedded-linux-musl-arm64@1.98.0:
+ sass-embedded-linux-musl-arm64@1.99.0:
optional: true
- sass-embedded-linux-musl-arm@1.98.0:
+ sass-embedded-linux-musl-arm@1.99.0:
optional: true
- sass-embedded-linux-musl-riscv64@1.98.0:
+ sass-embedded-linux-musl-riscv64@1.99.0:
optional: true
- sass-embedded-linux-musl-x64@1.98.0:
+ sass-embedded-linux-musl-x64@1.99.0:
optional: true
- sass-embedded-linux-riscv64@1.98.0:
+ sass-embedded-linux-riscv64@1.99.0:
optional: true
- sass-embedded-linux-x64@1.98.0:
+ sass-embedded-linux-x64@1.99.0:
optional: true
- sass-embedded-unknown-all@1.98.0:
+ sass-embedded-unknown-all@1.99.0:
dependencies:
- sass: 1.98.0
+ sass: 1.99.0
optional: true
- sass-embedded-win32-arm64@1.98.0:
+ sass-embedded-win32-arm64@1.99.0:
optional: true
- sass-embedded-win32-x64@1.98.0:
+ sass-embedded-win32-x64@1.99.0:
optional: true
- sass-embedded@1.98.0:
+ sass-embedded@1.99.0:
dependencies:
'@bufbuild/protobuf': 2.11.0
colorjs.io: 0.5.2
@@ -21108,26 +21537,26 @@ snapshots:
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-embedded-all-unknown: 1.99.0
+ sass-embedded-android-arm: 1.99.0
+ sass-embedded-android-arm64: 1.99.0
+ sass-embedded-android-riscv64: 1.99.0
+ sass-embedded-android-x64: 1.99.0
+ sass-embedded-darwin-arm64: 1.99.0
+ sass-embedded-darwin-x64: 1.99.0
+ sass-embedded-linux-arm: 1.99.0
+ sass-embedded-linux-arm64: 1.99.0
+ sass-embedded-linux-musl-arm: 1.99.0
+ sass-embedded-linux-musl-arm64: 1.99.0
+ sass-embedded-linux-musl-riscv64: 1.99.0
+ sass-embedded-linux-musl-x64: 1.99.0
+ sass-embedded-linux-riscv64: 1.99.0
+ sass-embedded-linux-x64: 1.99.0
+ sass-embedded-unknown-all: 1.99.0
+ sass-embedded-win32-arm64: 1.99.0
+ sass-embedded-win32-x64: 1.99.0
- sass@1.98.0:
+ sass@1.99.0:
dependencies:
chokidar: 4.0.3
immutable: 5.1.5
@@ -21194,11 +21623,11 @@ snapshots:
dependencies:
randombytes: 2.1.0
- serialize-javascript@7.0.4: {}
+ serialize-javascript@7.0.5: {}
serve-placeholder@2.0.2:
dependencies:
- defu: 6.1.4
+ defu: 6.1.7
serve-static@2.2.1:
dependencies:
@@ -21254,7 +21683,7 @@ snapshots:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- side-channel-list@1.0.0:
+ side-channel-list@1.0.1:
dependencies:
es-errors: 1.3.0
object-inspect: 1.13.4
@@ -21278,7 +21707,7 @@ snapshots:
dependencies:
es-errors: 1.3.0
object-inspect: 1.13.4
- side-channel-list: 1.0.0
+ side-channel-list: 1.0.1
side-channel-map: 1.0.1
side-channel-weakmap: 1.0.2
@@ -21320,7 +21749,7 @@ snapshots:
smob@1.6.1: {}
- smol-toml@1.6.0: {}
+ smol-toml@1.6.1: {}
sortablejs@1.14.0: {}
@@ -21364,8 +21793,6 @@ snapshots:
statuses@2.0.2: {}
- std-env@3.10.0: {}
-
std-env@4.0.0: {}
stdin-discarder@0.3.1: {}
@@ -21411,10 +21838,10 @@ snapshots:
string.prototype.matchall@4.0.12:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
es-errors: 1.3.0
es-object-atoms: 1.1.1
get-intrinsic: 1.3.0
@@ -21427,24 +21854,24 @@ snapshots:
string.prototype.trim@1.2.10:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.24.1
+ es-abstract: 1.24.2
es-object-atoms: 1.1.1
has-property-descriptors: 1.0.2
string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
define-properties: 1.2.1
es-object-atoms: 1.1.1
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
define-properties: 1.2.1
es-object-atoms: 1.1.1
@@ -21483,8 +21910,6 @@ snapshots:
strip-comments@2.0.1: {}
- strip-final-newline@3.0.0: {}
-
strip-final-newline@4.0.0: {}
strip-indent@4.1.1: {}
@@ -21512,49 +21937,49 @@ snapshots:
hey-listen: 1.0.8
tslib: 2.4.0
- stylelint-config-html@1.1.0(postcss-html@1.8.1)(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-html@1.1.0(postcss-html@1.8.1)(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
postcss-html: 1.8.1
- stylelint: 17.5.0(typescript@5.9.3)
+ stylelint: 17.7.0(typescript@6.0.2)
- stylelint-config-recess-order@7.7.0(stylelint-order@8.1.1(stylelint@17.5.0(typescript@5.9.3)))(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-recess-order@7.7.0(stylelint-order@8.1.1(stylelint@17.7.0(typescript@6.0.2)))(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
- stylelint: 17.5.0(typescript@5.9.3)
- stylelint-order: 8.1.1(stylelint@17.5.0(typescript@5.9.3))
+ stylelint: 17.7.0(typescript@6.0.2)
+ stylelint-order: 8.1.1(stylelint@17.7.0(typescript@6.0.2))
- stylelint-config-recommended-scss@17.0.0(postcss@8.5.8)(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-recommended-scss@17.0.1(postcss@8.5.9)(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
- postcss-scss: 4.0.9(postcss@8.5.8)
- stylelint: 17.5.0(typescript@5.9.3)
- stylelint-config-recommended: 18.0.0(stylelint@17.5.0(typescript@5.9.3))
- stylelint-scss: 7.0.0(stylelint@17.5.0(typescript@5.9.3))
+ postcss-scss: 4.0.9(postcss@8.5.9)
+ stylelint: 17.7.0(typescript@6.0.2)
+ stylelint-config-recommended: 18.0.0(stylelint@17.7.0(typescript@6.0.2))
+ stylelint-scss: 7.0.0(stylelint@17.7.0(typescript@6.0.2))
optionalDependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
- stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.1)(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-recommended-vue@1.6.1(postcss-html@1.8.1)(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
postcss-html: 1.8.1
semver: 7.7.4
- stylelint: 17.5.0(typescript@5.9.3)
- stylelint-config-html: 1.1.0(postcss-html@1.8.1)(stylelint@17.5.0(typescript@5.9.3))
- stylelint-config-recommended: 18.0.0(stylelint@17.5.0(typescript@5.9.3))
+ stylelint: 17.7.0(typescript@6.0.2)
+ stylelint-config-html: 1.1.0(postcss-html@1.8.1)(stylelint@17.7.0(typescript@6.0.2))
+ stylelint-config-recommended: 18.0.0(stylelint@17.7.0(typescript@6.0.2))
- stylelint-config-recommended@18.0.0(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-recommended@18.0.0(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
- stylelint: 17.5.0(typescript@5.9.3)
+ stylelint: 17.7.0(typescript@6.0.2)
- stylelint-config-standard@40.0.0(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-config-standard@40.0.0(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
- stylelint: 17.5.0(typescript@5.9.3)
- stylelint-config-recommended: 18.0.0(stylelint@17.5.0(typescript@5.9.3))
+ stylelint: 17.7.0(typescript@6.0.2)
+ stylelint-config-recommended: 18.0.0(stylelint@17.7.0(typescript@6.0.2))
- stylelint-order@8.1.1(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-order@8.1.1(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
- postcss: 8.5.8
- postcss-sorting: 10.0.0(postcss@8.5.8)
- stylelint: 17.5.0(typescript@5.9.3)
+ postcss: 8.5.9
+ postcss-sorting: 10.0.0(postcss@8.5.9)
+ stylelint: 17.7.0(typescript@6.0.2)
- stylelint-scss@7.0.0(stylelint@17.5.0(typescript@5.9.3)):
+ stylelint-scss@7.0.0(stylelint@17.7.0(typescript@6.0.2)):
dependencies:
css-tree: 3.2.1
is-plain-object: 5.0.0
@@ -21564,19 +21989,19 @@ snapshots:
postcss-resolve-nested-selector: 0.1.6
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
- stylelint: 17.5.0(typescript@5.9.3)
+ stylelint: 17.7.0(typescript@6.0.2)
- stylelint@17.5.0(typescript@5.9.3):
+ stylelint@17.7.0(typescript@6.0.2):
dependencies:
- '@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-calc': 3.2.0(@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.1(css-tree@3.2.1)
+ '@csstools/css-syntax-patches-for-csstree': 1.1.3(css-tree@3.2.1)
'@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.1(typescript@5.9.3)
+ cosmiconfig: 9.0.1(typescript@6.0.2)
css-functions-list: 3.3.3
css-tree: 3.2.1
debug: 4.4.3
@@ -21584,20 +22009,19 @@ snapshots:
fastest-levenshtein: 1.0.16
file-entry-cache: 11.1.2
global-modules: 2.0.0
- globby: 16.1.1
+ globby: 16.2.0
globjoin: 0.1.4
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
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.8
- postcss-safe-parser: 7.0.1(postcss@8.5.8)
+ postcss: 8.5.9
+ postcss-safe-parser: 7.0.1(postcss@8.5.9)
postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
string-width: 8.2.0
@@ -21632,7 +22056,7 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte@5.54.1:
+ svelte@5.55.3(@typescript-eslint/types@8.58.1):
dependencies:
'@jridgewell/remapping': 2.3.5
'@jridgewell/sourcemap-codec': 1.5.5
@@ -21643,13 +22067,15 @@ snapshots:
aria-query: 5.3.1
axobject-query: 4.1.0
clsx: 2.1.1
- devalue: 5.6.4
+ devalue: 5.7.1
esm-env: 1.2.2
- esrap: 2.2.4
+ esrap: 2.2.5(@typescript-eslint/types@8.58.1)
is-reference: 3.0.3
locate-character: 3.0.0
magic-string: 0.30.21
zimmerframe: 1.1.4
+ transitivePeerDependencies:
+ - '@typescript-eslint/types'
sver@2.0.1: {}
@@ -21675,8 +22101,6 @@ snapshots:
dependencies:
'@pkgr/core': 0.2.9
- system-architecture@0.1.0: {}
-
tabbable@6.4.0: {}
table@6.9.0:
@@ -21689,18 +22113,18 @@ snapshots:
tagged-tag@1.0.0: {}
- tailwind-csstree@0.1.5: {}
+ tailwind-csstree@0.3.1: {}
tailwind-merge@3.5.0: {}
tailwindcss@4.2.2: {}
- tapable@2.3.0: {}
+ tapable@2.3.2: {}
tar-stream@3.1.8:
dependencies:
b4a: 1.8.0
- bare-fs: 4.5.6
+ bare-fs: 4.7.0
fast-fifo: 1.3.2
streamx: 2.25.0
transitivePeerDependencies:
@@ -21708,7 +22132,7 @@ snapshots:
- bare-buffer
- react-native-b4a
- tar@7.5.12:
+ tar@7.5.13:
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
@@ -21716,12 +22140,12 @@ snapshots:
minizlib: 3.1.0
yallist: 5.0.0
- tdesign-icons-vue-next@0.4.2(vue@3.5.30(typescript@5.9.3)):
+ tdesign-icons-vue-next@0.4.4(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@babel/runtime': 7.29.2
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- tdesign-vue-next@1.18.5(vue@3.5.30(typescript@5.9.3)):
+ tdesign-vue-next@1.19.0(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@babel/runtime': 7.29.2
'@popperjs/core': 2.11.8
@@ -21730,13 +22154,13 @@ snapshots:
'@types/tinycolor2': 1.4.6
'@types/validator': 13.15.10
dayjs: 1.11.20
- lodash-es: 4.17.23
+ lodash-es: 4.18.1
mitt: 3.0.1
sortablejs: 1.15.7
- tdesign-icons-vue-next: 0.4.2(vue@3.5.30(typescript@5.9.3))
+ tdesign-icons-vue-next: 0.4.4(vue@3.5.32(typescript@6.0.2))
tinycolor2: 1.6.0
- validator: 13.15.26
- vue: 3.5.30(typescript@5.9.3)
+ validator: 13.15.35
+ vue: 3.5.32(typescript@6.0.2)
teex@1.0.1:
dependencies:
@@ -21779,14 +22203,16 @@ snapshots:
tinybench@2.9.0: {}
+ tinyclip@0.1.12: {}
+
tinycolor2@1.6.0: {}
- tinyexec@1.0.4: {}
+ tinyexec@1.1.1: {}
- tinyglobby@0.2.15:
+ tinyglobby@0.2.16:
dependencies:
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
tinymce@7.9.2: {}
@@ -21818,20 +22244,20 @@ snapshots:
trim-lines@3.0.1: {}
- ts-api-utils@2.5.0(typescript@5.9.3):
+ ts-api-utils@2.5.0(typescript@6.0.2):
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
- ts-declaration-location@1.0.7(typescript@5.9.3):
+ ts-declaration-location@1.0.7(typescript@6.0.2):
dependencies:
- picomatch: 4.0.3
- typescript: 5.9.3
+ picomatch: 4.0.4
+ typescript: 6.0.2
tsconfig-paths-webpack-plugin@4.2.0:
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.20.1
- tapable: 2.3.0
+ tapable: 2.3.2
tsconfig-paths: 4.2.0
tsconfig-paths@4.2.0:
@@ -21840,29 +22266,31 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tsdown@0.21.4(@tsdown/css@0.21.4)(publint@0.3.18)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.6(typescript@5.9.3)):
+ tsdown@0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(@tsdown/css@0.21.7)(publint@0.3.18)(synckit@0.11.12)(typescript@6.0.2)(vue-tsc@3.2.6(typescript@6.0.2)):
dependencies:
ansis: 4.2.0
cac: 7.0.0
- defu: 6.1.4
+ defu: 6.1.7
empathic: 2.0.0
hookable: 6.1.0
import-without-cache: 0.2.5
obug: 2.1.1
- picomatch: 4.0.3
- rolldown: 1.0.0-rc.9
- rolldown-plugin-dts: 0.22.5(rolldown@1.0.0-rc.9)(typescript@5.9.3)(vue-tsc@3.2.6(typescript@5.9.3))
+ picomatch: 4.0.4
+ rolldown: 1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
+ rolldown-plugin-dts: 0.23.2(rolldown@1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2))(typescript@6.0.2)(vue-tsc@3.2.6(typescript@6.0.2))
semver: 7.7.4
- tinyexec: 1.0.4
- tinyglobby: 0.2.15
+ tinyexec: 1.1.1
+ tinyglobby: 0.2.16
tree-kill: 1.2.2
unconfig-core: 7.5.0
- unrun: 0.2.32(synckit@0.11.12)
+ unrun: 0.2.34(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(synckit@0.11.12)
optionalDependencies:
- '@tsdown/css': 0.21.4(jiti@2.6.1)(postcss@8.5.8)(sass-embedded@1.98.0)(sass@1.98.0)(tsdown@0.21.4)(yaml@2.8.3)
+ '@tsdown/css': 0.21.7(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(jiti@2.6.1)(postcss@8.5.9)(sass-embedded@1.99.0)(sass@1.99.0)(tsdown@0.21.7)(yaml@2.8.3)
publint: 0.3.18
- typescript: 5.9.3
+ typescript: 6.0.2
transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
- '@ts-macro/tsc'
- '@typescript/native-preview'
- oxc-resolver
@@ -21875,14 +22303,14 @@ snapshots:
tslib@2.8.1: {}
- turbo@2.8.20:
+ turbo@2.9.6:
optionalDependencies:
- '@turbo/darwin-64': 2.8.20
- '@turbo/darwin-arm64': 2.8.20
- '@turbo/linux-64': 2.8.20
- '@turbo/linux-arm64': 2.8.20
- '@turbo/windows-64': 2.8.20
- '@turbo/windows-arm64': 2.8.20
+ '@turbo/darwin-64': 2.9.6
+ '@turbo/darwin-arm64': 2.9.6
+ '@turbo/linux-64': 2.9.6
+ '@turbo/linux-arm64': 2.9.6
+ '@turbo/windows-64': 2.9.6
+ '@turbo/windows-arm64': 2.9.6
tw-animate-css@1.4.0: {}
@@ -21906,7 +22334,7 @@ snapshots:
typed-array-byte-length@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
for-each: 0.3.5
gopd: 1.2.0
has-proto: 1.2.0
@@ -21915,7 +22343,7 @@ snapshots:
typed-array-byte-offset@1.0.4:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.9
for-each: 0.3.5
gopd: 1.2.0
has-proto: 1.2.0
@@ -21924,7 +22352,7 @@ snapshots:
typed-array-length@1.0.7:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.9
for-each: 0.3.5
gopd: 1.2.0
is-typed-array: 1.1.15
@@ -21933,6 +22361,8 @@ snapshots:
typescript@5.9.3: {}
+ typescript@6.0.2: {}
+
uc.micro@2.1.0: {}
ufo@1.6.3: {}
@@ -21960,9 +22390,9 @@ snapshots:
magic-string: 0.30.21
unplugin: 2.3.11
- undici-types@7.18.2: {}
+ undici-types@7.19.2: {}
- undici@7.24.5: {}
+ undici@7.24.8: {}
unenv@2.0.0-rc.24:
dependencies:
@@ -21983,7 +22413,7 @@ snapshots:
unicorn-magic@0.4.0: {}
- unimport@6.0.2:
+ unimport@6.1.0:
dependencies:
acorn: 8.16.0
escape-string-regexp: 5.0.0
@@ -21992,11 +22422,11 @@ snapshots:
magic-string: 0.30.21
mlly: 1.8.2
pathe: 2.0.3
- picomatch: 4.0.3
+ picomatch: 4.0.4
pkg-types: 2.3.0
scule: 1.3.0
strip-literal: 3.1.0
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
unplugin: 3.0.0
unplugin-utils: 0.3.1
@@ -22031,22 +22461,22 @@ snapshots:
universalify@2.0.1: {}
- unplugin-dts@1.0.0-beta.6(esbuild@0.27.4)(rolldown@1.0.0-rc.9)(rollup@4.60.0)(typescript@5.9.3)(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ unplugin-dts@1.0.0-beta.6(esbuild@0.27.7)(rolldown@1.0.0-rc.15)(rollup@4.60.1)(typescript@6.0.2)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
'@volar/typescript': 2.4.28
compare-versions: 6.1.1
debug: 4.4.3
kolorist: 1.8.0
local-pkg: 1.1.2
magic-string: 0.30.21
- typescript: 5.9.3
+ typescript: 6.0.2
unplugin: 2.3.11
optionalDependencies:
- esbuild: 0.27.4
- rolldown: 1.0.0-rc.9
- rollup: 4.60.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ esbuild: 0.27.7
+ rolldown: 1.0.0-rc.15
+ rollup: 4.60.1
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
transitivePeerDependencies:
- supports-color
@@ -22063,17 +22493,17 @@ snapshots:
unplugin-utils@0.3.1:
dependencies:
pathe: 2.0.3
- picomatch: 4.0.3
+ picomatch: 4.0.4
- unplugin-vue@7.1.1(@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.1)(vue@3.5.30(typescript@5.9.3))(yaml@2.8.3):
+ unplugin-vue@7.1.1(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(vue@3.5.32(typescript@6.0.2))(yaml@2.8.3):
dependencies:
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
- '@vue/reactivity': 3.5.30
+ '@vue/reactivity': 3.5.32
obug: 2.1.1
unplugin: 3.0.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vue: 3.5.30(typescript@5.9.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- '@types/node'
- '@vitejs/devtools'
@@ -22092,28 +22522,31 @@ snapshots:
dependencies:
'@jridgewell/remapping': 2.3.5
acorn: 8.16.0
- picomatch: 4.0.3
+ picomatch: 4.0.4
webpack-virtual-modules: 0.6.2
unplugin@3.0.0:
dependencies:
'@jridgewell/remapping': 2.3.5
- picomatch: 4.0.3
+ picomatch: 4.0.4
webpack-virtual-modules: 0.6.2
- unrun@0.2.32(synckit@0.11.12):
+ unrun@0.2.34(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)(synckit@0.11.12):
dependencies:
- rolldown: 1.0.0-rc.9
+ rolldown: 1.0.0-rc.12(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)
optionalDependencies:
synckit: 0.11.12
+ transitivePeerDependencies:
+ - '@emnapi/core'
+ - '@emnapi/runtime'
- unstorage@1.17.4(db0@0.3.4)(ioredis@5.10.1):
+ unstorage@1.17.5(db0@0.3.4)(ioredis@5.10.1):
dependencies:
anymatch: 3.1.3
chokidar: 5.0.0
destr: 2.0.5
- h3: 1.15.10
- lru-cache: 11.2.7
+ h3: 1.15.11
+ lru-cache: 11.3.4
node-fetch-native: 1.6.7
ofetch: 1.5.1
ufo: 1.6.3
@@ -22130,7 +22563,7 @@ snapshots:
untyped@2.0.0:
dependencies:
citty: 0.1.6
- defu: 6.1.4
+ defu: 6.1.7
jiti: 2.6.1
knitwork: 1.3.0
scule: 1.3.0
@@ -22146,9 +22579,9 @@ snapshots:
upath@1.2.0: {}
- update-browserslist-db@1.2.3(browserslist@4.28.1):
+ update-browserslist-db@1.2.3(browserslist@4.28.2):
dependencies:
- browserslist: 4.28.1
+ browserslist: 4.28.2
escalade: 3.2.0
picocolors: 1.1.1
@@ -22165,7 +22598,7 @@ snapshots:
semver: 7.7.4
xdg-basedir: 5.1.0
- uqr@0.1.2: {}
+ uqr@0.1.3: {}
uri-js@4.4.1:
dependencies:
@@ -22175,24 +22608,24 @@ snapshots:
util-deprecate@1.0.2: {}
- valibot@1.3.1(typescript@5.9.3):
+ valibot@1.3.1(typescript@6.0.2):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
- validator@13.15.26: {}
+ validator@13.15.35: {}
varint@6.0.0: {}
- vdirs@0.1.8(vue@3.5.30(typescript@5.9.3)):
+ vdirs@0.1.8(vue@3.5.32(typescript@6.0.2)):
dependencies:
evtd: 0.2.4
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vee-validate@4.15.1(vue@3.5.30(typescript@5.9.3)):
+ vee-validate@4.15.1(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@vue/devtools-api': 7.7.9
type-fest: 4.41.0
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
vfile-message@4.0.3:
dependencies:
@@ -22226,42 +22659,26 @@ snapshots:
dependencies:
global: 4.4.0
- vite-dev-rpc@1.1.0(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vite-dev-rpc@1.1.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
birpc: 2.9.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vite-hot-client: 2.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vite-hot-client: 2.1.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
- vite-hot-client@2.1.0(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vite-hot-client@2.1.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
- vite-plugin-compression@0.5.1(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vite-plugin-compression@0.5.1(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
chalk: 4.1.2
debug: 4.4.3
fs-extra: 10.1.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
transitivePeerDependencies:
- supports-color
- vite-plugin-html@3.2.2(vite@8.0.1(@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.1)(yaml@2.8.3)):
- dependencies:
- '@rollup/pluginutils': 4.2.1
- colorette: 2.0.20
- connect-history-api-fallback: 1.6.0
- consola: 2.15.3
- dotenv: 16.6.1
- dotenv-expand: 8.0.3
- ejs: 3.1.10
- fast-glob: 3.3.3
- fs-extra: 10.1.0
- html-minifier-terser: 6.1.0
- node-html-parser: 5.4.2
- pathe: 0.2.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
-
- vite-plugin-inspect@11.3.3(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vite-plugin-inspect@11.3.3(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
ansis: 4.2.0
debug: 4.4.3
@@ -22271,44 +22688,44 @@ snapshots:
perfect-debounce: 2.1.0
sirv: 3.0.2
unplugin-utils: 0.3.1
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vite-dev-rpc: 1.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vite-dev-rpc: 1.1.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
transitivePeerDependencies:
- supports-color
vite-plugin-lazy-import@1.0.7:
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.60.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.60.1)
es-module-lexer: 1.7.0
- rollup: 4.60.0
+ rollup: 4.60.1
xe-utils: 3.9.1
- vite-plugin-pwa@1.2.0(vite@8.0.1(@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.1)(yaml@2.8.3))(workbox-build@7.4.0)(workbox-window@7.4.0):
+ vite-plugin-pwa@1.2.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(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: 8.0.1(@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.1)(yaml@2.8.3)
+ tinyglobby: 0.2.16
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
workbox-build: 7.4.0
workbox-window: 7.4.0
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-devtools@8.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))(vue@3.5.30(typescript@5.9.3)):
+ vite-plugin-vue-devtools@8.1.1(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))(vue@3.5.32(typescript@6.0.2)):
dependencies:
- '@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
+ '@vue/devtools-core': 8.1.1(vue@3.5.32(typescript@6.0.2))
+ '@vue/devtools-kit': 8.1.1
+ '@vue/devtools-shared': 8.1.1
sirv: 3.0.2
- vite: 8.0.1(@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.1)(yaml@2.8.3)
- vite-plugin-inspect: 11.3.3(vite@8.0.1(@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.1)(yaml@2.8.3))
- vite-plugin-vue-inspector: 5.4.0(vite@8.0.1(@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.1)(yaml@2.8.3))
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
+ vite-plugin-inspect: 11.3.3(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
+ vite-plugin-vue-inspector: 5.4.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
- vue
- vite-plugin-vue-inspector@5.4.0(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vite-plugin-vue-inspector@5.4.0(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0)
@@ -22316,75 +22733,75 @@ 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.30
+ '@vue/compiler-dom': 3.5.32
kolorist: 1.8.0
magic-string: 0.30.21
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.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.1):
+ vite@5.4.21(@types/node@25.6.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1):
dependencies:
esbuild: 0.21.5
- postcss: 8.5.8
- rollup: 4.60.0
+ postcss: 8.5.9
+ rollup: 4.60.1
optionalDependencies:
- '@types/node': 25.5.0
+ '@types/node': 25.6.0
fsevents: 2.3.3
less: 4.6.4
lightningcss: 1.32.0
- sass: 1.98.0
- sass-embedded: 1.98.0
+ sass: 1.99.0
+ sass-embedded: 1.99.0
terser: 5.46.1
- vite@8.0.1(@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.1)(yaml@2.8.3):
+ vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3):
dependencies:
lightningcss: 1.32.0
- picomatch: 4.0.3
- postcss: 8.5.8
- rolldown: 1.0.0-rc.10
- tinyglobby: 0.2.15
+ picomatch: 4.0.4
+ postcss: 8.5.9
+ rolldown: 1.0.0-rc.15
+ tinyglobby: 0.2.16
optionalDependencies:
- '@types/node': 25.5.0
- esbuild: 0.27.4
+ '@types/node': 25.6.0
+ esbuild: 0.27.7
fsevents: 2.3.3
jiti: 2.6.1
less: 4.6.4
- sass: 1.98.0
- sass-embedded: 1.98.0
+ sass: 1.99.0
+ sass-embedded: 1.99.0
terser: 5.46.1
yaml: 2.8.3
- vitepress-plugin-group-icons@1.7.1(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vitepress-plugin-group-icons@1.7.3(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
- '@iconify-json/logos': 1.2.10
+ '@iconify-json/logos': 1.2.11
'@iconify-json/vscode-icons': 1.2.45
'@iconify/utils': 3.1.0
optionalDependencies:
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.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.1)(typescript@5.9.3):
+ vitepress@1.6.4(@algolia/client-search@5.50.1)(@types/node@25.6.0)(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.9)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(search-insights@2.17.3)(sortablejs@1.15.7)(terser@5.46.1)(typescript@6.0.2):
dependencies:
'@docsearch/css': 3.8.2
- '@docsearch/js': 3.8.2(@algolia/client-search@5.49.2)(search-insights@2.17.3)
- '@iconify-json/simple-icons': 1.2.75
+ '@docsearch/js': 3.8.2(@algolia/client-search@5.50.1)(search-insights@2.17.3)
+ '@iconify-json/simple-icons': 1.2.78
'@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.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.1))(vue@3.5.30(typescript@5.9.3))
+ '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.6.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1))(vue@3.5.32(typescript@6.0.2))
'@vue/devtools-api': 7.7.9
- '@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.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)
+ '@vue/shared': 3.5.32
+ '@vueuse/core': 12.8.2(typescript@6.0.2)
+ '@vueuse/integrations': 12.8.2(async-validator@4.2.5)(axios@1.15.0)(change-case@5.4.4)(focus-trap@7.8.0)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.7)(typescript@6.0.2)
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.5.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.98.0)(sass@1.98.0)(terser@5.46.1)
- vue: 3.5.30(typescript@5.9.3)
+ vite: 5.4.21(@types/node@25.6.0)(less@4.6.4)(lightningcss@1.32.0)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)
+ vue: 3.5.32(typescript@6.0.2)
optionalDependencies:
- postcss: 8.5.8
+ postcss: 8.5.9
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -22412,38 +22829,38 @@ snapshots:
- typescript
- universal-cookie
- vitest@4.1.0(@types/node@25.5.0)(happy-dom@20.8.4)(vite@8.0.1(@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.1)(yaml@2.8.3)):
+ vitest@4.1.4(@types/node@25.6.0)(happy-dom@20.8.9)(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)):
dependencies:
- '@vitest/expect': 4.1.0
- '@vitest/mocker': 4.1.0(vite@8.0.1(@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.1)(yaml@2.8.3))
- '@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
+ '@vitest/expect': 4.1.4
+ '@vitest/mocker': 4.1.4(vite@8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3))
+ '@vitest/pretty-format': 4.1.4
+ '@vitest/runner': 4.1.4
+ '@vitest/snapshot': 4.1.4
+ '@vitest/spy': 4.1.4
+ '@vitest/utils': 4.1.4
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
+ picomatch: 4.0.4
std-env: 4.0.0
tinybench: 2.9.0
- tinyexec: 1.0.4
- tinyglobby: 0.2.15
+ tinyexec: 1.1.1
+ tinyglobby: 0.2.16
tinyrainbow: 3.1.0
- vite: 8.0.1(@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.1)(yaml@2.8.3)
+ vite: 8.0.8(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)(less@4.6.4)(sass-embedded@1.99.0)(sass@1.99.0)(terser@5.46.1)(yaml@2.8.3)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 25.5.0
- happy-dom: 20.8.4
+ '@types/node': 25.6.0
+ happy-dom: 20.8.9
transitivePeerDependencies:
- msw
- vooks@0.2.12(vue@3.5.30(typescript@5.9.3)):
+ vooks@0.2.12(vue@3.5.32(typescript@6.0.2)):
dependencies:
evtd: 0.2.4
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
vscode-languageserver-textdocument@1.0.12: {}
@@ -22453,19 +22870,19 @@ snapshots:
vue-component-type-helpers@3.2.6: {}
- vue-demi@0.14.10(vue@3.5.30(typescript@5.9.3)):
+ vue-demi@0.14.10(vue@3.5.32(typescript@6.0.2)):
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue-dompurify-html@5.3.0(vue@3.5.30(typescript@5.9.3)):
+ vue-dompurify-html@5.3.0(vue@3.5.32(typescript@6.0.2)):
dependencies:
dompurify: 3.3.3
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue-eslint-parser@10.4.0(eslint@10.1.0(jiti@2.6.1)):
+ vue-eslint-parser@10.4.0(eslint@10.2.0(jiti@2.6.1)):
dependencies:
debug: 4.4.3
- eslint: 10.1.0(jiti@2.6.1)
+ eslint: 10.2.0(jiti@2.6.1)
eslint-scope: 9.1.2
eslint-visitor-keys: 5.0.1
espree: 11.2.0
@@ -22474,24 +22891,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-i18n@11.3.0(vue@3.5.30(typescript@5.9.3)):
+ vue-i18n@11.3.2(vue@3.5.32(typescript@6.0.2)):
dependencies:
- '@intlify/core-base': 11.3.0
- '@intlify/devtools-types': 11.3.0
- '@intlify/shared': 11.3.0
+ '@intlify/core-base': 11.3.2
+ '@intlify/devtools-types': 11.3.2
+ '@intlify/shared': 11.3.2
'@vue/devtools-api': 6.6.4
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue-json-viewer@3.0.4(vue@3.5.30(typescript@5.9.3)):
+ vue-json-viewer@3.0.4(vue@3.5.32(typescript@6.0.2)):
dependencies:
clipboard: 2.0.11
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue-router@5.0.4(@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-router@5.0.4(@vue/compiler-sfc@3.5.32)(pinia@3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2)))(vue@3.5.32(typescript@6.0.2)):
dependencies:
'@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
+ '@vue-macros/common': 3.1.2(vue@3.5.32(typescript@6.0.2))
+ '@vue/devtools-api': 8.1.1
ast-walker-scope: 0.8.3
chokidar: 5.0.0
json5: 2.2.3
@@ -22500,80 +22917,80 @@ snapshots:
mlly: 1.8.2
muggle-string: 0.4.1
pathe: 2.0.3
- picomatch: 4.0.3
+ picomatch: 4.0.4
scule: 1.3.0
- tinyglobby: 0.2.15
+ tinyglobby: 0.2.16
unplugin: 3.0.0
unplugin-utils: 0.3.1
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
yaml: 2.8.3
optionalDependencies:
- '@vue/compiler-sfc': 3.5.30
- pinia: 3.0.4(typescript@5.9.3)(vue@3.5.30(typescript@5.9.3))
+ '@vue/compiler-sfc': 3.5.32
+ pinia: 3.0.4(typescript@6.0.2)(vue@3.5.32(typescript@6.0.2))
- vue-tippy@6.7.1(vue@3.5.30(typescript@5.9.3)):
+ vue-tippy@6.7.1(vue@3.5.32(typescript@6.0.2)):
dependencies:
tippy.js: 6.3.7
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue-tsc@3.2.6(typescript@5.9.3):
+ vue-tsc@3.2.6(typescript@6.0.2):
dependencies:
'@volar/typescript': 2.4.28
'@vue/language-core': 3.2.6
- typescript: 5.9.3
+ typescript: 6.0.2
- vue-types@3.0.2(vue@3.5.30(typescript@5.9.3)):
+ vue-types@3.0.2(vue@3.5.32(typescript@6.0.2)):
dependencies:
is-plain-object: 3.0.1
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue3-print-nb@0.1.4(typescript@5.9.3):
+ vue3-print-nb@0.1.4(typescript@6.0.2):
dependencies:
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
transitivePeerDependencies:
- typescript
- vue3-signature@0.2.4(vue@3.5.30(typescript@5.9.3)):
+ vue3-signature@0.2.4(vue@3.5.32(typescript@6.0.2)):
dependencies:
default-passive-events: 2.0.0
signature_pad: 3.0.0-beta.4
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vue@3.5.30(typescript@5.9.3):
+ vue@3.5.32(typescript@6.0.2):
dependencies:
- '@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
+ '@vue/compiler-dom': 3.5.32
+ '@vue/compiler-sfc': 3.5.32
+ '@vue/runtime-dom': 3.5.32
+ '@vue/server-renderer': 3.5.32(vue@3.5.32(typescript@6.0.2))
+ '@vue/shared': 3.5.32
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.2
- vuedraggable@4.1.0(vue@3.5.30(typescript@5.9.3)):
+ vuedraggable@4.1.0(vue@3.5.32(typescript@6.0.2)):
dependencies:
sortablejs: 1.14.0
- vue: 3.5.30(typescript@5.9.3)
+ vue: 3.5.32(typescript@6.0.2)
- vueuc@0.4.65(vue@3.5.30(typescript@5.9.3)):
+ vueuc@0.4.65(vue@3.5.32(typescript@6.0.2)):
dependencies:
- '@css-render/vue3-ssr': 0.15.14(vue@3.5.30(typescript@5.9.3))
+ '@css-render/vue3-ssr': 0.15.14(vue@3.5.32(typescript@6.0.2))
'@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.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)
+ vdirs: 0.1.8(vue@3.5.32(typescript@6.0.2))
+ vooks: 0.2.12(vue@3.5.32(typescript@6.0.2))
+ vue: 3.5.32(typescript@6.0.2)
- vxe-pc-ui@4.13.13(vue@3.5.30(typescript@5.9.3)):
+ vxe-pc-ui@4.13.23(vue@3.5.32(typescript@6.0.2)):
dependencies:
- '@vxe-ui/core': 4.4.3(vue@3.5.30(typescript@5.9.3))
+ '@vxe-ui/core': 4.4.4(vue@3.5.32(typescript@6.0.2))
transitivePeerDependencies:
- vue
- vxe-table@4.18.8(vue@3.5.30(typescript@5.9.3)):
+ vxe-table@4.18.12(vue@3.5.32(typescript@6.0.2)):
dependencies:
- vxe-pc-ui: 4.13.13(vue@3.5.30(typescript@5.9.3))
+ vxe-pc-ui: 4.13.23(vue@3.5.32(typescript@6.0.2))
transitivePeerDependencies:
- vue
@@ -22656,7 +23073,7 @@ snapshots:
which-typed-array@1.1.20:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.9
call-bound: 1.0.4
for-each: 0.3.5
get-proto: 1.0.1
@@ -22693,7 +23110,7 @@ snapshots:
workbox-build@7.4.0:
dependencies:
- '@apideck/better-ajv-errors': 0.3.6(ajv@8.18.0)
+ '@apideck/better-ajv-errors': 0.3.7(ajv@8.18.0)
'@babel/core': 7.29.0
'@babel/preset-env': 7.29.2(@babel/core@7.29.0)
'@babel/runtime': 7.29.2
@@ -22707,7 +23124,7 @@ snapshots:
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
glob: 11.1.0
- lodash: 4.17.23
+ lodash: 4.18.1
pretty-bytes: 5.6.0
rollup: 2.80.0
source-map: 0.8.0-beta.0
@@ -22931,12 +23348,12 @@ snapshots:
'@poppinss/exception': 1.2.3
error-stack-parser-es: 1.0.5
- youch@4.1.0:
+ youch@4.1.1:
dependencies:
'@poppinss/colors': 4.1.6
'@poppinss/dumper': 0.7.0
'@speed-highlight/core': 1.2.15
- cookie-es: 2.0.0
+ cookie-es: 3.1.1
youch-core: 0.3.3
zeebe-bpmn-moddle@1.12.0: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 6ecabd40f..ce284cee7 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -18,11 +18,11 @@ overrides:
pinia: 'catalog:'
vue: 'catalog:'
catalog:
- '@ast-grep/napi': ^0.42.0
+ '@ast-grep/napi': ^0.42.1
'@changesets/changelog-github': ^0.6.0
'@changesets/cli': ^2.30.0
'@changesets/git': ^3.0.4
- '@clack/prompts': ^1.1.0
+ '@clack/prompts': ^1.2.0
'@commitlint/cli': ^20.5.0
'@commitlint/config-conventional': ^20.5.0
'@ctrl/tinycolor': ^4.2.0
@@ -33,24 +33,34 @@ catalog:
'@form-create/designer': ^3.4.0
'@form-create/element-ui': ^3.2.38
'@form-create/naive-ui': ^3.2.38
- '@iconify/json': ^2.2.451
+ '@iconify/json': ^2.2.460
'@iconify/tailwind4': ^1.2.3
'@iconify/vue': ^5.0.0
- '@intlify/core-base': ^11.3.0
+ '@intlify/core-base': ^11.3.2
'@intlify/unplugin-vue-i18n': ^11.0.7
- '@jspm/generator': ^2.12.0
+ '@jspm/generator': ^2.13.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.3.0
- '@stylistic/stylelint-plugin': ^5.0.1
+ '@pnpm/workspace.read-manifest': ^1000.3.1
+ '@stylistic/stylelint-plugin': ^5.1.0
'@tailwindcss/typography': ^0.5.19
'@tailwindcss/vite': ^4.2.2
- '@tanstack/vue-store': ^0.9.2
+ '@tanstack/vue-store': ^0.10.0
'@tinyflow-ai/vue': ~1.1.10
'@tinymce/tinymce-vue': ^6.3.0
- '@tsdown/css': ^0.21.4
+ '@tiptap/core': ^3.22.3
+ '@tiptap/extension-document': ^3.22.3
+ '@tiptap/extension-highlight': ^3.22.3
+ '@tiptap/extension-image': ^3.22.3
+ '@tiptap/extension-link': ^3.22.3
+ '@tiptap/extension-placeholder': ^3.22.3
+ '@tiptap/extension-text-align': ^3.22.3
+ '@tiptap/extension-text-style': ^3.22.3
+ '@tiptap/extension-underline': ^3.22.3
+ '@tiptap/starter-kit': ^3.22.3
+ '@tiptap/vue-3': ^3.22.3
+ '@tsdown/css': ^0.21.7
'@types/archiver': ^7.0.0
'@types/codemirror': ^5.60.17
'@types/crypto-js': ^4.2.2
@@ -58,27 +68,27 @@ catalog:
'@types/json-bigint': ^1.0.4
'@types/lodash.clonedeep': ^4.5.9
'@types/markdown-it': ^14.1.2
- '@types/node': ^25.5.0
+ '@types/node': ^25.6.0
'@types/nprogress': ^0.2.3
'@types/qrcode': ^1.5.6
'@types/qs': ^6.15.0
'@types/sortablejs': ^1.15.9
- '@typescript-eslint/eslint-plugin': ^8.57.1
- '@typescript-eslint/parser': ^8.57.1
+ '@typescript-eslint/eslint-plugin': ^8.58.1
+ '@typescript-eslint/parser': ^8.58.1
'@vee-validate/zod': ^4.15.1
'@videojs-player/vue': ^1.0.0
'@vite-pwa/vitepress': ^1.1.0
'@vitejs/plugin-vue': ^6.0.5
'@vitejs/plugin-vue-jsx': ^5.1.5
- '@vue/shared': ^3.5.30
+ '@vue/shared': ^3.5.32
'@vue/test-utils': ^2.4.6
'@vueuse/core': ^14.2.1
'@vueuse/integrations': ^14.2.1
'@vueuse/motion': ^3.0.3
ant-design-vue: ^4.2.6
- antdv-next: ^1.1.5
+ antdv-next: ^1.1.9
archiver: ^7.0.1
- axios: ^1.13.6
+ axios: ^1.15.0
axios-mock-adapter: ^2.1.0
benz-amr-recorder: ^1.1.5
bpmn-js: ^17.11.1
@@ -97,40 +107,40 @@ catalog:
cropperjs: ^1.6.2
cross-env: ^10.1.0
crypto-js: ^4.2.0
- cspell: ^9.7.0
+ cspell: ^10.0.0
cz-git: ^1.12.0
czg: ^1.12.0
dayjs: ^1.11.20
- defu: ^6.1.4
+ defu: ^6.1.7
depcheck: ^1.4.7
diagram-js: ^12.8.1
- dotenv: ^17.3.1
+ dotenv: ^17.4.1
echarts: ^6.0.0
- element-plus: ^2.13.5
+ element-plus: ^2.13.7
es-toolkit: ^1.45.1
- eslint: ^10.0.3
- eslint-plugin-better-tailwindcss: ^4.3.2
+ eslint: ^10.2.0
+ eslint-plugin-better-tailwindcss: ^4.4.0
eslint-plugin-command: ^3.5.2
eslint-plugin-jsonc: ^3.1.2
eslint-plugin-n: ^17.24.0
- eslint-plugin-perfectionist: ^5.7.0
+ eslint-plugin-perfectionist: ^5.8.0
eslint-plugin-pnpm: ^1.6.0
- eslint-plugin-unicorn: ^63.0.0
+ eslint-plugin-unicorn: ^64.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.4
find-up: ^8.0.0
- get-port: ^7.1.0
+ get-port: ^7.2.0
globals: ^17.4.0
- happy-dom: ^20.8.4
+ happy-dom: ^20.8.9
highlight.js: ^11.11.1
html-minifier-terser: ^7.2.0
is-ci: ^4.1.0
jsencrypt: ^3.5.4
json-bigint: ^1.0.0
- lefthook: ^2.1.4
+ lefthook: ^2.1.5
lodash.clonedeep: ^4.5.0
lucide-vue-next: ^0.577.0
markdown-it: ^14.1.1
@@ -140,76 +150,76 @@ catalog:
markmap-view: ^0.16.0
medium-zoom: ^1.1.0
naive-ui: ^2.44.1
- nitropack: ^2.13.1
+ nitropack: ^2.13.3
nprogress: ^0.2.0
ora: ^9.3.0
- oxfmt: ^0.41.0
- oxlint: ^1.56.0
- oxlint-tsgolint: ^0.17.1
+ oxfmt: ^0.44.0
+ oxlint: ^1.59.0
+ oxlint-tsgolint: ^0.20.0
pinia: ^3.0.4
pinia-plugin-persistedstate: ^4.7.1
pkg-types: ^2.3.0
- playwright: ^1.58.2
- postcss: ^8.5.8
+ playwright: ^1.59.1
+ postcss: ^8.5.9
postcss-html: ^1.8.1
postcss-scss: ^4.0.9
publint: ^0.3.18
qrcode: ^1.5.4
- qs: ^6.15.0
- reka-ui: ^2.9.2
+ qs: ^6.15.1
+ reka-ui: ^2.9.5
resolve.exports: ^2.0.3
rimraf: ^6.1.3
+ rolldown: ^1.0.0-rc.15
rollup-plugin-visualizer: ^7.0.1
- sass: ^1.98.0
- sass-embedded: ^1.98.0
+ sass: ^1.99.0
+ sass-embedded: ^1.99.0
secure-ls: ^2.0.0
sortablejs: ^1.15.7
steady-xml: ^0.1.0
- stylelint: ^17.4.0
+ stylelint: ^17.6.0
stylelint-config-recess-order: ^7.7.0
stylelint-config-recommended: ^18.0.0
- stylelint-config-recommended-scss: ^17.0.0
+ stylelint-config-recommended-scss: ^17.0.1
stylelint-config-recommended-vue: ^1.6.1
stylelint-config-standard: ^40.0.0
stylelint-order: ^8.1.1
stylelint-scss: ^7.0.0
tailwind-merge: ^3.5.0
tailwindcss: ^4.2.2
- tdesign-vue-next: ^1.18.5
+ tdesign-vue-next: ^1.19.0
theme-colors: ^0.1.0
tinymce: ^7.3.0
tippy.js: ^6.3.7
- tsdown: ^0.21.4
- turbo: ^2.8.20
+ tsdown: ^0.21.7
+ turbo: ^2.9.6
tw-animate-css: ^1.4.0
- typescript: ^5.9.3
+ typescript: ^6.0.2
unplugin-dts: ^1.0.0-beta.6
unplugin-element-plus: ^0.11.2
unplugin-vue: ^7.1.1
vee-validate: ^4.15.1
video.js: ^7.21.7
- vite: ^8.0.1
+ vite: ^8.0.8
vite-plugin-compression: ^0.5.1
- vite-plugin-html: ^3.2.2
vite-plugin-lazy-import: ^1.0.7
vite-plugin-pwa: ^1.2.0
- vite-plugin-vue-devtools: ^8.1.0
+ vite-plugin-vue-devtools: ^8.1.1
vitepress: ^1.6.4
- vitepress-plugin-group-icons: ^1.7.1
- vitest: ^4.1.0
- vue: ^3.5.30
+ vitepress-plugin-group-icons: ^1.7.3
+ vitest: ^4.1.4
+ vue: ^3.5.32
vue-dompurify-html: ^5.3.0
vue-eslint-parser: ^10.4.0
- vue-i18n: ^11.3.0
+ vue-i18n: ^11.3.2
vue-json-viewer: ^3.0.4
- vue-router: ^5.0.3
+ vue-router: ^5.0.4
vue-tippy: ^6.7.1
vue-tsc: ^3.2.6
vue3-print-nb: ^0.1.4
vue3-signature: ^0.2.4
vuedraggable: ^4.1.0
- vxe-pc-ui: ^4.13.10
- vxe-table: ^4.18.5
+ vxe-pc-ui: ^4.13.21
+ vxe-table: ^4.18.11
watermark-js-plus: ^1.6.3
yaml-eslint-parser: ^2.0.0
zod: ^3.25.76
diff --git a/scripts/deploy/Dockerfile b/scripts/deploy/Dockerfile
index 86f439f24..862673c1c 100644
--- a/scripts/deploy/Dockerfile
+++ b/scripts/deploy/Dockerfile
@@ -5,6 +5,7 @@ ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
ENV NODE_OPTIONS=--max-old-space-size=8192
ENV TZ=Asia/Shanghai
+ENV CI=true
RUN npm i -g corepack