@libxai/board 1.4.24 → 1.4.25
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 +14 -14
- 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 +14 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3870,8 +3870,8 @@ interface ListViewCallbacks {
|
|
|
3870
3870
|
onTaskDuplicate?: (task: Task) => void;
|
|
3871
3871
|
/** Create custom field */
|
|
3872
3872
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
3873
|
-
/** Handler for inline time logging - receives task and
|
|
3874
|
-
onLogTime?: (task: Task, minutes: number | null) => void;
|
|
3873
|
+
/** Handler for inline time logging - receives task, minutes, and optional note */
|
|
3874
|
+
onLogTime?: (task: Task, minutes: number | null, note?: string) => void;
|
|
3875
3875
|
/** Handler for opening time log modal from HoursBar cell */
|
|
3876
3876
|
onOpenTimeLog?: (task: Task) => void;
|
|
3877
3877
|
/** Handler for reporting a blocker on a task */
|
package/dist/index.d.ts
CHANGED
|
@@ -3870,8 +3870,8 @@ interface ListViewCallbacks {
|
|
|
3870
3870
|
onTaskDuplicate?: (task: Task) => void;
|
|
3871
3871
|
/** Create custom field */
|
|
3872
3872
|
onCreateCustomField?: (field: CustomFieldDefinition) => Promise<void>;
|
|
3873
|
-
/** Handler for inline time logging - receives task and
|
|
3874
|
-
onLogTime?: (task: Task, minutes: number | null) => void;
|
|
3873
|
+
/** Handler for inline time logging - receives task, minutes, and optional note */
|
|
3874
|
+
onLogTime?: (task: Task, minutes: number | null, note?: string) => void;
|
|
3875
3875
|
/** Handler for opening time log modal from HoursBar cell */
|
|
3876
3876
|
onOpenTimeLog?: (task: Task) => void;
|
|
3877
3877
|
/** Handler for reporting a blocker on a task */
|