UNPKG

bits-ui

Version:

The headless components for Svelte.

16 lines (15 loc) 1.63 kB
export { default as Root } from "./components/calendar.svelte"; export { default as Day } from "./components/calendar-day.svelte"; export { default as Grid } from "./components/calendar-grid.svelte"; export { default as GridBody } from "./components/calendar-grid-body.svelte"; export { default as Cell } from "./components/calendar-cell.svelte"; export { default as GridHead } from "./components/calendar-grid-head.svelte"; export { default as HeadCell } from "./components/calendar-head-cell.svelte"; export { default as GridRow } from "./components/calendar-grid-row.svelte"; export { default as Header } from "./components/calendar-header.svelte"; export { default as Heading } from "./components/calendar-heading.svelte"; export { default as MonthSelect } from "./components/calendar-month-select.svelte"; export { default as NextButton } from "./components/calendar-next-button.svelte"; export { default as PrevButton } from "./components/calendar-prev-button.svelte"; export { default as YearSelect } from "./components/calendar-year-select.svelte"; export type { CalendarRootProps as RootProps, CalendarPrevButtonProps as PrevButtonProps, CalendarNextButtonProps as NextButtonProps, CalendarHeadingProps as HeadingProps, CalendarHeaderProps as HeaderProps, CalendarGridProps as GridProps, CalendarGridHeadProps as GridHeadProps, CalendarHeadCellProps as HeadCellProps, CalendarGridBodyProps as GridBodyProps, CalendarGridRowProps as GridRowProps, CalendarCellProps as CellProps, CalendarDayProps as DayProps, CalendarMonthSelectProps as MonthSelectProps, CalendarYearSelectProps as YearSelectProps, } from "./types.js";