web/app/components/ui/dialog/index.ts
Yoga Pangestu f9172d1431 feat: add dialog component suite for enhanced UI interactions
- 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.
2026-07-24 10:53:58 +07:00

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"