@libxai/board 0.17.164 → 0.17.165
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 +25 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2301,8 +2301,11 @@ interface TaskFormModalProps {
|
|
|
2301
2301
|
customStatuses?: CustomStatus[];
|
|
2302
2302
|
availableTags?: TaskTag[];
|
|
2303
2303
|
onCreateTag?: (name: string, color: string) => Promise<TaskTag | null>;
|
|
2304
|
+
attachments?: Attachment[];
|
|
2305
|
+
onUploadAttachments?: (taskId: string, files: File[]) => Promise<void> | void;
|
|
2306
|
+
onDeleteAttachment?: (attachmentId: string) => void;
|
|
2304
2307
|
}
|
|
2305
|
-
declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
|
|
2308
|
+
declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, attachments, onUploadAttachments, onDeleteAttachment, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
|
|
2306
2309
|
|
|
2307
2310
|
interface GanttAIAssistantProps {
|
|
2308
2311
|
/** All current tasks in the Gantt */
|
package/dist/index.d.ts
CHANGED
|
@@ -2301,8 +2301,11 @@ interface TaskFormModalProps {
|
|
|
2301
2301
|
customStatuses?: CustomStatus[];
|
|
2302
2302
|
availableTags?: TaskTag[];
|
|
2303
2303
|
onCreateTag?: (name: string, color: string) => Promise<TaskTag | null>;
|
|
2304
|
+
attachments?: Attachment[];
|
|
2305
|
+
onUploadAttachments?: (taskId: string, files: File[]) => Promise<void> | void;
|
|
2306
|
+
onDeleteAttachment?: (attachmentId: string) => void;
|
|
2304
2307
|
}
|
|
2305
|
-
declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
|
|
2308
|
+
declare function TaskFormModal({ isOpen, onClose, task, availableTasks, availableUsers, onSubmit, isLoading, mode, theme, customStatuses, availableTags, onCreateTag, attachments, onUploadAttachments, onDeleteAttachment, }: TaskFormModalProps): react_jsx_runtime.JSX.Element;
|
|
2306
2309
|
|
|
2307
2310
|
interface GanttAIAssistantProps {
|
|
2308
2311
|
/** All current tasks in the Gantt */
|