Modal Standardization (#4784)

This commit is contained in:
Jin Yi
2025-08-18 09:41:15 +09:00
committed by GitHub
parent b1057f164b
commit ceac8f3741
35 changed files with 533 additions and 16 deletions

View File

@@ -0,0 +1,2 @@
export * from './navTypes'
export * from './widgetTypes'

View File

@@ -0,0 +1,9 @@
export interface NavItemData {
id: string
label: string
}
export interface NavGroupData {
title: string
items: NavItemData[]
}

View File

@@ -0,0 +1,3 @@
import { InjectionKey } from 'vue'
export const OnCloseKey: InjectionKey<() => void> = Symbol()