@libxai/board 1.5.34 → 1.5.36
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 +28 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +28 -28
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4076,6 +4076,14 @@ interface ListViewCallbacks {
|
|
|
4076
4076
|
onTaskEdit?: (task: Task) => void;
|
|
4077
4077
|
/** Task duplicate requested (from context menu) */
|
|
4078
4078
|
onTaskDuplicate?: (task: Task) => void;
|
|
4079
|
+
/** v2.5.0: Move task up in hierarchy */
|
|
4080
|
+
onTaskMove?: (taskId: string, direction: 'up' | 'down') => void;
|
|
4081
|
+
/** v2.5.0: Indent task (make it a subtask of the task above) */
|
|
4082
|
+
onTaskIndent?: (taskId: string) => void;
|
|
4083
|
+
/** v2.5.0: Outdent task (move it up one hierarchy level) */
|
|
4084
|
+
onTaskOutdent?: (taskId: string) => void;
|
|
4085
|
+
/** v2.5.0: Reparent task (drag & drop to make subtask or reorder) */
|
|
4086
|
+
onTaskReparent?: (taskId: string, newParentId: string | null, position?: number) => void;
|
|
4079
4087
|
/** Create custom field */
|
|
4080
4088
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
4081
4089
|
/** Handler for inline time logging - receives task, minutes, and optional note */
|
package/dist/index.d.ts
CHANGED
|
@@ -4076,6 +4076,14 @@ interface ListViewCallbacks {
|
|
|
4076
4076
|
onTaskEdit?: (task: Task) => void;
|
|
4077
4077
|
/** Task duplicate requested (from context menu) */
|
|
4078
4078
|
onTaskDuplicate?: (task: Task) => void;
|
|
4079
|
+
/** v2.5.0: Move task up in hierarchy */
|
|
4080
|
+
onTaskMove?: (taskId: string, direction: 'up' | 'down') => void;
|
|
4081
|
+
/** v2.5.0: Indent task (make it a subtask of the task above) */
|
|
4082
|
+
onTaskIndent?: (taskId: string) => void;
|
|
4083
|
+
/** v2.5.0: Outdent task (move it up one hierarchy level) */
|
|
4084
|
+
onTaskOutdent?: (taskId: string) => void;
|
|
4085
|
+
/** v2.5.0: Reparent task (drag & drop to make subtask or reorder) */
|
|
4086
|
+
onTaskReparent?: (taskId: string, newParentId: string | null, position?: number) => void;
|
|
4079
4087
|
/** Create custom field */
|
|
4080
4088
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
4081
4089
|
/** Handler for inline time logging - receives task, minutes, and optional note */
|