@libxai/board 1.5.24 → 1.5.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 +24 -24
- 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 +24 -24
- package/dist/index.js.map +1 -1
- package/dist/styles.css +50 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3872,6 +3872,11 @@ interface ProjectHealthData {
|
|
|
3872
3872
|
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3873
3873
|
totalHoursSpentMinutes?: number;
|
|
3874
3874
|
totalHoursAllocatedMinutes?: number;
|
|
3875
|
+
/** Financial data — shown when lens='financial' */
|
|
3876
|
+
totalOffered?: number;
|
|
3877
|
+
totalEstimated?: number;
|
|
3878
|
+
totalExecuted?: number;
|
|
3879
|
+
offeredRate?: number;
|
|
3875
3880
|
}
|
|
3876
3881
|
/**
|
|
3877
3882
|
* ListView configuration
|
package/dist/index.d.ts
CHANGED
|
@@ -3872,6 +3872,11 @@ interface ProjectHealthData {
|
|
|
3872
3872
|
/** Total hours for the whole project (spent / allocated in minutes) */
|
|
3873
3873
|
totalHoursSpentMinutes?: number;
|
|
3874
3874
|
totalHoursAllocatedMinutes?: number;
|
|
3875
|
+
/** Financial data — shown when lens='financial' */
|
|
3876
|
+
totalOffered?: number;
|
|
3877
|
+
totalEstimated?: number;
|
|
3878
|
+
totalExecuted?: number;
|
|
3879
|
+
offeredRate?: number;
|
|
3875
3880
|
}
|
|
3876
3881
|
/**
|
|
3877
3882
|
* ListView configuration
|