@libxai/board 1.5.74 → 1.5.76
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 +28 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +28 -28
- package/dist/index.js.map +1 -1
- package/dist/styles.css +32 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3895,6 +3895,13 @@ interface ProjectHealthData {
|
|
|
3895
3895
|
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3896
3896
|
totalHoursSpentMinutes?: number;
|
|
3897
3897
|
totalHoursAllocatedMinutes?: number;
|
|
3898
|
+
/** Count of tasks with no assignees and progress < 100% */
|
|
3899
|
+
unassignedCount?: number;
|
|
3900
|
+
/** Unassigned tasks (id + name for detail display + click-to-scroll in sidebar) */
|
|
3901
|
+
unassignedTasks?: Array<{
|
|
3902
|
+
id: string;
|
|
3903
|
+
name: string;
|
|
3904
|
+
}>;
|
|
3898
3905
|
/** Financial data — shown when lens='financial' */
|
|
3899
3906
|
totalOffered?: number;
|
|
3900
3907
|
totalEstimated?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3895,6 +3895,13 @@ interface ProjectHealthData {
|
|
|
3895
3895
|
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3896
3896
|
totalHoursSpentMinutes?: number;
|
|
3897
3897
|
totalHoursAllocatedMinutes?: number;
|
|
3898
|
+
/** Count of tasks with no assignees and progress < 100% */
|
|
3899
|
+
unassignedCount?: number;
|
|
3900
|
+
/** Unassigned tasks (id + name for detail display + click-to-scroll in sidebar) */
|
|
3901
|
+
unassignedTasks?: Array<{
|
|
3902
|
+
id: string;
|
|
3903
|
+
name: string;
|
|
3904
|
+
}>;
|
|
3898
3905
|
/** Financial data — shown when lens='financial' */
|
|
3899
3906
|
totalOffered?: number;
|
|
3900
3907
|
totalEstimated?: number;
|