@libxai/board 0.11.4 → 0.11.6
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 +16 -16
- 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 +24 -36
- package/dist/index.d.ts +24 -36
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/dist/styles.css +512 -57
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -293,7 +293,7 @@ interface RenderProps {
|
|
|
293
293
|
/**
|
|
294
294
|
* User entity for assignment
|
|
295
295
|
*/
|
|
296
|
-
interface User$
|
|
296
|
+
interface User$1 {
|
|
297
297
|
id: string;
|
|
298
298
|
name: string;
|
|
299
299
|
initials: string;
|
|
@@ -317,7 +317,7 @@ interface KanbanBoardProps {
|
|
|
317
317
|
/** Configuration */
|
|
318
318
|
config?: BoardConfig;
|
|
319
319
|
/** Available users for assignment */
|
|
320
|
-
availableUsers?: User$
|
|
320
|
+
availableUsers?: User$1[];
|
|
321
321
|
/** Custom CSS class */
|
|
322
322
|
className?: string;
|
|
323
323
|
/** Custom inline styles */
|
|
@@ -724,16 +724,25 @@ declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, confi
|
|
|
724
724
|
}): react_jsx_runtime.JSX.Element;
|
|
725
725
|
|
|
726
726
|
/**
|
|
727
|
-
* User Assignment Selector
|
|
727
|
+
* User Assignment Selector V2
|
|
728
728
|
* Multi-select user assignment with avatar display
|
|
729
|
+
* Uses world-class Dropdown system for perfect positioning
|
|
729
730
|
*/
|
|
730
|
-
interface User
|
|
731
|
+
interface User {
|
|
731
732
|
id: string;
|
|
732
733
|
name: string;
|
|
733
734
|
avatar?: string;
|
|
734
735
|
initials: string;
|
|
735
736
|
color: string;
|
|
736
737
|
}
|
|
738
|
+
interface UserAssignmentSelectorProps {
|
|
739
|
+
assignedUsers?: User[];
|
|
740
|
+
availableUsers: User[];
|
|
741
|
+
onChange: (users: User[]) => void;
|
|
742
|
+
className?: string;
|
|
743
|
+
maxVisibleAvatars?: number;
|
|
744
|
+
}
|
|
745
|
+
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
737
746
|
|
|
738
747
|
interface ColumnProps {
|
|
739
748
|
/** Column data */
|
|
@@ -753,7 +762,7 @@ interface ColumnProps {
|
|
|
753
762
|
/** Card update handler */
|
|
754
763
|
onCardUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
755
764
|
/** Available users for assignment */
|
|
756
|
-
availableUsers?: User
|
|
765
|
+
availableUsers?: User[];
|
|
757
766
|
/** All cards (for dependencies) */
|
|
758
767
|
allCards?: Card$1[];
|
|
759
768
|
/** Enable virtualization */
|
|
@@ -802,7 +811,7 @@ interface CardProps {
|
|
|
802
811
|
/** Card update handler */
|
|
803
812
|
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
804
813
|
/** Available users for assignment */
|
|
805
|
-
availableUsers?: User
|
|
814
|
+
availableUsers?: User[];
|
|
806
815
|
/** All cards (for dependencies) */
|
|
807
816
|
allCards?: Card$1[];
|
|
808
817
|
}
|
|
@@ -832,27 +841,6 @@ interface DateRangePickerProps {
|
|
|
832
841
|
}
|
|
833
842
|
declare function DateRangePicker({ startDate, endDate, onChange, className, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
834
843
|
|
|
835
|
-
/**
|
|
836
|
-
* User Assignment Selector V2
|
|
837
|
-
* Multi-select user assignment with avatar display
|
|
838
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
839
|
-
*/
|
|
840
|
-
interface User {
|
|
841
|
-
id: string;
|
|
842
|
-
name: string;
|
|
843
|
-
avatar?: string;
|
|
844
|
-
initials: string;
|
|
845
|
-
color: string;
|
|
846
|
-
}
|
|
847
|
-
interface UserAssignmentSelectorProps {
|
|
848
|
-
assignedUsers?: User[];
|
|
849
|
-
availableUsers: User[];
|
|
850
|
-
onChange: (users: User[]) => void;
|
|
851
|
-
className?: string;
|
|
852
|
-
maxVisibleAvatars?: number;
|
|
853
|
-
}
|
|
854
|
-
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
855
|
-
|
|
856
844
|
interface DependenciesSelectorProps {
|
|
857
845
|
/** Current card (to exclude from dependencies) */
|
|
858
846
|
currentCardId: string;
|
|
@@ -915,7 +903,7 @@ interface CommandPaletteProps {
|
|
|
915
903
|
/** Current board state */
|
|
916
904
|
board: Board;
|
|
917
905
|
/** Available users for assignment */
|
|
918
|
-
availableUsers?: User$
|
|
906
|
+
availableUsers?: User$1[];
|
|
919
907
|
/** Callback to create a new card */
|
|
920
908
|
onCreateCard?: (columnId: string, title: string) => void;
|
|
921
909
|
/** Callback to navigate to a card */
|
|
@@ -949,7 +937,7 @@ interface CardDetailModalProps {
|
|
|
949
937
|
/** Delete card callback */
|
|
950
938
|
onDelete?: (cardId: string) => void;
|
|
951
939
|
/** Available users for assignment */
|
|
952
|
-
availableUsers?: User$
|
|
940
|
+
availableUsers?: User$1[];
|
|
953
941
|
/** Comments for this card */
|
|
954
942
|
comments?: Comment[];
|
|
955
943
|
/** Activity log for this card */
|
|
@@ -992,7 +980,7 @@ interface CardDetailModalV2Props {
|
|
|
992
980
|
/** Delete card callback */
|
|
993
981
|
onDelete?: (cardId: string) => void;
|
|
994
982
|
/** Available users for assignment */
|
|
995
|
-
availableUsers?: User$
|
|
983
|
+
availableUsers?: User$1[];
|
|
996
984
|
/** Comments for this card */
|
|
997
985
|
comments?: Comment[];
|
|
998
986
|
/** Activity log for this card */
|
|
@@ -1002,7 +990,7 @@ interface CardDetailModalV2Props {
|
|
|
1002
990
|
/** Delete comment callback */
|
|
1003
991
|
onDeleteComment?: (commentId: string) => void;
|
|
1004
992
|
/** Current user */
|
|
1005
|
-
currentUser?: User$
|
|
993
|
+
currentUser?: User$1;
|
|
1006
994
|
/** AI: Generate description */
|
|
1007
995
|
onAIGenerateDescription?: (card: Card$1) => Promise<string>;
|
|
1008
996
|
/** AI: Create subtasks */
|
|
@@ -1111,7 +1099,7 @@ interface BulkOperationsToolbarProps {
|
|
|
1111
1099
|
/** Selected cards */
|
|
1112
1100
|
selectedCards: Card$1[];
|
|
1113
1101
|
/** Available users for assignment */
|
|
1114
|
-
availableUsers?: User
|
|
1102
|
+
availableUsers?: User[];
|
|
1115
1103
|
/** Callback when selection is cleared */
|
|
1116
1104
|
onClearSelection: () => void;
|
|
1117
1105
|
/** Bulk operations callbacks */
|
|
@@ -1135,7 +1123,7 @@ interface SwimlaneBoardViewProps {
|
|
|
1135
1123
|
/** Swimlane configuration */
|
|
1136
1124
|
swimlaneConfig: SwimlaneConfig;
|
|
1137
1125
|
/** All available users */
|
|
1138
|
-
availableUsers?: User
|
|
1126
|
+
availableUsers?: User[];
|
|
1139
1127
|
/** Board callbacks */
|
|
1140
1128
|
callbacks: {
|
|
1141
1129
|
onCardMove?: (cardId: string, targetColumnId: string, position: number) => void;
|
|
@@ -1274,7 +1262,7 @@ interface FilterBarProps {
|
|
|
1274
1262
|
onFilterMyTasks?: () => void;
|
|
1275
1263
|
onFilterOverdue?: () => void;
|
|
1276
1264
|
onFilterHighPriority?: () => void;
|
|
1277
|
-
availableUsers?: User$
|
|
1265
|
+
availableUsers?: User$1[];
|
|
1278
1266
|
availableLabels?: string[];
|
|
1279
1267
|
availableColumns?: Array<{
|
|
1280
1268
|
id: string;
|
|
@@ -2757,7 +2745,7 @@ declare function useKanbanState({ initialBoard, onPersist, }: UseKanbanStateOpti
|
|
|
2757
2745
|
|
|
2758
2746
|
interface UseBoardOptions {
|
|
2759
2747
|
initialData: Board;
|
|
2760
|
-
availableUsers?: User$
|
|
2748
|
+
availableUsers?: User$1[];
|
|
2761
2749
|
onSave?: (board: Board) => void | Promise<void>;
|
|
2762
2750
|
saveDelay?: number;
|
|
2763
2751
|
}
|
|
@@ -4384,4 +4372,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
4384
4372
|
*/
|
|
4385
4373
|
declare const defaultTheme: ThemeName;
|
|
4386
4374
|
|
|
4387
|
-
export { type AICallbacks, 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, 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 FontSizeToken, type FontWeightToken, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType as GanttColumnType, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, 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, 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 SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, 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$
|
|
4375
|
+
export { type AICallbacks, 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, 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 FontSizeToken, type FontWeightToken, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType as GanttColumnType, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, 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, 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 SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, 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 ZIndexToken, aiUsageTracker, borderRadius, calculatePosition, cardToGanttTask, cardsToGanttTasks, cn, createKanbanView, createRetryWrapper, darkTheme, darkTheme$1 as darkTokenTheme, defaultTheme, designTokens, duration, easing, exportTokensToCSS, fontSize, fontWeight, formatCost, ganttTaskToCardUpdate, themes$1 as ganttThemes, gantt as ganttTokens, ganttUtils, generateCSSVariables, generateCompleteCSS, generateInitialPositions, generateThemeVariables, getToken, kanban as kanbanTokens, lightTheme, lightTheme$1 as lightTokenTheme, lineHeight, neutralTheme, neutralTheme$1 as neutralTokenTheme, opacity, pluginManager, retrySyncOperation, retryWithBackoff, shadows, shouldVirtualizeGrid, spacing, themes, useAI, useBoard$1 as useBoard, useBoard as useBoardCore, useBoardStore, useCardStacking, useDragState, useFilteredCards, useFilters, useKanbanState, useKeyboardShortcuts, useMultiSelect, useSelectionState, useSortedCards, useTheme, useVirtualGrid, useVirtualList, withErrorBoundary, zIndex };
|
package/dist/index.d.ts
CHANGED
|
@@ -293,7 +293,7 @@ interface RenderProps {
|
|
|
293
293
|
/**
|
|
294
294
|
* User entity for assignment
|
|
295
295
|
*/
|
|
296
|
-
interface User$
|
|
296
|
+
interface User$1 {
|
|
297
297
|
id: string;
|
|
298
298
|
name: string;
|
|
299
299
|
initials: string;
|
|
@@ -317,7 +317,7 @@ interface KanbanBoardProps {
|
|
|
317
317
|
/** Configuration */
|
|
318
318
|
config?: BoardConfig;
|
|
319
319
|
/** Available users for assignment */
|
|
320
|
-
availableUsers?: User$
|
|
320
|
+
availableUsers?: User$1[];
|
|
321
321
|
/** Custom CSS class */
|
|
322
322
|
className?: string;
|
|
323
323
|
/** Custom inline styles */
|
|
@@ -724,16 +724,25 @@ declare function KanbanBoard({ board, callbacks, onCardClick, renderProps, confi
|
|
|
724
724
|
}): react_jsx_runtime.JSX.Element;
|
|
725
725
|
|
|
726
726
|
/**
|
|
727
|
-
* User Assignment Selector
|
|
727
|
+
* User Assignment Selector V2
|
|
728
728
|
* Multi-select user assignment with avatar display
|
|
729
|
+
* Uses world-class Dropdown system for perfect positioning
|
|
729
730
|
*/
|
|
730
|
-
interface User
|
|
731
|
+
interface User {
|
|
731
732
|
id: string;
|
|
732
733
|
name: string;
|
|
733
734
|
avatar?: string;
|
|
734
735
|
initials: string;
|
|
735
736
|
color: string;
|
|
736
737
|
}
|
|
738
|
+
interface UserAssignmentSelectorProps {
|
|
739
|
+
assignedUsers?: User[];
|
|
740
|
+
availableUsers: User[];
|
|
741
|
+
onChange: (users: User[]) => void;
|
|
742
|
+
className?: string;
|
|
743
|
+
maxVisibleAvatars?: number;
|
|
744
|
+
}
|
|
745
|
+
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
737
746
|
|
|
738
747
|
interface ColumnProps {
|
|
739
748
|
/** Column data */
|
|
@@ -753,7 +762,7 @@ interface ColumnProps {
|
|
|
753
762
|
/** Card update handler */
|
|
754
763
|
onCardUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
755
764
|
/** Available users for assignment */
|
|
756
|
-
availableUsers?: User
|
|
765
|
+
availableUsers?: User[];
|
|
757
766
|
/** All cards (for dependencies) */
|
|
758
767
|
allCards?: Card$1[];
|
|
759
768
|
/** Enable virtualization */
|
|
@@ -802,7 +811,7 @@ interface CardProps {
|
|
|
802
811
|
/** Card update handler */
|
|
803
812
|
onUpdate?: (cardId: string, updates: Partial<Card$1>) => void;
|
|
804
813
|
/** Available users for assignment */
|
|
805
|
-
availableUsers?: User
|
|
814
|
+
availableUsers?: User[];
|
|
806
815
|
/** All cards (for dependencies) */
|
|
807
816
|
allCards?: Card$1[];
|
|
808
817
|
}
|
|
@@ -832,27 +841,6 @@ interface DateRangePickerProps {
|
|
|
832
841
|
}
|
|
833
842
|
declare function DateRangePicker({ startDate, endDate, onChange, className, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
|
|
834
843
|
|
|
835
|
-
/**
|
|
836
|
-
* User Assignment Selector V2
|
|
837
|
-
* Multi-select user assignment with avatar display
|
|
838
|
-
* Uses world-class Dropdown system for perfect positioning
|
|
839
|
-
*/
|
|
840
|
-
interface User {
|
|
841
|
-
id: string;
|
|
842
|
-
name: string;
|
|
843
|
-
avatar?: string;
|
|
844
|
-
initials: string;
|
|
845
|
-
color: string;
|
|
846
|
-
}
|
|
847
|
-
interface UserAssignmentSelectorProps {
|
|
848
|
-
assignedUsers?: User[];
|
|
849
|
-
availableUsers: User[];
|
|
850
|
-
onChange: (users: User[]) => void;
|
|
851
|
-
className?: string;
|
|
852
|
-
maxVisibleAvatars?: number;
|
|
853
|
-
}
|
|
854
|
-
declare function UserAssignmentSelector({ assignedUsers, availableUsers, onChange, className, maxVisibleAvatars, }: UserAssignmentSelectorProps): react_jsx_runtime.JSX.Element;
|
|
855
|
-
|
|
856
844
|
interface DependenciesSelectorProps {
|
|
857
845
|
/** Current card (to exclude from dependencies) */
|
|
858
846
|
currentCardId: string;
|
|
@@ -915,7 +903,7 @@ interface CommandPaletteProps {
|
|
|
915
903
|
/** Current board state */
|
|
916
904
|
board: Board;
|
|
917
905
|
/** Available users for assignment */
|
|
918
|
-
availableUsers?: User$
|
|
906
|
+
availableUsers?: User$1[];
|
|
919
907
|
/** Callback to create a new card */
|
|
920
908
|
onCreateCard?: (columnId: string, title: string) => void;
|
|
921
909
|
/** Callback to navigate to a card */
|
|
@@ -949,7 +937,7 @@ interface CardDetailModalProps {
|
|
|
949
937
|
/** Delete card callback */
|
|
950
938
|
onDelete?: (cardId: string) => void;
|
|
951
939
|
/** Available users for assignment */
|
|
952
|
-
availableUsers?: User$
|
|
940
|
+
availableUsers?: User$1[];
|
|
953
941
|
/** Comments for this card */
|
|
954
942
|
comments?: Comment[];
|
|
955
943
|
/** Activity log for this card */
|
|
@@ -992,7 +980,7 @@ interface CardDetailModalV2Props {
|
|
|
992
980
|
/** Delete card callback */
|
|
993
981
|
onDelete?: (cardId: string) => void;
|
|
994
982
|
/** Available users for assignment */
|
|
995
|
-
availableUsers?: User$
|
|
983
|
+
availableUsers?: User$1[];
|
|
996
984
|
/** Comments for this card */
|
|
997
985
|
comments?: Comment[];
|
|
998
986
|
/** Activity log for this card */
|
|
@@ -1002,7 +990,7 @@ interface CardDetailModalV2Props {
|
|
|
1002
990
|
/** Delete comment callback */
|
|
1003
991
|
onDeleteComment?: (commentId: string) => void;
|
|
1004
992
|
/** Current user */
|
|
1005
|
-
currentUser?: User$
|
|
993
|
+
currentUser?: User$1;
|
|
1006
994
|
/** AI: Generate description */
|
|
1007
995
|
onAIGenerateDescription?: (card: Card$1) => Promise<string>;
|
|
1008
996
|
/** AI: Create subtasks */
|
|
@@ -1111,7 +1099,7 @@ interface BulkOperationsToolbarProps {
|
|
|
1111
1099
|
/** Selected cards */
|
|
1112
1100
|
selectedCards: Card$1[];
|
|
1113
1101
|
/** Available users for assignment */
|
|
1114
|
-
availableUsers?: User
|
|
1102
|
+
availableUsers?: User[];
|
|
1115
1103
|
/** Callback when selection is cleared */
|
|
1116
1104
|
onClearSelection: () => void;
|
|
1117
1105
|
/** Bulk operations callbacks */
|
|
@@ -1135,7 +1123,7 @@ interface SwimlaneBoardViewProps {
|
|
|
1135
1123
|
/** Swimlane configuration */
|
|
1136
1124
|
swimlaneConfig: SwimlaneConfig;
|
|
1137
1125
|
/** All available users */
|
|
1138
|
-
availableUsers?: User
|
|
1126
|
+
availableUsers?: User[];
|
|
1139
1127
|
/** Board callbacks */
|
|
1140
1128
|
callbacks: {
|
|
1141
1129
|
onCardMove?: (cardId: string, targetColumnId: string, position: number) => void;
|
|
@@ -1274,7 +1262,7 @@ interface FilterBarProps {
|
|
|
1274
1262
|
onFilterMyTasks?: () => void;
|
|
1275
1263
|
onFilterOverdue?: () => void;
|
|
1276
1264
|
onFilterHighPriority?: () => void;
|
|
1277
|
-
availableUsers?: User$
|
|
1265
|
+
availableUsers?: User$1[];
|
|
1278
1266
|
availableLabels?: string[];
|
|
1279
1267
|
availableColumns?: Array<{
|
|
1280
1268
|
id: string;
|
|
@@ -2757,7 +2745,7 @@ declare function useKanbanState({ initialBoard, onPersist, }: UseKanbanStateOpti
|
|
|
2757
2745
|
|
|
2758
2746
|
interface UseBoardOptions {
|
|
2759
2747
|
initialData: Board;
|
|
2760
|
-
availableUsers?: User$
|
|
2748
|
+
availableUsers?: User$1[];
|
|
2761
2749
|
onSave?: (board: Board) => void | Promise<void>;
|
|
2762
2750
|
saveDelay?: number;
|
|
2763
2751
|
}
|
|
@@ -4384,4 +4372,4 @@ declare const themes: Record<ThemeName, Theme>;
|
|
|
4384
4372
|
*/
|
|
4385
4373
|
declare const defaultTheme: ThemeName;
|
|
4386
4374
|
|
|
4387
|
-
export { type AICallbacks, 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, 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 FontSizeToken, type FontWeightToken, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType as GanttColumnType, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, 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, 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 SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, 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$
|
|
4375
|
+
export { type AICallbacks, 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, 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 FontSizeToken, type FontWeightToken, type Assignee as GanttAssignee, GanttBoard, type GanttConfig as GanttBoardConfig, type GanttBoardRef, type GanttColumn, type ColumnType as GanttColumnType, Milestone as GanttMilestone, type GanttPermissions, type Task as GanttTask, type GanttTemplates, type Theme$1 as GanttTheme, type GanttTheme as GanttThemeConfig, GanttToolbar, 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, 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 SortOrder, type SortState, type SpacingToken, type StackSuggestion, type StackingConfig, type StackingStrategy, 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 ZIndexToken, aiUsageTracker, borderRadius, calculatePosition, cardToGanttTask, cardsToGanttTasks, cn, createKanbanView, createRetryWrapper, darkTheme, darkTheme$1 as darkTokenTheme, defaultTheme, designTokens, duration, easing, exportTokensToCSS, fontSize, fontWeight, formatCost, ganttTaskToCardUpdate, themes$1 as ganttThemes, gantt as ganttTokens, ganttUtils, generateCSSVariables, generateCompleteCSS, generateInitialPositions, generateThemeVariables, getToken, kanban as kanbanTokens, lightTheme, lightTheme$1 as lightTokenTheme, lineHeight, neutralTheme, neutralTheme$1 as neutralTokenTheme, opacity, pluginManager, retrySyncOperation, retryWithBackoff, shadows, shouldVirtualizeGrid, spacing, themes, useAI, useBoard$1 as useBoard, useBoard as useBoardCore, useBoardStore, useCardStacking, useDragState, useFilteredCards, useFilters, useKanbanState, useKeyboardShortcuts, useMultiSelect, useSelectionState, useSortedCards, useTheme, useVirtualGrid, useVirtualList, withErrorBoundary, zIndex };
|