@libxai/board 1.8.2 → 1.8.4
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 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +24 -44
- package/dist/index.js.map +1 -1
- package/dist/styles.css +10 -17
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4050,6 +4050,19 @@ interface ListViewConfig {
|
|
|
4050
4050
|
spent?: number;
|
|
4051
4051
|
allocated?: number;
|
|
4052
4052
|
quoted?: number;
|
|
4053
|
+
/**
|
|
4054
|
+
* Optional breakdown of the override totals into their components so the
|
|
4055
|
+
* footer can surface a tooltip explaining why the TOTAL differs from the
|
|
4056
|
+
* sum of the visible phase rows (which only count labor).
|
|
4057
|
+
* - labor: Σ(task minutes × rate) — the portion the phase rows show
|
|
4058
|
+
* - equipment / travel: committed project-level costs not tied to tasks
|
|
4059
|
+
*/
|
|
4060
|
+
breakdown?: {
|
|
4061
|
+
laborSpent?: number;
|
|
4062
|
+
laborAllocated?: number;
|
|
4063
|
+
equipment?: number;
|
|
4064
|
+
travel?: number;
|
|
4065
|
+
};
|
|
4053
4066
|
};
|
|
4054
4067
|
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
4055
4068
|
toolbarEndContent?: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -4050,6 +4050,19 @@ interface ListViewConfig {
|
|
|
4050
4050
|
spent?: number;
|
|
4051
4051
|
allocated?: number;
|
|
4052
4052
|
quoted?: number;
|
|
4053
|
+
/**
|
|
4054
|
+
* Optional breakdown of the override totals into their components so the
|
|
4055
|
+
* footer can surface a tooltip explaining why the TOTAL differs from the
|
|
4056
|
+
* sum of the visible phase rows (which only count labor).
|
|
4057
|
+
* - labor: Σ(task minutes × rate) — the portion the phase rows show
|
|
4058
|
+
* - equipment / travel: committed project-level costs not tied to tasks
|
|
4059
|
+
*/
|
|
4060
|
+
breakdown?: {
|
|
4061
|
+
laborSpent?: number;
|
|
4062
|
+
laborAllocated?: number;
|
|
4063
|
+
equipment?: number;
|
|
4064
|
+
travel?: number;
|
|
4065
|
+
};
|
|
4053
4066
|
};
|
|
4054
4067
|
/** v2.5.0: Render content just before the Create Task button (e.g., share/export dropdown) */
|
|
4055
4068
|
toolbarEndContent?: ReactNode;
|