@libxai/board 1.4.26 → 1.4.27

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.cts CHANGED
@@ -1,9 +1,9 @@
1
1
  import * as _libxai_core from '@libxai/core';
2
2
  import { Dependency, BaseViewAdapter, ViewBoardData, ExportFormat as ExportFormat$1, ViewOptions, BoardData, ColumnData, CardData, BoardState, BoardStore, Board as Board$1, Column as Column$2, Card as Card$2, Priority as Priority$1, CardStatus as CardStatus$1, DragState, SelectionState } from '@libxai/core';
3
3
  export { AutoScheduleOptions, BaseEntity, Baseline, BaselineCardSnapshot, BoardData, Board as BoardModel, BoardState, BoardStore, CardData, Card as CardModel, ColumnData, Column as ColumnModel, CriticalPath, Dependency, DependencyEngine, DependencyType, DependencyValidation, GanttConfig, GanttState, Milestone, ResourceAllocation, ResourceUtilization, ScheduledTask, Store, StoreEvent, TaskConstraint, TaskConstraintType, UserData } from '@libxai/core';
4
- import * as react_jsx_runtime from 'react/jsx-runtime';
5
4
  import * as React$1 from 'react';
6
- import React__default, { Component, ReactNode, ErrorInfo } from 'react';
5
+ import React__default, { ReactNode, Component, ErrorInfo } from 'react';
6
+ import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import { ClassValue } from 'clsx';
8
8
  import * as _tanstack_virtual_core from '@tanstack/virtual-core';
9
9
 
@@ -45,6 +45,24 @@ interface Task {
45
45
  parentId?: string;
46
46
  level?: number;
47
47
  position?: number;
48
+ wbsCode?: string;
49
+ taskCode?: string;
50
+ scheduleVariance?: number;
51
+ blockers?: Array<{
52
+ type: string;
53
+ id: string;
54
+ severity: 'critical' | 'warning' | 'info';
55
+ }>;
56
+ teamLoad?: {
57
+ percentage: number;
58
+ label: string;
59
+ };
60
+ effortMinutes?: number;
61
+ timeLoggedMinutes?: number;
62
+ soldEffortMinutes?: number;
63
+ baselineStartDate?: Date;
64
+ baselineEndDate?: Date;
65
+ baselineProgress?: number;
48
66
  }
49
67
  type TimeScale = 'day' | 'week' | 'month';
50
68
  type Theme$1 = 'dark' | 'light' | 'neutral';
@@ -96,6 +114,12 @@ interface GanttTheme {
96
114
  statusCompleted: string;
97
115
  hoverBg: string;
98
116
  focusRing: string;
117
+ dotGrid?: string;
118
+ glassHeader?: string;
119
+ glassToolbar?: string;
120
+ forecastHud?: string;
121
+ neonRedGlow?: string;
122
+ executionBarBg?: string;
99
123
  }
