-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,33 @@ | ||
import { | ||
DialogClose as DrawerClose, | ||
DialogDescription as DrawerDescription, | ||
DialogPortal as DrawerPortal, | ||
DialogTitle as DrawerTitle, | ||
DialogTrigger as DrawerTrigger, | ||
} from 'radix-vue' | ||
import DrawerRoot from './DrawerRoot.vue' | ||
import DrawerRootNested from './DrawerRootNested.vue' | ||
import DrawerOverlay from './DrawerOverlay.vue' | ||
import DrawerContent from './DrawerContent.vue' | ||
|
||
export type { | ||
DrawerRootEmits, | ||
DrawerRootProps, | ||
} from './controls' | ||
|
||
export { | ||
DrawerTitle, | ||
DrawerDescription, | ||
DrawerTrigger, | ||
DrawerPortal, | ||
DrawerClose, | ||
DrawerRoot, | ||
DrawerRootNested, | ||
DrawerOverlay, | ||
DrawerContent, | ||
} | ||
|
||
export { | ||
DialogClose as DrawerClose, | ||
type DialogCloseProps as DrawerCloseProps, | ||
|
||
DialogDescription as DrawerDescription, | ||
type DialogDescriptionProps as DrawerDescriptionProps, | ||
|
||
DialogPortal as DrawerPortal, | ||
type DialogPortalProps as DrawerPortalProps, | ||
|
||
DialogTitle as DrawerTitle, | ||
type DialogTitleProps as DrawerTitleProps, | ||
|
||
DialogTrigger as DrawerTrigger, | ||
type DialogTriggerProps as DrawerTriggerProps, | ||
} from 'radix-vue' |