@globalbrain/sefirot 3.27.0 → 3.27.2
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/lib/mixins/Desc.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type App } from 'vue'
|
|
2
2
|
import SDesc from '../components/SDesc.vue'
|
|
3
|
+
import SDescAvatar from '../components/SDescAvatar.vue'
|
|
3
4
|
import SDescDay from '../components/SDescDay.vue'
|
|
4
5
|
import SDescEmpty from '../components/SDescEmpty.vue'
|
|
5
6
|
import SDescFile from '../components/SDescFile.vue'
|
|
@@ -13,6 +14,7 @@ import SDescText from '../components/SDescText.vue'
|
|
|
13
14
|
|
|
14
15
|
export function mixin(app: App): void {
|
|
15
16
|
app.component('SDesc', SDesc)
|
|
17
|
+
app.component('SDescAvatar', SDescAvatar)
|
|
16
18
|
app.component('SDescDay', SDescDay)
|
|
17
19
|
app.component('SDescEmpty', SDescEmpty)
|
|
18
20
|
app.component('SDescFile', SDescFile)
|
|
@@ -28,6 +30,7 @@ export function mixin(app: App): void {
|
|
|
28
30
|
declare module 'vue' {
|
|
29
31
|
export interface GlobalComponents {
|
|
30
32
|
SDesc: typeof SDesc
|
|
33
|
+
SDescAvatar: typeof SDescAvatar
|
|
31
34
|
SDescDay: typeof SDescDay
|
|
32
35
|
SDescEmpty: typeof SDescEmpty
|
|
33
36
|
SDescFile: typeof SDescFile
|