befly-admin 3.4.50 → 3.4.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "befly-admin",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.54",
|
|
4
4
|
"description": "Befly Admin - 基于 Vue3 + OpenTiny Vue 的后台管理系统",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"preview": "vite preview"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@befly-addon/admin": "^1.0.
|
|
30
|
-
"@iconify-json/lucide": "^1.2.
|
|
29
|
+
"@befly-addon/admin": "^1.0.54",
|
|
30
|
+
"@iconify-json/lucide": "^1.2.76",
|
|
31
31
|
"axios": "^1.13.2",
|
|
32
|
-
"befly-util": "^1.0.
|
|
33
|
-
"befly-vite": "^1.0.
|
|
32
|
+
"befly-util": "^1.0.7",
|
|
33
|
+
"befly-vite": "^1.0.12",
|
|
34
34
|
"pinia": "^3.0.4",
|
|
35
|
-
"tdesign-vue-next": "^1.
|
|
36
|
-
"vite": "^7.2.
|
|
37
|
-
"vue": "^3.5.
|
|
35
|
+
"tdesign-vue-next": "^1.17.5",
|
|
36
|
+
"vite": "^7.2.4",
|
|
37
|
+
"vue": "^3.5.25",
|
|
38
38
|
"vue-router": "^4.6.3"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"pnpm": ">=10.0.0",
|
|
43
43
|
"bun": ">=1.3.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "1f3cacbe4134ee60654b75338bcaeda535898a84"
|
|
46
46
|
}
|
package/src/router/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createRouter, createWebHashHistory } from 'vue-router';
|
|
2
2
|
import { routes } from 'vue-router/auto-routes';
|
|
3
3
|
import { $Storage } from '@/plugins/storage';
|
|
4
|
-
import { Layouts } from 'befly-util';
|
|
4
|
+
import { Layouts } from 'befly-util/layouts';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* @typedef {import('befly-util').LayoutConfig} LayoutConfig
|
|
@@ -103,7 +103,9 @@ declare module 'vue' {
|
|
|
103
103
|
readonly $Config: UnwrapRef<typeof import('../config/index.js')['$Config']>
|
|
104
104
|
readonly $Http: UnwrapRef<typeof import('../plugins/http.js')['$Http']>
|
|
105
105
|
readonly $Storage: UnwrapRef<typeof import('../plugins/storage.js')['$Storage']>
|
|
106
|
+
readonly DialogPlugin: UnwrapRef<typeof import('tdesign-vue-next')['DialogPlugin']>
|
|
106
107
|
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
108
|
+
readonly MessagePlugin: UnwrapRef<typeof import('tdesign-vue-next')['MessagePlugin']>
|
|
107
109
|
readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
|
|
108
110
|
readonly arrayToTree: UnwrapRef<typeof import('../utils/index.js')['arrayToTree']>
|
|
109
111
|
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|