@libxai/board 1.5.88 → 1.5.90
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 +33 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +33 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +5 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3925,7 +3925,19 @@ interface ProjectHealthData {
|
|
|
3925
3925
|
/** Financial data — shown when lens='financial' */
|
|
3926
3926
|
totalOffered?: number;
|
|
3927
3927
|
totalEstimated?: number;
|
|
3928
|
+
/** v2.6.0 — Labor-only portion of the estimated cost (for breakdown tooltip) */
|
|
3929
|
+
totalEstimatedLabor?: number;
|
|
3930
|
+
/** v2.6.0 — Equipment portion of the estimated cost (for breakdown tooltip) */
|
|
3931
|
+
totalEstimatedEquipment?: number;
|
|
3932
|
+
/** v2.6.0 — Travel/per-diem portion of the estimated cost (for breakdown tooltip) */
|
|
3933
|
+
totalEstimatedTravel?: number;
|
|
3928
3934
|
totalExecuted?: number;
|
|
3935
|
+
/** v2.6.0 — Labor-only portion of the executed cost (for breakdown tooltip) */
|
|
3936
|
+
totalExecutedLabor?: number;
|
|
3937
|
+
/** v2.6.0 — Equipment portion of the executed cost (for breakdown tooltip) */
|
|
3938
|
+
totalExecutedEquipment?: number;
|
|
3939
|
+
/** v2.6.0 — Travel/per-diem portion of the executed cost (for breakdown tooltip) */
|
|
3940
|
+
totalExecutedTravel?: number;
|
|
3929
3941
|
offeredRate?: number;
|
|
3930
3942
|
}
|
|
3931
3943
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -3925,7 +3925,19 @@ interface ProjectHealthData {
|
|
|
3925
3925
|
/** Financial data — shown when lens='financial' */
|
|
3926
3926
|
totalOffered?: number;
|
|
3927
3927
|
totalEstimated?: number;
|
|
3928
|
+
/** v2.6.0 — Labor-only portion of the estimated cost (for breakdown tooltip) */
|
|
3929
|
+
totalEstimatedLabor?: number;
|
|
3930
|
+
/** v2.6.0 — Equipment portion of the estimated cost (for breakdown tooltip) */
|
|
3931
|
+
totalEstimatedEquipment?: number;
|
|
3932
|
+
/** v2.6.0 — Travel/per-diem portion of the estimated cost (for breakdown tooltip) */
|
|
3933
|
+
totalEstimatedTravel?: number;
|
|
3928
3934
|
totalExecuted?: number;
|
|
3935
|
+
/** v2.6.0 — Labor-only portion of the executed cost (for breakdown tooltip) */
|
|
3936
|
+
totalExecutedLabor?: number;
|
|
3937
|
+
/** v2.6.0 — Equipment portion of the executed cost (for breakdown tooltip) */
|
|
3938
|
+
totalExecutedEquipment?: number;
|
|
3939
|
+
/** v2.6.0 — Travel/per-diem portion of the executed cost (for breakdown tooltip) */
|
|
3940
|
+
totalExecutedTravel?: number;
|
|
3929
3941
|
offeredRate?: number;
|
|
3930
3942
|
}
|
|
3931
3943
|
/**
|