@libxai/board 0.8.0 → 0.8.2
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 +12 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/package.json +136 -134
package/dist/index.d.cts
CHANGED
|
@@ -1570,6 +1570,7 @@ interface GanttConfig {
|
|
|
1570
1570
|
onAfterTaskDelete?: (taskId: string) => void;
|
|
1571
1571
|
onTaskCreate?: (parentId: string | undefined, position: number) => void;
|
|
1572
1572
|
onTaskDelete?: (taskId: string) => void;
|
|
1573
|
+
onMultiTaskDelete?: (taskIds: string[]) => void;
|
|
1573
1574
|
onTaskDuplicate?: (taskId: string) => void;
|
|
1574
1575
|
onTaskMove?: (taskId: string, direction: 'up' | 'down') => void;
|
|
1575
1576
|
onTaskIndent?: (taskId: string) => void;
|
|
@@ -1798,7 +1799,6 @@ interface TaskGridProps {
|
|
|
1798
1799
|
columns: GanttColumn[];
|
|
1799
1800
|
onToggleColumn: (columnType: ColumnType) => void;
|
|
1800
1801
|
onTaskUpdate?: (taskId: string, updates: Partial<Task>) => void;
|
|
1801
|
-
onTaskDelete?: (taskId: string) => void;
|
|
1802
1802
|
onTaskIndent?: (taskIds: string[]) => void;
|
|
1803
1803
|
onTaskOutdent?: (taskIds: string[]) => void;
|
|
1804
1804
|
onTaskMove?: (taskIds: string[], direction: 'up' | 'down') => void;
|
|
@@ -1812,7 +1812,7 @@ interface TaskGridProps {
|
|
|
1812
1812
|
declare function TaskGrid({ tasks, theme, rowHeight: ROW_HEIGHT, availableUsers, templates: _templates, // TODO: Use templates for custom rendering
|
|
1813
1813
|
onTaskClick, onTaskDblClick, // v0.8.0
|
|
1814
1814
|
onTaskContextMenu, // v0.8.0
|
|
1815
|
-
onTaskToggle, scrollTop: _scrollTop, columns, onToggleColumn, onTaskUpdate,
|
|
1815
|
+
onTaskToggle, scrollTop: _scrollTop, columns, onToggleColumn, onTaskUpdate, onTaskIndent, onTaskOutdent, onTaskMove, onMultiTaskDelete, onTaskDuplicate, onTaskCreate, onTaskRename, onCreateSubtask, onOpenTaskModal, }: TaskGridProps): react_jsx_runtime.JSX.Element;
|
|
1816
1816
|
|
|
1817
1817
|
interface TimelineProps {
|
|
1818
1818
|
tasks: Task[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1570,6 +1570,7 @@ interface GanttConfig {
|
|
|
1570
1570
|
onAfterTaskDelete?: (taskId: string) => void;
|
|
1571
1571
|
onTaskCreate?: (parentId: string | undefined, position: number) => void;
|
|
1572
1572
|
onTaskDelete?: (taskId: string) => void;
|
|
1573
|
+
onMultiTaskDelete?: (taskIds: string[]) => void;
|
|
1573
1574
|
onTaskDuplicate?: (taskId: string) => void;
|
|
1574
1575
|
onTaskMove?: (taskId: string, direction: 'up' | 'down') => void;
|
|
1575
1576
|
onTaskIndent?: (taskId: string) => void;
|
|
@@ -1798,7 +1799,6 @@ interface TaskGridProps {
|
|
|
1798
1799
|
columns: GanttColumn[];
|
|
1799
1800
|
onToggleColumn: (columnType: ColumnType) => void;
|
|
1800
1801
|
onTaskUpdate?: (taskId: string, updates: Partial<Task>) => void;
|
|
1801
|
-
onTaskDelete?: (taskId: string) => void;
|
|
1802
1802
|
onTaskIndent?: (taskIds: string[]) => void;
|
|
1803
1803
|
onTaskOutdent?: (taskIds: string[]) => void;
|
|
1804
1804
|
onTaskMove?: (taskIds: string[], direction: 'up' | 'down') => void;
|
|
@@ -1812,7 +1812,7 @@ interface TaskGridProps {
|
|
|
1812
1812
|
declare function TaskGrid({ tasks, theme, rowHeight: ROW_HEIGHT, availableUsers, templates: _templates, // TODO: Use templates for custom rendering
|
|
1813
1813
|
onTaskClick, onTaskDblClick, // v0.8.0
|
|
1814
1814
|
onTaskContextMenu, // v0.8.0
|
|
1815
|
-
onTaskToggle, scrollTop: _scrollTop, columns, onToggleColumn, onTaskUpdate,
|
|
1815
|
+
onTaskToggle, scrollTop: _scrollTop, columns, onToggleColumn, onTaskUpdate, onTaskIndent, onTaskOutdent, onTaskMove, onMultiTaskDelete, onTaskDuplicate, onTaskCreate, onTaskRename, onCreateSubtask, onOpenTaskModal, }: TaskGridProps): react_jsx_runtime.JSX.Element;
|
|
1816
1816
|
|
|
1817
1817
|
interface TimelineProps {
|
|
1818
1818
|
tasks: Task[];
|