100
124
  /**
101
125
  * Templates for customizing Gantt rendering
@@ -319,6 +343,18 @@ interface AICommandResult {
319
343
  success: boolean;
320
344
  error?: string;
321
345
  }
346
+ /**
347
+ * v3.1.0: Project forecast metrics for the Forecast HUD panel
348
+ * Computed by the consumer app and passed through GanttConfig
349
+ */
350
+ interface ProjectForecast {
351
+ expectedFinish?: Date | null;
352
+ delayDays?: number | null;
353
+ confidencePercent?: number | null;
354
+ costAtCompletion?: number | null;
355
+ budgetVariancePercent?: number | null;
356
+ currency?: string;
357
+ }
322
358
  interface GanttConfig {
323
359
  theme?: Theme$1;
324
360
  timeScale?: TimeScale;
@@ -350,6 +386,8 @@ interface GanttConfig {
350
386
  onCreateTask?: () => void;
351
387
  taskFilter?: TaskFilterType;
352
388
  onTaskFilterChange?: (filter: TaskFilterType) => void;
389
+ /** Render custom content on the right side of toolbar (e.g. lens toggle) */
390
+ toolbarRightContent?: ReactNode;
353
391
  templates?: GanttTemplates;
354
392
  permissions?: GanttPermissions;
355
393
  disableScrollSync?: boolean;
@@ -411,7 +449,28 @@ interface GanttConfig {
411
449
  * @default false
412
450
  */
413
451
  autoExpandSubtasks?: boolean;
452
+ /**
453
+ * v3.0.0: Show baseline ghost bars behind actual bars (Oracle view)
454
+ * When true, tasks with baselineStartDate/baselineEndDate show a dashed outline behind the actual bar
455
+ * @default false
456
+ */
457
+ showBaseline?: boolean;
458
+ /**
459
+ * v3.0.0: Gantt view mode — Execution (actual) vs Oracle (baseline comparison)
460
+ * Controls the Execution/Oracle toggle in the Chronos toolbar
461
+ * @default 'execution'
462
+ */
463
+ viewMode?: 'execution' | 'oracle';
464
+ onViewModeChange?: (mode: 'execution' | 'oracle') => void;
465
+ /**
466
+ * v3.1.0: Project forecast data for the Forecast HUD panel in Chronos toolbar
467
+ * When provided, replaces hardcoded placeholder values with real metrics
468
+ */
469
+ projectForecast?: ProjectForecast;
414
470
  onThemeChange?: (theme: Theme$1) => void;
471
+ onTimeScaleChange?: (timeScale: TimeScale) => void;
472
+ onZoomChange?: (zoom: number) => void;
473
+ onDateRangeChange?: (startDate: Date, endDate: Date) => void;
415
474
  onTaskClick?: (task: Task) => void;
416
475
  onTaskDblClick?: (task: Task) => void;
417
476
  onTaskContextMenu?: (task: Task, event: React.MouseEvent) => void;
@@ -804,6 +863,8 @@ interface RenderProps {
804
863
  renderColumnHeader?: (column: Column$1, cardCount: number) => React.ReactNode;
805
864
  /** Custom empty state */
806
865
  renderEmptyState?: (column: Column$1) => React.ReactNode;
866
+ /** v2.2.0: Custom column footer (e.g. AddCardButton) */
867
+ renderColumnFooter?: (column: Column$1) => React.ReactNode;
807
868
  }
808
869
  /**
809
870
  * User entity for assignment
@@ -915,6 +976,12 @@ interface KanbanBoardProps {
915
976
  onDiscardTimer?: (taskId: string) => void;
916
977
  /** Blur financial data (tiempo ofertado) for unauthorized users */
917
978
  blurFinancials?: boolean;
979
+ /** Side panel rendered alongside the board columns */
980
+ sidePanel?: React.ReactNode;
981
+ /** Custom renderer for column header metrics (below title) */
982
+ renderColumnMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
983
+ /** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
984
+ suppressDetailModal?: boolean;
918
985
  }
919
986
  /**
920
987
  * Drag event data
@@ -1458,7 +1525,7 @@ declare class KanbanViewAdapter extends BaseViewAdapter<ViewBoardData> {
1458
1525
  */
1459
1526
  declare function createKanbanView(config?: KanbanViewConfig): KanbanViewAdapter;
1460
1527
 
1461
- declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, config, availableUsers, className, style, isLoading, error, children, availableTags, onCreateTag, attachmentsByCard, onUploadAttachments, onDeleteAttachment, comments, onAddComment, currentUser, mentionableUsers, onTaskOpen, onUploadCommentAttachments, enableTimeTracking, timeTrackingSummary, timeEntries, timerState, onLogTime, onUpdateEstimate, onUpdateSoldEffort, onStartTimer, onStopTimer, onDiscardTimer, blurFinancials, }: KanbanBoardProps & {
1528
+ declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, config, availableUsers, className, style, isLoading, error, children, availableTags, onCreateTag, attachmentsByCard, onUploadAttachments, onDeleteAttachment, comments, onAddComment, currentUser, mentionableUsers, onTaskOpen, onUploadCommentAttachments, enableTimeTracking, timeTrackingSummary, timeEntries, timerState, onLogTime, onUpdateEstimate, onUpdateSoldEffort, onStartTimer, onStopTimer, onDiscardTimer, blurFinancials, sidePanel, renderColumnMetrics, suppressDetailModal, }: KanbanBoardProps & {
1462
1529
  children?: React.ReactNode;
1463
1530
  }): react_jsx_runtime.JSX.Element;
1464
1531
 
@@ -1491,8 +1558,10 @@ interface KanbanToolbarProps {
1491
1558
  onExportJSON?: () => void;
1492
1559
  onExportExcel?: () => Promise<void>;
1493
1560
  translations?: Partial<KanbanToolbarI18n>;
1561
+ /** Render custom content on the right side of toolbar (e.g. lens toggle) */
1562
+ toolbarRightContent?: React.ReactNode;
1494
1563
  }
1495
- declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
1564
+ declare function KanbanToolbar({ columns, onCreateTask, createTaskLabel, theme, locale, useColumnSelector, onExportCSV, onExportJSON, onExportExcel, translations, toolbarRightContent, }: KanbanToolbarProps): react_jsx_runtime.JSX.Element;
1496
1565
 
1497
1566
  /**
1498
1567
  * AddColumnButton Component
@@ -1586,25 +1655,35 @@ interface AddCardButtonProps {
1586
1655
  /** Locale for translations */
1587
1656
  locale?: 'en' | 'es';
1588
1657
  }
1589
- /**
1590
- * AddCardButton - ClickUp-style inline form to add new cards to a Kanban column
1591
- *
1592
- * Features:
1593
- * - Expandable inline form with accent border
1594
- * - Quick name input with inline action buttons
1595
- * - Optional: assignee selector, date picker, priority
1596
- * - Keyboard shortcuts (Enter to save, Escape to cancel)
1597
- *
1598
- * @example
1599
- * ```tsx
1600
- * <AddCardButton
1601
- * columnId="todo"
1602
- * onAddCard={(data) => createTask(data)}
1603
- * availableUsers={users}
1604
- * />
1605
- * ```
1606
- */
1607
- declare function AddCardButton({ columnId, onAddCard, availableUsers, className, placeholder, buttonLabel, disabled, theme, locale, }: AddCardButtonProps): react_jsx_runtime.JSX.Element;
1658
+ declare function AddCardButton({ columnId, onAddCard, availableUsers, className, buttonLabel, disabled, theme, locale, }: AddCardButtonProps): react_jsx_runtime.JSX.Element;
1659
+
1660
+ interface QuickTaskCreateData {
1661
+ name: string;
1662
+ priority?: 'low' | 'medium' | 'high' | 'urgent';
1663
+ assignee?: User;
1664
+ assigneeId?: string | null;
1665
+ startDate?: Date;
1666
+ endDate?: Date;
1667
+ }
1668
+ interface QuickTaskCreateProps {
1669
+ /** Called when user submits the form */
1670
+ onSubmit: (data: QuickTaskCreateData) => void;
1671
+ /** Called when user cancels / clicks outside */
1672
+ onCancel: () => void;
1673
+ /** Available users for assignee picker */
1674
+ availableUsers?: User[];
1675
+ /** Dark or light theme */
1676
+ isDark?: boolean;
1677
+ /** Locale for i18n */
1678
+ locale?: 'en' | 'es';
1679
+ /** Default date (e.g. the calendar cell's date) */
1680
+ defaultDate?: Date;
1681
+ /** Extra CSS class */
1682
+ className?: string;
1683
+ /** Whether dropdowns open upward (bottom-full) or downward (top-full). Default: 'up' */
1684
+ dropdownDirection?: 'up' | 'down';
1685
+ }
1686
+ declare function QuickTaskCreate({ onSubmit, onCancel, availableUsers, isDark, locale, defaultDate, className, dropdownDirection, }: QuickTaskCreateProps): react_jsx_runtime.JSX.Element;
1608
1687
 
