befly-admin 3.8.2 → 3.9.1

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.8.2",
4
- "gitHead": "2009041148b2aa264349cc4b78f5965ec2af891c",
3
+ "version": "3.9.1",
4
+ "gitHead": "dc9c3fdf5a392d7dc9761bf9b045e00ed74b1262",
5
5
  "private": false,
6
6
  "description": "Befly Admin - 基于 Vue3 + TDesign Vue Next 的后台管理系统",
7
7
  "files": [
@@ -28,10 +28,10 @@
28
28
  "preview": "vite preview"
29
29
  },
30
30
  "dependencies": {
31
- "@befly-addon/admin": "^1.4.2",
31
+ "@befly-addon/admin": "^1.5.1",
32
32
  "@iconify-json/lucide": "^1.2.82",
33
33
  "axios": "^1.13.2",
34
- "befly-vite": "^1.4.1",
34
+ "befly-vite": "^1.4.2",
35
35
  "pinia": "^3.0.4",
36
36
  "tdesign-vue-next": "^1.17.7",
37
37
  "unplugin-vue-router": "^0.19.2",
@@ -14,6 +14,7 @@ declare global {
14
14
  const EffectScope: typeof import('vue').EffectScope
15
15
  const MessagePlugin: typeof import('tdesign-vue-next').MessagePlugin
16
16
  const acceptHMRUpdate: typeof import('pinia').acceptHMRUpdate
17
+ const arrayToTree: typeof import('../utils/arrayToTree').arrayToTree
17
18
  const computed: typeof import('vue').computed
18
19
  const createApp: typeof import('vue').createApp
19
20
  const createPinia: typeof import('pinia').createPinia
@@ -94,6 +95,9 @@ declare global {
94
95
  // @ts-ignore
95
96
  export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
96
97
  import('vue')
98
+ // @ts-ignore
99
+ export type { ArrayToTreeResult } from '../utils/arrayToTree'
100
+ import('../utils/arrayToTree')
97
101
  }
98
102
 
99
103
  // for vue template auto import
@@ -108,6 +112,7 @@ declare module 'vue' {
108
112
  readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
109
113
  readonly MessagePlugin: UnwrapRef<typeof import('tdesign-vue-next')['MessagePlugin']>
110
114
  readonly acceptHMRUpdate: UnwrapRef<typeof import('pinia')['acceptHMRUpdate']>
115
+ readonly arrayToTree: UnwrapRef<typeof import('../utils/arrayToTree')['arrayToTree']>
111
116
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
112
117
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
113
118
  readonly createPinia: UnwrapRef<typeof import('pinia')['createPinia']>