@j3m-quantum/ui 2.1.0 → 2.1.5

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
@@ -1,6 +1,6 @@
1
1
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
2
  import * as React$1 from 'react';
3
- import { ReactNode, RefObject, FC, HTMLAttributes } from 'react';
3
+ import { RefObject, ReactNode, FC, HTMLAttributes } from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
@@ -1435,11 +1435,26 @@ declare function PlanningWeekCommentPopover({ comments, weekLabel, weekKey, loca
1435
1435
  */
1436
1436
  declare function generateLocationOptions(suppliers: Supplier[], weekKey: string): CommentLocationOption[];
1437
1437
 
1438
+ /**
1439
+ * Summary data for a week column
1440
+ */
1441
+ interface WeekSummaryData {
1442
+ /** Produced tons for this week */
1443
+ producedTons: number;
1444
+ /** Number of planned deliveries */
1445
+ plannedDeliveries: number;
1446
+ /** Number of sent deliveries */
1447
+ sentDeliveries: number;
1448
+ /** Status for styling */
1449
+ status: "normal" | "complete" | "warning" | "critical";
1450
+ }
1438
1451
  interface WeekHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
1439
1452
  /** Week information */
1440
1453
  week: Week;
1441
1454
  /** Week key (YYYY-WXX format) */
1442
1455
  weekKey?: string;
1456
+ /** Summary data for this week (shown inline in header) */
1457
+ summary?: WeekSummaryData;
1443
1458
  /** Comments for this week */
1444
1459
  comments?: PlanningComment[];
1445
1460
  /** Whether to show the comment button */
@@ -1453,15 +1468,16 @@ interface WeekHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
1453
1468
  }
1454
1469
  /**
1455
1470
  * Header component for week columns in the planning table.
1456
- * Shows week number and date range with pulsating current week indicator.
1471
+ * Shows week number, date range, and inline summary data.
1457
1472
  *
1458
1473
  * Styling matches Calibration table:
1459
1474
  * - Semibold week label with tracking-tight
1460
1475
  * - Current week: primary color text + pulsating dot (no full header tint)
1461
1476
  * - Date range: smaller, lower contrast, thinner weight (metadata)
1477
+ * - Summary data: inline below date range (production + deliveries)
1462
1478
  * - Comment popover in X-axis header (matching Calibration pattern)
1463
1479
  */
1464
- declare function WeekHeader({ className, week, weekKey, comments, showCommentButton, locationOptions, onAddComment, onCommentClick, ...props }: WeekHeaderProps): react_jsx_runtime.JSX.Element;
1480
+ declare function WeekHeader({ className, week, weekKey, summary, comments, showCommentButton, locationOptions, onAddComment, onCommentClick, ...props }: WeekHeaderProps): react_jsx_runtime.JSX.Element;
1465
1481
 
1466
1482
  interface PlanningTableToolbarProps extends React$1.HTMLAttributes<HTMLDivElement> {
1467
1483
  table: Table$1<Supplier>;
@@ -1535,11 +1551,11 @@ declare function getSupplierColumn(): ColumnDef<Supplier>;
1535
1551
  /**
1536
1552
  * Generate column definitions for week columns
1537
1553
  */
1538
- declare function generateWeekColumns(weeks: Week[], config?: PlanningTableConfig, suppliers?: Supplier[]): ColumnDef<Supplier>[];
1554
+ declare function generateWeekColumns(weeks: Week[], config?: PlanningTableConfig, suppliers?: Supplier[], summaryData?: Map<string, WeekSummaryData>): ColumnDef<Supplier>[];
1539
1555
  /**
1540
1556
  * Generate all column definitions for the planning table
1541
1557
  */
1542
- declare function generateColumns(weeks: Week[], config?: PlanningTableConfig, suppliers?: Supplier[]): ColumnDef<Supplier>[];
1558
+ declare function generateColumns(weeks: Week[], config?: PlanningTableConfig, suppliers?: Supplier[], summaryData?: Map<string, WeekSummaryData>): ColumnDef<Supplier>[];
1543
1559
 
1544
1560
  /**
1545
1561
  * Calibration Table Types
@@ -1803,9 +1819,22 @@ interface CommentPopoverProps {
1803
1819
  */
1804
1820
  declare function CommentPopover({ comments, weekLabel, availablePrefixes, onAddComment, open, onOpenChange, }: CommentPopoverProps): react_jsx_runtime.JSX.Element;
1805
1821
 
1822
+ /**
1823
+ * Summary data for a calibration week column
1824
+ */
1825
+ interface CalibrationWeekSummaryData {
1826
+ /** Calibrated tons for this week */
1827
+ calibratedTons: number;
1828
+ /** Required tons for this week */
1829
+ requiredTons: number;
1830
+ /** Status for styling */
1831
+ status: "normal" | "complete" | "critical";
1832
+ }
1806
1833
  interface CalibrationWeekHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
1807
1834
  /** Week information */
1808
1835
  week: Week;
1836
+ /** Summary data for this week (shown inline in header) */
1837
+ summary?: CalibrationWeekSummaryData;
1809
1838
  /** Comments for this week */
1810
1839
  comments?: CalibrationComment[];
1811
1840
  /** Whether to show the comment button */
@@ -1817,13 +1846,13 @@ interface CalibrationWeekHeaderProps extends React$1.HTMLAttributes<HTMLDivEleme
1817
1846
  }
1818
1847
  /**
1819
1848
  * Header component for week columns in the calibration table.
1820
- * Shows week number (W01, W02...), date range, and comment popover.
1849
+ * Shows week number (W01, W02...), date range, inline summary, and comment popover.
1821
1850
  *
1822
1851
  * Comment button states:
1823
1852
  * - No comments: Plain comment icon
1824
1853
  * - Has comments: Comment icon with notification dot (primary orange)
1825
1854
  */
1826
- declare function CalibrationWeekHeader({ className, week, comments, showCommentButton, availablePrefixes, onAddComment, ...props }: CalibrationWeekHeaderProps): react_jsx_runtime.JSX.Element;
1855
+ declare function CalibrationWeekHeader({ className, week, summary, comments, showCommentButton, availablePrefixes, onAddComment, ...props }: CalibrationWeekHeaderProps): react_jsx_runtime.JSX.Element;
1827
1856
 
1828
1857
  interface RowHeaderCellProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "prefix"> {
1829
1858
  /** Prefix/row data */
@@ -2320,6 +2349,323 @@ interface WeeklyLoadingViewProps {
2320
2349
  */
2321
2350
  declare function WeeklyLoadingView({ week, deliveries, onDeliveryClick, onWeekChange, onDeliveryCommentClick, showNavigation, className, }: WeeklyLoadingViewProps): react_jsx_runtime.JSX.Element;
2322
2351
 
2352
+ /**
2353
+ * Capacity Planning Chart Types
2354
+ *
2355
+ * A visual scheduling chart for planning production packages against deliveries.
2356
+ * - Packages are draggable blocks (height = tons, width = production weeks)
2357
+ * - Delivery deadlines are fixed vertical lines with icons
2358
+ * - Need line shows cumulative requirements
2359
+ */
2360
+
2361
+ /**
2362
+ * A delivery milestone - fixed vertical marker
2363
+ */
2364
+ interface DeliveryMilestone {
2365
+ /** Unique identifier */
2366
+ id: string;
2367
+ /** Week key (YYYY-WXX format) */
2368
+ weekKey: string;
2369
+ /** Delivery label/name */
2370
+ label: string;
2371
+ /** Required quantity for this delivery */
2372
+ quantity: number;
2373
+ /** Icon name or component to show at top */
2374
+ icon?: "truck" | "package" | "flag" | "check" | "star";
2375
+ /** Custom color for the marker */
2376
+ color?: string;
2377
+ }
2378
+ /**
2379
+ * A package/order that can be dragged onto the timeline
2380
+ */
2381
+ interface ProductionPackage {
2382
+ /** Unique identifier */
2383
+ id: string;
2384
+ /** Package name/label */
2385
+ name: string;
2386
+ /** Weight/quantity in tons (determines height) */
2387
+ tons: number;
2388
+ /** Production duration in weeks (determines width) */
2389
+ productionWeeks: number;
2390
+ /** Start week key if assigned (null if unassigned) */
2391
+ startWeek: string | null;
2392
+ /** Color for the package block */
2393
+ color?: string;
2394
+ /** Priority (optional) */
2395
+ priority?: number;
2396
+ /** Associated delivery ID (optional) */
2397
+ deliveryId?: string;
2398
+ }
2399
+ /**
2400
+ * Week column data for the chart
2401
+ */
2402
+ interface WeekColumn {
2403
+ /** Week key (YYYY-WXX format) */
2404
+ weekKey: string;
2405
+ /** Week object with date info */
2406
+ week: Week;
2407
+ /** Week display label (e.g., "W01") */
2408
+ label: string;
2409
+ /** Whether this week has a delivery */
2410
+ hasDelivery: boolean;
2411
+ /** Delivery for this week if any */
2412
+ delivery?: DeliveryMilestone;
2413
+ /** Cumulative need up to this week */
2414
+ cumulativeNeed: number;
2415
+ /** Cumulative planned (from packages ending by this week) */
2416
+ cumulativePlanned: number;
2417
+ /** Packages that occupy this week (partial or full) */
2418
+ packages: ProductionPackage[];
2419
+ /** Total tons in this column */
2420
+ totalTons: number;
2421
+ }
2422
+ /**
2423
+ * Position of a package on the grid
2424
+ */
2425
+ interface PackagePosition {
2426
+ packageId: string;
2427
+ startWeekIndex: number;
2428
+ endWeekIndex: number;
2429
+ rowIndex: number;
2430
+ tons: number;
2431
+ }
2432
+ /**
2433
+ * Props for the Capacity Planning Chart
2434
+ */
2435
+ interface CapacityPlanningChartProps {
2436
+ /** Weeks to display */
2437
+ weeks: Week[];
2438
+ /** Delivery milestones (fixed vertical markers) */
2439
+ deliveries: DeliveryMilestone[];
2440
+ /** Production packages (draggable blocks) */
2441
+ packages: ProductionPackage[];
2442
+ /** Maximum capacity per week (for Y-axis scale) */
2443
+ maxCapacityPerWeek?: number;
2444
+ /** Unit label (e.g., "tons", "pcs") */
2445
+ unit?: string;
2446
+ /** Chart height in pixels */
2447
+ height?: number;
2448
+ /** Callback when a package is moved */
2449
+ onPackageMove?: (packageId: string, startWeek: string | null) => void;
2450
+ /** Callback when clicking on a package */
2451
+ onPackageClick?: (pkg: ProductionPackage) => void;
2452
+ /** Callback when clicking on a delivery */
2453
+ onDeliveryClick?: (delivery: DeliveryMilestone) => void;
2454
+ /** Whether drag and drop is enabled */
2455
+ allowDragDrop?: boolean;
2456
+ /** Additional class names */
2457
+ className?: string;
2458
+ }
2459
+ /**
2460
+ * Calculate cumulative need from deliveries
2461
+ */
2462
+ declare function calculateCumulativeNeed(weeks: Week[], deliveries: DeliveryMilestone[]): Map<string, number>;
2463
+ /**
2464
+ * Calculate which weeks a package occupies
2465
+ */
2466
+ declare function getPackageWeekRange(pkg: ProductionPackage, weeks: Week[]): {
2467
+ startIndex: number;
2468
+ endIndex: number;
2469
+ } | null;
2470
+ /**
2471
+ * Calculate package positions for rendering (handles vertical stacking)
2472
+ */
2473
+ declare function calculatePackagePositions(packages: ProductionPackage[], weeks: Week[]): PackagePosition[];
2474
+ /**
2475
+ * Calculate cumulative planned production by week end
2476
+ */
2477
+ declare function calculateCumulativePlanned(packages: ProductionPackage[], weeks: Week[]): Map<string, number>;
2478
+
2479
+ /**
2480
+ * Capacity Planning Chart
2481
+ *
2482
+ * Interactive scheduling chart for planning production packages against deliveries.
2483
+ */
2484
+ declare function CapacityPlanningChart({ weeks, deliveries, packages, maxCapacityPerWeek, unit, height, onPackageMove, onPackageClick, onDeliveryClick, allowDragDrop, className, }: CapacityPlanningChartProps): react_jsx_runtime.JSX.Element;
2485
+
2486
+ /**
2487
+ * Production Package – Time Feasibility Gantt Types
2488
+ *
2489
+ * Data types for visualizing production packages and their feasibility
2490
+ * relative to must-ship delivery dates.
2491
+ */
2492
+ /**
2493
+ * Feasibility status of a package
2494
+ */
2495
+ type FeasibilityStatus = "feasible" | "at-risk" | "infeasible";
2496
+ /**
2497
+ * A single element within a package (for display only)
2498
+ */
2499
+ interface PackageElement {
2500
+ id: string;
2501
+ name: string;
2502
+ /** Last day / must-ship date for this element */
2503
+ mustShipDate: Date;
2504
+ /** Volume in tons */
2505
+ tons: number;
2506
+ }
2507
+ /**
2508
+ * Feasibility Package - the main data unit for time feasibility visualization
2509
+ *
2510
+ * Represents a collection of elements that need to be produced.
2511
+ * Duration is externally computed; this component does NOT calculate it.
2512
+ *
2513
+ * Named "FeasibilityPackage" to distinguish from capacity-chart's ProductionPackage
2514
+ * which has a different structure (week-based vs date-based).
2515
+ */
2516
+ interface FeasibilityPackage {
2517
+ /** Unique package identifier */
2518
+ id: string;
2519
+ /** Display name for the package */
2520
+ name: string;
2521
+ /** Production start date */
2522
+ startDate: Date;
2523
+ /** Production end date (duration is derived externally) */
2524
+ endDate: Date;
2525
+ /** Earliest must-ship date among all elements */
2526
+ earliestMustShipDate: Date;
2527
+ /** Number of elements in the package */
2528
+ elementCount: number;
2529
+ /** Total volume in tons */
2530
+ totalTons: number;
2531
+ /** Elements for detail view (optional - not all views need this) */
2532
+ elements?: PackageElement[];
2533
+ /** Custom color (optional) */
2534
+ color?: string;
2535
+ }
2536
+ /**
2537
+ * Calibration capacity for a week
2538
+ * Used to determine if production can be moved earlier
2539
+ */
2540
+ interface WeekCapacity {
2541
+ /** Week key in YYYY-WXX format */
2542
+ weekKey: string;
2543
+ /** Week start date */
2544
+ startDate: Date;
2545
+ /** Available capacity in tons */
2546
+ availableTons: number;
2547
+ /** Already planned capacity in tons */
2548
+ plannedTons: number;
2549
+ }
2550
+ /**
2551
+ * Props for the Production Package Gantt block
2552
+ */
2553
+ interface ProductionPackageGanttProps {
2554
+ /** Package(s) to visualize */
2555
+ packages: FeasibilityPackage[];
2556
+ /** Optional calibration capacity data */
2557
+ capacityData?: WeekCapacity[];
2558
+ /** Called when a package is moved to a new start date */
2559
+ onPackageMove?: (packageId: string, newStartDate: Date, newEndDate: Date) => void;
2560
+ /** Called when a package is clicked (for detail sheet) */
2561
+ onPackageClick?: (pkg: FeasibilityPackage) => void;
2562
+ /** Timeline range */
2563
+ range?: "weekly" | "monthly";
2564
+ /** Zoom level (percentage) */
2565
+ zoom?: number;
2566
+ /** Additional CSS class */
2567
+ className?: string;
2568
+ }
2569
+ /**
2570
+ * Calculate feasibility status based on package dates
2571
+ */
2572
+ declare function calculateFeasibility(endDate: Date, mustShipDate: Date): FeasibilityStatus;
2573
+ /**
2574
+ * Get status color for feasibility
2575
+ */
2576
+ declare function getFeasibilityColor(status: FeasibilityStatus): string;
2577
+ /**
2578
+ * Get status label for display
2579
+ */
2580
+ declare function getFeasibilityLabel(status: FeasibilityStatus): string;
2581
+ /**
2582
+ * Format date for display
2583
+ */
2584
+ declare function formatDisplayDate(date: Date): string;
2585
+
2586
+ /**
2587
+ * Production Package – Time Feasibility Gantt
2588
+ *
2589
+ * Visualizes production packages vs delivery clashes.
2590
+ *
2591
+ * Features:
2592
+ * - Clean timeline: no delivery markers by default
2593
+ * - Hovering a RED (clash) package reveals the must-ship cut for that row only
2594
+ * - Bars can be DRAGGED but NOT RESIZED
2595
+ * - Sticky left sidebar with package info
2596
+ * - Clicking a package opens read-only Sheet with element DataTable
2597
+ */
2598
+ declare function ProductionPackageGantt({ packages, capacityData, onPackageMove, onPackageClick, range, zoom, className, }: ProductionPackageGanttProps): react_jsx_runtime.JSX.Element;
2599
+
2600
+ /**
2601
+ * Phase Gantt Types
2602
+ *
2603
+ * Types for the widescreen phase overview Gantt component.
2604
+ */
2605
+ interface Person {
2606
+ name: string;
2607
+ role: string;
2608
+ /** Allocation percentage (0-100) or hours per week */
2609
+ allocation?: number;
2610
+ }
2611
+ interface WorkPackage {
2612
+ id: string;
2613
+ phaseId: string;
2614
+ title: string;
2615
+ startDate: Date;
2616
+ endDate: Date;
2617
+ deadlineDate?: Date;
2618
+ people: Person[];
2619
+ /** Optional color override */
2620
+ color?: string;
2621
+ }
2622
+ interface Phase {
2623
+ id: string;
2624
+ title: string;
2625
+ startDate: Date;
2626
+ endDate: Date;
2627
+ deadlineDate: Date;
2628
+ /** Optional color for the phase bar */
2629
+ color?: string;
2630
+ /** Whether this phase has comments */
2631
+ hasComments?: boolean;
2632
+ /** Whether this phase has issues/blockers */
2633
+ hasIssues?: boolean;
2634
+ }
2635
+ interface PhaseGanttProps {
2636
+ /** Project phases */
2637
+ phases: Phase[];
2638
+ /** Work packages within phases */
2639
+ packages: WorkPackage[];
2640
+ /** Timeline range */
2641
+ range?: "weekly" | "monthly";
2642
+ /** Zoom level (default 100) */
2643
+ zoom?: number;
2644
+ /** Callback when a package is clicked */
2645
+ onPackageClick?: (pkg: WorkPackage) => void;
2646
+ /** Additional class name */
2647
+ className?: string;
2648
+ /** Initially expanded phase IDs */
2649
+ defaultExpandedPhases?: string[];
2650
+ }
2651
+ declare const PHASE_COLORS: Record<string, string>;
2652
+ declare function getPhaseColor(phaseId: string, customColor?: string): string;
2653
+
2654
+ /**
2655
+ * Phase Gantt - Widescreen Project Phase Overview
2656
+ *
2657
+ * Visualizes project phases as collapsible parent rows with work packages inside.
2658
+ * Optimized for widescreen displays with clean grid lines and hover-triggered deadlines.
2659
+ *
2660
+ * Features:
2661
+ * - Subtle phase bars (background layer) with color indicators
2662
+ * - Deadline markers appear on phase row hover only (semantic amber color)
2663
+ * - Comment and issue indicators on phases
2664
+ * - Thin vertical grid lines (no background bands)
2665
+ * - Collapsible phases with work packages inside
2666
+ */
2667
+ declare function PhaseGantt({ phases, packages, range, zoom, onPackageClick, className, defaultExpandedPhases, }: PhaseGanttProps): react_jsx_runtime.JSX.Element;
2668
+
2323
2669
  /**
2324
2670
  * Event Calendar Types
2325
2671
  * Based on big-calendar by Leonardo Ramos (MIT License)
@@ -2942,6 +3288,13 @@ type GanttContextProps = {
2942
3288
  expandedGroups: Record<string, boolean>;
2943
3289
  setGroupExpanded: (groupId: string, expanded: boolean) => void;
2944
3290
  };
3291
+ declare const getDateByMousePosition: (context: GanttContextProps, mouseX: number) => Date;
3292
+ declare const getOffset: (date: Date, timelineStartDate: Date, context: GanttContextProps) => number;
3293
+ declare const getWidth: (startAt: Date, endAt: Date | null, context: GanttContextProps) => number;
3294
+ declare const GanttContext: React$1.Context<GanttContextProps>;
3295
+
3296
+ declare const useGanttContext: () => GanttContextProps;
3297
+
2945
3298
  type GanttContentHeaderProps = {
2946
3299
  renderHeaderItem: (index: number) => ReactNode;
2947
3300
  title: string;
@@ -3133,4 +3486,4 @@ type KanbanProviderProps<T extends KanbanItemProps = KanbanItemProps, C extends
3133
3486
  };
3134
3487
  declare const KanbanProvider: <T extends KanbanItemProps = KanbanItemProps, C extends KanbanColumnProps = KanbanColumnProps>({ children, onDragStart, onDragEnd, onDragOver, className, columns, data, onDataChange, ...props }: KanbanProviderProps<T, C>) => react_jsx_runtime.JSX.Element;
3135
3488
 
3136
- 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, type CalibrationCellData, type CalibrationComment, type CalibrationMode, type CalibrationOverviewProps, type CalibrationPrefix, type CalibrationStatus, type CalibrationSupplier, CalibrationTable, type CalibrationTableConfig, type CalibrationTableProps, type CalibrationUnit, CalibrationWeekCell, type CalibrationWeekCellProps, CalibrationWeekHeader, type CalibrationWeekHeaderProps, 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, type CheckpointBadgeType, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColumnSummaryCell, type ColumnSummaryCellProps, type ColumnSummaryData, ColumnSummaryStrip, type ColumnSummaryStripProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentButton, type CommentButtonProps, type CommentContext, CommentDialog, type CommentDialogProps, type CommentLocationOption, CommentPopover, type CommentPopoverProps, 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, DeliveryBadge, type DeliveryBadgeProps, DeliveryCard, type DeliveryCardProps, DeliveryDetailPage, type DeliveryDetailPageProps, type DeliveryElement, DeliveryIndicator, type DeliveryIndicatorProps, DeliveryIndicators, type DeliveryIndicatorsProps, type DeliveryStatus, type DeliveryVisualState, 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, type ElementShipmentStatus, 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, GanttAddFeatureHelper, type GanttAddFeatureHelperProps, type GanttCollapsibleGroupProps, GanttCollapsibleSidebarGroup, GanttCollapsibleTimelineGroup, type GanttCollapsibleTimelineGroupProps, GanttColumn, type GanttColumnProps, GanttColumns, type GanttColumnsProps, GanttContentHeader, type GanttContentHeaderProps, type GanttContextProps, GanttCreateMarkerTrigger, type GanttCreateMarkerTriggerProps, type GanttFeature, type GanttFeatureContextMenuAction, GanttFeatureDragHelper, type GanttFeatureDragHelperProps, GanttFeatureItem, GanttFeatureItemCard, type GanttFeatureItemCardProps, type GanttFeatureItemProps, GanttFeatureList, GanttFeatureListGroup, type GanttFeatureListGroupProps, type GanttFeatureListProps, GanttFeatureRow, type GanttFeatureRowProps, GanttGridLines, type GanttGridLinesProps, type GanttGroup, GanttGroupSummaryBar, type GanttGroupSummaryBarProps, GanttHeader, type GanttHeaderProps, GanttMarker, type GanttMarkerProps, GanttProvider, type GanttProviderProps, GanttSidebar, GanttSidebarGroup, type GanttSidebarGroupProps, GanttSidebarHeader, type GanttSidebarHeaderProps, GanttSidebarItem, type GanttSidebarItemProps, type GanttSidebarProps, type GanttStatus, GanttTimeline, type GanttTimelineProps, GanttToday, type GanttTodayProps, 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, InsightBar, type InsightBarProps, type InsightMetric, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, KanbanCards, type KanbanCardsProps, KanbanHeader, type KanbanHeaderProps, KanbanProvider, type KanbanProviderProps, Kbd, KbdGroup, Label, type LoadingComment, type LoadingDelivery, type LoadingDeliveryStatus, type LoadingElement, type LoadingElementStatus, type LoadingPrefix, type LoadingSupplier, type LoadingUserRole, type LoadingWeek, Map$1 as Map, MapMarker, type MapMarkerProps, MapPopup, type MapPopupProps, type MapProps, MapTileLayer, type MapTileLayerProps, MapTooltip, type MapTooltipProps, MapZoomControl, type MapZoomControlProps, 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, NetBadge, type NetBadgeProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PlanningComment, type PlanningCommentLocation, type PlanningCommentLocationType, PlanningTable, type PlanningTableConfig, type PlanningTableProps, PlanningTableToolbar, type PlanningTableToolbarProps, type PlanningUserRole, PlanningWeekCommentPopover, type PlanningWeekCommentPopoverProps, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PrefixOption, type ProductionData, type ProductionUnit, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, type Range, ResizableHandle, ResizablePanel, ResizablePanelGroup, RowHeaderCell, type RowHeaderCellProps, 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, StatusProgress, type StatusProgressProps, type StatusProgressVariant, type SubmissionStatus, SubmitCalibrationBar, type SubmitCalibrationBarProps, type Supplier, type SupplierBadgeType, SupplierCell, type SupplierCellProps, SupplierWeeklyLoading, type SupplierWeeklyLoadingProps, 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, type TimelineData, 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, WeekDetailSheet, type WeekDetailSheetProps, WeekHeader, type WeekHeaderProps, WeekView, type WeekViewProps, WeeklyLoadingView, type WeeklyLoadingViewProps, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateCalibrationCells, calculateDropDates, calculateMonthEventPositions, canSubmitCalibration, cardVariants, createDefaultEvent, deliveryIndicatorVariants, extractPrefixes, formatCalibrationUnit, formatDateRange, formatProductionUnit, formatTime, generateColumns, generateEventId, generateLoadingWeek, generateLocationOptions, generateWeekColumns, generateWeeks, getCalendarCells, getCommentLocationLabel, getCurrentEvents, getDayHours, getDayLabel, getDeliveryVisualState, getElementShipmentStatus, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getHeaderLabel, getISOWeek, getLoadingDeliveryStatusLabel, getLoadingElementStatusLabel, getLoadingISOWeek, getLoadingWeekKey, getMonthCellEvents, getMonthDays, getShipmentStatusLabel, getShortDayLabel, getSupplierColumn, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getWeekKey, getYearMonths, groupDeliveriesByDay, groupDeliveriesByPrefixAndDay, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useGanttDragging, useGanttScrollX, useIsMobile, useSearchShortcut, useSidebar };
3489
+ 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, type BreadcrumbItemType, 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, type CalibrationCellData, type CalibrationComment, type CalibrationMode, type CalibrationOverviewProps, type CalibrationPrefix, type CalibrationStatus, type CalibrationSupplier, CalibrationTable, type CalibrationTableConfig, type CalibrationTableProps, type CalibrationUnit, CalibrationWeekCell, type CalibrationWeekCellProps, CalibrationWeekHeader, type CalibrationWeekHeaderProps, CapacityPlanningChart, type CapacityPlanningChartProps, 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, type CheckpointBadgeType, CircularProgress, type CircularProgressProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColumnSummaryCell, type ColumnSummaryCellProps, type ColumnSummaryData, ColumnSummaryStrip, type ColumnSummaryStripProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentButton, type CommentButtonProps, type CommentContext, CommentDialog, type CommentDialogProps, type CommentLocationOption, CommentPopover, type CommentPopoverProps, 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, DeliveryBadge, type DeliveryBadgeProps, DeliveryCard, type DeliveryCardProps, DeliveryDetailPage, type DeliveryDetailPageProps, type DeliveryElement, DeliveryIndicator, type DeliveryIndicatorProps, DeliveryIndicators, type DeliveryIndicatorsProps, type DeliveryMilestone, type DeliveryStatus, type DeliveryVisualState, 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, type ElementShipmentStatus, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EventBadge, type EventBadgeProps, EventCalendarProvider, type EventCalendarProviderProps, EventDialog, type EventDialogProps, type FeasibilityPackage, type FeasibilityStatus, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GanttAddFeatureHelper, type GanttAddFeatureHelperProps, type GanttCollapsibleGroupProps, GanttCollapsibleSidebarGroup, GanttCollapsibleTimelineGroup, type GanttCollapsibleTimelineGroupProps, GanttColumn, type GanttColumnProps, GanttColumns, type GanttColumnsProps, GanttContentHeader, type GanttContentHeaderProps, GanttContext, type GanttContextProps, GanttCreateMarkerTrigger, type GanttCreateMarkerTriggerProps, type GanttFeature, type GanttFeatureContextMenuAction, GanttFeatureDragHelper, type GanttFeatureDragHelperProps, GanttFeatureItem, GanttFeatureItemCard, type GanttFeatureItemCardProps, type GanttFeatureItemProps, GanttFeatureList, GanttFeatureListGroup, type GanttFeatureListGroupProps, type GanttFeatureListProps, GanttFeatureRow, type GanttFeatureRowProps, GanttGridLines, type GanttGridLinesProps, type GanttGroup, GanttGroupSummaryBar, type GanttGroupSummaryBarProps, GanttHeader, type GanttHeaderProps, GanttMarker, type GanttMarkerProps, GanttProvider, type GanttProviderProps, GanttSidebar, GanttSidebarGroup, type GanttSidebarGroupProps, GanttSidebarHeader, type GanttSidebarHeaderProps, GanttSidebarItem, type GanttSidebarItemProps, type GanttSidebarProps, type GanttStatus, GanttTimeline, type GanttTimelineProps, GanttToday, type GanttTodayProps, 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, InsightBar, type InsightBarProps, type InsightMetric, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, KanbanBoard, type KanbanBoardProps, KanbanCard, type KanbanCardProps, KanbanCards, type KanbanCardsProps, KanbanHeader, type KanbanHeaderProps, KanbanProvider, type KanbanProviderProps, Kbd, KbdGroup, Label, type LoadingComment, type LoadingDelivery, type LoadingDeliveryStatus, type LoadingElement, type LoadingElementStatus, type LoadingPrefix, type LoadingSupplier, type LoadingUserRole, type LoadingWeek, Map$1 as Map, MapMarker, type MapMarkerProps, MapPopup, type MapPopupProps, type MapProps, MapTileLayer, type MapTileLayerProps, MapTooltip, type MapTooltipProps, MapZoomControl, type MapZoomControlProps, 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, type NavSecondaryItem, type NavSecondaryProps, NavUser, type NavUserProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NetBadge, type NetBadgeProps, PHASE_COLORS, type PackageElement, type PackagePosition, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type Person, type Phase, PhaseGantt, type PhaseGanttProps, type PlanningComment, type PlanningCommentLocation, type PlanningCommentLocationType, PlanningTable, type PlanningTableConfig, type PlanningTableProps, PlanningTableToolbar, type PlanningTableToolbarProps, type PlanningUserRole, PlanningWeekCommentPopover, type PlanningWeekCommentPopoverProps, PlayerCanvas, PlayerCanvasActionButton, PlayerCanvasControls, PlayerCanvasDivider, PlayerCanvasInfo, PlayerCanvasLabel, PlayerCanvasPlayButton, PlayerCanvasProgress, PlayerCanvasSkipButton, PlayerCanvasTitle, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PrefixOption, type ProductionData, type ProductionPackage, ProductionPackageGantt, type ProductionPackageGanttProps, type ProductionUnit, Progress, QuickAddEvent, type QuickAddEventProps, RadioGroup, RadioGroupItem, type Range, ResizableHandle, ResizablePanel, ResizablePanelGroup, RowHeaderCell, type RowHeaderCellProps, 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, type SiteHeaderProps, Skeleton, Slider, Spinner, StatusProgress, type StatusProgressProps, type StatusProgressVariant, type SubmissionStatus, SubmitCalibrationBar, type SubmitCalibrationBarProps, type Supplier, type SupplierBadgeType, SupplierCell, type SupplierCellProps, SupplierWeeklyLoading, type SupplierWeeklyLoadingProps, 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, type TimelineData, Toaster, Toggle, ToggleGroup, ToggleGroupItem, ToolBarCanvas, ToolBarCanvasButton, ToolBarCanvasDivider, ToolBarCanvasGroup, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseDroppableOptions, type UserAvatarItem, UserAvatarsDropdown, type UserAvatarsDropdownProps, VIEW_LABELS, type Week, type WeekCapacity, WeekCell, type WeekCellData, type WeekCellProps, type WeekColumn, WeekDetailDialog, type WeekDetailDialogProps, WeekDetailSheet, type WeekDetailSheetProps, WeekHeader, type WeekHeaderProps, WeekView, type WeekViewProps, WeeklyLoadingView, type WeeklyLoadingViewProps, type WorkPackage, YearView, type YearViewProps, badgeVariants, buttonGroupVariants, buttonVariants, calculateCalibrationCells, calculateCumulativeNeed, calculateCumulativePlanned, calculateDropDates, calculateFeasibility, calculateMonthEventPositions, calculatePackagePositions, canSubmitCalibration, cardVariants, createDefaultEvent, deliveryIndicatorVariants, extractPrefixes, formatCalibrationUnit, formatDateRange, formatDisplayDate, formatProductionUnit, formatTime, getDateByMousePosition as ganttGetDateByMousePosition, getOffset as ganttGetOffset, getWidth as ganttGetWidth, generateColumns, generateEventId, generateLoadingWeek, generateLocationOptions, generateWeekColumns, generateWeeks, getCalendarCells, getCommentLocationLabel, getCurrentEvents, getDayHours, getDayLabel, getDeliveryVisualState, getElementShipmentStatus, getEventBlockStyle, getEventDuration, getEventDurationMinutes, getEventsCount, getEventsForDate, getEventsInRange, getFeasibilityColor, getFeasibilityLabel, getHeaderLabel, getISOWeek, getLoadingDeliveryStatusLabel, getLoadingElementStatusLabel, getLoadingISOWeek, getLoadingWeekKey, getMonthCellEvents, getMonthDays, getPackageWeekRange, getPhaseColor, getShipmentStatusLabel, getShortDayLabel, getSupplierColumn, getTimeHeight, getTimePosition, getViewDateRange, getVisibleHours, getWeekDayNames, getWeekDays, getWeekKey, getYearMonths, groupDeliveriesByDay, groupDeliveriesByPrefixAndDay, groupEvents, isMultiDayEvent, isWorkingHour, navigateDate, navigationMenuTriggerStyle, playerCanvasPlayButtonVariants, playerCanvasSkipButtonVariants, rangeText, sectionVariants, snapToInterval, sortEvents, splitEventsByDuration, toggleVariants, toolBarCanvasButtonVariants, useDrag, useDraggable, useDroppable, useEventCalendar, useEventsInRange, useFilteredEvents, useFormField, useGanttContext, useGanttDragging, useGanttScrollX, useIsMobile, useSearchShortcut, useSidebar };