@libxai/board 1.4.25 → 1.4.26
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 +56 -56
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -104
- package/dist/index.d.ts +13 -104
- package/dist/index.js +56 -56
- package/dist/index.js.map +1 -1
- package/dist/styles.css +76 -697
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -45,21 +45,6 @@ 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
48
|
}
|
|
64
49
|
type TimeScale = 'day' | 'week' | 'month';
|
|
65
50
|
type Theme$1 = 'dark' | 'light' | 'neutral';
|
|
@@ -111,12 +96,6 @@ interface GanttTheme {
|
|
|
111
96
|
statusCompleted: string;
|
|
112
97
|
hoverBg: string;
|
|
113
98
|
focusRing: string;
|
|
114
|
-
dotGrid?: string;
|
|
115
|
-
glassHeader?: string;
|
|
116
|
-
glassToolbar?: string;
|
|
117
|
-
forecastHud?: string;
|
|
118
|
-
neonRedGlow?: string;
|
|
119
|
-
executionBarBg?: string;
|
|
120
99
|
}
|
|
121
100
|
/**
|
|
122
101
|
* Templates for customizing Gantt rendering
|
|
@@ -936,12 +915,6 @@ interface KanbanBoardProps {
|
|
|
936
915
|
onDiscardTimer?: (taskId: string) => void;
|
|
937
916
|
/** Blur financial data (tiempo ofertado) for unauthorized users */
|
|
938
917
|
blurFinancials?: boolean;
|
|
939
|
-
/** Side panel rendered alongside the board columns */
|
|
940
|
-
sidePanel?: React.ReactNode;
|
|
941
|
-
/** Custom renderer for column header metrics (below title) */
|
|
942
|
-
renderColumnMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
|
|
943
|
-
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
944
|
-
suppressDetailModal?: boolean;
|
|
945
918
|
}
|
|
946
919
|
/**
|
|
947
920
|
* Drag event data
|
|
@@ -1485,7 +1458,7 @@ declare class KanbanViewAdapter extends BaseViewAdapter<ViewBoardData> {
|
|
|
1485
1458
|
*/
|
|
1486
1459
|
declare function createKanbanView(config?: KanbanViewConfig): KanbanViewAdapter;
|
|
1487
1460
|
|
|
1488
|
-
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,
|
|
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 & {
|
|
1489
1462
|
children?: React.ReactNode;
|
|
1490
1463
|
}): react_jsx_runtime.JSX.Element;
|
|
1491
1464
|
|
|
@@ -1670,8 +1643,6 @@ interface ColumnProps {
|
|
|
1670
1643
|
isDeletable?: boolean;
|
|
1671
1644
|
/** Custom className */
|
|
1672
1645
|
className?: string;
|
|
1673
|
-
/** v2.0.0: Custom metrics renderer below column header */
|
|
1674
|
-
renderMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
|
|
1675
1646
|
}
|
|
1676
1647
|
/**
|
|
1677
1648
|
* Column Component
|
|
@@ -3539,7 +3510,7 @@ type SortDirection = 'asc' | 'desc';
|
|
|
3539
3510
|
* - v1.2.0: effortMinutes, timeLoggedMinutes, soldEffortMinutes
|
|
3540
3511
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3541
3512
|
*/
|
|
3542
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | '
|
|
3513
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3543
3514
|
/**
|
|
3544
3515
|
* Table column configuration for dynamic columns
|
|
3545
3516
|
*/
|
|
@@ -3669,12 +3640,6 @@ interface ListViewTheme {
|
|
|
3669
3640
|
focusRing: string;
|
|
3670
3641
|
checkboxBg: string;
|
|
3671
3642
|
checkboxChecked: string;
|
|
3672
|
-
bgGroupHeader: string;
|
|
3673
|
-
headerBg: string;
|
|
3674
|
-
neonRed: string;
|
|
3675
|
-
neonGreen: string;
|
|
3676
|
-
neonAmber: string;
|
|
3677
|
-
neonBlue: string;
|
|
3678
3643
|
}
|
|
3679
3644
|
/**
|
|
3680
3645
|
* Permissions for list view operations
|
|
@@ -3691,20 +3656,6 @@ interface ListViewPermissions {
|
|
|
3691
3656
|
canFilter?: boolean;
|
|
3692
3657
|
canReorder?: boolean;
|
|
3693
3658
|
}
|
|
3694
|
-
/**
|
|
3695
|
-
* v2.0.0: Project Health data for sidebar panel
|
|
3696
|
-
*/
|
|
3697
|
-
interface ProjectHealthData {
|
|
3698
|
-
openRFIs?: number;
|
|
3699
|
-
submittalsApprovalPercent?: number;
|
|
3700
|
-
scheduleVarianceDays?: number;
|
|
3701
|
-
scheduleVarianceLabel?: string;
|
|
3702
|
-
teams?: Array<{
|
|
3703
|
-
name: string;
|
|
3704
|
-
color: string;
|
|
3705
|
-
utilizationPercent: number;
|
|
3706
|
-
}>;
|
|
3707
|
-
}
|
|
3708
3659
|
/**
|
|
3709
3660
|
* ListView configuration
|
|
3710
3661
|
*/
|
|
@@ -3751,11 +3702,6 @@ interface ListViewConfig {
|
|
|
3751
3702
|
onCreateTask?: () => void;
|
|
3752
3703
|
/** LocalStorage key for persisting filter state, or false to disable */
|
|
3753
3704
|
persistFilter?: string | false;
|
|
3754
|
-
/** Configuration for project health sidebar panel */
|
|
3755
|
-
healthSidebar?: {
|
|
3756
|
-
enabled: boolean;
|
|
3757
|
-
data: ProjectHealthData;
|
|
3758
|
-
};
|
|
3759
3705
|
/**
|
|
3760
3706
|
* Configuration for blurring financial data based on user permissions
|
|
3761
3707
|
* When enabled, financial columns (soldEffortMinutes, quotedTime) will be blurred
|
|
@@ -3784,10 +3730,6 @@ interface ListViewTranslations {
|
|
|
3784
3730
|
quotedTime?: string;
|
|
3785
3731
|
elapsedTime?: string;
|
|
3786
3732
|
tags?: string;
|
|
3787
|
-
scheduleVariance?: string;
|
|
3788
|
-
hoursBar?: string;
|
|
3789
|
-
teamLoad?: string;
|
|
3790
|
-
blockers?: string;
|
|
3791
3733
|
};
|
|
3792
3734
|
toolbar: {
|
|
3793
3735
|
search: string;
|
|
@@ -3870,14 +3812,8 @@ interface ListViewCallbacks {
|
|
|
3870
3812
|
onTaskDuplicate?: (task: Task) => void;
|
|
3871
3813
|
/** Create custom field */
|
|
3872
3814
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
3873
|
-
/** Handler for inline time logging - receives task
|
|
3874
|
-
onLogTime?: (task: Task, minutes: number | null
|
|
3875
|
-
/** Handler for opening time log modal from HoursBar cell */
|
|
3876
|
-
onOpenTimeLog?: (task: Task) => void;
|
|
3877
|
-
/** Handler for reporting a blocker on a task */
|
|
3878
|
-
onReportBlocker?: (task: Task) => void;
|
|
3879
|
-
/** Handler for copying task link to clipboard */
|
|
3880
|
-
onCopyTaskLink?: (task: Task) => void;
|
|
3815
|
+
/** Handler for inline time logging - receives task and minutes to log */
|
|
3816
|
+
onLogTime?: (task: Task, minutes: number | null) => void;
|
|
3881
3817
|
}
|
|
3882
3818
|
/**
|
|
3883
3819
|
* Available user for assignment
|
|
@@ -3927,8 +3863,6 @@ interface ListViewProps {
|
|
|
3927
3863
|
availableUsers?: AvailableUser[];
|
|
3928
3864
|
/** Custom fields defined for this project */
|
|
3929
3865
|
customFields?: CustomFieldDefinition[];
|
|
3930
|
-
/** Render custom content on the right side of toolbar (before create button) */
|
|
3931
|
-
toolbarRightContent?: ReactNode;
|
|
3932
3866
|
}
|
|
3933
3867
|
/**
|
|
3934
3868
|
* Flattened task with hierarchy info
|
|
@@ -3965,15 +3899,15 @@ declare const CUSTOM_FIELD_TYPES: Array<{
|
|
|
3965
3899
|
/**
|
|
3966
3900
|
* Main ListView Component
|
|
3967
3901
|
*/
|
|
3968
|
-
declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields,
|
|
3902
|
+
declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields, }: ListViewProps): react_jsx_runtime.JSX.Element;
|
|
3969
3903
|
|
|
3970
3904
|
/**
|
|
3971
3905
|
* ListView Themes
|
|
3972
|
-
* @version
|
|
3906
|
+
* @version 0.17.0
|
|
3973
3907
|
*/
|
|
3974
3908
|
|
|
3975
3909
|
/**
|
|
3976
|
-
* Dark theme for ListView
|
|
3910
|
+
* Dark theme for ListView
|
|
3977
3911
|
*/
|
|
3978
3912
|
declare const darkTheme$3: ListViewTheme;
|
|
3979
3913
|
/**
|
|
@@ -4085,12 +4019,6 @@ interface CalendarTheme {
|
|
|
4085
4019
|
statusInProgress: string;
|
|
4086
4020
|
statusCompleted: string;
|
|
4087
4021
|
focusRing: string;
|
|
4088
|
-
glass: string;
|
|
4089
|
-
glassBorder: string;
|
|
4090
|
-
glassHover: string;
|
|
4091
|
-
neonRed: string;
|
|
4092
|
-
glowBlue: string;
|
|
4093
|
-
glowRed: string;
|
|
4094
4022
|
}
|
|
4095
4023
|
/**
|
|
4096
4024
|
* Permissions for calendar operations
|
|
@@ -4132,8 +4060,6 @@ interface CalendarConfig {
|
|
|
4132
4060
|
enableDragDrop?: boolean;
|
|
4133
4061
|
/** Show task details on hover */
|
|
4134
4062
|
showTooltip?: boolean;
|
|
4135
|
-
/** Show right sidebar with unscheduled/backlog tasks (default: true) */
|
|
4136
|
-
showBacklog?: boolean;
|
|
4137
4063
|
}
|
|
4138
4064
|
/**
|
|
4139
4065
|
* CalendarBoard translations
|
|
@@ -4191,20 +4117,6 @@ interface CalendarTranslations {
|
|
|
4191
4117
|
newTask: string;
|
|
4192
4118
|
viewAll: string;
|
|
4193
4119
|
week: string;
|
|
4194
|
-
backlogTitle: string;
|
|
4195
|
-
systemStatus: string;
|
|
4196
|
-
budgetUtil: string;
|
|
4197
|
-
variance: string;
|
|
4198
|
-
cost: string;
|
|
4199
|
-
estimate: string;
|
|
4200
|
-
sold: string;
|
|
4201
|
-
cashOut: string;
|
|
4202
|
-
typeToAdd: string;
|
|
4203
|
-
critical: string;
|
|
4204
|
-
blocker: string;
|
|
4205
|
-
risk: string;
|
|
4206
|
-
delay: string;
|
|
4207
|
-
days: string;
|
|
4208
4120
|
};
|
|
4209
4121
|
tooltips: {
|
|
4210
4122
|
progress: string;
|
|
@@ -4335,23 +4247,20 @@ interface CalendarBoardProps {
|
|
|
4335
4247
|
onDiscardTimer?: (taskId: string) => void;
|
|
4336
4248
|
/** Blur financial data (tiempo ofertado) for unauthorized users */
|
|
4337
4249
|
blurFinancials?: boolean;
|
|
4338
|
-
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
4339
|
-
suppressDetailModal?: boolean;
|
|
4340
4250
|
}
|
|
4341
4251
|
|
|
4342
4252
|
/**
|
|
4343
|
-
* Main CalendarBoard Component
|
|
4253
|
+
* Main CalendarBoard Component
|
|
4344
4254
|
*/
|
|
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,
|
|
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;
|
|
4346
4256
|
|
|
4347
4257
|
/**
|
|
4348
|
-
* CalendarBoard Themes
|
|
4349
|
-
* @version
|
|
4258
|
+
* CalendarBoard Themes
|
|
4259
|
+
* @version 0.17.0
|
|
4350
4260
|
*/
|
|
4351
4261
|
|
|
4352
4262
|
/**
|
|
4353
|
-
* Dark theme
|
|
4354
|
-
* Ultra-dark (#050505) with #222 grid borders, glass elements, and neon accents
|
|
4263
|
+
* Dark theme for CalendarBoard
|
|
4355
4264
|
*/
|
|
4356
4265
|
declare const darkTheme$2: CalendarTheme;
|
|
4357
4266
|
/**
|
|
@@ -6525,4 +6434,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
6525
6434
|
*/
|
|
6526
6435
|
declare const defaultTheme: ThemeName;
|
|
6527
6436
|
|
|
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,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -45,21 +45,6 @@ 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
48
|
}
|
|
64
49
|
type TimeScale = 'day' | 'week' | 'month';
|
|
65
50
|
type Theme$1 = 'dark' | 'light' | 'neutral';
|
|
@@ -111,12 +96,6 @@ interface GanttTheme {
|
|
|
111
96
|
statusCompleted: string;
|
|
112
97
|
hoverBg: string;
|
|
113
98
|
focusRing: string;
|
|
114
|
-
dotGrid?: string;
|
|
115
|
-
glassHeader?: string;
|
|
116
|
-
glassToolbar?: string;
|
|
117
|
-
forecastHud?: string;
|
|
118
|
-
neonRedGlow?: string;
|
|
119
|
-
executionBarBg?: string;
|
|
120
99
|
}
|
|
121
100
|
/**
|
|
122
101
|
* Templates for customizing Gantt rendering
|
|
@@ -936,12 +915,6 @@ interface KanbanBoardProps {
|
|
|
936
915
|
onDiscardTimer?: (taskId: string) => void;
|
|
937
916
|
/** Blur financial data (tiempo ofertado) for unauthorized users */
|
|
938
917
|
blurFinancials?: boolean;
|
|
939
|
-
/** Side panel rendered alongside the board columns */
|
|
940
|
-
sidePanel?: React.ReactNode;
|
|
941
|
-
/** Custom renderer for column header metrics (below title) */
|
|
942
|
-
renderColumnMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
|
|
943
|
-
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
944
|
-
suppressDetailModal?: boolean;
|
|
945
918
|
}
|
|
946
919
|
/**
|
|
947
920
|
* Drag event data
|
|
@@ -1485,7 +1458,7 @@ declare class KanbanViewAdapter extends BaseViewAdapter<ViewBoardData> {
|
|
|
1485
1458
|
*/
|
|
1486
1459
|
declare function createKanbanView(config?: KanbanViewConfig): KanbanViewAdapter;
|
|
1487
1460
|
|
|
1488
|
-
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,
|
|
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 & {
|
|
1489
1462
|
children?: React.ReactNode;
|
|
1490
1463
|
}): react_jsx_runtime.JSX.Element;
|
|
1491
1464
|
|
|
@@ -1670,8 +1643,6 @@ interface ColumnProps {
|
|
|
1670
1643
|
isDeletable?: boolean;
|
|
1671
1644
|
/** Custom className */
|
|
1672
1645
|
className?: string;
|
|
1673
|
-
/** v2.0.0: Custom metrics renderer below column header */
|
|
1674
|
-
renderMetrics?: (column: Column$1, cards: Card$1[]) => React.ReactNode;
|
|
1675
1646
|
}
|
|
1676
1647
|
/**
|
|
1677
1648
|
* Column Component
|
|
@@ -3539,7 +3510,7 @@ type SortDirection = 'asc' | 'desc';
|
|
|
3539
3510
|
* - v1.2.0: effortMinutes, timeLoggedMinutes, soldEffortMinutes
|
|
3540
3511
|
* - Custom: text, number, date, dropdown, checkbox
|
|
3541
3512
|
*/
|
|
3542
|
-
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | '
|
|
3513
|
+
type ColumnType = 'name' | 'status' | 'priority' | 'assignees' | 'startDate' | 'endDate' | 'progress' | 'tags' | 'estimatedTime' | 'quotedTime' | 'elapsedTime' | 'effortMinutes' | 'timeLoggedMinutes' | 'soldEffortMinutes' | 'text' | 'number' | 'date' | 'dropdown' | 'checkbox';
|
|
3543
3514
|
/**
|
|
3544
3515
|
* Table column configuration for dynamic columns
|
|
3545
3516
|
*/
|
|
@@ -3669,12 +3640,6 @@ interface ListViewTheme {
|
|
|
3669
3640
|
focusRing: string;
|
|
3670
3641
|
checkboxBg: string;
|
|
3671
3642
|
checkboxChecked: string;
|
|
3672
|
-
bgGroupHeader: string;
|
|
3673
|
-
headerBg: string;
|
|
3674
|
-
neonRed: string;
|
|
3675
|
-
neonGreen: string;
|
|
3676
|
-
neonAmber: string;
|
|
3677
|
-
neonBlue: string;
|
|
3678
3643
|
}
|
|
3679
3644
|
/**
|
|
3680
3645
|
* Permissions for list view operations
|
|
@@ -3691,20 +3656,6 @@ interface ListViewPermissions {
|
|
|
3691
3656
|
canFilter?: boolean;
|
|
3692
3657
|
canReorder?: boolean;
|
|
3693
3658
|
}
|
|
3694
|
-
/**
|
|
3695
|
-
* v2.0.0: Project Health data for sidebar panel
|
|
3696
|
-
*/
|
|
3697
|
-
interface ProjectHealthData {
|
|
3698
|
-
openRFIs?: number;
|
|
3699
|
-
submittalsApprovalPercent?: number;
|
|
3700
|
-
scheduleVarianceDays?: number;
|
|
3701
|
-
scheduleVarianceLabel?: string;
|
|
3702
|
-
teams?: Array<{
|
|
3703
|
-
name: string;
|
|
3704
|
-
color: string;
|
|
3705
|
-
utilizationPercent: number;
|
|
3706
|
-
}>;
|
|
3707
|
-
}
|
|
3708
3659
|
/**
|
|
3709
3660
|
* ListView configuration
|
|
3710
3661
|
*/
|
|
@@ -3751,11 +3702,6 @@ interface ListViewConfig {
|
|
|
3751
3702
|
onCreateTask?: () => void;
|
|
3752
3703
|
/** LocalStorage key for persisting filter state, or false to disable */
|
|
3753
3704
|
persistFilter?: string | false;
|
|
3754
|
-
/** Configuration for project health sidebar panel */
|
|
3755
|
-
healthSidebar?: {
|
|
3756
|
-
enabled: boolean;
|
|
3757
|
-
data: ProjectHealthData;
|
|
3758
|
-
};
|
|
3759
3705
|
/**
|
|
3760
3706
|
* Configuration for blurring financial data based on user permissions
|
|
3761
3707
|
* When enabled, financial columns (soldEffortMinutes, quotedTime) will be blurred
|
|
@@ -3784,10 +3730,6 @@ interface ListViewTranslations {
|
|
|
3784
3730
|
quotedTime?: string;
|
|
3785
3731
|
elapsedTime?: string;
|
|
3786
3732
|
tags?: string;
|
|
3787
|
-
scheduleVariance?: string;
|
|
3788
|
-
hoursBar?: string;
|
|
3789
|
-
teamLoad?: string;
|
|
3790
|
-
blockers?: string;
|
|
3791
3733
|
};
|
|
3792
3734
|
toolbar: {
|
|
3793
3735
|
search: string;
|
|
@@ -3870,14 +3812,8 @@ interface ListViewCallbacks {
|
|
|
3870
3812
|
onTaskDuplicate?: (task: Task) => void;
|
|
3871
3813
|
/** Create custom field */
|
|
3872
3814
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
3873
|
-
/** Handler for inline time logging - receives task
|
|
3874
|
-
onLogTime?: (task: Task, minutes: number | null
|
|
3875
|
-
/** Handler for opening time log modal from HoursBar cell */
|
|
3876
|
-
onOpenTimeLog?: (task: Task) => void;
|
|
3877
|
-
/** Handler for reporting a blocker on a task */
|
|
3878
|
-
onReportBlocker?: (task: Task) => void;
|
|
3879
|
-
/** Handler for copying task link to clipboard */
|
|
3880
|
-
onCopyTaskLink?: (task: Task) => void;
|
|
3815
|
+
/** Handler for inline time logging - receives task and minutes to log */
|
|
3816
|
+
onLogTime?: (task: Task, minutes: number | null) => void;
|
|
3881
3817
|
}
|
|
3882
3818
|
/**
|
|
3883
3819
|
* Available user for assignment
|
|
@@ -3927,8 +3863,6 @@ interface ListViewProps {
|
|
|
3927
3863
|
availableUsers?: AvailableUser[];
|
|
3928
3864
|
/** Custom fields defined for this project */
|
|
3929
3865
|
customFields?: CustomFieldDefinition[];
|
|
3930
|
-
/** Render custom content on the right side of toolbar (before create button) */
|
|
3931
|
-
toolbarRightContent?: ReactNode;
|
|
3932
3866
|
}
|
|
3933
3867
|
/**
|
|
3934
3868
|
* Flattened task with hierarchy info
|
|
@@ -3965,15 +3899,15 @@ declare const CUSTOM_FIELD_TYPES: Array<{
|
|
|
3965
3899
|
/**
|
|
3966
3900
|
* Main ListView Component
|
|
3967
3901
|
*/
|
|
3968
|
-
declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields,
|
|
3902
|
+
declare function ListView({ tasks, config, callbacks, isLoading, error, className, style, availableUsers, customFields, }: ListViewProps): react_jsx_runtime.JSX.Element;
|
|
3969
3903
|
|
|
3970
3904
|
/**
|
|
3971
3905
|
* ListView Themes
|
|
3972
|
-
* @version
|
|
3906
|
+
* @version 0.17.0
|
|
3973
3907
|
*/
|
|
3974
3908
|
|
|
3975
3909
|
/**
|
|
3976
|
-
* Dark theme for ListView
|
|
3910
|
+
* Dark theme for ListView
|
|
3977
3911
|
*/
|
|
3978
3912
|
declare const darkTheme$3: ListViewTheme;
|
|
3979
3913
|
/**
|
|
@@ -4085,12 +4019,6 @@ interface CalendarTheme {
|
|
|
4085
4019
|
statusInProgress: string;
|
|
4086
4020
|
statusCompleted: string;
|
|
4087
4021
|
focusRing: string;
|
|
4088
|
-
glass: string;
|
|
4089
|
-
glassBorder: string;
|
|
4090
|
-
glassHover: string;
|
|
4091
|
-
neonRed: string;
|
|
4092
|
-
glowBlue: string;
|
|
4093
|
-
glowRed: string;
|
|
4094
4022
|
}
|
|
4095
4023
|
/**
|
|
4096
4024
|
* Permissions for calendar operations
|
|
@@ -4132,8 +4060,6 @@ interface CalendarConfig {
|
|
|
4132
4060
|
enableDragDrop?: boolean;
|
|
4133
4061
|
/** Show task details on hover */
|
|
4134
4062
|
showTooltip?: boolean;
|
|
4135
|
-
/** Show right sidebar with unscheduled/backlog tasks (default: true) */
|
|
4136
|
-
showBacklog?: boolean;
|
|
4137
4063
|
}
|
|
4138
4064
|
/**
|
|
4139
4065
|
* CalendarBoard translations
|
|
@@ -4191,20 +4117,6 @@ interface CalendarTranslations {
|
|
|
4191
4117
|
newTask: string;
|
|
4192
4118
|
viewAll: string;
|
|
4193
4119
|
week: string;
|
|
4194
|
-
backlogTitle: string;
|
|
4195
|
-
systemStatus: string;
|
|
4196
|
-
budgetUtil: string;
|
|
4197
|
-
variance: string;
|
|
4198
|
-
cost: string;
|
|
4199
|
-
estimate: string;
|
|
4200
|
-
sold: string;
|
|
4201
|
-
cashOut: string;
|
|
4202
|
-
typeToAdd: string;
|
|
4203
|
-
critical: string;
|
|
4204
|
-
blocker: string;
|
|
4205
|
-
risk: string;
|
|
4206
|
-
delay: string;
|
|
4207
|
-
days: string;
|
|
4208
4120
|
};
|
|
4209
4121
|
tooltips: {
|
|
4210
4122
|
progress: string;
|
|
@@ -4335,23 +4247,20 @@ interface CalendarBoardProps {
|
|
|
4335
4247
|
onDiscardTimer?: (taskId: string) => void;
|
|
4336
4248
|
/** Blur financial data (tiempo ofertado) for unauthorized users */
|
|
4337
4249
|
blurFinancials?: boolean;
|
|
4338
|
-
/** v2.1.0: Suppress internal TaskDetailModal (consumer provides own drawer) */
|
|
4339
|
-
suppressDetailModal?: boolean;
|
|
4340
4250
|
}
|
|
4341
4251
|
|
|
4342
4252
|
/**
|
|
4343
|
-
* Main CalendarBoard Component
|
|
4253
|
+
* Main CalendarBoard Component
|
|
4344
4254
|
*/
|
|
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,
|
|
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;
|
|
4346
4256
|
|
|
4347
4257
|
/**
|
|
4348
|
-
* CalendarBoard Themes
|
|
4349
|
-
* @version
|
|
4258
|
+
* CalendarBoard Themes
|
|
4259
|
+
* @version 0.17.0
|
|
4350
4260
|
*/
|
|
4351
4261
|
|
|
4352
4262
|
/**
|
|
4353
|
-
* Dark theme
|
|
4354
|
-
* Ultra-dark (#050505) with #222 grid borders, glass elements, and neon accents
|
|
4263
|
+
* Dark theme for CalendarBoard
|
|
4355
4264
|
*/
|
|
4356
4265
|
declare const darkTheme$2: CalendarTheme;
|
|
4357
4266
|
/**
|
|
@@ -6525,4 +6434,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
6525
6434
|
*/
|
|
6526
6435
|
declare const defaultTheme: ThemeName;
|
|
6527
6436
|
|
|
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,
|
|
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 };
|