1609
1688
  interface ColumnProps {
1610
1689
  /** Column data */
@@ -1643,6 +1722,8 @@ interface ColumnProps {
1643
1722
  isDeletable?: boolean;
1644
1723
  /** Custom className */
1645
1724
  className?: string;
1725
+ /** v2.0.0: Custom metrics renderer below column header */
1726
+ renderMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
1646
1727
  }
1647
1728
  /**
1648
1729
  * Column Component
@@ -2360,28 +2441,16 @@ interface TimePopoverProps {
2360
2441
  declare function TimePopover({ taskId: _taskId, summary, entries, isTimerRunning, timerElapsedSeconds, onLogTime, onUpdateEstimate, onStartTimer, onStopTimer, onDiscardTimer, onClose, className, }: TimePopoverProps): react_jsx_runtime.JSX.Element;
2361
2442
 
2362
2443
  /**
2363
- * TimeInputPopover - Compact popover for entering time values
2364
- * v1.3.0: Extracted from TaskDetailModal for reuse in ListView
2365
- *
2366
- * Used for:
2367
- * - Logging time from list view column
2368
- * - Setting estimates
2369
- * - Setting quoted time
2444
+ * TimeInputPopover - Chronos V2 micro-popover for time entry
2445
+ * Glass morphism design matching ListView Chronos style
2370
2446
  */
2371
2447
  interface TimeInputPopoverProps {
2372
- /** Mode determines the title and behavior */
2373
2448
  mode: 'estimate' | 'quoted' | 'log';
2374
- /** Locale for translations */
2375
2449
  locale: 'en' | 'es';
2376
- /** Dark mode */
2377
2450
  isDark: boolean;
2378
- /** Current value in minutes (for estimate/quoted modes) */
2379
2451
  currentValue?: number | null;
2380
- /** Called when user saves the value */
2381
2452
  onSave: (minutes: number | null, note?: string) => Promise<void>;
2382
- /** Called when popover should close */
2383
2453
  onClose: () => void;
2384
- /** Additional class names */
2385
2454
  className?: string;
2386
2455
  }
2387
2456
  declare function TimeInputPopover({ mode, locale, isDark, currentValue, onSave, onClose, className, }: TimeInputPopoverProps): react_jsx_runtime.JSX.Element;
@@ -2527,6 +2596,13 @@ interface GanttBoardRef {
2527
2596
  * Collapse all tasks
2528
2597
  */
2529
2598
  collapseAll: () => void;
2599
+ /**
2600
+ * v3.0.0: Collapse tasks to a specific WBS level
2601
+ * Level 1 = only root tasks visible
2602
+ * Level 2 = root + first-level children
2603
+ * 'all' = expand everything
2604
+ */
2605
+ collapseToLevel: (level: number | 'all') => void;
2530
2606
  /**
2531
2607
  * Undo last change
2532
2608
  * Similar to: gantt.undo()
@@ -2619,6 +2695,13 @@ interface GanttToolbarProps {
2619
2695
  onTaskFilterChange?: (filter: TaskFilterType) => void;
2620
2696
  hideCompleted?: boolean;
2621
2697
  onHideCompletedChange?: (hide: boolean) => void;
2698
+ toolbarRightContent?: React.ReactNode;
2699
+ wbsLevel?: number | 'all';
2700
+ onWbsLevelChange?: (level: number | 'all') => void;
2701
+ maxWbsDepth?: number;
2702
+ viewMode?: 'execution' | 'oracle';
2703
+ onViewModeChange?: (mode: 'execution' | 'oracle') => void;
2704
+ projectForecast?: ProjectForecast;
2622
2705
  onExportPNG?: () => Promise<void>;
2623
2706
  onExportPDF?: () => Promise<void>;
2624
2707
  onExportExcel?: () => Promise<void>;
@@ -2630,7 +2713,7 @@ declare function GanttToolbar({ theme, timeScale, onTimeScaleChange, zoom, onZoo
2630
2713
  showCreateTaskButton, createTaskLabel, // v0.15.0: Will use translations if not provided
2631
2714
  onCreateTask, taskFilter, // v0.17.300: Task filter
2632
2715
  onTaskFilterChange, hideCompleted, // v0.18.0: Hide completed toggle
2633
- onHideCompletedChange, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
2716
+ onHideCompletedChange, toolbarRightContent, wbsLevel, onWbsLevelChange, maxWbsDepth, viewMode, onViewModeChange, projectForecast, onExportPNG, onExportPDF, onExportExcel, onExportCSV, onExportJSON, onExportMSProject, }: GanttToolbarProps): react_jsx_runtime.JSX.Element;
2634
2717
 
2635
2718
  interface TaskGridProps {
2636
2719
  tasks: Task[];
@@ -2689,6 +2772,8 @@ interface TimelineProps {
2689
2772
  onTaskDateChange?: (task: Task, newStart: Date, newEnd: Date) => void;
2690
2773
  onDependencyCreate?: (fromTask: Task, toTaskId: string) => void;
2691
2774
  onDependencyDelete?: (taskId: string, dependencyId: string) => void;
2775
+ /** v3.0.0: Show baseline ghost bars behind actual bars (Oracle view) */
2776
+ showBaseline?: boolean;
2692
2777
  }
2693
2778
  interface TaskPosition {
2694
2779
  id: string;
@@ -2701,7 +2786,7 @@ declare function Timeline({ tasks, theme, rowHeight: ROW_HEIGHT, timeScale, star
2701
2786
  templates, dependencyLineStyle, // v0.17.310
2702
2787
  onTaskClick, onTaskDblClick, // v0.8.0
2703
2788
  onTaskContextMenu, // v0.8.0
2704
- onTaskDateChange, onDependencyCreate, onDependencyDelete, }: TimelineProps): react_jsx_runtime.JSX.Element;
2789
+ onTaskDateChange, onDependencyCreate, onDependencyDelete, showBaseline, }: TimelineProps): react_jsx_runtime.JSX.Element;
2705
2790
 
2706
2791
  interface TaskTooltipData {
2707
2792
  task: Task;
@@ -2728,11 +2813,13 @@ interface TaskBarProps {
2728
2813
  allTaskPositions?: TaskPosition[];
2729
2814
  onDragMove?: (taskId: string, daysDelta: number, isDragging: boolean) => void;
2730
2815
  onHoverChange?: (tooltipData: TaskTooltipData | null) => void;
2816
+ showBaseline?: boolean;
2731
2817
  }
2732
2818
  declare function TaskBar({ task, x, y, width, theme, dayWidth, startDate, templates, onClick, onDoubleClick, // v0.8.0
2733
2819
  onContextMenu, // v0.8.0
2734
2820
  onDateChange, onDependencyCreate, allTaskPositions, onDragMove, // v0.13.0
2735
- onHoverChange, }: TaskBarProps): react_jsx_runtime.JSX.Element;
2821
+ onHoverChange, // v0.17.76
2822
+ showBaseline, }: TaskBarProps): react_jsx_runtime.JSX.Element;
2736
2823
 
2737
2824
  interface DependencyLineProps {
2738
2825
  x1: number;
@@ -2869,8 +2956,10 @@ interface TaskFormModalProps {
2869
2956
  attachments?: Attachment[];
2870
2957
  onUploadAttachments?: (taskId: string, files: File[]) => Promise<void> | void;
2871
2958
  onDeleteAttachment?: (attachmentId: string) => void;
2959
+ /** v2.2.0: Pre-select status when creating from a specific column */
2960
+ defaultStatus?: string;
2872
2961
  }
2873
- declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, attachments, onUploadAttachments, onDeleteAttachment, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
2962
+ declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, attachments, onUploadAttachments, onDeleteAttachment, defaultStatus, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
2874
2963
 
2875
2964
  interface GanttAIAssistantProps {
2876
2965
  /** All current tasks in the Gantt */
@@ -3362,6 +3451,18 @@ interface GanttTranslations {
3362
3451
  clearFilter: string;
3363
3452
  hideCompleted: string;
3364
3453
  toDo: string;
3454
+ wbsLevel: string;
3455
+ wbsAllLevels: string;
3456
+ viewExecution: string;
3457
+ viewOracle: string;
3458
+ simulateScenario: string;
3459
+ projectForecast: string;
3460
+ expectedFinish: string;
3461
+ confidence: string;
3462
+ costAtCompletion: string;
3463
+ baselines: string;
3464
+ visibility: string;
3465
+ share: string;
3365
3466
  };
3366
3467
  contextMenu: {
3367
3468
  editTask: string;
@@ -3510,7 +3611,7 @@ type SortDirection = 'asc' | 'desc';
3510
3611
  * - v1.2.0: effortMinutes, timeLoggedMinutes, soldEffortMinutes
3511
3612
  * - Custom: text, number, date, dropdown, checkbox
3512
3613
  */
3513
- type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
3614
+ type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'scheduleVariance' | 'hoursBar' | 'teamLoad' | 'blockers' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
3514
3615
  /**
3515
3616
  * Table column configuration for dynamic columns
3516
3617
  */
@@ -3640,6 +3741,12 @@ interface ListViewTheme {
3640
3741
  focusRing: string;
3641
3742
  checkboxBg: string;
3642
3743
  checkboxChecked: string;
3744
+ bgGroupHeader: string;
3745
+ headerBg: string;
3746
+ neonRed: string;
3747
+ neonGreen: string;
3748
+ neonAmber: string;
3749
+ neonBlue: string;
3643
3750
  }
3644
3751
  /**
3645
3752
  * Permissions for list view operations
@@ -3656,6 +3763,20 @@ interface ListViewPermissions {
3656
3763
  canFilter?: boolean;
3657
3764
  canReorder?: boolean;
3658
3765
  }
3766
+ /**
3767
+ * v2.0.0: Project Health data for sidebar panel
3768
+ */
3769
+ interface ProjectHealthData {
3770
+ openRFIs?: number;
3771
+ submittalsApprovalPercent?: number;
3772
+ scheduleVarianceDays?: number;
3773
+ scheduleVarianceLabel?: string;
3774
+ teams?: Array<{
3775
+ name: string;
3776
+ color: string;
3777
+ utilizationPercent: number;
3778
+ }>;
3779
+ }
3659
3780
  /**
3660
3781
  * ListView configuration
3661
3782
  */
@@ -3702,6 +3823,11 @@ interface ListViewConfig {
3702
3823
  onCreateTask?: () => void;
3703
3824
  /** LocalStorage key for persisting filter state, or false to disable */
3704
3825
  persistFilter?: string | false;
3826
+ /** Configuration for project health sidebar panel */
3827
+ healthSidebar?: {
3828
+ enabled: boolean;
3829
+ data: ProjectHealthData;
3830
+ };
3705
3831
  /**
3706
3832
  * Configuration for blurring financial data based on user permissions
3707
3833
  * When enabled, financial columns (soldEffortMinutes, quotedTime) will be blurred
@@ -3712,6 +3838,12 @@ interface ListViewConfig {
3712
3838
  /** Specific columns to blur (defaults to ['soldEffortMinutes', 'quotedTime'] if not specified) */
3713
3839
  columns?: Array<'soldEffortMinutes' | 'quotedTime' | 'quotedTimeMinutes'>;
3714
3840
  };
3841
+ /** When true, shows the sold effort line in HoursBarCell even without onSoldEffortUpdate callback */
3842
+ showSoldEffort?: boolean;
3843
+ /** Display mode: 'hours' shows time values, 'financial' converts to dollars (hours × hourlyRate) */
3844
+ lens?: 'hours' | 'financial';
3845
+ /** Hourly rate for converting hours → dollars when lens='financial' */
3846
+ hourlyRate?: number;
3715
3847
  }
3716
3848
  /**
3717
3849
  * ListView translations
@@ -3730,6 +3862,10 @@ interface ListViewTranslations {
3730
3862
  quotedTime?: string;
3731
3863
  elapsedTime?: string;
3732
3864
  tags?: string;
3865
+ scheduleVariance?: string;
3866
+ hoursBar?: string;
3867
+ teamLoad?: string;
3868
+ blockers?: string;
3733
3869
  };
3734
3870
  toolbar: {
3735
3871
  search: string;
@@ -3812,8 +3948,18 @@ interface ListViewCallbacks {
3812
3948
  onTaskDuplicate?: (task: Task) => void;
3813
3949
  /** Create custom field */
3814
3950
  onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
3815
- /** Handler for inline time logging - receives task and minutes to log */
3816
- onLogTime?: (task: Task, minutes: number | null) => void;
3951
+ /** Handler for inline time logging - receives task, minutes, and optional note */
3952
+ onLogTime?: (task: Task, minutes: number | null, note?: string) => void;
3953
+ /** Handler for opening time log modal from HoursBar cell */
3954
+ onOpenTimeLog?: (task: Task) => void;
3955
+ /** Handler for updating task effort estimate (minutes) */
3956
+ onEstimateUpdate?: (task: Task, minutes: number | null) => void;
3957
+ /** Handler for updating task sold/quoted effort (minutes) */
3958
+ onSoldEffortUpdate?: (task: Task, minutes: number | null) => void;
3959
+ /** Handler for reporting a blocker on a task */
3960
+ onReportBlocker?: (task: Task) => void;
3961
+ /** Handler for copying task link to clipboard */
3962
+ onCopyTaskLink?: (task: Task) => void;
3817
3963
  }
3818
3964
  /**
3819
3965
  * Available user for assignment
@@ -3863,6 +4009,8 @@ interface ListViewProps {
3863
4009
  availableUsers?: AvailableUser[];
3864
4010
  /** Custom fields defined for this project */
3865
4011
  customFields?: CustomFieldDefinition[];
4012
+ /** Render custom content on the right side of toolbar (before create button) */
4013
+ toolbarRightContent?: ReactNode;
3866
4014
  }
3867
4015
  /**
3868
4016
  * Flattened task with hierarchy info
@@ -3899,15 +4047,15 @@ declare const CUSTOM_FIELD_TYPES: Array<{
3899
4047
  /**
3900
4048
  * Main ListView Component
3901
4049
  */
3902
- declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields, }: ListViewProps): react_jsx_runtime.JSX.Element;
4050
+ declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields, toolbarRightContent, }: ListViewProps): react_jsx_runtime.JSX.Element;
3903
4051
 
3904
4052
  /**
3905
4053
  * ListView Themes
3906
- * @version 0.17.0
4054
+ * @version 2.0.0 — Chronos V2.0 visual language
3907
4055
  */
3908
4056
 
3909
4057
  /**
3910
- * Dark theme for ListView
4058
+ * Dark theme for ListView — Chronos V2.0
3911
4059
  */
3912
4060
  declare const darkTheme$3: ListViewTheme;
3913
4061
  /**
@@ -4019,6 +4167,12 @@ interface CalendarTheme {
4019
4167
  statusInProgress: string;
4020
4168
  statusCompleted: string;
4021
4169
  focusRing: string;
4170
+ glass: string;
4171
+ glassBorder: string;
4172
+ glassHover: string;
4173
+ neonRed: string;
4174
+ glowBlue: string;
4175
+ glowRed: string;
4022
4176
  }
4023
4177
  /**
4024
4178
  * Permissions for calendar operations
@@ -4060,6 +4214,10 @@ interface CalendarConfig {
4060
4214
  enableDragDrop?: boolean;
4061
4215
  /** Show task details on hover */
4062
4216
  showTooltip?: boolean;
4217
+ /** Show right sidebar with unscheduled/backlog tasks (default: true) */
4218
+ showBacklog?: boolean;
4219
+ /** Render custom content on the right side of header (e.g. lens toggle) */
4220
+ toolbarRightContent?: ReactNode;
4063
4221
  }
