@libxai/board 1.4.25 → 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.cjs +69 -64
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +130 -42
- package/dist/index.d.ts +130 -42
- package/dist/index.js +69 -64
- package/dist/index.js.map +1 -1
- package/dist/styles.css +219 -260
- package/package.json +2 -1
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, {
|
|
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
|
|
|
@@ -60,6 +60,9 @@ interface Task {
|
|
|
60
60
|
effortMinutes?: number;
|
|
61
61
|
timeLoggedMinutes?: number;
|
|
62
62
|
soldEffortMinutes?: number;
|
|
63
|
+
baselineStartDate?: Date;
|
|
64
|
+
baselineEndDate?: Date;
|
|
65
|
+
baselineProgress?: number;
|
|
63
66
|
}
|
|
64
67
|
type TimeScale = 'day' | 'week' | 'month';
|
|
65
68
|
type Theme$1 = 'dark' | 'light' | 'neutral';
|
|
@@ -340,6 +343,18 @@ interface AICommandResult {
|
|
|
340
343
|
success: boolean;
|
|
341
344
|
error?: string;
|
|
342
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
|
+
}
|
|
343
358
|
interface GanttConfig {
|
|
344
359
|
theme?: Theme$1;
|
|
345
360
|
timeScale?: TimeScale;
|
|
@@ -371,6 +386,8 @@ interface GanttConfig {
|
|
|
371
386
|
onCreateTask?: () => void;
|
|
372
387
|
taskFilter?: TaskFilterType;
|
|
373
388
|
onTaskFilterChange?: (filter: TaskFilterType) => void;
|
|
389
|
+
/** Render custom content on the right side of toolbar (e.g. lens toggle) */
|
|
390
|
+
toolbarRightContent?: ReactNode;
|
|
374
391
|
templates?: GanttTemplates;
|
|
375
392
|
permissions?: GanttPermissions;
|
|
376
393
|
disableScrollSync?: boolean;
|
|
@@ -432,7 +449,28 @@ interface GanttConfig {
|
|
|
432
449
|
* @default false
|
|
433
450
|
*/
|
|
434
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;
|
|
435
470
|
onThemeChange?: (theme: Theme$1) => void;
|
|
471
|
+
onTimeScaleChange?: (timeScale: TimeScale) => void;
|
|
472
|
+
onZoomChange?: (zoom: number) => void;
|
|
473
|
+
onDateRangeChange?: (startDate: Date, endDate: Date) => void;
|
|
436
474
|
onTaskClick?: (task: Task) => void;
|
|
437
475
|
onTaskDblClick?: (task: Task) => void;
|
|
438
476
|
onTaskContextMenu?: (task: Task, event: React.MouseEvent) => void;
|
|
@@ -825,6 +863,8 @@ interface RenderProps {
|
|
|
825
863
|
renderColumnHeader?: (column: Column$1, cardCount: number) => React.ReactNode;
|
|
826
864
|
/** Custom empty state */
|
|
827
865
|
renderEmptyState?: (column: Column$1) => React.ReactNode;
|
|
866
|
+
/** v2.2.0: Custom column footer (e.g. AddCardButton) */
|
|
867
|
+
renderColumnFooter?: (column: Column$1) => React.ReactNode;
|
|
828
868
|
}
|
|
829
869
|
/**
|
|
830
870
|
* User entity for assignment
|
|
@@ -1518,8 +1558,10 @@ interface KanbanToolbarProps {
|
|
|
1518
1558
|
onExportJSON?: () => void;
|
|
1519
1559
|
onExportExcel?: () => Promise<void>;
|
|
1520
1560
|
translations?: Partial<KanbanToolbarI18n>;
|
|
1561
|
+
/** Render custom content on the right side of toolbar (e.g. lens toggle) */
|
|
1562
|
+
toolbarRightContent?: React.ReactNode;
|
|
1521
1563
|
}
|
|
1522
|
-
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;
|
|
1523
1565
|
|
|
1524
1566
|
/**
|
|
1525
1567
|
* AddColumnButton Component
|
|
@@ -1613,25 +1655,35 @@ interface AddCardButtonProps {
|
|
|
1613
1655
|
/** Locale for translations */
|
|
1614
1656
|
locale?: 'en' | 'es';
|
|
1615
1657
|
}
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
*/
|
|
1634
|
-
|
|
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;
|
|
1635
1687
|
|
|
1636
1688
|
interface ColumnProps {
|
|
1637
1689
|
/** Column data */
|
|
@@ -2389,28 +2441,16 @@ interface TimePopoverProps {
|
|
|
2389
2441
|
declare function TimePopover({ taskId: _taskId, summary, entries, isTimerRunning, timerElapsedSeconds, onLogTime, onUpdateEstimate, onStartTimer, onStopTimer, onDiscardTimer, onClose, className, }: TimePopoverProps): react_jsx_runtime.JSX.Element;
|
|
2390
2442
|
|
|
2391
2443
|
/**
|
|
2392
|
-
* TimeInputPopover -
|
|
2393
|
-
*
|
|
2394
|
-
*
|
|
2395
|
-
* Used for:
|
|
2396
|
-
* - Logging time from list view column
|
|
2397
|
-
* - Setting estimates
|
|
2398
|
-
* - Setting quoted time
|
|
2444
|
+
* TimeInputPopover - Chronos V2 micro-popover for time entry
|
|
2445
|
+
* Glass morphism design matching ListView Chronos style
|
|
2399
2446
|
*/
|
|
2400
2447
|
interface TimeInputPopoverProps {
|
|
2401
|
-
/** Mode determines the title and behavior */
|
|
2402
2448
|
mode: 'estimate' | 'quoted' | 'log';
|
|
2403
|
-
/** Locale for translations */
|
|
2404
2449
|
locale: 'en' | 'es';
|
|
2405
|
-
/** Dark mode */
|
|
2406
2450
|
isDark: boolean;
|
|
2407
|
-
/** Current value in minutes (for estimate/quoted modes) */
|
|
2408
2451
|
currentValue?: number | null;
|
|
2409
|
-
/** Called when user saves the value */
|
|
2410
2452
|
onSave: (minutes: number | null, note?: string) => Promise<void>;
|
|
2411
|
-
/** Called when popover should close */
|
|
2412
2453
|
onClose: () => void;
|
|
2413
|
-
/** Additional class names */
|
|
2414
2454
|
className?: string;
|
|
2415
2455
|
}
|
|
2416
2456
|
declare function TimeInputPopover({ mode, locale, isDark, currentValue, onSave, onClose, className, }: TimeInputPopoverProps): react_jsx_runtime.JSX.Element;
|
|
@@ -2556,6 +2596,13 @@ interface GanttBoardRef {
|
|
|
2556
2596
|
* Collapse all tasks
|
|
2557
2597
|
*/
|
|
2558
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;
|
|
2559
2606
|
/**
|
|
2560
2607
|
* Undo last change
|
|
2561
2608
|
* Similar to: gantt.undo()
|
|
@@ -2648,6 +2695,13 @@ interface GanttToolbarProps {
|
|
|
2648
2695
|
onTaskFilterChange?: (filter: TaskFilterType) => void;
|
|
2649
2696
|
hideCompleted?: boolean;
|
|
2650
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;
|
|
2651
2705
|
onExportPNG?: () => Promise<void>;
|
|
2652
2706
|
onExportPDF?: () => Promise<void>;
|
|
2653
2707
|
onExportExcel?: () => Promise<void>;
|
|
@@ -2659,7 +2713,7 @@ declare function GanttToolbar({ theme, timeScale, onTimeScaleChange, zoom, onZoo
|
|
|
2659
2713
|
showCreateTaskButton, createTaskLabel, // v0.15.0: Will use translations if not provided
|
|
2660
2714
|
onCreateTask, taskFilter, // v0.17.300: Task filter
|
|
2661
2715
|
onTaskFilterChange, hideCompleted, // v0.18.0: Hide completed toggle
|
|
2662
|
-
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;
|
|
2663
2717
|
|
|
2664
2718
|
interface TaskGridProps {
|
|
2665
2719
|
tasks: Task[];
|
|
@@ -2718,6 +2772,8 @@ interface TimelineProps {
|
|
|
2718
2772
|
onTaskDateChange?: (task: Task, newStart: Date, newEnd: Date) => void;
|
|
2719
2773
|
onDependencyCreate?: (fromTask: Task, toTaskId: string) => void;
|
|
2720
2774
|
onDependencyDelete?: (taskId: string, dependencyId: string) => void;
|
|
2775
|
+
/** v3.0.0: Show baseline ghost bars behind actual bars (Oracle view) */
|
|
2776
|
+
showBaseline?: boolean;
|
|
2721
2777
|
}
|
|
2722
2778
|
interface TaskPosition {
|
|
2723
2779
|
id: string;
|
|
@@ -2730,7 +2786,7 @@ declare function Timeline({ tasks, theme, rowHeight: ROW_HEIGHT, timeScale, star
|
|
|
2730
2786
|
templates, dependencyLineStyle, // v0.17.310
|
|
2731
2787
|
onTaskClick, onTaskDblClick, // v0.8.0
|
|
2732
2788
|
onTaskContextMenu, // v0.8.0
|
|
2733
|
-
onTaskDateChange, onDependencyCreate, onDependencyDelete, }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
2789
|
+
onTaskDateChange, onDependencyCreate, onDependencyDelete, showBaseline, }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
2734
2790
|
|
|
2735
2791
|
interface TaskTooltipData {
|
|
2736
2792
|
task: Task;
|
|
@@ -2757,11 +2813,13 @@ interface TaskBarProps {
|
|
|
2757
2813
|
allTaskPositions?: TaskPosition[];
|
|
2758
2814
|
onDragMove?: (taskId: string, daysDelta: number, isDragging: boolean) => void;
|
|
2759
2815
|
onHoverChange?: (tooltipData: TaskTooltipData | null) => void;
|
|
2816
|
+
showBaseline?: boolean;
|
|
2760
2817
|
}
|
|
2761
2818
|
declare function TaskBar({ task, x, y, width, theme, dayWidth, startDate, templates, onClick, onDoubleClick, // v0.8.0
|
|
2762
2819
|
onContextMenu, // v0.8.0
|
|
2763
2820
|
onDateChange, onDependencyCreate, allTaskPositions, onDragMove, // v0.13.0
|
|
2764
|
-
onHoverChange,
|
|
2821
|
+
onHoverChange, // v0.17.76
|
|
2822
|
+
showBaseline, }: TaskBarProps): react_jsx_runtime.JSX.Element;
|
|
2765
2823
|
|
|
2766
2824
|
interface DependencyLineProps {
|
|
2767
2825
|
x1: number;
|
|
@@ -2898,8 +2956,10 @@ interface TaskFormModalProps {
|
|
|
2898
2956
|
attachments?: Attachment[];
|
|
2899
2957
|
onUploadAttachments?: (taskId: string, files: File[]) => Promise<void> | void;
|
|
2900
2958
|
onDeleteAttachment?: (attachmentId: string) => void;
|
|
2959
|
+
/** v2.2.0: Pre-select status when creating from a specific column */
|
|
2960
|
+
defaultStatus?: string;
|
|
2901
2961
|
}
|
|
2902
|
-
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;
|
|
2903
2963
|
|
|
2904
2964
|
interface GanttAIAssistantProps {
|
|
2905
2965
|
/** All current tasks in the Gantt */
|
|
@@ -3391,6 +3451,18 @@ interface GanttTranslations {
|
|
|
3391
3451
|
clearFilter: string;
|
|
3392
3452
|
hideCompleted: string;
|
|
3393
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;
|
|
3394
3466
|
};
|
|
3395
3467
|
contextMenu: {
|
|
3396
3468
|
editTask: string;
|
|
@@ -3766,6 +3838,12 @@ interface ListViewConfig {
|
|
|
3766
3838
|
/** Specific columns to blur (defaults to ['soldEffortMinutes', 'quotedTime'] if not specified) */
|
|
3767
3839
|
columns?: Array<'soldEffortMinutes' | 'quotedTime' | 'quotedTimeMinutes'>;
|
|
3768
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;
|
|
3769
3847
|
}
|
|
3770
3848
|
/**
|
|
3771
3849
|
* ListView translations
|
|
@@ -3874,6 +3952,10 @@ interface ListViewCallbacks {
|
|
|
3874
3952
|
onLogTime?: (task: Task, minutes: number | null, note?: string) => void;
|
|
3875
3953
|
/** Handler for opening time log modal from HoursBar cell */
|
|
3876
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;
|
|
3877
3959
|
/** Handler for reporting a blocker on a task */
|
|
3878
3960
|
onReportBlocker?: (task: Task) => void;
|
|
3879
3961
|
/** Handler for copying task link to clipboard */
|
|
@@ -4134,6 +4216,8 @@ interface CalendarConfig {
|
|
|
4134
4216
|
showTooltip?: boolean;
|
|
4135
4217
|
/** Show right sidebar with unscheduled/backlog tasks (default: true) */
|
|
4136
4218
|
showBacklog?: boolean;
|
|
4219
|
+
/** Render custom content on the right side of header (e.g. lens toggle) */
|
|
4220
|
+
toolbarRightContent?: ReactNode;
|
|
4137
4221
|
}
|
|
4138
4222
|
/**
|
|
4139
4223
|
* CalendarBoard translations
|
|
@@ -4337,12 +4421,16 @@ interface CalendarBoardProps {
|
|
|
4337
4421
|
blurFinancials?: boolean;
|
|
4338
4422
|
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
4339
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;
|
|
4340
4428
|
}
|
|
4341
4429
|
|
|
4342
4430
|
/**
|
|
4343
4431
|
* Main CalendarBoard Component — Chronos V2.0
|
|
4344
4432
|
*/
|
|
4345
|
-
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, }: 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;
|
|
4346
4434
|
|
|
4347
4435
|
/**
|
|
4348
4436
|
* CalendarBoard Themes — Chronos V2.0
|
|
@@ -6525,4 +6613,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
6525
6613
|
*/
|
|
6526
6614
|
declare const defaultTheme: ThemeName;
|
|
6527
6615
|
|
|
6528
|
-
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 ProjectHealthData, 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 };
|