@libxai/board 0.17.7 → 0.17.9
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 +60 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +32 -43
- package/dist/index.d.ts +32 -43
- package/dist/index.js +60 -60
- package/dist/index.js.map +1 -1
- package/dist/styles.css +201 -10
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -297,7 +297,7 @@ interface RenderProps {
|
|
|
297
297
|
/**
|
|
298
298
|
* User entity for assignment
|
|
299
299
|
*/
|
|
300
|
-
interface User$
|
|
300
|
+
interface User$1 {
|
|
301
301
|
id: string;
|
|
302
302
|
name: string;
|
|
303
303
|
initials: string;
|
|
@@ -321,7 +321,7 @@ interface KanbanBoardProps {
|
|
|
321
321
|
/** Configuration */
|
|
322
322
|
config?: BoardConfig;
|
|
323
323
|
/** Available users for assignment */
|
|
324
|
-
availableUsers?: User$
|
|
324
|
+
availableUsers?: User$1[];
|
|
325
325
|
/** Custom CSS class */
|
|
326
326
|
className?: string;
|
|
327
327
|
/** Custom inline styles */
|
|
@@ -728,17 +728,24 @@ declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, confi
|
|
|
728
728
|
}): react_jsx_runtime.JSX.Element;
|
|
729
729
|
|
|
730
730
|
/**
|
|
731
|
-
* User Assignment Selector
|
|
731
|
+
* User Assignment Selector Component
|
|
732
732
|
* Multi-select user assignment with avatar display
|
|
733
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
734
733
|
*/
|
|
735
|
-
interface User
|
|
734
|
+
interface User {
|
|
736
735
|
id: string;
|
|
737
736
|
name: string;
|
|
738
737
|
avatar?: string;
|
|
739
738
|
initials: string;
|
|
740
739
|
color: string;
|
|
741
740
|
}
|
|
741
|
+
interface UserAssignmentSelectorProps {
|
|
742
|
+
assignedUsers?: User[];
|
|
743
|
+
availableUsers: User[];
|
|
744
|
+
onChange: (users: User[]) => void;
|
|
745
|
+
className?: string;
|
|
746
|
+
maxVisibleAvatars?: number;
|
|
747
|
+
}
|
|
748
|
+
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
742
749
|
|
|
743
750
|
interface ColumnProps {
|
|
744
751
|
/** Column data */
|
|
@@ -758,7 +765,7 @@ interface ColumnProps {
|
|
|
758
765
|
/** Card update handler */
|
|
759
766
|
onCardUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
760
767
|
/** Available users for assignment */
|
|
761
|
-
availableUsers?: User
|
|
768
|
+
availableUsers?: User[];
|
|
762
769
|
/** All cards (for dependencies) */
|
|
763
770
|
allCards?: Card$1[];
|
|
764
771
|
/** Enable virtualization */
|
|
@@ -807,7 +814,7 @@ interface CardProps {
|
|
|
807
814
|
/** Card update handler */
|
|
808
815
|
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
809
816
|
/** Available users for assignment */
|
|
810
|
-
availableUsers?: User
|
|
817
|
+
availableUsers?: User[];
|
|
811
818
|
/** All cards (for dependencies) */
|
|
812
819
|
allCards?: Card$1[];
|
|
813
820
|
}
|
|
@@ -822,12 +829,11 @@ interface PrioritySelectorProps {
|
|
|
822
829
|
onChange: (priority?: Priority) => void;
|
|
823
830
|
className?: string;
|
|
824
831
|
}
|
|
825
|
-
declare function PrioritySelector({ priority, onChange, className }: PrioritySelectorProps): react_jsx_runtime.JSX.Element;
|
|
832
|
+
declare function PrioritySelector({ priority, onChange, className, }: PrioritySelectorProps): react_jsx_runtime.JSX.Element;
|
|
826
833
|
|
|
827
834
|
/**
|
|
828
|
-
* Date Range Picker
|
|
835
|
+
* Date Range Picker Component
|
|
829
836
|
* Quick selection buttons + interactive calendar
|
|
830
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
831
837
|
*/
|
|
832
838
|
interface DateRangePickerProps {
|
|
833
839
|
startDate?: string;
|
|
@@ -837,27 +843,6 @@ interface DateRangePickerProps {
|
|
|
837
843
|
}
|
|
838
844
|
declare function DateRangePicker({ startDate, endDate, onChange, className, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
839
845
|
|
|
840
|
-
/**
|
|
841
|
-
* User Assignment Selector V2
|
|
842
|
-
* Multi-select user assignment with avatar display
|
|
843
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
844
|
-
*/
|
|
845
|
-
interface User {
|
|
846
|
-
id: string;
|
|
847
|
-
name: string;
|
|
848
|
-
avatar?: string;
|
|
849
|
-
initials: string;
|
|
850
|
-
color: string;
|
|
851
|
-
}
|
|
852
|
-
interface UserAssignmentSelectorProps {
|
|
853
|
-
assignedUsers?: User[];
|
|
854
|
-
availableUsers: User[];
|
|
855
|
-
onChange: (users: User[]) => void;
|
|
856
|
-
className?: string;
|
|
857
|
-
maxVisibleAvatars?: number;
|
|
858
|
-
}
|
|
859
|
-
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
860
|
-
|
|
861
846
|
interface DependenciesSelectorProps {
|
|
862
847
|
/** Current card (to exclude from dependencies) */
|
|
863
848
|
currentCardId: string;
|
|
@@ -920,7 +905,7 @@ interface CommandPaletteProps {
|
|
|
920
905
|
/** Current board state */
|
|
921
906
|
board: Board;
|
|
922
907
|
/** Available users for assignment */
|
|
923
|
-
availableUsers?: User$
|
|
908
|
+
availableUsers?: User$1[];
|
|
924
909
|
/** Callback to create a new card */
|
|
925
910
|
onCreateCard?: (columnId: string, title: string) => void;
|
|
926
911
|
/** Callback to navigate to a card */
|
|
@@ -954,7 +939,7 @@ interface CardDetailModalProps {
|
|
|
954
939
|
/** Delete card callback */
|
|
955
940
|
onDelete?: (cardId: string) => void;
|
|
956
941
|
/** Available users for assignment */
|
|
957
|
-
availableUsers?: User$
|
|
942
|
+
availableUsers?: User$1[];
|
|
958
943
|
/** Comments for this card */
|
|
959
944
|
comments?: Comment[];
|
|
960
945
|
/** Activity log for this card */
|
|
@@ -997,7 +982,7 @@ interface CardDetailModalV2Props {
|
|
|
997
982
|
/** Delete card callback */
|
|
998
983
|
onDelete?: (cardId: string) => void;
|
|
999
984
|
/** Available users for assignment */
|
|
1000
|
-
availableUsers?: User$
|
|
985
|
+
availableUsers?: User$1[];
|
|
1001
986
|
/** Comments for this card */
|
|
1002
987
|
comments?: Comment[];
|
|
1003
988
|
/** Activity log for this card */
|
|
@@ -1007,7 +992,7 @@ interface CardDetailModalV2Props {
|
|
|
1007
992
|
/** Delete comment callback */
|
|
1008
993
|
onDeleteComment?: (commentId: string) => void;
|
|
1009
994
|
/** Current user */
|
|
1010
|
-
currentUser?: User$
|
|
995
|
+
currentUser?: User$1;
|
|
1011
996
|
/** AI: Generate description */
|
|
1012
997
|
onAIGenerateDescription?: (card: Card$1) => Promise<string>;
|
|
1013
998
|
/** AI: Create subtasks */
|
|
@@ -1021,8 +1006,12 @@ interface CardDetailModalV2Props {
|
|
|
1021
1006
|
}>;
|
|
1022
1007
|
/** Available labels */
|
|
1023
1008
|
availableLabels?: string[];
|
|
1009
|
+
/** Upload cover image callback (optional - returns public URL) */
|
|
1010
|
+
onUploadCoverImage?: (file: File) => Promise<string>;
|
|
1011
|
+
/** Unsplash API key for cover images (optional) */
|
|
1012
|
+
unsplashAccessKey?: string;
|
|
1024
1013
|
}
|
|
1025
|
-
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1014
|
+
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1026
1015
|
|
|
1027
1016
|
interface AttachmentUploaderProps {
|
|
1028
1017
|
/** Card ID for attachments */
|
|
@@ -1116,7 +1105,7 @@ interface BulkOperationsToolbarProps {
|
|
|
1116
1105
|
/** Selected cards */
|
|
1117
1106
|
selectedCards: Card$1[];
|
|
1118
1107
|
/** Available users for assignment */
|
|
1119
|
-
availableUsers?: User
|
|
1108
|
+
availableUsers?: User[];
|
|
1120
1109
|
/** Callback when selection is cleared */
|
|
1121
1110
|
onClearSelection: () => void;
|
|
1122
1111
|
/** Bulk operations callbacks */
|
|
@@ -1140,7 +1129,7 @@ interface SwimlaneBoardViewProps {
|
|
|
1140
1129
|
/** Swimlane configuration */
|
|
1141
1130
|
swimlaneConfig: SwimlaneConfig;
|
|
1142
1131
|
/** All available users */
|
|
1143
|
-
availableUsers?: User
|
|
1132
|
+
availableUsers?: User[];
|
|
1144
1133
|
/** Board callbacks */
|
|
1145
1134
|
callbacks: {
|
|
1146
1135
|
onCardMove?: (cardId: string, targetColumnId: string, position: number) => void;
|
|
@@ -1279,7 +1268,7 @@ interface FilterBarProps {
|
|
|
1279
1268
|
onFilterMyTasks?: () => void;
|
|
1280
1269
|
onFilterOverdue?: () => void;
|
|
1281
1270
|
onFilterHighPriority?: () => void;
|
|
1282
|
-
availableUsers?: User$
|
|
1271
|
+
availableUsers?: User$1[];
|
|
1283
1272
|
availableLabels?: string[];
|
|
1284
1273
|
availableColumns?: Array<{
|
|
1285
1274
|
id: string;
|
|
@@ -2773,7 +2762,7 @@ interface ListViewConfig {
|
|
|
2773
2762
|
/** Row height in pixels */
|
|
2774
2763
|
rowHeight?: number;
|
|
2775
2764
|
/** Available users for filtering */
|
|
2776
|
-
availableUsers?: User$
|
|
2765
|
+
availableUsers?: User$1[];
|
|
2777
2766
|
/** Permissions */
|
|
2778
2767
|
permissions?: ListViewPermissions;
|
|
2779
2768
|
/** Enable virtual scrolling for large lists */
|
|
@@ -3052,7 +3041,7 @@ interface CalendarConfig {
|
|
|
3052
3041
|
/** Max events to show per day before "+N more" */
|
|
3053
3042
|
maxEventsPerDay?: number;
|
|
3054
3043
|
/** Available users for filtering */
|
|
3055
|
-
availableUsers?: User$
|
|
3044
|
+
availableUsers?: User$1[];
|
|
3056
3045
|
/** Permissions */
|
|
3057
3046
|
permissions?: CalendarPermissions;
|
|
3058
3047
|
/** Enable drag and drop */
|
|
@@ -3724,7 +3713,7 @@ declare function useKanbanState({ initialBoard, onPersist, }: UseKanbanStateOpti
|
|
|
3724
3713
|
|
|
3725
3714
|
interface UseBoardOptions {
|
|
3726
3715
|
initialData: Board;
|
|
3727
|
-
availableUsers?: User$
|
|
3716
|
+
availableUsers?: User$1[];
|
|
3728
3717
|
onSave?: (board: Board) => void | Promise<void>;
|
|
3729
3718
|
saveDelay?: number;
|
|
3730
3719
|
}
|
|
@@ -5351,4 +5340,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
5351
5340
|
*/
|
|
5352
5341
|
declare const defaultTheme: ThemeName;
|
|
5353
5342
|
|
|
5354
|
-
export { type AICallbacks, type AICommandResult$1 as AICommandResult, type GanttTask as AIGanttTask, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, 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 Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, ConfigMenu, type ConfigMenuProps, ContextMenu, DEFAULT_SHORTCUTS, 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$1 as GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType 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, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, 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 Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, TaskBar, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeScale, Timeline, 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$
|
|
5343
|
+
export { type AICallbacks, type AICommandResult$1 as AICommandResult, type GanttTask as AIGanttTask, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, 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 Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, ConfigMenu, type ConfigMenuProps, ContextMenu, DEFAULT_SHORTCUTS, 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$1 as GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType 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, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, 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 Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, TaskBar, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeScale, Timeline, 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, zIndex };
|
package/dist/index.d.ts
CHANGED
|
@@ -297,7 +297,7 @@ interface RenderProps {
|
|
|
297
297
|
/**
|
|
298
298
|
* User entity for assignment
|
|
299
299
|
*/
|
|
300
|
-
interface User$
|
|
300
|
+
interface User$1 {
|
|
301
301
|
id: string;
|
|
302
302
|
name: string;
|
|
303
303
|
initials: string;
|
|
@@ -321,7 +321,7 @@ interface KanbanBoardProps {
|
|
|
321
321
|
/** Configuration */
|
|
322
322
|
config?: BoardConfig;
|
|
323
323
|
/** Available users for assignment */
|
|
324
|
-
availableUsers?: User$
|
|
324
|
+
availableUsers?: User$1[];
|
|
325
325
|
/** Custom CSS class */
|
|
326
326
|
className?: string;
|
|
327
327
|
/** Custom inline styles */
|
|
@@ -728,17 +728,24 @@ declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, confi
|
|
|
728
728
|
}): react_jsx_runtime.JSX.Element;
|
|
729
729
|
|
|
730
730
|
/**
|
|
731
|
-
* User Assignment Selector
|
|
731
|
+
* User Assignment Selector Component
|
|
732
732
|
* Multi-select user assignment with avatar display
|
|
733
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
734
733
|
*/
|
|
735
|
-
interface User
|
|
734
|
+
interface User {
|
|
736
735
|
id: string;
|
|
737
736
|
name: string;
|
|
738
737
|
avatar?: string;
|
|
739
738
|
initials: string;
|
|
740
739
|
color: string;
|
|
741
740
|
}
|
|
741
|
+
interface UserAssignmentSelectorProps {
|
|
742
|
+
assignedUsers?: User[];
|
|
743
|
+
availableUsers: User[];
|
|
744
|
+
onChange: (users: User[]) => void;
|
|
745
|
+
className?: string;
|
|
746
|
+
maxVisibleAvatars?: number;
|
|
747
|
+
}
|
|
748
|
+
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
742
749
|
|
|
743
750
|
interface ColumnProps {
|
|
744
751
|
/** Column data */
|
|
@@ -758,7 +765,7 @@ interface ColumnProps {
|
|
|
758
765
|
/** Card update handler */
|
|
759
766
|
onCardUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
760
767
|
/** Available users for assignment */
|
|
761
|
-
availableUsers?: User
|
|
768
|
+
availableUsers?: User[];
|
|
762
769
|
/** All cards (for dependencies) */
|
|
763
770
|
allCards?: Card$1[];
|
|
764
771
|
/** Enable virtualization */
|
|
@@ -807,7 +814,7 @@ interface CardProps {
|
|
|
807
814
|
/** Card update handler */
|
|
808
815
|
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
809
816
|
/** Available users for assignment */
|
|
810
|
-
availableUsers?: User
|
|
817
|
+
availableUsers?: User[];
|
|
811
818
|
/** All cards (for dependencies) */
|
|
812
819
|
allCards?: Card$1[];
|
|
813
820
|
}
|
|
@@ -822,12 +829,11 @@ interface PrioritySelectorProps {
|
|
|
822
829
|
onChange: (priority?: Priority) => void;
|
|
823
830
|
className?: string;
|
|
824
831
|
}
|
|
825
|
-
declare function PrioritySelector({ priority, onChange, className }: PrioritySelectorProps): react_jsx_runtime.JSX.Element;
|
|
832
|
+
declare function PrioritySelector({ priority, onChange, className, }: PrioritySelectorProps): react_jsx_runtime.JSX.Element;
|
|
826
833
|
|
|
827
834
|
/**
|
|
828
|
-
* Date Range Picker
|
|
835
|
+
* Date Range Picker Component
|
|
829
836
|
* Quick selection buttons + interactive calendar
|
|
830
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
831
837
|
*/
|
|
832
838
|
interface DateRangePickerProps {
|
|
833
839
|
startDate?: string;
|
|
@@ -837,27 +843,6 @@ interface DateRangePickerProps {
|
|
|
837
843
|
}
|
|
838
844
|
declare function DateRangePicker({ startDate, endDate, onChange, className, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
839
845
|
|
|
840
|
-
/**
|
|
841
|
-
* User Assignment Selector V2
|
|
842
|
-
* Multi-select user assignment with avatar display
|
|
843
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
844
|
-
*/
|
|
845
|
-
interface User {
|
|
846
|
-
id: string;
|
|
847
|
-
name: string;
|
|
848
|
-
avatar?: string;
|
|
849
|
-
initials: string;
|
|
850
|
-
color: string;
|
|
851
|
-
}
|
|
852
|
-
interface UserAssignmentSelectorProps {
|
|
853
|
-
assignedUsers?: User[];
|
|
854
|
-
availableUsers: User[];
|
|
855
|
-
onChange: (users: User[]) => void;
|
|
856
|
-
className?: string;
|
|
857
|
-
maxVisibleAvatars?: number;
|
|
858
|
-
}
|
|
859
|
-
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
860
|
-
|
|
861
846
|
interface DependenciesSelectorProps {
|
|
862
847
|
/** Current card (to exclude from dependencies) */
|
|
863
848
|
currentCardId: string;
|
|
@@ -920,7 +905,7 @@ interface CommandPaletteProps {
|
|
|
920
905
|
/** Current board state */
|
|
921
906
|
board: Board;
|
|
922
907
|
/** Available users for assignment */
|
|
923
|
-
availableUsers?: User$
|
|
908
|
+
availableUsers?: User$1[];
|
|
924
909
|
/** Callback to create a new card */
|
|
925
910
|
onCreateCard?: (columnId: string, title: string) => void;
|
|
926
911
|
/** Callback to navigate to a card */
|
|
@@ -954,7 +939,7 @@ interface CardDetailModalProps {
|
|
|
954
939
|
/** Delete card callback */
|
|
955
940
|
onDelete?: (cardId: string) => void;
|
|
956
941
|
/** Available users for assignment */
|
|
957
|
-
availableUsers?: User$
|
|
942
|
+
availableUsers?: User$1[];
|
|
958
943
|
/** Comments for this card */
|
|
959
944
|
comments?: Comment[];
|
|
960
945
|
/** Activity log for this card */
|
|
@@ -997,7 +982,7 @@ interface CardDetailModalV2Props {
|
|
|
997
982
|
/** Delete card callback */
|
|
998
983
|
onDelete?: (cardId: string) => void;
|
|
999
984
|
/** Available users for assignment */
|
|
1000
|
-
availableUsers?: User$
|
|
985
|
+
availableUsers?: User$1[];
|
|
1001
986
|
/** Comments for this card */
|
|
1002
987
|
comments?: Comment[];
|
|
1003
988
|
/** Activity log for this card */
|
|
@@ -1007,7 +992,7 @@ interface CardDetailModalV2Props {
|
|
|
1007
992
|
/** Delete comment callback */
|
|
1008
993
|
onDeleteComment?: (commentId: string) => void;
|
|
1009
994
|
/** Current user */
|
|
1010
|
-
currentUser?: User$
|
|
995
|
+
currentUser?: User$1;
|
|
1011
996
|
/** AI: Generate description */
|
|
1012
997
|
onAIGenerateDescription?: (card: Card$1) => Promise<string>;
|
|
1013
998
|
/** AI: Create subtasks */
|
|
@@ -1021,8 +1006,12 @@ interface CardDetailModalV2Props {
|
|
|
1021
1006
|
}>;
|
|
1022
1007
|
/** Available labels */
|
|
1023
1008
|
availableLabels?: string[];
|
|
1009
|
+
/** Upload cover image callback (optional - returns public URL) */
|
|
1010
|
+
onUploadCoverImage?: (file: File) => Promise<string>;
|
|
1011
|
+
/** Unsplash API key for cover images (optional) */
|
|
1012
|
+
unsplashAccessKey?: string;
|
|
1024
1013
|
}
|
|
1025
|
-
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1014
|
+
declare function CardDetailModalV2({ card, isOpen, onClose, onUpdate, onDelete: _onDelete, availableUsers, comments, activities, onAddComment, onDeleteComment: _onDeleteComment, currentUser, onAIGenerateDescription: _onAIGenerateDescription, onAICreateSubtasks: _onAICreateSubtasks, onAIFindSimilar: _onAIFindSimilar, availableColumns, availableLabels, onUploadCoverImage, unsplashAccessKey, }: CardDetailModalV2Props): react_jsx_runtime.JSX.Element | null;
|
|
1026
1015
|
|
|
1027
1016
|
interface AttachmentUploaderProps {
|
|
1028
1017
|
/** Card ID for attachments */
|
|
@@ -1116,7 +1105,7 @@ interface BulkOperationsToolbarProps {
|
|
|
1116
1105
|
/** Selected cards */
|
|
1117
1106
|
selectedCards: Card$1[];
|
|
1118
1107
|
/** Available users for assignment */
|
|
1119
|
-
availableUsers?: User
|
|
1108
|
+
availableUsers?: User[];
|
|
1120
1109
|
/** Callback when selection is cleared */
|
|
1121
1110
|
onClearSelection: () => void;
|
|
1122
1111
|
/** Bulk operations callbacks */
|
|
@@ -1140,7 +1129,7 @@ interface SwimlaneBoardViewProps {
|
|
|
1140
1129
|
/** Swimlane configuration */
|
|
1141
1130
|
swimlaneConfig: SwimlaneConfig;
|
|
1142
1131
|
/** All available users */
|
|
1143
|
-
availableUsers?: User
|
|
1132
|
+
availableUsers?: User[];
|
|
1144
1133
|
/** Board callbacks */
|
|
1145
1134
|
callbacks: {
|
|
1146
1135
|
onCardMove?: (cardId: string, targetColumnId: string, position: number) => void;
|
|
@@ -1279,7 +1268,7 @@ interface FilterBarProps {
|
|
|
1279
1268
|
onFilterMyTasks?: () => void;
|
|
1280
1269
|
onFilterOverdue?: () => void;
|
|
1281
1270
|
onFilterHighPriority?: () => void;
|
|
1282
|
-
availableUsers?: User$
|
|
1271
|
+
availableUsers?: User$1[];
|
|
1283
1272
|
availableLabels?: string[];
|
|
1284
1273
|
availableColumns?: Array<{
|
|
1285
1274
|
id: string;
|
|
@@ -2773,7 +2762,7 @@ interface ListViewConfig {
|
|
|
2773
2762
|
/** Row height in pixels */
|
|
2774
2763
|
rowHeight?: number;
|
|
2775
2764
|
/** Available users for filtering */
|
|
2776
|
-
availableUsers?: User$
|
|
2765
|
+
availableUsers?: User$1[];
|
|
2777
2766
|
/** Permissions */
|
|
2778
2767
|
permissions?: ListViewPermissions;
|
|
2779
2768
|
/** Enable virtual scrolling for large lists */
|
|
@@ -3052,7 +3041,7 @@ interface CalendarConfig {
|
|
|
3052
3041
|
/** Max events to show per day before "+N more" */
|
|
3053
3042
|
maxEventsPerDay?: number;
|
|
3054
3043
|
/** Available users for filtering */
|
|
3055
|
-
availableUsers?: User$
|
|
3044
|
+
availableUsers?: User$1[];
|
|
3056
3045
|
/** Permissions */
|
|
3057
3046
|
permissions?: CalendarPermissions;
|
|
3058
3047
|
/** Enable drag and drop */
|
|
@@ -3724,7 +3713,7 @@ declare function useKanbanState({ initialBoard, onPersist, }: UseKanbanStateOpti
|
|
|
3724
3713
|
|
|
3725
3714
|
interface UseBoardOptions {
|
|
3726
3715
|
initialData: Board;
|
|
3727
|
-
availableUsers?: User$
|
|
3716
|
+
availableUsers?: User$1[];
|
|
3728
3717
|
onSave?: (board: Board) => void | Promise<void>;
|
|
3729
3718
|
saveDelay?: number;
|
|
3730
3719
|
}
|
|
@@ -5351,4 +5340,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
5351
5340
|
*/
|
|
5352
5341
|
declare const defaultTheme: ThemeName;
|
|
5353
5342
|
|
|
5354
|
-
export { type AICallbacks, type AICommandResult$1 as AICommandResult, type GanttTask as AIGanttTask, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, 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 Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, ConfigMenu, type ConfigMenuProps, ContextMenu, DEFAULT_SHORTCUTS, 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$1 as GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType 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, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, 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 Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, TaskBar, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeScale, Timeline, 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$
|
|
5343
|
+
export { type AICallbacks, type AICommandResult$1 as AICommandResult, type GanttTask as AIGanttTask, type AIModelKey, type AIOperation, AIUsageDashboard, type AIUsageDashboardProps, AI_FEATURES, AI_MODELS, type Activity, type ActivityType, type AssigneeSuggestion, type Attachment, AttachmentUploader, type AttachmentUploaderProps, type Board, type BoardCallbacks, type BoardConfig, BoardProvider, type BoardProviderProps, type BorderRadiusToken, BulkOperationsToolbar, type BulkOperationsToolbarProps, BurnDownChart, type BurnDownChartProps, type BurnDownDataPoint, 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 Card$1 as CardType, CircuitBreaker, Column, ColumnManager, type ColumnProps, type Column$1 as ColumnType, CommandPalette, type CommandPaletteProps, type Comment, ConfigMenu, type ConfigMenuProps, ContextMenu, DEFAULT_SHORTCUTS, 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$1 as GanttAIAssistantConfig, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType 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, type IPluginManager, type ImportResult, type Insight, type InsightSeverity, type InsightType, KanbanBoard, type KanbanBoardProps, KanbanViewAdapter, type KanbanViewConfig, type KeyboardAction, type KeyboardShortcut, KeyboardShortcutsHelp, type KeyboardShortcutsHelpProps, type LineHeightToken, type ListColumn, 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 Plugin, type PluginContext, type PluginHooks, PluginManager, type Priority, PrioritySelector, type PrioritySelectorProps, RATE_LIMITS, type RenderProps, type RetryOptions, type RetryResult, type ShadowToken, type SortBy, type SortDirection, type SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, type SupportedLocale, type Swimlane, SwimlaneBoardView, type SwimlaneBoardViewProps, type SwimlaneConfig, TaskBar, type TaskFormData, TaskFormModal, type TaskFormModalProps, TaskGrid, type Theme, type ThemeColors, type ThemeContextValue, ThemeModal, type ThemeModalProps, type ThemeName, ThemeProvider, ThemeSwitcher, type TimeScale, Timeline, 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, zIndex };
|