4064
4222
  /**
4065
4223
  * CalendarBoard translations
@@ -4117,6 +4275,20 @@ interface CalendarTranslations {
4117
4275
  newTask: string;
4118
4276
  viewAll: string;
4119
4277
  week: string;
4278
+ backlogTitle: string;
4279
+ systemStatus: string;
4280
+ budgetUtil: string;
4281
+ variance: string;
4282
+ cost: string;
4283
+ estimate: string;
4284
+ sold: string;
4285
+ cashOut: string;
4286
+ typeToAdd: string;
4287
+ critical: string;
4288
+ blocker: string;
4289
+ risk: string;
4290
+ delay: string;
4291
+ days: string;
4120
4292
  };
4121
4293
  tooltips: {
4122
4294
  progress: string;
@@ -4247,20 +4419,27 @@ interface CalendarBoardProps {
4247
4419
  onDiscardTimer?: (taskId: string) => void;
4248
4420
  /** Blur financial data (tiempo ofertado) for unauthorized users */
4249
4421
  blurFinancials?: boolean;
4422
+ /** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
4423
+ suppressDetailModal?: boolean;
4424
+ /** Display mode: 'hours' shows Xh, 'financial' shows $X (hours × hourlyRate) */
4425
+ lens?: 'hours' | 'financial';
4426
+ /** Rate used to convert hours → dollars when lens='financial' */
4427
+ hourlyRate?: number;
4250
4428
  }
4251
4429
 
4252
4430
  /**
4253
- * Main CalendarBoard Component
4431
+ * Main CalendarBoard Component — Chronos V2.0
4254
4432
  */
4255
- declare function CalendarBoard({ tasks, config, callbacks, initialDate, isLoading, error, className, style, availableTags, onCreateTag, attachmentsByTask, comments, onAddComment, currentUser, mentionableUsers, onUploadCommentAttachments, onTaskOpen, enableTimeTracking, timeTrackingSummary, timeEntries, timerState, onLogTime, onUpdateEstimate, onUpdateSoldEffort, onStartTimer, onStopTimer, onDiscardTimer, blurFinancials, }: CalendarBoardProps): react_jsx_runtime.JSX.Element;
4433
+ declare function CalendarBoard({ tasks, config, callbacks, initialDate, isLoading, error, className, style, availableTags, onCreateTag, attachmentsByTask, comments, onAddComment, currentUser, mentionableUsers, onUploadCommentAttachments, onTaskOpen, enableTimeTracking, timeTrackingSummary, timeEntries, timerState, onLogTime, onUpdateEstimate, onUpdateSoldEffort, onStartTimer, onStopTimer, onDiscardTimer, blurFinancials, suppressDetailModal, lens: calLens, hourlyRate: calRate, }: CalendarBoardProps): react_jsx_runtime.JSX.Element;
4256
4434
 
4257
4435
  /**
4258
- * CalendarBoard Themes
4259
- * @version 0.17.0
4436
+ * CalendarBoard Themes — Chronos V2.0
4437
+ * @version 2.0.0
4260
4438
  */
4261
4439
 
4262
4440
  /**
4263
- * Dark theme for CalendarBoard
4441
+ * Dark theme Chronos V2.0 Design Language
4442
+ * Ultra-dark (#050505) with #222 grid borders, glass elements, and neon accents
4264
4443
  */
4265
4444
  declare const darkTheme$2: CalendarTheme;
4266
4445
  /**
@@ -6434,4 +6613,4 @@ declare const themes: Record<ThemeName, Theme>;
6434
6613
  */
6435
6614
  declare const defaultTheme: ThemeName;
6436
6615
 
