fix: doc build error
parent
7c943cc06b
commit
5db93a345a
|
|
@ -0,0 +1,2 @@
|
||||||
|
import { register } from 'node:module';
|
||||||
|
register('./dayjs-resolve-hook.mjs', import.meta.url);
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
const DAYJS_SUBPATH_RE = /^dayjs\/(plugin|locale)\/([^./]+)$/;
|
||||||
|
|
||||||
|
/** @type {import('node:module').ResolveHook} */
|
||||||
|
export async function resolve(specifier, context, nextResolve) {
|
||||||
|
const match = specifier.match(DAYJS_SUBPATH_RE);
|
||||||
|
if (match) {
|
||||||
|
return nextResolve(`${specifier}.js`, context);
|
||||||
|
}
|
||||||
|
return nextResolve(specifier, context);
|
||||||
|
}
|
||||||
|
|
@ -5,6 +5,7 @@ import { resolve } from 'node:path';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
viteArchiverPlugin,
|
viteArchiverPlugin,
|
||||||
|
viteDayjsPlugin,
|
||||||
viteVxeTableImportsPlugin,
|
viteVxeTableImportsPlugin,
|
||||||
} from '@vben/vite-config';
|
} from '@vben/vite-config';
|
||||||
|
|
||||||
|
|
@ -69,6 +70,7 @@ export const shared = defineConfig({
|
||||||
stringify: true,
|
stringify: true,
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
|
viteDayjsPlugin(),
|
||||||
tailwindcss(),
|
tailwindcss(),
|
||||||
GitChangelog({
|
GitChangelog({
|
||||||
mapAuthors: [
|
mapAuthors: [
|
||||||
|
|
@ -86,6 +88,7 @@ export const shared = defineConfig({
|
||||||
username: 'likui628',
|
username: 'likui628',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
mapByNameAliases: ['Jin Mao', 'jinmao'],
|
||||||
name: 'Jin Mao',
|
name: 'Jin Mao',
|
||||||
username: 'jinmao88',
|
username: 'jinmao88',
|
||||||
},
|
},
|
||||||
|
|
@ -94,6 +97,7 @@ export const shared = defineConfig({
|
||||||
username: 'mynetfan',
|
username: 'mynetfan',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
mapByNameAliases: ['xingyu4j', 'xingyu'],
|
||||||
name: 'xingyu4j',
|
name: 'xingyu4j',
|
||||||
username: 'xingyu4j',
|
username: 'xingyu4j',
|
||||||
},
|
},
|
||||||
|
|
@ -115,6 +119,7 @@ export const shared = defineConfig({
|
||||||
|
|
||||||
ssr: {
|
ssr: {
|
||||||
external: ['@vue/repl'],
|
external: ['@vue/repl'],
|
||||||
|
noExternal: ['@v-c/picker'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
@ -125,7 +130,7 @@ function head(): HeadConfig[] {
|
||||||
[
|
[
|
||||||
'meta',
|
'meta',
|
||||||
{
|
{
|
||||||
content: 'vben, vitejs, vite, shacdn-ui, vue',
|
content: 'vben, vitejs, vite, shadcn-ui, vue',
|
||||||
name: 'keywords',
|
name: 'keywords',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,9 @@
|
||||||
"name": "@vben/docs",
|
"name": "@vben/docs",
|
||||||
"version": "5.7.0",
|
"version": "5.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vitepress build",
|
"build": "cross-env NODE_OPTIONS=\"--import ./.vitepress/build/dayjs-loader.mjs\" vitepress build",
|
||||||
"dev": "vitepress dev",
|
"dev": "vitepress dev",
|
||||||
"docs:preview": "vitepress preview"
|
"docs:preview": "vitepress preview"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,70 @@
|
||||||
|
import type { Plugin } from 'vite';
|
||||||
|
|
||||||
|
function viteDayjsPlugin(): Plugin {
|
||||||
|
return {
|
||||||
|
name: 'vite-dayjs-plugin',
|
||||||
|
enforce: 'pre',
|
||||||
|
async resolveId(source, importer, options) {
|
||||||
|
// 1) 已经使用了 dayjs/esm 的不处理
|
||||||
|
if (source.startsWith('dayjs/esm')) return null;
|
||||||
|
|
||||||
|
// 2) 根入口:dayjs -> dayjs/esm
|
||||||
|
if (source === 'dayjs') {
|
||||||
|
return await this.resolve('dayjs/esm', importer, {
|
||||||
|
skipSelf: true,
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3) 插件入口的多种写法
|
||||||
|
// - dayjs/plugin/xxx.js -> dayjs/esm/plugin/xxx/index.js
|
||||||
|
// - dayjs/plugin/xxx -> dayjs/esm/plugin/xxx
|
||||||
|
const pluginWithJs = source.match(/^dayjs\/plugin\/([^/]+)\.js$/);
|
||||||
|
if (pluginWithJs) {
|
||||||
|
const target = `dayjs/esm/plugin/${pluginWithJs[1]}/index.js`;
|
||||||
|
return await this.resolve(target, importer, {
|
||||||
|
skipSelf: true,
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const pluginBare = source.match(/^dayjs\/plugin\/([^/]+)$/);
|
||||||
|
if (pluginBare) {
|
||||||
|
const target = `dayjs/esm/plugin/${pluginBare[1]}`;
|
||||||
|
return await this.resolve(target, importer, {
|
||||||
|
skipSelf: true,
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4) 处理多语言包
|
||||||
|
// - dayjs/locale/xxx.js -> dayjs/esm/locale/xxx.js
|
||||||
|
const localeWithJs = source.match(/^dayjs\/locale\/([^/]+)\.js$/);
|
||||||
|
if (localeWithJs) {
|
||||||
|
const target = `dayjs/esm/locale/${localeWithJs[1]}.js`;
|
||||||
|
return await this.resolve(target, importer, {
|
||||||
|
skipSelf: true,
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const localeBare = source.match(/^dayjs\/locale\/([^/]+)$/);
|
||||||
|
if (localeBare) {
|
||||||
|
const target = `dayjs/esm/locale/${localeBare[1]}`;
|
||||||
|
return await this.resolve(target, importer, {
|
||||||
|
skipSelf: true,
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
config() {
|
||||||
|
return {
|
||||||
|
optimizeDeps: {
|
||||||
|
exclude: ['dayjs'],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
export { viteDayjsPlugin };
|
||||||
|
|
@ -18,6 +18,7 @@ import { VitePWA } from 'vite-plugin-pwa';
|
||||||
import viteVueDevTools from 'vite-plugin-vue-devtools';
|
import viteVueDevTools from 'vite-plugin-vue-devtools';
|
||||||
|
|
||||||
import { viteArchiverPlugin } from './archiver';
|
import { viteArchiverPlugin } from './archiver';
|
||||||
|
import { viteDayjsPlugin } from './dayjs';
|
||||||
import { viteExtraAppConfigPlugin } from './extra-app-config';
|
import { viteExtraAppConfigPlugin } from './extra-app-config';
|
||||||
import { viteHtmlPlugin } from './html';
|
import { viteHtmlPlugin } from './html';
|
||||||
import { viteImportMapPlugin } from './importmap';
|
import { viteImportMapPlugin } from './importmap';
|
||||||
|
|
@ -105,6 +106,7 @@ async function loadApplicationPlugins(
|
||||||
compressTypes,
|
compressTypes,
|
||||||
extraAppConfig,
|
extraAppConfig,
|
||||||
html,
|
html,
|
||||||
|
dayjs,
|
||||||
i18n,
|
i18n,
|
||||||
importmap,
|
importmap,
|
||||||
importmapOptions,
|
importmapOptions,
|
||||||
|
|
@ -219,6 +221,10 @@ async function loadApplicationPlugins(
|
||||||
return [await viteArchiverPlugin(archiverPluginOptions)];
|
return [await viteArchiverPlugin(archiverPluginOptions)];
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
condition: dayjs,
|
||||||
|
plugins: () => [viteDayjsPlugin()],
|
||||||
|
},
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -247,6 +253,7 @@ export {
|
||||||
loadLibraryPlugins,
|
loadLibraryPlugins,
|
||||||
viteArchiverPlugin,
|
viteArchiverPlugin,
|
||||||
viteCompressPlugin,
|
viteCompressPlugin,
|
||||||
|
viteDayjsPlugin,
|
||||||
viteDtsPlugin,
|
viteDtsPlugin,
|
||||||
viteHtmlPlugin,
|
viteHtmlPlugin,
|
||||||
viteVisualizerPlugin,
|
viteVisualizerPlugin,
|
||||||
|
|
|
||||||
|
|
@ -214,6 +214,11 @@ interface ApplicationPluginOptions extends CommonPluginOptions {
|
||||||
* @description 可选的压缩类型
|
* @description 可选的压缩类型
|
||||||
*/
|
*/
|
||||||
compressTypes?: ('brotli' | 'gzip')[];
|
compressTypes?: ('brotli' | 'gzip')[];
|
||||||
|
/**
|
||||||
|
* 是否开启 dayjs 插件
|
||||||
|
* @default true
|
||||||
|
*/
|
||||||
|
dayjs?: boolean;
|
||||||
/**
|
/**
|
||||||
* 是否抽离配置文件
|
* 是否抽离配置文件
|
||||||
* @default false
|
* @default false
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
"vue-tsc": "catalog:"
|
"vue-tsc": "catalog:"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^20.19.0 || ^22.18.0 || ^24.0.0",
|
"node": "^22.18.0 || ^24.0.0",
|
||||||
"pnpm": ">=10.0.0"
|
"pnpm": ">=10.0.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.33.4"
|
"packageManager": "pnpm@10.33.4"
|
||||||
|
|
|
||||||
186
pnpm-lock.yaml
186
pnpm-lock.yaml
|
|
@ -211,8 +211,8 @@ catalogs:
|
||||||
specifier: ^0.7.1
|
specifier: ^0.7.1
|
||||||
version: 0.7.1
|
version: 0.7.1
|
||||||
commitlint-plugin-function-rules:
|
commitlint-plugin-function-rules:
|
||||||
specifier: ^4.3.2
|
specifier: ^5.0.1
|
||||||
version: 4.3.2
|
version: 5.0.1
|
||||||
consola:
|
consola:
|
||||||
specifier: ^3.4.2
|
specifier: ^3.4.2
|
||||||
version: 3.4.2
|
version: 3.4.2
|
||||||
|
|
@ -343,8 +343,8 @@ catalogs:
|
||||||
specifier: ^1.65.0
|
specifier: ^1.65.0
|
||||||
version: 1.65.0
|
version: 1.65.0
|
||||||
oxlint-tsgolint:
|
oxlint-tsgolint:
|
||||||
specifier: ^0.22.1
|
specifier: ^0.23.0
|
||||||
version: 0.22.1
|
version: 0.23.0
|
||||||
pinia-plugin-persistedstate:
|
pinia-plugin-persistedstate:
|
||||||
specifier: ^4.7.1
|
specifier: ^4.7.1
|
||||||
version: 4.7.1
|
version: 4.7.1
|
||||||
|
|
@ -502,10 +502,10 @@ catalogs:
|
||||||
specifier: ^6.7.1
|
specifier: ^6.7.1
|
||||||
version: 6.7.1
|
version: 6.7.1
|
||||||
vue-tsc:
|
vue-tsc:
|
||||||
specifier: ^3.2.9
|
specifier: ^3.3.0
|
||||||
version: 3.2.9
|
version: 3.3.0
|
||||||
vxe-pc-ui:
|
vxe-pc-ui:
|
||||||
specifier: ^4.14.14
|
specifier: ^4.14.15
|
||||||
version: 4.14.15
|
version: 4.14.15
|
||||||
vxe-table:
|
vxe-table:
|
||||||
specifier: ^4.18.13
|
specifier: ^4.18.13
|
||||||
|
|
@ -602,10 +602,10 @@ importers:
|
||||||
version: 0.50.0
|
version: 0.50.0
|
||||||
oxlint:
|
oxlint:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.65.0(oxlint-tsgolint@0.22.1)
|
version: 1.65.0(oxlint-tsgolint@0.23.0)
|
||||||
oxlint-tsgolint:
|
oxlint-tsgolint:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 0.22.1
|
version: 0.23.0
|
||||||
playwright:
|
playwright:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.60.0
|
version: 1.60.0
|
||||||
|
|
@ -617,7 +617,7 @@ importers:
|
||||||
version: 4.3.0
|
version: 4.3.0
|
||||||
tsdown:
|
tsdown:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.2.9(typescript@6.0.3))
|
version: 0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.3.0(typescript@6.0.3))
|
||||||
turbo:
|
turbo:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 2.9.14
|
version: 2.9.14
|
||||||
|
|
@ -635,7 +635,7 @@ importers:
|
||||||
version: 3.5.34(typescript@6.0.3)
|
version: 3.5.34(typescript@6.0.3)
|
||||||
vue-tsc:
|
vue-tsc:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 3.2.9(typescript@6.0.3)
|
version: 3.3.0(typescript@6.0.3)
|
||||||
|
|
||||||
apps/backend-mock:
|
apps/backend-mock:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -768,7 +768,7 @@ importers:
|
||||||
version: 14.3.0(vue@3.5.34(typescript@6.0.3))
|
version: 14.3.0(vue@3.5.34(typescript@6.0.3))
|
||||||
antdv-next:
|
antdv-next:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.3.0(date-fns@4.2.0)(vue@3.5.34(typescript@6.0.3))
|
version: 1.3.0(date-fns@4.2.1)(vue@3.5.34(typescript@6.0.3))
|
||||||
dayjs:
|
dayjs:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.11.20
|
version: 1.11.20
|
||||||
|
|
@ -997,7 +997,7 @@ importers:
|
||||||
version: link:../packages/styles
|
version: link:../packages/styles
|
||||||
antdv-next:
|
antdv-next:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.3.0(date-fns@4.2.0)(vue@3.5.34(typescript@6.0.3))
|
version: 1.3.0(date-fns@4.2.1)(vue@3.5.34(typescript@6.0.3))
|
||||||
lucide-vue-next:
|
lucide-vue-next:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 0.577.0(vue@3.5.34(typescript@6.0.3))
|
version: 0.577.0(vue@3.5.34(typescript@6.0.3))
|
||||||
|
|
@ -1046,7 +1046,7 @@ importers:
|
||||||
version: link:../../node-utils
|
version: link:../../node-utils
|
||||||
commitlint-plugin-function-rules:
|
commitlint-plugin-function-rules:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 4.3.2(@commitlint/lint@21.0.1)
|
version: 5.0.1(@commitlint/lint@21.0.1)
|
||||||
cz-git:
|
cz-git:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.13.1
|
version: 1.13.1
|
||||||
|
|
@ -1118,13 +1118,13 @@ importers:
|
||||||
version: 4.7.1(eslint@10.4.0(jiti@2.7.0))
|
version: 4.7.1(eslint@10.4.0(jiti@2.7.0))
|
||||||
eslint-plugin-better-tailwindcss:
|
eslint-plugin-better-tailwindcss:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 4.5.0(eslint@10.4.0(jiti@2.7.0))(oxlint@1.65.0(oxlint-tsgolint@0.22.1))(tailwindcss@4.3.0)(typescript@6.0.3)
|
version: 4.5.0(eslint@10.4.0(jiti@2.7.0))(oxlint@1.65.0(oxlint-tsgolint@0.23.0))(tailwindcss@4.3.0)(typescript@6.0.3)
|
||||||
eslint-plugin-command:
|
eslint-plugin-command:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 3.5.2(@typescript-eslint/rule-tester@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.59.3(typescript@6.0.3))(@typescript-eslint/utils@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))
|
version: 3.5.2(@typescript-eslint/rule-tester@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/typescript-estree@8.59.3(typescript@6.0.3))(@typescript-eslint/utils@8.59.3(eslint@10.4.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.4.0(jiti@2.7.0))
|
||||||
oxlint:
|
oxlint:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.65.0(oxlint-tsgolint@0.22.1)
|
version: 1.65.0(oxlint-tsgolint@0.23.0)
|
||||||
|
|
||||||
internal/lint-configs/stylelint-config:
|
internal/lint-configs/stylelint-config:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -2062,7 +2062,7 @@ importers:
|
||||||
version: 14.3.0(vue@3.5.34(typescript@6.0.3))
|
version: 14.3.0(vue@3.5.34(typescript@6.0.3))
|
||||||
antdv-next:
|
antdv-next:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.3.0(date-fns@4.2.0)(vue@3.5.34(typescript@6.0.3))
|
version: 1.3.0(date-fns@4.2.1)(vue@3.5.34(typescript@6.0.3))
|
||||||
dayjs:
|
dayjs:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.11.20
|
version: 1.11.20
|
||||||
|
|
@ -4207,33 +4207,33 @@ packages:
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@oxlint-tsgolint/darwin-arm64@0.22.1':
|
'@oxlint-tsgolint/darwin-arm64@0.23.0':
|
||||||
resolution: {integrity: sha512-4150Lpgc1YM09GcjA6GSrra1JoPjC7aOpfywLjWEY4vW0Sd1qKzqHF1WRaiw0/qUZ40OATYdv3aRd7ipPkWQbw==}
|
resolution: {integrity: sha512-gOs9PVr2wEg4ox9z0aJo+RKhhImW86YL5N6yav8BK/rgPsIrwN/igSZ+pbRr723NFvUNKde9fgMhRA6JrXAOZw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
|
|
||||||
'@oxlint-tsgolint/darwin-x64@0.22.1':
|
'@oxlint-tsgolint/darwin-x64@0.23.0':
|
||||||
resolution: {integrity: sha512-vFWcPWYOgZs4HWcgS1EjUZg33NLcNfEYU49KGImmCfZWkflENrmBYV4HN/C0YeAPum6ZZ/goPSvQrB/cOD+NfA==}
|
resolution: {integrity: sha512-kjJ8B+7n4tB9VJdxS5A9GdJt6/bYpzbu4lXp2uO1S3sRmCB5gDEABlGoiePNApRWaW+xqL4b4xgiE727jSLhuA==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
|
|
||||||
'@oxlint-tsgolint/linux-arm64@0.22.1':
|
'@oxlint-tsgolint/linux-arm64@0.23.0':
|
||||||
resolution: {integrity: sha512-6LiUpP0Zir3+29FvBm7Y28q/dBjSHqTZ5MhG1Ckw4fGhI4cAvbcwXaKvbjx1TP7rRmBNOoq/M5xdpHjTb+GAew==}
|
resolution: {integrity: sha512-6dCZuKNu135seMXilkRk9SpCx6i1XgmiipYGalLij5WVRX6ZYS8c4xI7preN/zv9fCXhsQclTIMDu2Y/cytTjw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@oxlint-tsgolint/linux-x64@0.22.1':
|
'@oxlint-tsgolint/linux-x64@0.23.0':
|
||||||
resolution: {integrity: sha512-fuX1hEQfpHauUbXADsfqVhRzrUrGabzGXbj5wsp2vKhV5uk/Rze8Mba9GdjFGECzvXudMGqHqxB4r6jGRdhxVA==}
|
resolution: {integrity: sha512-3bdilnyA7kmSTjK27rvjIjSxL5SIg3wt7vwNiRkouWB83ytssyKnuGvxSYJxgMEmFpSutzaBzcCUM2jDtPGcgA==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
|
|
||||||
'@oxlint-tsgolint/win32-arm64@0.22.1':
|
'@oxlint-tsgolint/win32-arm64@0.23.0':
|
||||||
resolution: {integrity: sha512-8SZidAj+jrbZf9ZjBEYW0tiNZ+KasqB2zgW26qdiPpQSF/DzURnPmXz651IeA9YsmbVdHGIooEHUmev6QJdquA==}
|
resolution: {integrity: sha512-j+OEp44SVYiQ+ZD+uttsX7u6L9SvmbbQ77SO1pSFCcJlsVMeCk8qZsjhKfGKuT/jIA+ipOJMVs/+pqUfObBWNw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@oxlint-tsgolint/win32-x64@0.22.1':
|
'@oxlint-tsgolint/win32-x64@0.23.0':
|
||||||
resolution: {integrity: sha512-QweSk9H5lFh5Y+WUf2Kq/OAN88V6+62ZwGhP38gqdRotI90luXSMkruFTj7Q2rYrzH4ZVNaSqx7NY8JpSfIzqg==}
|
resolution: {integrity: sha512-5MyjFuqf+g8OUPJBSGWHJtmoWnzFJYyOg4To9WMQshZYEWig/vtu7JtJ03VWnzHv9LJkAUeApY0gVCOywFR/iQ==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
|
|
@ -5820,8 +5820,8 @@ packages:
|
||||||
'@vue/devtools-shared@8.1.2':
|
'@vue/devtools-shared@8.1.2':
|
||||||
resolution: {integrity: sha512-X9RyVFYAdkBe4IUf5v48TxBF/6QPmF8CmWrDAjXzfUHrgQ/HGfTC1A6TqgXqZ03ye66l3AD51BAGD69IvKM9sw==}
|
resolution: {integrity: sha512-X9RyVFYAdkBe4IUf5v48TxBF/6QPmF8CmWrDAjXzfUHrgQ/HGfTC1A6TqgXqZ03ye66l3AD51BAGD69IvKM9sw==}
|
||||||
|
|
||||||
'@vue/language-core@3.2.9':
|
'@vue/language-core@3.3.0':
|
||||||
resolution: {integrity: sha512-ie0ojt/0fU/GfIogh+zgHbaYRPlt9S+cLOxcWwF7nTSFh897BVgnFKL2byT4kpp1mlqYWZ2psGwSniyE2xsxYw==}
|
resolution: {integrity: sha512-EyUxq1b8Yoxk6hQ6X33BIRnfFLb9Rbm9w/8G8y6uMxlQu7CW7yy9JS/z54xSpIvBvVWX6Lt5v1aBGwmrqD4aJw==}
|
||||||
|
|
||||||
'@vue/reactivity@3.5.34':
|
'@vue/reactivity@3.5.34':
|
||||||
resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
|
resolution: {integrity: sha512-y9XDjCEuBp+98k+UL5dbYkh57AHU4o6cxZedOPXw3bmrZZYLQsVHguGurq7hVrPCSrQtrnz1f9dssyFr+dMXfQ==}
|
||||||
|
|
@ -6471,11 +6471,11 @@ packages:
|
||||||
resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==}
|
resolution: {integrity: sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==}
|
||||||
engines: {node: '>= 12.0.0'}
|
engines: {node: '>= 12.0.0'}
|
||||||
|
|
||||||
commitlint-plugin-function-rules@4.3.2:
|
commitlint-plugin-function-rules@5.0.1:
|
||||||
resolution: {integrity: sha512-UrJfHj7jRislz5qWkBj0mp2EHaFT1LwDdG8uOTofWK/jf84EmNMjmDD+9M6eyrfrgLorTAN3/veRMU0D/vb7CQ==}
|
resolution: {integrity: sha512-AC8fH83A+soNq9VKTlLptkbg8Zpfx88ng9hKzdiJ0N+GoYgWTWNt6yFA3zEZ0qy3ekQ4Paf1slkaH1UKWRLUvg==}
|
||||||
engines: {node: '>=20'}
|
engines: {node: '>=22'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@commitlint/lint': '>=19 <21'
|
'@commitlint/lint': '>=19 <22'
|
||||||
|
|
||||||
common-tags@1.8.2:
|
common-tags@1.8.2:
|
||||||
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
|
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
|
||||||
|
|
@ -6725,8 +6725,8 @@ packages:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
date-fns: ^3.0.0 || ^4.0.0
|
date-fns: ^3.0.0 || ^4.0.0
|
||||||
|
|
||||||
date-fns@4.2.0:
|
date-fns@4.2.1:
|
||||||
resolution: {integrity: sha512-Xztieol+KNB9MxhgS6v44YZt0xa8DN7CtKQCvHLwVE8/AaKv2eYiAACaJ9bHgCbOhfSigA3D7FRgXRLa/eZVpA==}
|
resolution: {integrity: sha512-37RhSdxaG1suen6VDCza6rNrQfooyQh57HFVPwQGEq2QWliVLzPQZ8Oa017weOu+HZCnzI7N3Pf/wyoBKfEqrA==}
|
||||||
|
|
||||||
dayjs@1.11.20:
|
dayjs@1.11.20:
|
||||||
resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
|
resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
|
||||||
|
|
@ -8808,8 +8808,8 @@ packages:
|
||||||
svelte:
|
svelte:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
oxlint-tsgolint@0.22.1:
|
oxlint-tsgolint@0.23.0:
|
||||||
resolution: {integrity: sha512-YUSGSLUnoolsu8gxISEDio3q1rtsCozwfOzASUn3DT2mR2EeQ93uEEnen7s+6LpF+lyTQFln1pQfqwBh/fsVEg==}
|
resolution: {integrity: sha512-3mBv3CoPbh8dFbzfDGIWa2ytZjn2v+3EX4aKRXjIhsoGFzG8GCjfRirz3rwZf1wYbZzsNLTSgpw8VjQuWdp/jA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
oxlint@1.65.0:
|
oxlint@1.65.0:
|
||||||
|
|
@ -9157,8 +9157,8 @@ packages:
|
||||||
prosemirror-keymap@1.2.3:
|
prosemirror-keymap@1.2.3:
|
||||||
resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
|
resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
|
||||||
|
|
||||||
prosemirror-model@1.25.6:
|
prosemirror-model@1.25.7:
|
||||||
resolution: {integrity: sha512-RIm+e9BiqAaJ1mRECv3vR3C+VG8ELoTTI+47tVudGi82yLnFOx3G/p/iSPK1HmHQdKhkkrJ68NJqxh7S+FBVmQ==}
|
resolution: {integrity: sha512-A79aN8QEFUwI6cax8Yq4Rpcx1TJZ3Kagn+ii7qLo4/V8H3mMiHrhFyhTyHHvpSnOgMPpWiDGSwM3etwrxE50ug==}
|
||||||
|
|
||||||
prosemirror-schema-list@1.5.1:
|
prosemirror-schema-list@1.5.1:
|
||||||
resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==}
|
resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==}
|
||||||
|
|
@ -10731,8 +10731,8 @@ packages:
|
||||||
vscode-uri@3.1.0:
|
vscode-uri@3.1.0:
|
||||||
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
|
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
|
||||||
|
|
||||||
vue-component-type-helpers@3.2.9:
|
vue-component-type-helpers@3.3.0:
|
||||||
resolution: {integrity: sha512-S3BiWYaLSzHxTpln665ELSrMR9UYmrIDUmhik7nVZxmJjTKL2/a+ew1hvGxksKelivm0ujjWfG1fYOiU/2e8rA==}
|
resolution: {integrity: sha512-vwR8DDsBysI9NWXa0okPFpCcW+BUC3sPTuLBNo1faMzw4QWMFd+3/lFYFu29ZN0q+8UReXWJHEYesC9dcXYCLg==}
|
||||||
|
|
||||||
vue-demi@0.14.10:
|
vue-demi@0.14.10:
|
||||||
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
|
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
|
||||||
|
|
@ -10782,8 +10782,8 @@ packages:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.5.34
|
vue: ^3.5.34
|
||||||
|
|
||||||
vue-tsc@3.2.9:
|
vue-tsc@3.3.0:
|
||||||
resolution: {integrity: sha512-qm8/nbo+9eZc1SCndm9wT+gq23pM+wRIdHY0wjm83B3lIginHTwcdrLUyTrKjDWXbMVNjKegNrnymhpdqnCL3A==}
|
resolution: {integrity: sha512-kY8RcoTOENASi0P1GLPvJgA2+hoGF+t8We1UGgmnAb1r/GjTUMSE3zz+WGfjPORZNnBHdAt67sVPhBLXWunkeg==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=5.0.0'
|
typescript: '>=5.0.0'
|
||||||
|
|
@ -13139,7 +13139,7 @@ snapshots:
|
||||||
'@iconify-json/octicon': 1.2.24
|
'@iconify-json/octicon': 1.2.24
|
||||||
'@nolebase/ui': 2.18.2(vitepress@2.0.0-alpha.17(@types/node@25.8.0)(async-validator@4.2.5)(axios@1.16.1)(change-case@5.4.4)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.14)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(sortablejs@1.15.7)(terser@5.47.1)(typescript@6.0.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
|
'@nolebase/ui': 2.18.2(vitepress@2.0.0-alpha.17(@types/node@25.8.0)(async-validator@4.2.5)(axios@1.16.1)(change-case@5.4.4)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.32.0)(nprogress@0.2.0)(postcss@8.5.14)(qrcode@1.5.4)(sass-embedded@1.99.0)(sass@1.99.0)(sortablejs@1.15.7)(terser@5.47.1)(typescript@6.0.3)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
|
||||||
colorette: 2.0.20
|
colorette: 2.0.20
|
||||||
date-fns: 4.2.0
|
date-fns: 4.2.1
|
||||||
defu: 6.1.7
|
defu: 6.1.7
|
||||||
es-toolkit: 1.46.1
|
es-toolkit: 1.46.1
|
||||||
execa: 9.6.1
|
execa: 9.6.1
|
||||||
|
|
@ -13266,22 +13266,22 @@ snapshots:
|
||||||
'@oxfmt/binding-win32-x64-msvc@0.50.0':
|
'@oxfmt/binding-win32-x64-msvc@0.50.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/darwin-arm64@0.22.1':
|
'@oxlint-tsgolint/darwin-arm64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/darwin-x64@0.22.1':
|
'@oxlint-tsgolint/darwin-x64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/linux-arm64@0.22.1':
|
'@oxlint-tsgolint/linux-arm64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/linux-x64@0.22.1':
|
'@oxlint-tsgolint/linux-x64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/win32-arm64@0.22.1':
|
'@oxlint-tsgolint/win32-arm64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint-tsgolint/win32-x64@0.22.1':
|
'@oxlint-tsgolint/win32-x64@0.23.0':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@oxlint/binding-android-arm-eabi@1.65.0':
|
'@oxlint/binding-android-arm-eabi@1.65.0':
|
||||||
|
|
@ -13983,7 +13983,7 @@ snapshots:
|
||||||
prosemirror-gapcursor: 1.4.1
|
prosemirror-gapcursor: 1.4.1
|
||||||
prosemirror-history: 1.5.0
|
prosemirror-history: 1.5.0
|
||||||
prosemirror-keymap: 1.2.3
|
prosemirror-keymap: 1.2.3
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-schema-list: 1.5.1
|
prosemirror-schema-list: 1.5.1
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-tables: 1.8.5
|
prosemirror-tables: 1.8.5
|
||||||
|
|
@ -14039,7 +14039,7 @@ snapshots:
|
||||||
lightningcss: 1.32.0
|
lightningcss: 1.32.0
|
||||||
postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.14)(yaml@2.9.0)
|
postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.14)(yaml@2.9.0)
|
||||||
rolldown: 1.0.1
|
rolldown: 1.0.1
|
||||||
tsdown: 0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.2.9(typescript@6.0.3))
|
tsdown: 0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.3.0(typescript@6.0.3))
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
postcss: 8.5.14
|
postcss: 8.5.14
|
||||||
sass: 1.99.0
|
sass: 1.99.0
|
||||||
|
|
@ -14381,7 +14381,7 @@ snapshots:
|
||||||
'@v-c/util': 1.0.19(vue@3.5.34(typescript@6.0.3))
|
'@v-c/util': 1.0.19(vue@3.5.34(typescript@6.0.3))
|
||||||
vue: 3.5.34(typescript@6.0.3)
|
vue: 3.5.34(typescript@6.0.3)
|
||||||
|
|
||||||
'@v-c/picker@1.1.0(date-fns@4.2.0)(dayjs@1.11.20)(vue@3.5.34(typescript@6.0.3))':
|
'@v-c/picker@1.1.0(date-fns@4.2.1)(dayjs@1.11.20)(vue@3.5.34(typescript@6.0.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@v-c/overflow': 1.1.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/overflow': 1.1.0(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/resize-observer': 1.1.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/resize-observer': 1.1.0(vue@3.5.34(typescript@6.0.3))
|
||||||
|
|
@ -14389,7 +14389,7 @@ snapshots:
|
||||||
'@v-c/util': 1.0.19(vue@3.5.34(typescript@6.0.3))
|
'@v-c/util': 1.0.19(vue@3.5.34(typescript@6.0.3))
|
||||||
vue: 3.5.34(typescript@6.0.3)
|
vue: 3.5.34(typescript@6.0.3)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
date-fns: 4.2.0
|
date-fns: 4.2.1
|
||||||
dayjs: 1.11.20
|
dayjs: 1.11.20
|
||||||
|
|
||||||
'@v-c/portal@1.0.8(vue@3.5.34(typescript@6.0.3))':
|
'@v-c/portal@1.0.8(vue@3.5.34(typescript@6.0.3))':
|
||||||
|
|
@ -14772,7 +14772,7 @@ snapshots:
|
||||||
|
|
||||||
'@vue/devtools-shared@8.1.2': {}
|
'@vue/devtools-shared@8.1.2': {}
|
||||||
|
|
||||||
'@vue/language-core@3.2.9':
|
'@vue/language-core@3.3.0':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@volar/language-core': 2.4.28
|
'@volar/language-core': 2.4.28
|
||||||
'@vue/compiler-dom': 3.5.34
|
'@vue/compiler-dom': 3.5.34
|
||||||
|
|
@ -14811,7 +14811,7 @@ snapshots:
|
||||||
'@vue/compiler-dom': 3.5.34
|
'@vue/compiler-dom': 3.5.34
|
||||||
js-beautify: 1.15.4
|
js-beautify: 1.15.4
|
||||||
vue: 3.5.34(typescript@6.0.3)
|
vue: 3.5.34(typescript@6.0.3)
|
||||||
vue-component-type-helpers: 3.2.9
|
vue-component-type-helpers: 3.3.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@6.0.3))
|
'@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@6.0.3))
|
||||||
|
|
||||||
|
|
@ -14965,7 +14965,7 @@ snapshots:
|
||||||
vue-types: 3.0.2(vue@3.5.34(typescript@6.0.3))
|
vue-types: 3.0.2(vue@3.5.34(typescript@6.0.3))
|
||||||
warning: 4.0.3
|
warning: 4.0.3
|
||||||
|
|
||||||
antdv-next@1.3.0(date-fns@4.2.0)(vue@3.5.34(typescript@6.0.3)):
|
antdv-next@1.3.0(date-fns@4.2.1)(vue@3.5.34(typescript@6.0.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@ant-design/colors': 8.0.1
|
'@ant-design/colors': 8.0.1
|
||||||
'@ant-design/fast-color': 3.0.1
|
'@ant-design/fast-color': 3.0.1
|
||||||
|
|
@ -14987,7 +14987,7 @@ snapshots:
|
||||||
'@v-c/mutate-observer': 1.0.1(vue@3.5.34(typescript@6.0.3))
|
'@v-c/mutate-observer': 1.0.1(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/notification': 2.0.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/notification': 2.0.0(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/pagination': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/pagination': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/picker': 1.1.0(date-fns@4.2.0)(dayjs@1.11.20)(vue@3.5.34(typescript@6.0.3))
|
'@v-c/picker': 1.1.0(date-fns@4.2.1)(dayjs@1.11.20)(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/progress': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/progress': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/qrcode': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
'@v-c/qrcode': 1.0.0(vue@3.5.34(typescript@6.0.3))
|
||||||
'@v-c/rate': 1.0.1(vue@3.5.34(typescript@6.0.3))
|
'@v-c/rate': 1.0.1(vue@3.5.34(typescript@6.0.3))
|
||||||
|
|
@ -15502,7 +15502,7 @@ snapshots:
|
||||||
|
|
||||||
comment-parser@1.4.5: {}
|
comment-parser@1.4.5: {}
|
||||||
|
|
||||||
commitlint-plugin-function-rules@4.3.2(@commitlint/lint@21.0.1):
|
commitlint-plugin-function-rules@5.0.1(@commitlint/lint@21.0.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@commitlint/lint': 21.0.1
|
'@commitlint/lint': 21.0.1
|
||||||
|
|
||||||
|
|
@ -15791,11 +15791,11 @@ snapshots:
|
||||||
|
|
||||||
dataloader@1.4.0: {}
|
dataloader@1.4.0: {}
|
||||||
|
|
||||||
date-fns-tz@3.2.0(date-fns@4.2.0):
|
date-fns-tz@3.2.0(date-fns@4.2.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
date-fns: 4.2.0
|
date-fns: 4.2.1
|
||||||
|
|
||||||
date-fns@4.2.0: {}
|
date-fns@4.2.1: {}
|
||||||
|
|
||||||
dayjs@1.11.20: {}
|
dayjs@1.11.20: {}
|
||||||
|
|
||||||
|
|
@ -15994,7 +15994,7 @@ snapshots:
|
||||||
memoize-one: 6.0.0
|
memoize-one: 6.0.0
|
||||||
normalize-wheel-es: 1.2.0
|
normalize-wheel-es: 1.2.0
|
||||||
vue: 3.5.34(typescript@6.0.3)
|
vue: 3.5.34(typescript@6.0.3)
|
||||||
vue-component-type-helpers: 3.2.9
|
vue-component-type-helpers: 3.3.0
|
||||||
|
|
||||||
emoji-regex@10.6.0: {}
|
emoji-regex@10.6.0: {}
|
||||||
|
|
||||||
|
|
@ -16252,7 +16252,7 @@ snapshots:
|
||||||
esquery: 1.7.0
|
esquery: 1.7.0
|
||||||
jsonc-eslint-parser: 3.1.0
|
jsonc-eslint-parser: 3.1.0
|
||||||
|
|
||||||
eslint-plugin-better-tailwindcss@4.5.0(eslint@10.4.0(jiti@2.7.0))(oxlint@1.65.0(oxlint-tsgolint@0.22.1))(tailwindcss@4.3.0)(typescript@6.0.3):
|
eslint-plugin-better-tailwindcss@4.5.0(eslint@10.4.0(jiti@2.7.0))(oxlint@1.65.0(oxlint-tsgolint@0.23.0))(tailwindcss@4.3.0)(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint/css-tree': 4.0.3
|
'@eslint/css-tree': 4.0.3
|
||||||
'@valibot/to-json-schema': 1.7.0(valibot@1.4.0(typescript@6.0.3))
|
'@valibot/to-json-schema': 1.7.0(valibot@1.4.0(typescript@6.0.3))
|
||||||
|
|
@ -16265,7 +16265,7 @@ snapshots:
|
||||||
valibot: 1.4.0(typescript@6.0.3)
|
valibot: 1.4.0(typescript@6.0.3)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint: 10.4.0(jiti@2.7.0)
|
eslint: 10.4.0(jiti@2.7.0)
|
||||||
oxlint: 1.65.0(oxlint-tsgolint@0.22.1)
|
oxlint: 1.65.0(oxlint-tsgolint@0.23.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@eslint/css'
|
- '@eslint/css'
|
||||||
- typescript
|
- typescript
|
||||||
|
|
@ -17824,8 +17824,8 @@ snapshots:
|
||||||
async-validator: 4.2.5
|
async-validator: 4.2.5
|
||||||
css-render: 0.15.14
|
css-render: 0.15.14
|
||||||
csstype: 3.2.3
|
csstype: 3.2.3
|
||||||
date-fns: 4.2.0
|
date-fns: 4.2.1
|
||||||
date-fns-tz: 3.2.0(date-fns@4.2.0)
|
date-fns-tz: 3.2.0(date-fns@4.2.1)
|
||||||
evtd: 0.2.4
|
evtd: 0.2.4
|
||||||
highlight.js: 11.11.1
|
highlight.js: 11.11.1
|
||||||
lodash: 4.18.1
|
lodash: 4.18.1
|
||||||
|
|
@ -18110,16 +18110,16 @@ snapshots:
|
||||||
'@oxfmt/binding-win32-ia32-msvc': 0.50.0
|
'@oxfmt/binding-win32-ia32-msvc': 0.50.0
|
||||||
'@oxfmt/binding-win32-x64-msvc': 0.50.0
|
'@oxfmt/binding-win32-x64-msvc': 0.50.0
|
||||||
|
|
||||||
oxlint-tsgolint@0.22.1:
|
oxlint-tsgolint@0.23.0:
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@oxlint-tsgolint/darwin-arm64': 0.22.1
|
'@oxlint-tsgolint/darwin-arm64': 0.23.0
|
||||||
'@oxlint-tsgolint/darwin-x64': 0.22.1
|
'@oxlint-tsgolint/darwin-x64': 0.23.0
|
||||||
'@oxlint-tsgolint/linux-arm64': 0.22.1
|
'@oxlint-tsgolint/linux-arm64': 0.23.0
|
||||||
'@oxlint-tsgolint/linux-x64': 0.22.1
|
'@oxlint-tsgolint/linux-x64': 0.23.0
|
||||||
'@oxlint-tsgolint/win32-arm64': 0.22.1
|
'@oxlint-tsgolint/win32-arm64': 0.23.0
|
||||||
'@oxlint-tsgolint/win32-x64': 0.22.1
|
'@oxlint-tsgolint/win32-x64': 0.23.0
|
||||||
|
|
||||||
oxlint@1.65.0(oxlint-tsgolint@0.22.1):
|
oxlint@1.65.0(oxlint-tsgolint@0.23.0):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@oxlint/binding-android-arm-eabi': 1.65.0
|
'@oxlint/binding-android-arm-eabi': 1.65.0
|
||||||
'@oxlint/binding-android-arm64': 1.65.0
|
'@oxlint/binding-android-arm64': 1.65.0
|
||||||
|
|
@ -18140,7 +18140,7 @@ snapshots:
|
||||||
'@oxlint/binding-win32-arm64-msvc': 1.65.0
|
'@oxlint/binding-win32-arm64-msvc': 1.65.0
|
||||||
'@oxlint/binding-win32-ia32-msvc': 1.65.0
|
'@oxlint/binding-win32-ia32-msvc': 1.65.0
|
||||||
'@oxlint/binding-win32-x64-msvc': 1.65.0
|
'@oxlint/binding-win32-x64-msvc': 1.65.0
|
||||||
oxlint-tsgolint: 0.22.1
|
oxlint-tsgolint: 0.23.0
|
||||||
|
|
||||||
p-filter@2.1.0:
|
p-filter@2.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -18409,7 +18409,7 @@ snapshots:
|
||||||
|
|
||||||
prosemirror-commands@1.7.1:
|
prosemirror-commands@1.7.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-transform: 1.12.0
|
prosemirror-transform: 1.12.0
|
||||||
|
|
||||||
|
|
@ -18422,7 +18422,7 @@ snapshots:
|
||||||
prosemirror-gapcursor@1.4.1:
|
prosemirror-gapcursor@1.4.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-keymap: 1.2.3
|
prosemirror-keymap: 1.2.3
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-view: 1.41.8
|
prosemirror-view: 1.41.8
|
||||||
|
|
||||||
|
|
@ -18438,37 +18438,37 @@ snapshots:
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
w3c-keyname: 2.2.8
|
w3c-keyname: 2.2.8
|
||||||
|
|
||||||
prosemirror-model@1.25.6:
|
prosemirror-model@1.25.7:
|
||||||
dependencies:
|
dependencies:
|
||||||
orderedmap: 2.1.1
|
orderedmap: 2.1.1
|
||||||
|
|
||||||
prosemirror-schema-list@1.5.1:
|
prosemirror-schema-list@1.5.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-transform: 1.12.0
|
prosemirror-transform: 1.12.0
|
||||||
|
|
||||||
prosemirror-state@1.4.4:
|
prosemirror-state@1.4.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-transform: 1.12.0
|
prosemirror-transform: 1.12.0
|
||||||
prosemirror-view: 1.41.8
|
prosemirror-view: 1.41.8
|
||||||
|
|
||||||
prosemirror-tables@1.8.5:
|
prosemirror-tables@1.8.5:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-keymap: 1.2.3
|
prosemirror-keymap: 1.2.3
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-transform: 1.12.0
|
prosemirror-transform: 1.12.0
|
||||||
prosemirror-view: 1.41.8
|
prosemirror-view: 1.41.8
|
||||||
|
|
||||||
prosemirror-transform@1.12.0:
|
prosemirror-transform@1.12.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
|
|
||||||
prosemirror-view@1.41.8:
|
prosemirror-view@1.41.8:
|
||||||
dependencies:
|
dependencies:
|
||||||
prosemirror-model: 1.25.6
|
prosemirror-model: 1.25.7
|
||||||
prosemirror-state: 1.4.4
|
prosemirror-state: 1.4.4
|
||||||
prosemirror-transform: 1.12.0
|
prosemirror-transform: 1.12.0
|
||||||
|
|
||||||
|
|
@ -18701,7 +18701,7 @@ snapshots:
|
||||||
glob: 13.0.6
|
glob: 13.0.6
|
||||||
package-json-from-dist: 1.0.1
|
package-json-from-dist: 1.0.1
|
||||||
|
|
||||||
rolldown-plugin-dts@0.25.1(rolldown@1.0.1)(typescript@6.0.3)(vue-tsc@3.2.9(typescript@6.0.3)):
|
rolldown-plugin-dts@0.25.1(rolldown@1.0.1)(typescript@6.0.3)(vue-tsc@3.3.0(typescript@6.0.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/generator': 8.0.0-rc.5
|
'@babel/generator': 8.0.0-rc.5
|
||||||
'@babel/helper-validator-identifier': 8.0.0-rc.5
|
'@babel/helper-validator-identifier': 8.0.0-rc.5
|
||||||
|
|
@ -18714,7 +18714,7 @@ snapshots:
|
||||||
rolldown: 1.0.1
|
rolldown: 1.0.1
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
vue-tsc: 3.2.9(typescript@6.0.3)
|
vue-tsc: 3.3.0(typescript@6.0.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- oxc-resolver
|
- oxc-resolver
|
||||||
|
|
||||||
|
|
@ -19568,7 +19568,7 @@ snapshots:
|
||||||
minimist: 1.2.8
|
minimist: 1.2.8
|
||||||
strip-bom: 3.0.0
|
strip-bom: 3.0.0
|
||||||
|
|
||||||
tsdown@0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.2.9(typescript@6.0.3)):
|
tsdown@0.22.0(@tsdown/css@0.22.0)(publint@0.3.21)(typescript@6.0.3)(vue-tsc@3.3.0(typescript@6.0.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
ansis: 4.3.0
|
ansis: 4.3.0
|
||||||
cac: 7.0.0
|
cac: 7.0.0
|
||||||
|
|
@ -19579,7 +19579,7 @@ snapshots:
|
||||||
obug: 2.1.1
|
obug: 2.1.1
|
||||||
picomatch: 4.0.4
|
picomatch: 4.0.4
|
||||||
rolldown: 1.0.1
|
rolldown: 1.0.1
|
||||||
rolldown-plugin-dts: 0.25.1(rolldown@1.0.1)(typescript@6.0.3)(vue-tsc@3.2.9(typescript@6.0.3))
|
rolldown-plugin-dts: 0.25.1(rolldown@1.0.1)(typescript@6.0.3)(vue-tsc@3.3.0(typescript@6.0.3))
|
||||||
semver: 7.8.0
|
semver: 7.8.0
|
||||||
tinyexec: 1.1.2
|
tinyexec: 1.1.2
|
||||||
tinyglobby: 0.2.16
|
tinyglobby: 0.2.16
|
||||||
|
|
@ -20135,7 +20135,7 @@ snapshots:
|
||||||
|
|
||||||
vscode-uri@3.1.0: {}
|
vscode-uri@3.1.0: {}
|
||||||
|
|
||||||
vue-component-type-helpers@3.2.9: {}
|
vue-component-type-helpers@3.3.0: {}
|
||||||
|
|
||||||
vue-demi@0.14.10(vue@3.5.34(typescript@6.0.3)):
|
vue-demi@0.14.10(vue@3.5.34(typescript@6.0.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -20195,10 +20195,10 @@ snapshots:
|
||||||
tippy.js: 6.3.7
|
tippy.js: 6.3.7
|
||||||
vue: 3.5.34(typescript@6.0.3)
|
vue: 3.5.34(typescript@6.0.3)
|
||||||
|
|
||||||
vue-tsc@3.2.9(typescript@6.0.3):
|
vue-tsc@3.3.0(typescript@6.0.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@volar/typescript': 2.4.28
|
'@volar/typescript': 2.4.28
|
||||||
'@vue/language-core': 3.2.9
|
'@vue/language-core': 3.3.0
|
||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
|
|
||||||
vue-types@3.0.2(vue@3.5.34(typescript@6.0.3)):
|
vue-types@3.0.2(vue@3.5.34(typescript@6.0.3)):
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@ catalog:
|
||||||
circular-dependency-scanner: ^3.0.1
|
circular-dependency-scanner: ^3.0.1
|
||||||
class-variance-authority: ^0.7.1
|
class-variance-authority: ^0.7.1
|
||||||
clsx: ^2.1.1
|
clsx: ^2.1.1
|
||||||
commitlint-plugin-function-rules: ^4.3.2
|
commitlint-plugin-function-rules: ^5.0.1
|
||||||
consola: ^3.4.2
|
consola: ^3.4.2
|
||||||
cross-env: ^10.1.0
|
cross-env: ^10.1.0
|
||||||
cspell: ^10.0.0
|
cspell: ^10.0.0
|
||||||
|
|
@ -151,7 +151,7 @@ catalog:
|
||||||
ora: ^9.4.0
|
ora: ^9.4.0
|
||||||
oxfmt: ^0.50.0
|
oxfmt: ^0.50.0
|
||||||
oxlint: ^1.65.0
|
oxlint: ^1.65.0
|
||||||
oxlint-tsgolint: ^0.22.1
|
oxlint-tsgolint: ^0.23.0
|
||||||
pinia: ^3.0.4
|
pinia: ^3.0.4
|
||||||
pinia-plugin-persistedstate: ^4.7.1
|
pinia-plugin-persistedstate: ^4.7.1
|
||||||
pkg-types: ^2.3.1
|
pkg-types: ^2.3.1
|
||||||
|
|
@ -206,8 +206,8 @@ catalog:
|
||||||
vue-json-viewer: ^3.0.4
|
vue-json-viewer: ^3.0.4
|
||||||
vue-router: ^5.0.7
|
vue-router: ^5.0.7
|
||||||
vue-tippy: ^6.7.1
|
vue-tippy: ^6.7.1
|
||||||
vue-tsc: ^3.2.9
|
vue-tsc: ^3.3.0
|
||||||
vxe-pc-ui: ^4.14.14
|
vxe-pc-ui: ^4.14.15
|
||||||
vxe-table: ^4.18.13
|
vxe-table: ^4.18.13
|
||||||
watermark-js-plus: ^1.6.3
|
watermark-js-plus: ^1.6.3
|
||||||
yaml-eslint-parser: ^2.0.0
|
yaml-eslint-parser: ^2.0.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue