@optifye/dashboard-core 6.11.13 → 6.11.15

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.css CHANGED
@@ -1437,6 +1437,9 @@ body {
1437
1437
  .min-w-\[16px\] {
1438
1438
  min-width: 16px;
1439
1439
  }
1440
+ .min-w-\[170px\] {
1441
+ min-width: 170px;
1442
+ }
1440
1443
  .min-w-\[180px\] {
1441
1444
  min-width: 180px;
1442
1445
  }
@@ -2636,6 +2639,9 @@ body {
2636
2639
  --tw-bg-opacity: 1;
2637
2640
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
2638
2641
  }
2642
+ .bg-amber-50\/70 {
2643
+ background-color: rgb(255 251 235 / 0.7);
2644
+ }
2639
2645
  .bg-amber-500 {
2640
2646
  --tw-bg-opacity: 1;
2641
2647
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
@@ -4250,6 +4256,9 @@ body {
4250
4256
  .tracking-\[0\.05em\] {
4251
4257
  letter-spacing: 0.05em;
4252
4258
  }
4259
+ .tracking-\[0\.08em\] {
4260
+ letter-spacing: 0.08em;
4261
+ }
4253
4262
  .tracking-\[0\.25em\] {
4254
4263
  letter-spacing: 0.25em;
4255
4264
  }
@@ -4366,6 +4375,10 @@ body {
4366
4375
  --tw-text-opacity: 1;
4367
4376
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
4368
4377
  }
4378
+ .text-amber-900 {
4379
+ --tw-text-opacity: 1;
4380
+ color: rgb(120 53 15 / var(--tw-text-opacity, 1));
4381
+ }
4369
4382
  .text-blue-300 {
4370
4383
  --tw-text-opacity: 1;
4371
4384
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
package/dist/index.d.mts CHANGED
@@ -124,6 +124,9 @@ interface WorkspaceDetailedMetrics {
124
124
  total_actions: number;
125
125
  hourly_action_counts: number[];
126
126
  hourly_cycle_times?: number[];
127
+ cycle_completion_clip_count?: number | null;
128
+ cycle_time_data_status?: 'available' | 'missing_clips' | null;
129
+ cycle_time_timezone?: string | null;
127
130
  workspace_rank: number;
128
131
  total_workspaces: number;
129
132
  ideal_output_until_now: number;
@@ -2832,6 +2835,7 @@ interface HistoricWorkspaceMetrics {
2832
2835
  workspace_name: string;
2833
2836
  line_id: string;
2834
2837
  line_name: string;
2838
+ line_assembly_enabled?: boolean;
2835
2839
  company_id: string;
2836
2840
  company_name: string;
2837
2841
  date: string;
@@ -2852,9 +2856,15 @@ interface HistoricWorkspaceMetrics {
2852
2856
  idle_time_hourly?: Record<string, string[]>;
2853
2857
  hourly_action_counts: number[];
2854
2858
  hourly_cycle_times?: number[];
2859
+ cycle_completion_clip_count?: number | null;
2860
+ cycle_time_data_status?: 'available' | 'missing_clips' | null;
2861
+ cycle_time_timezone?: string | null;
2855
2862
  shift_start: string;
2856
2863
  shift_end: string;
2857
2864
  action_name: string;
2865
+ action_type?: 'assembly' | 'output' | null;
2866
+ action_family?: 'assembly' | 'output' | 'other' | null;
2867
+ action_display_name?: string | null;
2858
2868
  monitoring_mode?: 'output' | 'uptime';
2859
2869
  workspace_rank: number;
2860
2870
  total_workspaces: number;
@@ -7193,7 +7203,7 @@ interface CycleTimeChartProps {
7193
7203
  declare const CycleTimeChart: React__default.NamedExoticComponent<CycleTimeChartProps>;
7194
7204
 
7195
7205
  interface CycleTimeOverTimeChartProps {
7196
- data: number[];
7206
+ data: Array<number | null>;
7197
7207
  idealCycleTime: number;
7198
7208
  shiftStart: string;
7199
7209
  shiftEnd?: string;
@@ -7201,7 +7211,7 @@ interface CycleTimeOverTimeChartProps {
7201
7211
  datasetKey?: string;
7202
7212
  className?: string;
7203
7213
  showIdleTime?: boolean;
7204
- idleTimeData?: number[];
7214
+ idleTimeData?: Array<number | null>;
7205
7215
  }
7206
7216
  declare const CycleTimeOverTimeChart: React__default.FC<CycleTimeOverTimeChartProps>;
7207
7217
 
package/dist/index.d.ts CHANGED
@@ -124,6 +124,9 @@ interface WorkspaceDetailedMetrics {
124
124
  total_actions: number;
125
125
  hourly_action_counts: number[];
126
126
  hourly_cycle_times?: number[];
127
+ cycle_completion_clip_count?: number | null;
128
+ cycle_time_data_status?: 'available' | 'missing_clips' | null;
129
+ cycle_time_timezone?: string | null;
127
130
  workspace_rank: number;
128
131
  total_workspaces: number;
129
132
  ideal_output_until_now: number;
@@ -2832,6 +2835,7 @@ interface HistoricWorkspaceMetrics {
2832
2835
  workspace_name: string;
2833
2836
  line_id: string;
2834
2837
  line_name: string;
2838
+ line_assembly_enabled?: boolean;
2835
2839
  company_id: string;
2836
2840
  company_name: string;
2837
2841
  date: string;
@@ -2852,9 +2856,15 @@ interface HistoricWorkspaceMetrics {
2852
2856
  idle_time_hourly?: Record<string, string[]>;
2853
2857
  hourly_action_counts: number[];
2854
2858
  hourly_cycle_times?: number[];
2859
+ cycle_completion_clip_count?: number | null;
2860
+ cycle_time_data_status?: 'available' | 'missing_clips' | null;
2861
+ cycle_time_timezone?: string | null;
2855
2862
  shift_start: string;
2856
2863
  shift_end: string;
2857
2864
  action_name: string;
2865
+ action_type?: 'assembly' | 'output' | null;
2866
+ action_family?: 'assembly' | 'output' | 'other' | null;
2867
+ action_display_name?: string | null;
2858
2868
  monitoring_mode?: 'output' | 'uptime';
2859
2869
  workspace_rank: number;
2860
2870
  total_workspaces: number;
@@ -7193,7 +7203,7 @@ interface CycleTimeChartProps {
7193
7203
  declare const CycleTimeChart: React__default.NamedExoticComponent<CycleTimeChartProps>;
7194
7204
 
7195
7205
  interface CycleTimeOverTimeChartProps {
7196
- data: number[];
7206
+ data: Array<number | null>;
7197
7207
  idealCycleTime: number;
7198
7208
  shiftStart: string;
7199
7209
  shiftEnd?: string;
@@ -7201,7 +7211,7 @@ interface CycleTimeOverTimeChartProps {
7201
7211
  datasetKey?: string;
7202
7212
  className?: string;
7203
7213
  showIdleTime?: boolean;
7204
- idleTimeData?: number[];
7214
+ idleTimeData?: Array<number | null>;
7205
7215
  }
7206
7216
  declare const CycleTimeOverTimeChart: React__default.FC<CycleTimeOverTimeChartProps>;
7207
7217