@libxai/board 1.5.25 → 1.5.26

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.d.cts CHANGED
@@ -3945,8 +3945,10 @@ interface ListViewConfig {
3945
3945
  showSoldEffort?: boolean;
3946
3946
  /** Display mode: 'hours' shows time values, 'financial' converts to dollars (hours × hourlyRate) */
3947
3947
  lens?: 'hours' | 'financial';
3948
- /** Hourly rate for converting hours → dollars when lens='financial' */
3948
+ /** Hourly rate for converting hours → dollars when lens='financial' (fallback when rateMap has no match) */
3949
3949
  hourlyRate?: number;
3950
+ /** Per-user hourly rate map (userId → rate). When provided, uses the task assignee's rate instead of the global hourlyRate */
3951
+ rateMap?: Record<string, number>;
3950
3952
  /** Show a sticky "TOTAL PROJECT" row at the bottom of the list */
3951
3953
  showProjectTotals?: boolean;
3952
3954
  }
package/dist/index.d.ts CHANGED
@@ -3945,8 +3945,10 @@ interface ListViewConfig {
3945
3945
  showSoldEffort?: boolean;
3946
3946
  /** Display mode: 'hours' shows time values, 'financial' converts to dollars (hours × hourlyRate) */
3947
3947
  lens?: 'hours' | 'financial';
3948
- /** Hourly rate for converting hours → dollars when lens='financial' */
3948
+ /** Hourly rate for converting hours → dollars when lens='financial' (fallback when rateMap has no match) */
3949
3949
  hourlyRate?: number;
3950
+ /** Per-user hourly rate map (userId → rate). When provided, uses the task assignee's rate instead of the global hourlyRate */
3951
+ rateMap?: Record<string, number>;
3950
3952
  /** Show a sticky "TOTAL PROJECT" row at the bottom of the list */
3951
3953
  showProjectTotals?: boolean;
3952
3954
  }