element-plus/packages/tokens/dialog.ts
2022-03-25 15:35:56 +08:00

14 lines
440 B
TypeScript

import type { CSSProperties, ComputedRef, InjectionKey, Ref } from 'vue'
import type { useNamespace } from '@element-plus/hooks'
export type DialogContext = {
dialogRef: Ref<HTMLElement | undefined>
headerRef: Ref<HTMLElement | undefined>
ns: ReturnType<typeof useNamespace>
rendered: Ref<boolean>
style: ComputedRef<CSSProperties>
}
export const dialogInjectionKey: InjectionKey<DialogContext> =
Symbol('dialogInjectionKey')