Skip to content

Commit ff521c3

Browse files
authored
🎊 chore: upgrade deps (#70)
1 parent 5a1720a commit ff521c3

File tree

5 files changed

+1316
-1293
lines changed

5 files changed

+1316
-1293
lines changed

.eslintrc-auto-import.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"isRef": true,
7171
"isShallow": true,
7272
"makeDestructurable": true,
73+
"manualResetRef": true,
7374
"markRaw": true,
7475
"nextTick": true,
7576
"onActivated": true,
@@ -107,12 +108,12 @@
107108
"refAutoReset": true,
108109
"refDebounced": true,
109110
"refDefault": true,
111+
"refManualReset": true,
110112
"refThrottled": true,
111113
"refWithControl": true,
112114
"render": true,
113115
"resolveComponent": true,
114116
"resolveRef": true,
115-
"resolveUnref": true,
116117
"shallowReactive": true,
117118
"shallowReadonly": true,
118119
"shallowRef": true,

auto-imports.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ declare global {
5252
const isRef: typeof import('vue').isRef
5353
const isShallow: typeof import('vue').isShallow
5454
const makeDestructurable: typeof import('@vueuse/core').makeDestructurable
55+
const manualResetRef: typeof import('@vueuse/core').manualResetRef
5556
const markRaw: typeof import('vue').markRaw
5657
const nextTick: typeof import('vue').nextTick
5758
const onActivated: typeof import('vue').onActivated
@@ -89,6 +90,7 @@ declare global {
8990
const refAutoReset: typeof import('@vueuse/core').refAutoReset
9091
const refDebounced: typeof import('@vueuse/core').refDebounced
9192
const refDefault: typeof import('@vueuse/core').refDefault
93+
const refManualReset: typeof import('@vueuse/core').refManualReset
9294
const refThrottled: typeof import('@vueuse/core').refThrottled
9395
const refWithControl: typeof import('@vueuse/core').refWithControl
9496
const render: typeof import('vue').render
@@ -376,6 +378,7 @@ declare module 'vue' {
376378
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
377379
readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
378380
readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
381+
readonly manualResetRef: UnwrapRef<typeof import('@vueuse/core')['manualResetRef']>
379382
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
380383
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
381384
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
@@ -413,12 +416,12 @@ declare module 'vue' {
413416
readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
414417
readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
415418
readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
419+
readonly refManualReset: UnwrapRef<typeof import('@vueuse/core')['refManualReset']>
416420
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
417421
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
418422
readonly render: UnwrapRef<typeof import('vue')['render']>
419423
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
420424
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
421-
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
422425
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
423426
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
424427
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>

components.d.ts

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/* eslint-disable */
22
// @ts-nocheck
3+
// biome-ignore lint: disable
4+
// oxlint-disable
5+
// ------
36
// Generated by unplugin-vue-components
47
// Read more: https://github.com/vuejs/core/pull/3399
5-
// biome-ignore lint: disable
8+
import { GlobalComponents } from 'vue'
9+
610
export {}
711

812
/* prettier-ignore */
@@ -46,3 +50,43 @@ declare module 'vue' {
4650
TableList: typeof import('./src/components/TableList/index.vue')['default']
4751
}
4852
}
53+
54+
// For TSX support
55+
declare global {
56+
const 404: typeof import('./src/components/404.vue')['default']
57+
const ClipBoard: typeof import('./src/components/ClipBoard/index.vue')['default']
58+
const CustomTooltip: typeof import('./src/components/CustomTooltip/index.vue')['default']
59+
const IconFont: typeof import('./src/components/IconFont/index.vue')['default']
60+
const IconifyIcon: typeof import('./src/components/IconifyIcon/index.vue')['default']
61+
const LayoutCenterPanel: typeof import('./src/components/Layout/CenterPanel.vue')['default']
62+
const LayoutDefault: typeof import('./src/components/Layout/default.vue')['default']
63+
const LayoutSlotArea: typeof import('./src/components/Layout/SlotArea.vue')['default']
64+
const LayoutSlotCenterPanel: typeof import('./src/components/Layout/SlotCenterPanel.vue')['default']
65+
const LayoutSlotFrame: typeof import('./src/components/Layout/SlotFrame.vue')['default']
66+
const MarkdownPreview: typeof import('./src/components/MarkdownPreview/index.vue')['default']
67+
const NavigationNavBar: typeof import('./src/components/Navigation/NavBar.vue')['default']
68+
const NavigationNavFooter: typeof import('./src/components/Navigation/NavFooter.vue')['default']
69+
const NavigationNavOctocat: typeof import('./src/components/Navigation/NavOctocat.vue')['default']
70+
const NavigationNavSideBar: typeof import('./src/components/Navigation/NavSideBar.vue')['default']
71+
const NButton: typeof import('naive-ui')['NButton']
72+
const NConfigProvider: typeof import('naive-ui')['NConfigProvider']
73+
const NDialogProvider: typeof import('naive-ui')['NDialogProvider']
74+
const NEllipsis: typeof import('naive-ui')['NEllipsis']
75+
const NEmpty: typeof import('naive-ui')['NEmpty']
76+
const NFloatButton: typeof import('naive-ui')['NFloatButton']
77+
const NIcon: typeof import('naive-ui')['NIcon']
78+
const NInput: typeof import('naive-ui')['NInput']
79+
const NLoadingBarProvider: typeof import('naive-ui')['NLoadingBarProvider']
80+
const NMessageProvider: typeof import('naive-ui')['NMessageProvider']
81+
const NNotificationProvider: typeof import('naive-ui')['NNotificationProvider']
82+
const NResult: typeof import('naive-ui')['NResult']
83+
const NSelect: typeof import('naive-ui')['NSelect']
84+
const NSpace: typeof import('naive-ui')['NSpace']
85+
const NSpin: typeof import('naive-ui')['NSpin']
86+
const NTooltip: typeof import('naive-ui')['NTooltip']
87+
const Pagination: typeof import('./src/components/Pagination/index.vue')['default']
88+
const RouterLink: typeof import('vue-router')['RouterLink']
89+
const RouterView: typeof import('vue-router')['RouterView']
90+
const SideBarItem: typeof import('./src/components/SideBar/Item.vue')['default']
91+
const TableList: typeof import('./src/components/TableList/index.vue')['default']
92+
}

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -29,49 +29,49 @@
2929
},
3030
"dependencies": {
3131
"@nzoth/toolkit": "^0.0.4",
32-
"@vueuse/core": "^13.9.0",
33-
"axios": "1.12.2",
32+
"@vueuse/core": "^14.0.0",
33+
"axios": "1.13.2",
3434
"dompurify": "^3.3.0",
3535
"js-cookie": "^3.0.5",
3636
"lodash-es": "^4.17.21",
37-
"marked": "^16.4.0",
38-
"naive-ui": "^2.43.1",
37+
"marked": "^17.0.1",
38+
"naive-ui": "^2.43.2",
3939
"nprogress": "^0.2.0",
40-
"pinia": "^3.0.3",
40+
"pinia": "^3.0.4",
4141
"uuid": "^13.0.0",
4242
"vfile": "^6.0.3",
43-
"vue": "^3.5.22",
44-
"vue-router": "^4.6.2"
43+
"vue": "^3.5.24",
44+
"vue-router": "^4.6.3"
4545
},
4646
"devDependencies": {
47-
"@babel/core": "^7.28.4",
48-
"@babel/preset-env": "^7.28.3",
49-
"@eslint/js": "^9.37.0",
50-
"@iconify/json": "^2.2.395",
47+
"@babel/core": "^7.28.5",
48+
"@babel/preset-env": "^7.28.5",
49+
"@eslint/js": "^9.39.1",
50+
"@iconify/json": "^2.2.409",
5151
"@iconify/vue": "^5.0.0",
52-
"@stylistic/eslint-plugin": "^5.4.0",
52+
"@stylistic/eslint-plugin": "^5.6.1",
5353
"@stylistic/stylelint-plugin": "^4.0.0",
5454
"@types/js-cookie": "^3.0.6",
5555
"@types/lodash-es": "^4.17.12",
5656
"@types/markdown-it": "^14.1.2",
57-
"@types/node": "^24.7.2",
57+
"@types/node": "^24.10.1",
5858
"@types/nprogress": "^0.2.3",
59-
"@typescript-eslint/eslint-plugin": "^8.46.1",
60-
"@typescript-eslint/parser": "^8.46.1",
61-
"@unocss/preset-icons": "66.5.4",
62-
"@unocss/preset-rem-to-px": "66.5.4",
63-
"@vitejs/plugin-vue": "^6.0.1",
64-
"@vitejs/plugin-vue-jsx": "^5.1.1",
59+
"@typescript-eslint/eslint-plugin": "^8.47.0",
60+
"@typescript-eslint/parser": "^8.47.0",
61+
"@unocss/preset-icons": "66.5.9",
62+
"@unocss/preset-rem-to-px": "66.5.9",
63+
"@vitejs/plugin-vue": "^6.0.2",
64+
"@vitejs/plugin-vue-jsx": "^5.1.2",
6565
"@vscode/markdown-it-katex": "~1.1.2",
6666
"@vue/babel-plugin-jsx": "^2.0.1",
67-
"@vue/compiler-sfc": "^3.5.22",
67+
"@vue/compiler-sfc": "^3.5.24",
6868
"cross-env": "^10.1.0",
6969
"crypto-js": "^4.2.0",
70-
"eslint": "^9.37.0",
70+
"eslint": "^9.39.1",
7171
"eslint-plugin-html": "8.1.3",
7272
"eslint-plugin-import": "^2.32.0",
7373
"eslint-plugin-vue": "^10.5.1",
74-
"globals": "^16.4.0",
74+
"globals": "^16.5.0",
7575
"highlight.js": "^11.11.1",
7676
"identity-obj-proxy": "^3.0.0",
7777
"katex": "^0.16.25",
@@ -81,20 +81,20 @@
8181
"postcss-html": "^1.8.0",
8282
"postcss-scss": "^4.0.9",
8383
"prismjs": "^1.30.0",
84-
"rollup": "^4.52.4",
85-
"sass": "1.93.2",
84+
"rollup": "^4.53.3",
85+
"sass": "1.94.2",
8686
"stylelint": "^16.25.0",
8787
"stylelint-config-recommended-scss": "16.0.2",
8888
"stylelint-config-recommended-vue": "^1.6.1",
8989
"stylelint-config-standard": "^39.0.1",
9090
"stylelint-config-standard-scss": "16.0.0",
9191
"typescript": "^5.9.3",
9292
"ua-parser-js": "^2.0.6",
93-
"unocss": "66.5.4",
93+
"unocss": "66.5.9",
9494
"unplugin-auto-import": "^20.2.0",
95-
"unplugin-icons": "^22.4.2",
96-
"unplugin-vue-components": "^29.1.0",
97-
"vite": "^7.1.10",
95+
"unplugin-icons": "^22.5.0",
96+
"unplugin-vue-components": "^30.0.0",
97+
"vite": "^7.2.4",
9898
"vite-raw-plugin": "^1.0.2",
9999
"vue-eslint-parser": "^10.2.0"
100100
}

0 commit comments

Comments
 (0)