@libxai/board 1.5.35 → 1.5.37

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.d.cts CHANGED
@@ -4082,6 +4082,8 @@ interface ListViewCallbacks {
4082
4082
  onTaskIndent?: (taskId: string) => void;
4083
4083
  /** v2.5.0: Outdent task (move it up one hierarchy level) */
4084
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;
4085
4087
  /** Create custom field */
4086
4088
  onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
4087
4089
  /** Handler for inline time logging - receives task, minutes, and optional note */
package/dist/index.d.ts CHANGED
@@ -4082,6 +4082,8 @@ interface ListViewCallbacks {
4082
4082
  onTaskIndent?: (taskId: string) => void;
4083
4083
  /** v2.5.0: Outdent task (move it up one hierarchy level) */
4084
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;
4085
4087
  /** Create custom field */
4086
4088
  onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
4087
4089
  /** Handler for inline time logging - receives task, minutes, and optional note */