- Introduced a comprehensive set of dialog components: Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogScrollContent, DialogTitle, and DialogTrigger. - Each component is designed to facilitate various dialog functionalities, including customizable props and slots for flexible content management. - Integrated utility functions for class management to ensure consistent styling across components.
11 lines
624 B
TypeScript
11 lines
624 B
TypeScript
export { default as Dialog } from "./Dialog.vue"
|
|
export { default as DialogClose } from "./DialogClose.vue"
|
|
export { default as DialogContent } from "./DialogContent.vue"
|
|
export { default as DialogDescription } from "./DialogDescription.vue"
|
|
export { default as DialogFooter } from "./DialogFooter.vue"
|
|
export { default as DialogHeader } from "./DialogHeader.vue"
|
|
export { default as DialogOverlay } from "./DialogOverlay.vue"
|
|
export { default as DialogScrollContent } from "./DialogScrollContent.vue"
|
|
export { default as DialogTitle } from "./DialogTitle.vue"
|
|
export { default as DialogTrigger } from "./DialogTrigger.vue"
|