@libxai/board 1.5.69 → 1.5.71
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 +13 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -9
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3024,6 +3024,9 @@ interface TaskFormData {
|
|
|
3024
3024
|
tags?: TaskTag[];
|
|
3025
3025
|
pendingFiles?: File[];
|
|
3026
3026
|
effortMinutes?: number | null;
|
|
3027
|
+
parentId?: string | null;
|
|
3028
|
+
location?: string;
|
|
3029
|
+
equipment?: string;
|
|
3027
3030
|
}
|
|
3028
3031
|
interface TaskFormModalProps {
|
|
3029
3032
|
isOpen: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -3024,6 +3024,9 @@ interface TaskFormData {
|
|
|
3024
3024
|
tags?: TaskTag[];
|
|
3025
3025
|
pendingFiles?: File[];
|
|
3026
3026
|
effortMinutes?: number | null;
|
|
3027
|
+
parentId?: string | null;
|
|
3028
|
+
location?: string;
|
|
3029
|
+
equipment?: string;
|
|
3027
3030
|
}
|
|
3028
3031
|
interface TaskFormModalProps {
|
|
3029
3032
|
isOpen: boolean;
|