@j3m-quantum/ui 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -20
- package/cursor-rules-for-consumers.md +171 -28
- package/dist/index.cjs +435 -238
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +46 -6
- package/dist/index.d.ts +46 -6
- package/dist/index.js +430 -236
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +383 -111
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -116,6 +116,23 @@ declare function ToggleGroup({ className, variant, size, spacing, children, ...p
|
|
|
116
116
|
}): react_jsx_runtime.JSX.Element;
|
|
117
117
|
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
118
118
|
|
|
119
|
+
interface ThemeSwitchProps {
|
|
120
|
+
checked?: boolean;
|
|
121
|
+
defaultChecked?: boolean;
|
|
122
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
123
|
+
disabled?: boolean;
|
|
124
|
+
className?: string;
|
|
125
|
+
/** Size variant */
|
|
126
|
+
size?: "sm" | "default" | "lg";
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* ThemeSwitch - A toggle switch for light/dark mode with sun/moon icons
|
|
130
|
+
*
|
|
131
|
+
* The thumb displays a sun icon when in light mode (unchecked) and
|
|
132
|
+
* a moon icon when in dark mode (checked).
|
|
133
|
+
*/
|
|
134
|
+
declare function ThemeSwitch({ checked, defaultChecked, onCheckedChange, disabled, className, size, }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
119
136
|
declare function ToolBarCanvas({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
120
137
|
declare function ToolBarCanvasDivider({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
121
138
|
declare function ToolBarCanvasGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -1141,16 +1158,20 @@ declare function AgendaView({ className, emptyMessage, onEventClick, onDateClick
|
|
|
1141
1158
|
interface CalendarHeaderProps extends ICalendarHeaderProps {
|
|
1142
1159
|
className?: string;
|
|
1143
1160
|
showAddButton?: boolean;
|
|
1161
|
+
showSettings?: boolean;
|
|
1144
1162
|
onAddClick?: () => void;
|
|
1163
|
+
onSettingsClick?: () => void;
|
|
1145
1164
|
}
|
|
1146
1165
|
declare function CalendarHeader({ className, showViewSwitcher, showUserFilter, showBadgeVariant, // Hidden by default, controlled via settings
|
|
1147
|
-
showToday, showAddButton, onAddClick, }: CalendarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1166
|
+
showToday, showAddButton, showSettings, onAddClick, onSettingsClick, }: CalendarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1148
1167
|
interface CalendarHeaderCompactProps {
|
|
1149
1168
|
className?: string;
|
|
1150
1169
|
showAddButton?: boolean;
|
|
1170
|
+
showSettings?: boolean;
|
|
1151
1171
|
onAddClick?: () => void;
|
|
1172
|
+
onSettingsClick?: () => void;
|
|
1152
1173
|
}
|
|
1153
|
-
declare function CalendarHeaderCompact({ className, showAddButton, onAddClick, }: CalendarHeaderCompactProps): react_jsx_runtime.JSX.Element;
|
|
1174
|
+
declare function CalendarHeaderCompact({ className, showAddButton, showSettings, onAddClick, onSettingsClick, }: CalendarHeaderCompactProps): react_jsx_runtime.JSX.Element;
|
|
1154
1175
|
|
|
1155
1176
|
interface EventDialogProps {
|
|
1156
1177
|
open: boolean;
|
|
@@ -1219,17 +1240,36 @@ declare function useDraggable(event: IEvent, disabled?: boolean): {
|
|
|
1219
1240
|
};
|
|
1220
1241
|
|
|
1221
1242
|
/**
|
|
1222
|
-
* Calendar Settings Panel
|
|
1243
|
+
* Calendar Settings Panel & Dialog
|
|
1223
1244
|
* Based on big-calendar by Leonardo Ramos (MIT License)
|
|
1224
1245
|
* https://github.com/lramos33/big-calendar
|
|
1225
1246
|
*/
|
|
1226
|
-
interface
|
|
1247
|
+
interface CalendarSettingsContentProps {
|
|
1227
1248
|
className?: string;
|
|
1228
1249
|
showBadgeVariant?: boolean;
|
|
1229
1250
|
showVisibleHours?: boolean;
|
|
1230
1251
|
showWorkingHours?: boolean;
|
|
1231
1252
|
}
|
|
1232
|
-
|
|
1253
|
+
/**
|
|
1254
|
+
* The inner content of calendar settings - used by both panel and dialog
|
|
1255
|
+
*/
|
|
1256
|
+
declare function CalendarSettingsContent({ className, showBadgeVariant, showVisibleHours, showWorkingHours, }: CalendarSettingsContentProps): react_jsx_runtime.JSX.Element;
|
|
1257
|
+
interface CalendarSettingsDialogProps extends CalendarSettingsContentProps {
|
|
1258
|
+
open?: boolean;
|
|
1259
|
+
onOpenChange?: (open: boolean) => void;
|
|
1260
|
+
}
|
|
1261
|
+
/**
|
|
1262
|
+
* Calendar settings in a dialog/modal
|
|
1263
|
+
*/
|
|
1264
|
+
declare function CalendarSettingsDialog({ open, onOpenChange, showBadgeVariant, showVisibleHours, showWorkingHours, }: CalendarSettingsDialogProps): react_jsx_runtime.JSX.Element;
|
|
1265
|
+
interface CalendarSettingsButtonProps {
|
|
1266
|
+
onClick?: () => void;
|
|
1267
|
+
className?: string;
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
* Settings button trigger - can be placed in the header
|
|
1271
|
+
*/
|
|
1272
|
+
declare function CalendarSettingsButton({ onClick, className, }: CalendarSettingsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1233
1273
|
|
|
1234
1274
|
/**
|
|
1235
1275
|
* Badge Variant Input
|
|
@@ -1266,4 +1306,4 @@ interface BigCalendarProps extends Omit<EventCalendarProviderProps, "children">
|
|
|
1266
1306
|
}
|
|
1267
1307
|
declare function BigCalendar({ className, compact, bordered, showHeader, showAddButton, showSettings, enableDragDrop, weekStartsOn, maxEventsPerDay, config, ...providerProps }: BigCalendarProps): react_jsx_runtime.JSX.Element;
|
|
1268
1308
|
|
|
1269
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps,
|
|
1309
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps, CalendarSettingsButton, type CalendarSettingsButtonProps, CalendarSettingsContent, type CalendarSettingsContentProps, CalendarSettingsDialog, type CalendarSettingsDialogProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChangeBadgeVariantInput, ChangeVisibleHoursInput, ChangeWorkingHoursInput, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DEFAULT_VISIBLE_HOURS, DEFAULT_WORKING_HOURS, DateBadge, type DateBadgeProps, DayView, type DayViewProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragContext, DragProvider, type DragProviderProps, DraggableEvent, type DraggableEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DroppableZone, type DroppableZoneProps, EVENT_COLORS, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EventBadge, type EventBadgeProps, EventCalendarProvider, type EventCalendarProviderProps, EventDialog, type EventDialogProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, type ICalendarActions, type ICalendarCell, type ICalendarConfig, type ICalendarContext, type ICalendarHeaderProps, type ICalendarState, type IDayCellProps, type IDragContext, type IEvent, type IEventBadgeProps, type IEventDialogProps, type IEventPosition, type ITimeSlotProps, type IUser, type IViewProps, type IWorkingHours, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MonthView, type MonthViewProps, MoreEvents, type MoreEventsProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavItem, NavMain, type NavProject, NavProjects, NavSecondary, NavUser, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchForm, SearchTrigger, type SearchTriggerProps, Section, SectionContent, SectionDescription, SectionFooter, SectionHeader, type SectionProps, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, Skeleton, Slider, Spinner, Switch, type TBadgeVariant, type TCalendarView, type TEventColor, type TVisibleHours, type TWorkingHours, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeSwitch, type ThemeSwitchProps, TimeIndicator, type TimeIndicatorProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToolBarCanvas, ToolBarCanvasButton, ToolBarCanvasDivider, ToolBarCanvasGroup, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseDroppableOptions, type UserAvatarItem, UserAvatarsDropdown, type UserAvatarsDropdownProps, VIEW_LABELS, WeekView, type WeekViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateDropDates, calculateMonthEventPositions, cardVariants, createDefaultEvent, formatDateRange, formatTime, generateEventId, getCalendarCells, getCurrentEvents, getDayHours, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getMonthCellEvents, getMonthDays, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getYearMonths, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useIsMobile, useSearchShortcut, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -116,6 +116,23 @@ declare function ToggleGroup({ className, variant, size, spacing, children, ...p
|
|
|
116
116
|
}): react_jsx_runtime.JSX.Element;
|
|
117
117
|
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
118
118
|
|
|
119
|
+
interface ThemeSwitchProps {
|
|
120
|
+
checked?: boolean;
|
|
121
|
+
defaultChecked?: boolean;
|
|
122
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
123
|
+
disabled?: boolean;
|
|
124
|
+
className?: string;
|
|
125
|
+
/** Size variant */
|
|
126
|
+
size?: "sm" | "default" | "lg";
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* ThemeSwitch - A toggle switch for light/dark mode with sun/moon icons
|
|
130
|
+
*
|
|
131
|
+
* The thumb displays a sun icon when in light mode (unchecked) and
|
|
132
|
+
* a moon icon when in dark mode (checked).
|
|
133
|
+
*/
|
|
134
|
+
declare function ThemeSwitch({ checked, defaultChecked, onCheckedChange, disabled, className, size, }: ThemeSwitchProps): react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
119
136
|
declare function ToolBarCanvas({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
120
137
|
declare function ToolBarCanvasDivider({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
121
138
|
declare function ToolBarCanvasGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -1141,16 +1158,20 @@ declare function AgendaView({ className, emptyMessage, onEventClick, onDateClick
|
|
|
1141
1158
|
interface CalendarHeaderProps extends ICalendarHeaderProps {
|
|
1142
1159
|
className?: string;
|
|
1143
1160
|
showAddButton?: boolean;
|
|
1161
|
+
showSettings?: boolean;
|
|
1144
1162
|
onAddClick?: () => void;
|
|
1163
|
+
onSettingsClick?: () => void;
|
|
1145
1164
|
}
|
|
1146
1165
|
declare function CalendarHeader({ className, showViewSwitcher, showUserFilter, showBadgeVariant, // Hidden by default, controlled via settings
|
|
1147
|
-
showToday, showAddButton, onAddClick, }: CalendarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1166
|
+
showToday, showAddButton, showSettings, onAddClick, onSettingsClick, }: CalendarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1148
1167
|
interface CalendarHeaderCompactProps {
|
|
1149
1168
|
className?: string;
|
|
1150
1169
|
showAddButton?: boolean;
|
|
1170
|
+
showSettings?: boolean;
|
|
1151
1171
|
onAddClick?: () => void;
|
|
1172
|
+
onSettingsClick?: () => void;
|
|
1152
1173
|
}
|
|
1153
|
-
declare function CalendarHeaderCompact({ className, showAddButton, onAddClick, }: CalendarHeaderCompactProps): react_jsx_runtime.JSX.Element;
|
|
1174
|
+
declare function CalendarHeaderCompact({ className, showAddButton, showSettings, onAddClick, onSettingsClick, }: CalendarHeaderCompactProps): react_jsx_runtime.JSX.Element;
|
|
1154
1175
|
|
|
1155
1176
|
interface EventDialogProps {
|
|
1156
1177
|
open: boolean;
|
|
@@ -1219,17 +1240,36 @@ declare function useDraggable(event: IEvent, disabled?: boolean): {
|
|
|
1219
1240
|
};
|
|
1220
1241
|
|
|
1221
1242
|
/**
|
|
1222
|
-
* Calendar Settings Panel
|
|
1243
|
+
* Calendar Settings Panel & Dialog
|
|
1223
1244
|
* Based on big-calendar by Leonardo Ramos (MIT License)
|
|
1224
1245
|
* https://github.com/lramos33/big-calendar
|
|
1225
1246
|
*/
|
|
1226
|
-
interface
|
|
1247
|
+
interface CalendarSettingsContentProps {
|
|
1227
1248
|
className?: string;
|
|
1228
1249
|
showBadgeVariant?: boolean;
|
|
1229
1250
|
showVisibleHours?: boolean;
|
|
1230
1251
|
showWorkingHours?: boolean;
|
|
1231
1252
|
}
|
|
1232
|
-
|
|
1253
|
+
/**
|
|
1254
|
+
* The inner content of calendar settings - used by both panel and dialog
|
|
1255
|
+
*/
|
|
1256
|
+
declare function CalendarSettingsContent({ className, showBadgeVariant, showVisibleHours, showWorkingHours, }: CalendarSettingsContentProps): react_jsx_runtime.JSX.Element;
|
|
1257
|
+
interface CalendarSettingsDialogProps extends CalendarSettingsContentProps {
|
|
1258
|
+
open?: boolean;
|
|
1259
|
+
onOpenChange?: (open: boolean) => void;
|
|
1260
|
+
}
|
|
1261
|
+
/**
|
|
1262
|
+
* Calendar settings in a dialog/modal
|
|
1263
|
+
*/
|
|
1264
|
+
declare function CalendarSettingsDialog({ open, onOpenChange, showBadgeVariant, showVisibleHours, showWorkingHours, }: CalendarSettingsDialogProps): react_jsx_runtime.JSX.Element;
|
|
1265
|
+
interface CalendarSettingsButtonProps {
|
|
1266
|
+
onClick?: () => void;
|
|
1267
|
+
className?: string;
|
|
1268
|
+
}
|
|
1269
|
+
/**
|
|
1270
|
+
* Settings button trigger - can be placed in the header
|
|
1271
|
+
*/
|
|
1272
|
+
declare function CalendarSettingsButton({ onClick, className, }: CalendarSettingsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1233
1273
|
|
|
1234
1274
|
/**
|
|
1235
1275
|
* Badge Variant Input
|
|
@@ -1266,4 +1306,4 @@ interface BigCalendarProps extends Omit<EventCalendarProviderProps, "children">
|
|
|
1266
1306
|
}
|
|
1267
1307
|
declare function BigCalendar({ className, compact, bordered, showHeader, showAddButton, showSettings, enableDragDrop, weekStartsOn, maxEventsPerDay, config, ...providerProps }: BigCalendarProps): react_jsx_runtime.JSX.Element;
|
|
1268
1308
|
|
|
1269
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps,
|
|
1309
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AgendaView, type AgendaViewProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, BADGE_VARIANT_LABELS, Badge, BigCalendar, type BigCalendarProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarContext, CalendarDayButton, CalendarHeader, CalendarHeaderCompact, type CalendarHeaderCompactProps, type CalendarHeaderProps, CalendarSettingsButton, type CalendarSettingsButtonProps, CalendarSettingsContent, type CalendarSettingsContentProps, CalendarSettingsDialog, type CalendarSettingsDialogProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChangeBadgeVariantInput, ChangeVisibleHoursInput, ChangeWorkingHoursInput, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DEFAULT_VISIBLE_HOURS, DEFAULT_WORKING_HOURS, DateBadge, type DateBadgeProps, DayView, type DayViewProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DragContext, DragProvider, type DragProviderProps, DraggableEvent, type DraggableEventProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DroppableZone, type DroppableZoneProps, EVENT_COLORS, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EventBadge, type EventBadgeProps, EventCalendarProvider, type EventCalendarProviderProps, EventDialog, type EventDialogProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, type ICalendarActions, type ICalendarCell, type ICalendarConfig, type ICalendarContext, type ICalendarHeaderProps, type ICalendarState, type IDayCellProps, type IDragContext, type IEvent, type IEventBadgeProps, type IEventDialogProps, type IEventPosition, type ITimeSlotProps, type IUser, type IViewProps, type IWorkingHours, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MonthView, type MonthViewProps, MoreEvents, type MoreEventsProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavItem, NavMain, type NavProject, NavProjects, NavSecondary, NavUser, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchForm, SearchTrigger, type SearchTriggerProps, Section, SectionContent, SectionDescription, SectionFooter, SectionHeader, type SectionProps, SectionTitle, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SiteHeader, Skeleton, Slider, Spinner, Switch, type TBadgeVariant, type TCalendarView, type TEventColor, type TVisibleHours, type TWorkingHours, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeSwitch, type ThemeSwitchProps, TimeIndicator, type TimeIndicatorProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToolBarCanvas, ToolBarCanvasButton, ToolBarCanvasDivider, ToolBarCanvasGroup, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseDroppableOptions, type UserAvatarItem, UserAvatarsDropdown, type UserAvatarsDropdownProps, VIEW_LABELS, WeekView, type WeekViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateDropDates, calculateMonthEventPositions, cardVariants, createDefaultEvent, formatDateRange, formatTime, generateEventId, getCalendarCells, getCurrentEvents, getDayHours, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getMonthCellEvents, getMonthDays, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getYearMonths, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useIsMobile, useSearchShortcut, useSidebar };
|