@libxai/board 1.3.0 → 1.4.1

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
@@ -3780,6 +3780,22 @@ interface AvailableUser {
3780
3780
  email?: string;
3781
3781
  avatarUrl?: string;
3782
3782
  color?: string;
3783
+ /** v1.4.0: Workload indicator for Smart Dropdown */
3784
+ workload?: UserWorkload;
3785
+ }
3786
+ /**
3787
+ * v1.4.0: User workload indicator for Smart Dropdown
3788
+ * Shows user capacity in the assignment dropdown
3789
+ */
3790
+ interface UserWorkload {
3791
+ /** Total hours assigned this week */
3792
+ assignedHoursThisWeek: number;
3793
+ /** Total hours capacity per week (typically 40) */
3794
+ weeklyCapacity: number;
3795
+ /** Number of active tasks assigned */
3796
+ activeTasks: number;
3797
+ /** Workload level for visual indicator */
3798
+ level: 'light' | 'moderate' | 'heavy' | 'overloaded';
3783
3799
  }
3784
3800
  /**
3785
3801
  * Main ListView props
package/dist/index.d.ts CHANGED
@@ -3780,6 +3780,22 @@ interface AvailableUser {
3780
3780
  email?: string;
3781
3781
  avatarUrl?: string;
3782
3782
  color?: string;
3783
+ /** v1.4.0: Workload indicator for Smart Dropdown */
3784
+ workload?: UserWorkload;
3785
+ }
3786
+ /**
3787
+ * v1.4.0: User workload indicator for Smart Dropdown
3788
+ * Shows user capacity in the assignment dropdown
3789
+ */
3790
+ interface UserWorkload {
3791
+ /** Total hours assigned this week */
3792
+ assignedHoursThisWeek: number;
3793
+ /** Total hours capacity per week (typically 40) */
3794
+ weeklyCapacity: number;
3795
+ /** Number of active tasks assigned */
3796
+ activeTasks: number;
3797
+ /** Workload level for visual indicator */
3798
+ level: 'light' | 'moderate' | 'heavy' | 'overloaded';
3783
3799
  }
3784
3800
  /**
3785
3801
  * Main ListView props