@libxai/board 1.5.0 → 1.5.2
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 +27 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +27 -27
- package/dist/index.js.map +1 -1
- package/dist/styles.css +5 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3835,6 +3835,9 @@ interface ProjectHealthData {
|
|
|
3835
3835
|
color: string;
|
|
3836
3836
|
utilizationPercent: number;
|
|
3837
3837
|
}>;
|
|
3838
|
+
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3839
|
+
totalHoursSpentMinutes?: number;
|
|
3840
|
+
totalHoursAllocatedMinutes?: number;
|
|
3838
3841
|
}
|
|
3839
3842
|
/**
|
|
3840
3843
|
* ListView configuration
|
|
@@ -3887,6 +3890,8 @@ interface ListViewConfig {
|
|
|
3887
3890
|
enabled: boolean;
|
|
3888
3891
|
data: ProjectHealthData;
|
|
3889
3892
|
};
|
|
3893
|
+
/** Aggregate child hours into parent row hoursBar cell (default: false) */
|
|
3894
|
+
aggregateParentHours?: boolean;
|
|
3890
3895
|
/**
|
|
3891
3896
|
* Configuration for blurring financial data based on user permissions
|
|
3892
3897
|
* When enabled, financial columns (soldEffortMinutes, quotedTime) will be blurred
|
package/dist/index.d.ts
CHANGED
|
@@ -3835,6 +3835,9 @@ interface ProjectHealthData {
|
|
|
3835
3835
|
color: string;
|
|
3836
3836
|
utilizationPercent: number;
|
|
3837
3837
|
}>;
|
|
3838
|
+
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3839
|
+
totalHoursSpentMinutes?: number;
|
|
3840
|
+
totalHoursAllocatedMinutes?: number;
|
|
3838
3841
|
}
|
|
3839
3842
|
/**
|
|
3840
3843
|
* ListView configuration
|
|
@@ -3887,6 +3890,8 @@ interface ListViewConfig {
|
|
|
3887
3890
|
enabled: boolean;
|
|
3888
3891
|
data: ProjectHealthData;
|
|
3889
3892
|
};
|
|
3893
|
+
/** Aggregate child hours into parent row hoursBar cell (default: false) */
|
|
3894
|
+
aggregateParentHours?: boolean;
|
|
3890
3895
|
/**
|
|
3891
3896
|
* Configuration for blurring financial data based on user permissions
|
|
3892
3897
|
* When enabled, financial columns (soldEffortMinutes, quotedTime) will be blurred
|