6437
- export { type AICallbacks, type AICommandResult, type GanttTask as AIGanttTask, type AIMessage, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, AddCardButton, type AddCardButtonProps, type AddCardData, AddColumnButton, type AddColumnButtonProps, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type AvailableUser, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, CUSTOM_FIELD_TYPES, CalendarBoard, type CalendarBoardProps, type CalendarCallbacks, type CalendarConfig, type CalendarDay, type CalendarEvent, type CalendarPermissions, type CalendarSupportedLocale, type CalendarTheme, type CalendarThemeName, type CalendarTranslations, type CalendarViewMode, Card, CardDetailModal, type CardDetailModalProps, CardDetailModalV2, type CardDetailModalV2Props, type CardFilter, type CardFilters, CardHistoryReplay, type CardHistoryReplayProps, CardHistoryTimeline, type CardHistoryTimelineProps, type CardProps, CardRelationshipsGraph, type CardRelationshipsGraphProps, type CardSort, type CardSortKey, CardStack, type CardStackProps, type CardStack$1 as CardStackType, type CardStatus, type CardTemplate, CardTemplateSelector, type CardTemplateSelectorProps, type CardTimeProps, type Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, type CommentAttachment, ConfigMenu, type ConfigMenuProps, ContextMenu, type ContextMenuAction, type ContextMenuState, type CustomFieldDefinition, type CustomFieldValue, DEFAULT_SHORTCUTS, DEFAULT_TABLE_COLUMNS, DEFAULT_TEMPLATES, type DateFilter, DateRangePicker, type DateRangePickerProps, DependenciesSelector, type DependenciesSelectorProps, DependencyLine, type DesignTokens, DistributionCharts, type DistributionChartsProps, type DistributionDataPoint, type DragData, type DropData, type DurationToken, type EasingToken, EditableColumnTitle, type EditableColumnTitleProps, ErrorBoundary, type ErrorBoundaryProps, type ExportFormat, ExportImportModal, type ExportImportModalProps, type ExportOptions, FilterBar, type FilterBarProps, type FilterState, type FlattenedTask, type FontSizeToken, type FontWeightToken, GANTT_AI_SYSTEM_PROMPT, GanttAIAssistant, type GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType$1 as GanttColumnType, GanttI18nContext, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, type GanttTranslations, GenerateGanttTasksDialog, type GenerateGanttTasksDialogProps, GeneratePlanModal, type GeneratePlanModalProps, type GeneratedPlan, type GeneratedTasksResponse, type GroupByOption, GroupBySelector, type GroupBySelectorProps, HealthBar, type HealthBarProps, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanToolbar, type KanbanToolbarProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, type ColumnType as ListColumnType, type ListFilter, type ListSort, type ListSortColumn, ListView, type ListViewCallbacks, type ListViewConfig, type ListViewPermissions, type ListViewProps, type ListViewSupportedLocale, type ListViewTheme, type ListViewThemeName, type ListViewTranslations, MenuIcons, type OpacityToken, type PendingFile, type PersistHistoryConfig, type Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, ProfitabilityReport, type ProfitabilityReportProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, STANDARD_FIELDS, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type Subtask, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, type TableColumn, TagBadge, TagList, TagPicker, TaskBar, type TaskComment, TaskDetailModal, type TaskDetailModalProps, type TaskFilterType, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type TaskPriority, type TaskTag, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeEntry, TimeInputPopover, type TimeInputPopoverProps, type TimeLogInput, type TimeLogSource, TimePill, type TimePillProps, TimePopover, type TimePopoverProps, type TimeScale, type TimeTrackingBoardProps, type TimeTrackingCallbacks, type TimeTrackingSummary, Timeline, type TimerState, type ThemeColors$1 as TokenThemeColors, type TokenValue, type UsageStats, type UseAIOptions, type UseAIReturn, type UseBoardReturn as UseBoardCoreReturn, type UseBoardOptions, type UseBoardReturn$1 as UseBoardReturn, type UseCardStackingOptions, type UseCardStackingResult, type UseDragStateReturn, type UseFiltersOptions, type UseFiltersReturn, type UseKanbanStateOptions, type UseKanbanStateReturn, type UseKeyboardShortcutsOptions, type UseKeyboardShortcutsReturn, type UseMultiSelectReturn, type UseSelectionStateReturn, type User$1 as User, UserAssignmentSelector, type UserAssignmentSelectorProps, VelocityChart, type VelocityChartProps, type VelocityDataPoint, VirtualGrid, type VirtualGridProps, VirtualList, type VirtualListProps, type WeekDay, type ZIndexToken, aiUsageTracker, borderRadius, calculatePosition, darkTheme$2 as calendarDarkTheme, en as calendarEnTranslations, es as calendarEsTranslations, lightTheme$2 as calendarLightTheme, neutralTheme$2 as calendarNeutralTheme, calendarThemes, calendarTranslations, cardToGanttTask, cardsToGanttTasks, cn, createKanbanView, createRetryWrapper, darkTheme, darkTheme$1 as darkTokenTheme, defaultTheme, designTokens, duration, easing, exportTokensToCSS, findTaskByName, fontSize, fontWeight, formatCost, en$2 as ganttEnTranslations, es$2 as ganttEsTranslations, ganttTaskToCardUpdate, themes$1 as ganttThemes, gantt as ganttTokens, translations as ganttTranslations, ganttUtils, generateCSSVariables, generateCompleteCSS, generateInitialPositions, generateTasksContext, generateThemeVariables, getCalendarTheme, getCalendarTranslations, getListViewTheme, getListViewTranslations, getMonthNames, getToken, getTranslations, getWeekdayNames, kanban as kanbanTokens, lightTheme, lightTheme$1 as lightTokenTheme, lineHeight, darkTheme$3 as listViewDarkTheme, en$1 as listViewEnTranslations, es$1 as listViewEsTranslations, lightTheme$3 as listViewLightTheme, neutralTheme$3 as listViewNeutralTheme, listViewThemes, listViewTranslations, mergeCalendarTranslations, mergeListViewTranslations, mergeTranslations, neutralTheme, neutralTheme$1 as neutralTokenTheme, opacity, parseLocalCommand, parseNaturalDate, parseNaturalDuration, parseProgress, parseStatus, pluginManager, retrySyncOperation, retryWithBackoff, shadows, shouldVirtualizeGrid, spacing, themes, useAI, useBoard$1 as useBoard, useBoard as useBoardCore, useBoardStore, useCardStacking, useDragState, useFilteredCards, useFilters, useGanttI18n, useKanbanState, useKeyboardShortcuts, useMultiSelect, useSelectionState, useSortedCards, useTheme, useVirtualGrid, useVirtualList, validateAIResponse, withErrorBoundary, wouldCreateCircularDependency, zIndex };
6616
+ export { type AICallbacks, type AICommandResult, type GanttTask as AIGanttTask, type AIMessage, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, AddCardButton, type AddCardButtonProps, type AddCardData, AddColumnButton, type AddColumnButtonProps, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type AvailableUser, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, CUSTOM_FIELD_TYPES, CalendarBoard, type CalendarBoardProps, type CalendarCallbacks, type CalendarConfig, type CalendarDay, type CalendarEvent, type CalendarPermissions, type CalendarSupportedLocale, type CalendarTheme, type CalendarThemeName, type CalendarTranslations, type CalendarViewMode, Card, CardDetailModal, type CardDetailModalProps, CardDetailModalV2, type CardDetailModalV2Props, type CardFilter, type CardFilters, CardHistoryReplay, type CardHistoryReplayProps, CardHistoryTimeline, type CardHistoryTimelineProps, type CardProps, CardRelationshipsGraph, type CardRelationshipsGraphProps, type CardSort, type CardSortKey, CardStack, type CardStackProps, type CardStack$1 as CardStackType, type CardStatus, type CardTemplate, CardTemplateSelector, type CardTemplateSelectorProps, type CardTimeProps, type Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, type CommentAttachment, ConfigMenu, type ConfigMenuProps, ContextMenu, type ContextMenuAction, type ContextMenuState, type CustomFieldDefinition, type CustomFieldValue, DEFAULT_SHORTCUTS, DEFAULT_TABLE_COLUMNS, DEFAULT_TEMPLATES, type DateFilter, DateRangePicker, type DateRangePickerProps, DependenciesSelector, type DependenciesSelectorProps, DependencyLine, type DesignTokens, DistributionCharts, type DistributionChartsProps, type DistributionDataPoint, type DragData, type DropData, type DurationToken, type EasingToken, EditableColumnTitle, type EditableColumnTitleProps, ErrorBoundary, type ErrorBoundaryProps, type ExportFormat, ExportImportModal, type ExportImportModalProps, type ExportOptions, FilterBar, type FilterBarProps, type FilterState, type FlattenedTask, type FontSizeToken, type FontWeightToken, GANTT_AI_SYSTEM_PROMPT, GanttAIAssistant, type GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType$1 as GanttColumnType, GanttI18nContext, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, type GanttTranslations, GenerateGanttTasksDialog, type GenerateGanttTasksDialogProps, GeneratePlanModal, type GeneratePlanModalProps, type GeneratedPlan, type GeneratedTasksResponse, type GroupByOption, GroupBySelector, type GroupBySelectorProps, HealthBar, type HealthBarProps, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanToolbar, type KanbanToolbarProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, type ColumnType as ListColumnType, type ListFilter, type ListSort, type ListSortColumn, ListView, type ListViewCallbacks, type ListViewConfig, type ListViewPermissions, type ListViewProps, type ListViewSupportedLocale, type ListViewTheme, type ListViewThemeName, type ListViewTranslations, MenuIcons, type OpacityToken, type PendingFile, type PersistHistoryConfig, type Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, ProfitabilityReport, type ProfitabilityReportProps, type ProjectForecast, type ProjectHealthData, QuickTaskCreate, type QuickTaskCreateData, type QuickTaskCreateProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, STANDARD_FIELDS, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type Subtask, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, type TableColumn, TagBadge, TagList, TagPicker, TaskBar, type TaskComment, TaskDetailModal, type TaskDetailModalProps, type TaskFilterType, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type TaskPriority, type TaskTag, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeEntry, TimeInputPopover, type TimeInputPopoverProps, type TimeLogInput, type TimeLogSource, TimePill, type TimePillProps, TimePopover, type TimePopoverProps, type TimeScale, type TimeTrackingBoardProps, type TimeTrackingCallbacks, type TimeTrackingSummary, Timeline, type TimerState, type ThemeColors$1 as TokenThemeColors, type TokenValue, type UsageStats, type UseAIOptions, type UseAIReturn, type UseBoardReturn as UseBoardCoreReturn, type UseBoardOptions, type UseBoardReturn$1 as UseBoardReturn, type UseCardStackingOptions, type UseCardStackingResult, type UseDragStateReturn, type UseFiltersOptions, type UseFiltersReturn, type UseKanbanStateOptions, type UseKanbanStateReturn, type UseKeyboardShortcutsOptions, type UseKeyboardShortcutsReturn, type UseMultiSelectReturn, type UseSelectionStateReturn, type User$1 as User, UserAssignmentSelector, type UserAssignmentSelectorProps, VelocityChart, type VelocityChartProps, type VelocityDataPoint, VirtualGrid, type VirtualGridProps, VirtualList, type VirtualListProps, type WeekDay, type ZIndexToken, aiUsageTracker, borderRadius, calculatePosition, darkTheme$2 as calendarDarkTheme, en as calendarEnTranslations, es as calendarEsTranslations, lightTheme$2 as calendarLightTheme, neutralTheme$2 as calendarNeutralTheme, calendarThemes, calendarTranslations, cardToGanttTask, cardsToGanttTasks, cn, createKanbanView, createRetryWrapper, darkTheme, darkTheme$1 as darkTokenTheme, defaultTheme, designTokens, duration, easing, exportTokensToCSS, findTaskByName, fontSize, fontWeight, formatCost, en$2 as ganttEnTranslations, es$2 as ganttEsTranslations, ganttTaskToCardUpdate, themes$1 as ganttThemes, gantt as ganttTokens, translations as ganttTranslations, ganttUtils, generateCSSVariables, generateCompleteCSS, generateInitialPositions, generateTasksContext, generateThemeVariables, getCalendarTheme, getCalendarTranslations, getListViewTheme, getListViewTranslations, getMonthNames, getToken, getTranslations, getWeekdayNames, kanban as kanbanTokens, lightTheme, lightTheme$1 as lightTokenTheme, lineHeight, darkTheme$3 as listViewDarkTheme, en$1 as listViewEnTranslations, es$1 as listViewEsTranslations, lightTheme$3 as listViewLightTheme, neutralTheme$3 as listViewNeutralTheme, listViewThemes, listViewTranslations, mergeCalendarTranslations, mergeListViewTranslations, mergeTranslations, neutralTheme, neutralTheme$1 as neutralTokenTheme, opacity, parseLocalCommand, parseNaturalDate, parseNaturalDuration, parseProgress, parseStatus, pluginManager, retrySyncOperation, retryWithBackoff, shadows, shouldVirtualizeGrid, spacing, themes, useAI, useBoard$1 as useBoard, useBoard as useBoardCore, useBoardStore, useCardStacking, useDragState, useFilteredCards, useFilters, useGanttI18n, useKanbanState, useKeyboardShortcuts, useMultiSelect, useSelectionState, useSortedCards, useTheme, useVirtualGrid, useVirtualList, validateAIResponse, withErrorBoundary, wouldCreateCircularDependency, zIndex };