@j3m-quantum/ui 1.5.0 → 1.6.1

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/dist/index.d.ts CHANGED
@@ -38,6 +38,8 @@ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
38
38
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
39
39
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
40
40
  import * as ResizablePrimitive from 'react-resizable-panels';
41
+ import { Column, Table as Table$1, ColumnDef } from '@tanstack/react-table';
42
+ export { Column, ColumnDef, ColumnFiltersState, Table as DataTable, Row, SortingState, VisibilityState, flexRender, getCoreRowModel, getFilteredRowModel, getPaginationRowModel, getSortedRowModel, useReactTable } from '@tanstack/react-table';
41
43
  export { areIntervalsOverlapping, format, getDay, isSameDay, isSameMonth, isToday, parseISO } from 'date-fns';
42
44
 
43
45
  declare function useIsMobile(): boolean;
@@ -396,6 +398,36 @@ declare const Toaster: ({ theme: themeProp, ...props }: ToasterProps) => react_j
396
398
 
397
399
  declare function Spinner({ className, ...props }: LucideProps): react_jsx_runtime.JSX.Element;
398
400
 
401
+ declare const deliveryIndicatorVariants: (props?: ({
402
+ status?: "on-time" | "delayed" | "critical" | "pending" | null | undefined;
403
+ size?: "default" | "sm" | "lg" | null | undefined;
404
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
405
+ type DeliveryStatus = "on-time" | "delayed" | "critical" | "pending";
406
+ interface DeliveryIndicatorProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof deliveryIndicatorVariants> {
407
+ /** The delivery status */
408
+ status?: DeliveryStatus;
409
+ /** Optional label for accessibility and tooltip */
410
+ label?: string;
411
+ /** Show tooltip on hover */
412
+ showTooltip?: boolean;
413
+ }
414
+ declare function DeliveryIndicator({ className, status, size, label, showTooltip, ...props }: DeliveryIndicatorProps): react_jsx_runtime.JSX.Element;
415
+ interface DeliveryIndicatorsProps extends React$1.HTMLAttributes<HTMLDivElement> {
416
+ /** Array of delivery statuses to display */
417
+ deliveries: Array<{
418
+ status: DeliveryStatus;
419
+ label?: string;
420
+ }>;
421
+ /** Size of the indicators */
422
+ size?: "sm" | "default" | "lg";
423
+ /** Show tooltips on hover */
424
+ showTooltips?: boolean;
425
+ }
426
+ /**
427
+ * A group of delivery indicators for displaying multiple deliveries
428
+ */
429
+ declare function DeliveryIndicators({ className, deliveries, size, showTooltips, ...props }: DeliveryIndicatorsProps): react_jsx_runtime.JSX.Element;
430
+
399
431
  declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
400
432
  declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
401
433
  declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
@@ -672,6 +704,24 @@ declare const SectionDescription: React$1.ForwardRefExoticComponent<React$1.HTML
672
704
  declare const SectionContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
673
705
  declare const SectionFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
674
706
 
707
+ interface DataTableColumnHeaderProps<TData, TValue> extends React.HTMLAttributes<HTMLDivElement> {
708
+ column: Column<TData, TValue>;
709
+ title: string;
710
+ }
711
+ declare function DataTableColumnHeader<TData, TValue>({ column, title, className, }: DataTableColumnHeaderProps<TData, TValue>): react_jsx_runtime.JSX.Element;
712
+
713
+ interface DataTablePaginationProps<TData> {
714
+ table: Table$1<TData>;
715
+ showRowSelection?: boolean;
716
+ pageSizeOptions?: number[];
717
+ }
718
+ declare function DataTablePagination<TData>({ table, showRowSelection, pageSizeOptions, }: DataTablePaginationProps<TData>): react_jsx_runtime.JSX.Element;
719
+
720
+ interface DataTableViewOptionsProps<TData> {
721
+ table: Table$1<TData>;
722
+ }
723
+ declare function DataTableViewOptions<TData>({ table, }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
724
+
675
725
  interface BreadcrumbItemType {
676
726
  label: string;
677
727
  href?: string;
@@ -734,6 +784,261 @@ declare function NavUser({ user }: NavUserProps): react_jsx_runtime.JSX.Element;
734
784
 
735
785
  declare function SearchForm({ ...props }: React$1.ComponentProps<"form">): react_jsx_runtime.JSX.Element;
736
786
 
787
+ /**
788
+ * Represents a week in the planning matrix
789
+ */
790
+ interface Week {
791
+ /** ISO week number (1-53) */
792
+ weekNumber: number;
793
+ /** Year of the week */
794
+ year: number;
795
+ /** Start date of the week */
796
+ startDate: Date;
797
+ /** End date of the week */
798
+ endDate: Date;
799
+ /** Formatted week label (e.g., "W52") */
800
+ label: string;
801
+ /** Formatted date range (e.g., "Dec 22 - Dec 28") */
802
+ dateRange: string;
803
+ /** Whether this is the current week */
804
+ isCurrentWeek: boolean;
805
+ }
806
+ /**
807
+ * Unit type for production measurement
808
+ */
809
+ type ProductionUnit = "quantity" | "kvm" | "ton" | "kg" | "m" | "pcs";
810
+ /**
811
+ * Production data for a week
812
+ */
813
+ interface ProductionData {
814
+ /** Current produced amount */
815
+ produced: number;
816
+ /** Target/planned amount */
817
+ target: number;
818
+ /** Unit of measurement */
819
+ unit: ProductionUnit;
820
+ /** Production status */
821
+ status: DeliveryStatus;
822
+ /** Progress percentage (0-100) - can be calculated from produced/target */
823
+ progress?: number;
824
+ }
825
+ /**
826
+ * An element within a delivery
827
+ */
828
+ interface DeliveryElement {
829
+ /** Unique identifier */
830
+ id: string;
831
+ /** Element name/description */
832
+ name: string;
833
+ /** Whether this element is produced */
834
+ isProduced: boolean;
835
+ /** Quantity */
836
+ quantity?: number;
837
+ /** Unit */
838
+ unit?: ProductionUnit;
839
+ }
840
+ /**
841
+ * Represents a delivery within a week cell
842
+ */
843
+ interface Delivery {
844
+ /** Unique identifier */
845
+ id: string;
846
+ /** Delivery status */
847
+ status: DeliveryStatus;
848
+ /** Optional label for tooltip */
849
+ label?: string;
850
+ /** Delivery date within the week */
851
+ date?: Date;
852
+ /** Destination/recipient */
853
+ destination?: string;
854
+ /** Elements included in this delivery */
855
+ elements?: DeliveryElement[];
856
+ /** Number of elements at risk (not produced yet) */
857
+ elementsAtRisk?: number;
858
+ /** Total elements count */
859
+ totalElements?: number;
860
+ }
861
+ /**
862
+ * Data for a single week cell in the planning matrix
863
+ */
864
+ interface WeekCellData {
865
+ /** Cell state type */
866
+ type: "data" | "empty" | "no-logistics";
867
+ /** Quantity value (e.g., units scheduled) - legacy */
868
+ quantity?: number;
869
+ /** Progress percentage (0-100) - legacy */
870
+ progress?: number;
871
+ /** Production data for this week */
872
+ production?: ProductionData;
873
+ /** Array of deliveries for this week */
874
+ deliveries?: Delivery[];
875
+ /** Whether there's a warning/alert for this week */
876
+ hasWarning?: boolean;
877
+ /** Warning message if applicable */
878
+ warningMessage?: string;
879
+ /** Additional notes */
880
+ notes?: string;
881
+ }
882
+ /**
883
+ * Badge type for supplier categorization
884
+ */
885
+ type SupplierBadgeType = "Welded" | "Painted" | "Glazed" | "Delivered" | "Cured" | "Assembled" | "Tested" | "Sealed" | string;
886
+ /**
887
+ * Represents a supplier in the planning table
888
+ */
889
+ interface Supplier {
890
+ /** Unique identifier */
891
+ id: string;
892
+ /** Supplier name (e.g., "Alpha Steel") */
893
+ name: string;
894
+ /** Badge/category type (e.g., "Welded", "Painted") */
895
+ badgeType: SupplierBadgeType;
896
+ /** Scope description (e.g., "Structure A", "Ext. Panels") */
897
+ scope: string;
898
+ /** Week data indexed by "YYYY-WXX" format (e.g., "2025-W02") */
899
+ weeks: Record<string, WeekCellData>;
900
+ }
901
+ /**
902
+ * Configuration options for the planning table
903
+ */
904
+ interface PlanningTableConfig {
905
+ /** Number of weeks to display */
906
+ weekCount?: number;
907
+ /** Start date for the week range */
908
+ startDate?: Date;
909
+ /** Whether to highlight the current week */
910
+ highlightCurrentWeek?: boolean;
911
+ /** Whether to show the toolbar */
912
+ showToolbar?: boolean;
913
+ /** Whether to show pagination */
914
+ showPagination?: boolean;
915
+ /** Rows per page options */
916
+ pageSizeOptions?: number[];
917
+ /** Default page size */
918
+ defaultPageSize?: number;
919
+ /** Whether supplier column is sticky */
920
+ stickySupplierColumn?: boolean;
921
+ /** Maximum height of the table (enables vertical scroll) */
922
+ maxHeight?: string;
923
+ /** Callback when a cell is clicked */
924
+ onCellClick?: (supplier: Supplier, week: Week, data: WeekCellData) => void;
925
+ }
926
+ /**
927
+ * Props for the PlanningTable component
928
+ */
929
+ interface PlanningTableProps {
930
+ /** Array of suppliers to display */
931
+ suppliers: Supplier[];
932
+ /** Configuration options */
933
+ config?: PlanningTableConfig;
934
+ /** Additional class names */
935
+ className?: string;
936
+ }
937
+ /**
938
+ * Get ISO week string from a date
939
+ */
940
+ declare function getWeekKey(date: Date): string;
941
+ /**
942
+ * Get ISO week number from a date
943
+ */
944
+ declare function getISOWeek(date: Date): number;
945
+ /**
946
+ * Generate an array of weeks starting from a given date
947
+ */
948
+ declare function generateWeeks(startDate: Date, count: number): Week[];
949
+ /**
950
+ * Format production unit for display
951
+ */
952
+ declare function formatProductionUnit(unit: ProductionUnit): string;
953
+
954
+ /**
955
+ * PlanningTable - A weekly supplier planning matrix
956
+ *
957
+ * Displays suppliers as rows and weeks as columns, with each cell showing
958
+ * delivery data, progress, and status indicators.
959
+ */
960
+ declare function PlanningTable({ className, suppliers, config, }: PlanningTableProps): react_jsx_runtime.JSX.Element;
961
+
962
+ interface SupplierCellProps extends React$1.HTMLAttributes<HTMLDivElement> {
963
+ /** Supplier data */
964
+ supplier: Supplier;
965
+ }
966
+ /**
967
+ * Cell component for displaying supplier information in the first column.
968
+ * Shows supplier name with badge for checkpoint type.
969
+ */
970
+ declare function SupplierCell({ className, supplier, ...props }: SupplierCellProps): react_jsx_runtime.JSX.Element;
971
+
972
+ interface WeekCellProps extends React$1.HTMLAttributes<HTMLDivElement> {
973
+ /** Week cell data */
974
+ data: WeekCellData;
975
+ /** Week information */
976
+ week: Week;
977
+ /** Supplier information (for click handler context) */
978
+ supplier?: Supplier;
979
+ /** Whether this cell is in the current week */
980
+ isCurrentWeek?: boolean;
981
+ /** Callback when cell is clicked */
982
+ onCellClick?: () => void;
983
+ }
984
+ /**
985
+ * Cell component for displaying week data in the planning matrix.
986
+ * Shows production progress and delivery status.
987
+ */
988
+ declare function WeekCell({ className, data, week, supplier, isCurrentWeek, onCellClick, ...props }: WeekCellProps): react_jsx_runtime.JSX.Element;
989
+
990
+ interface WeekHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
991
+ /** Week information */
992
+ week: Week;
993
+ }
994
+ /**
995
+ * Header component for week columns in the planning table.
996
+ * Shows week number and date range with pulsating current week indicator.
997
+ */
998
+ declare function WeekHeader({ className, week, ...props }: WeekHeaderProps): react_jsx_runtime.JSX.Element;
999
+
1000
+ interface PlanningTableToolbarProps extends React$1.HTMLAttributes<HTMLDivElement> {
1001
+ table: Table$1<Supplier>;
1002
+ }
1003
+ /**
1004
+ * Toolbar component for the PlanningTable.
1005
+ * Provides search/filter functionality.
1006
+ */
1007
+ declare function PlanningTableToolbar({ className, table, ...props }: PlanningTableToolbarProps): react_jsx_runtime.JSX.Element;
1008
+
1009
+ interface WeekDetailDialogProps {
1010
+ /** Whether the dialog is open */
1011
+ open: boolean;
1012
+ /** Callback when dialog open state changes */
1013
+ onOpenChange: (open: boolean) => void;
1014
+ /** Supplier data */
1015
+ supplier: Supplier | null;
1016
+ /** Week data */
1017
+ week: Week | null;
1018
+ /** Week cell data */
1019
+ data: WeekCellData | null;
1020
+ /** Callback when progress is updated */
1021
+ onProgressUpdate?: (supplierId: string, weekKey: string, newProgress: number, newProduced?: number) => void;
1022
+ }
1023
+ /**
1024
+ * Dialog component for displaying detailed week information.
1025
+ * Shows production progress and individual deliveries.
1026
+ */
1027
+ declare function WeekDetailDialog({ open, onOpenChange, supplier, week, data, onProgressUpdate, }: WeekDetailDialogProps): react_jsx_runtime.JSX.Element | null;
1028
+
1029
+ /**
1030
+ * Generate the supplier column definition
1031
+ */
1032
+ declare function getSupplierColumn(): ColumnDef<Supplier>;
1033
+ /**
1034
+ * Generate column definitions for week columns
1035
+ */
1036
+ declare function generateWeekColumns(weeks: Week[], config?: PlanningTableConfig): ColumnDef<Supplier>[];
1037
+ /**
1038
+ * Generate all column definitions for the planning table
1039
+ */
1040
+ declare function generateColumns(weeks: Week[], config?: PlanningTableConfig): ColumnDef<Supplier>[];
1041
+
737
1042
  /**
738
1043
  * Event Calendar Types
739
1044
  * Based on big-calendar by Leonardo Ramos (MIT License)
@@ -1306,4 +1611,4 @@ interface BigCalendarProps extends Omit<EventCalendarProviderProps, "children">
1306
1611
  }
1307
1612
  declare function BigCalendar({ className, compact, bordered, showHeader, showAddButton, showSettings, enableDragDrop, weekStartsOn, maxEventsPerDay, config, ...providerProps }: BigCalendarProps): react_jsx_runtime.JSX.Element;
1308
1613
 
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 };
1614
+ 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, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, DataTableViewOptions, type DataTableViewOptionsProps, DateBadge, type DateBadgeProps, DayView, type DayViewProps, type Delivery, type DeliveryElement, DeliveryIndicator, type DeliveryIndicatorProps, DeliveryIndicators, type DeliveryIndicatorsProps, type DeliveryStatus, 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, PlanningTable, type PlanningTableConfig, type PlanningTableProps, PlanningTableToolbar, type PlanningTableToolbarProps, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProductionData, type ProductionUnit, 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, type Supplier, type SupplierBadgeType, SupplierCell, type SupplierCellProps, 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, type Week, WeekCell, type WeekCellData, type WeekCellProps, WeekDetailDialog, type WeekDetailDialogProps, WeekHeader, type WeekHeaderProps, WeekView, type WeekViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateDropDates, calculateMonthEventPositions, cardVariants, createDefaultEvent, deliveryIndicatorVariants, formatDateRange, formatProductionUnit, formatTime, generateColumns, generateEventId, generateWeekColumns, generateWeeks, getCalendarCells, getCurrentEvents, getDayHours, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getISOWeek, getMonthCellEvents, getMonthDays, getSupplierColumn, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getWeekKey, 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 };