befly-admin 3.12.10 → 3.12.11

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,7 +1,7 @@
1
1
  {
2
2
  "name": "befly-admin",
3
- "version": "3.12.10",
4
- "gitHead": "f9f6bca0385e275961720d686bab20b2e2167f87",
3
+ "version": "3.12.11",
4
+ "gitHead": "8397629cd2bc2e37d91c3b15773af52ac8ff7681",
5
5
  "private": false,
6
6
  "description": "Befly Admin - 基于 Vue3 + TDesign Vue Next 的后台管理系统",
7
7
  "files": [
@@ -28,7 +28,7 @@
28
28
  "preview": "bunx --bun vite preview"
29
29
  },
30
30
  "dependencies": {
31
- "@befly-addon/admin": "^1.8.7",
31
+ "@befly-addon/admin": "^1.8.8",
32
32
  "@iconify-json/lucide": "^1.2.86",
33
33
  "axios": "^1.13.2",
34
34
  "befly-shared": "^1.4.5",
@@ -10,6 +10,7 @@ declare global {
10
10
  const $Http: typeof import('../plugins/http').$Http
11
11
  const $Router: typeof import('../plugins/router').$Router
12
12
  const $Storage: typeof import('../plugins/storage').$Storage
13
+ const DialogPlugin: typeof import('tdesign-vue-next').DialogPlugin
13
14
  const EffectScope: typeof import('vue').EffectScope
14
15
  const MessagePlugin: typeof import('tdesign-vue-next').MessagePlugin
15
16
  const acceptHMRUpdate: typeof import('pinia').acceptHMRUpdate
@@ -110,6 +111,7 @@ declare module 'vue' {
110
111
  readonly $Http: UnwrapRef<typeof import('../plugins/http')['$Http']>
111
112
  readonly $Router: UnwrapRef<typeof import('../plugins/router')['$Router']>
112
113
  readonly $Storage: UnwrapRef<typeof import('../plugins/storage')['$Storage']>
114
+ readonly DialogPlugin: UnwrapRef<typeof import('tdesign-vue-next')['DialogPlugin']>
113
115
  readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
114
116
  readonly MessagePlugin: UnwrapRef<typeof import('tdesign-vue-next')['MessagePlugin']>
115
117
  readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
@@ -12,10 +12,26 @@ export {}
12
12
  declare module 'vue' {
13
13
  export interface GlobalComponents {
14
14
  DetailPanel: typeof import('./../components/detailPanel.vue')['default']
15
+ 'ILucide:box': typeof import('~icons/lucide/box')['default']
16
+ 'ILucide:camera': typeof import('~icons/lucide/camera')['default']
17
+ 'ILucide:fileText': typeof import('~icons/lucide/file-text')['default']
18
+ 'ILucide:folder': typeof import('~icons/lucide/folder')['default']
19
+ 'ILucide:home': typeof import('~icons/lucide/home')['default']
20
+ 'ILucide:logOut': typeof import('~icons/lucide/log-out')['default']
21
+ 'ILucide:settings': typeof import('~icons/lucide/settings')['default']
22
+ 'ILucide:user': typeof import('~icons/lucide/user')['default']
15
23
  PageDialog: typeof import('./../components/pageDialog.vue')['default']
16
24
  PagedTableDetail: typeof import('./../components/pagedTableDetail.vue')['default']
17
25
  RouterLink: typeof import('vue-router')['RouterLink']
18
26
  RouterView: typeof import('vue-router')['RouterView']
27
+ TButton: typeof import('tdesign-vue-next')['Button']
19
28
  TConfigProvider: typeof import('tdesign-vue-next')['ConfigProvider']
29
+ TMenu: typeof import('tdesign-vue-next')['Menu']
30
+ TMenuItem: typeof import('tdesign-vue-next')['MenuItem']
31
+ TPagination: typeof import('tdesign-vue-next')['Pagination']
32
+ TSubmenu: typeof import('tdesign-vue-next')['Submenu']
33
+ TTable: typeof import('tdesign-vue-next')['Table']
34
+ TTag: typeof import('tdesign-vue-next')['Tag']
35
+ TUpload: typeof import('tdesign-vue-next')['Upload']
20
36
  }
21
37
  }