Skip to content

Commit e32d770

Browse files
authored
fix: export CalendarRoot props to prevent vite-plugin-dts error (unovue#916)
1 parent 64d7eb2 commit e32d770

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/radix-vue/src/Calendar/CalendarRoot.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ interface BaseCalendarRootProps extends PrimitiveProps {
8383
dir?: Direction
8484
}
8585
86-
interface MultipleCalendarRootProps extends BaseCalendarRootProps {
86+
export interface MultipleCalendarRootProps extends BaseCalendarRootProps {
8787
/** The controlled checked state of the calendar. Can be bound as `v-model`. */
8888
modelValue?: DateValue[] | undefined
8989
/** Whether or not multiple dates can be selected */
9090
multiple: true
9191
}
9292
93-
interface SingleCalendarRootProps extends BaseCalendarRootProps {
93+
export interface SingleCalendarRootProps extends BaseCalendarRootProps {
9494
/** The controlled checked state of the calendar. Can be bound as `v-model`. */
9595
modelValue?: DateValue | undefined
9696
/** Whether or not multiple dates can be selected */

0 commit comments

Comments
 (0)