@libxai/board 1.9.2 → 1.9.3

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
@@ -4233,6 +4233,9 @@ interface ListViewCallbacks {
4233
4233
  onReportBlocker?: (task: Task) => void;
4234
4234
  /** Handler for copying task link to clipboard */
4235
4235
  onCopyTaskLink?: (task: Task) => void;
4236
+ /** Drag-fill (Excel-style): a value (assignees / date) dragged from one cell
4237
+ * was applied to many tasks at once. */
4238
+ onBulkFill?: (taskIds: string[], column: 'assignees' | 'startDate' | 'endDate', value: any) => void;
4236
4239
  }
4237
4240
  /**
4238
4241
  * Available user for assignment
package/dist/index.d.ts CHANGED
@@ -4233,6 +4233,9 @@ interface ListViewCallbacks {
4233
4233
  onReportBlocker?: (task: Task) => void;
4234
4234
  /** Handler for copying task link to clipboard */
4235
4235
  onCopyTaskLink?: (task: Task) => void;
4236
+ /** Drag-fill (Excel-style): a value (assignees / date) dragged from one cell
4237
+ * was applied to many tasks at once. */
4238
+ onBulkFill?: (taskIds: string[], column: 'assignees' | 'startDate' | 'endDate', value: any) => void;
4236
4239
  }
4237
4240
  /**
4238
4241
  * Available user for assignment