@optifye/dashboard-core 6.12.22 → 6.12.23

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.
@@ -177,6 +177,10 @@ interface WorkspaceMetrics {
177
177
  action_type?: 'assembly' | 'output' | null;
178
178
  action_family?: 'assembly' | 'output' | 'other' | null;
179
179
  action_display_name?: string | null;
180
+ factory_area_id?: string | null;
181
+ factory_area_key?: string | null;
182
+ factory_area_name?: string | null;
183
+ factory_area_enabled?: boolean | null;
180
184
  leaderboard_metric_kind?: 'efficiency' | 'recent_flow_shift_average';
181
185
  leaderboard_value?: number | null;
182
186
  avg_recent_flow?: number | null;
@@ -188,6 +192,10 @@ interface WorkspaceMetrics {
188
192
  recent_flow_effective_end_at?: string | null;
189
193
  recent_flow_computed_at?: string | null;
190
194
  recent_flow_forced_zero_after_shift?: boolean | null;
195
+ video_grid_green_streak_active?: boolean | null;
196
+ video_grid_green_streak_minutes?: number | null;
197
+ video_grid_green_streak_anchor_at?: string | null;
198
+ video_grid_green_streak_started_at?: string | null;
191
199
  scheduled_break_active?: boolean;
192
200
  incoming_wip_current?: number | null;
193
201
  incoming_wip_effective_at?: string | null;
@@ -177,6 +177,10 @@ interface WorkspaceMetrics {
177
177
  action_type?: 'assembly' | 'output' | null;
178
178
  action_family?: 'assembly' | 'output' | 'other' | null;
179
179
  action_display_name?: string | null;
180
+ factory_area_id?: string | null;
181
+ factory_area_key?: string | null;
182
+ factory_area_name?: string | null;
183
+ factory_area_enabled?: boolean | null;
180
184
  leaderboard_metric_kind?: 'efficiency' | 'recent_flow_shift_average';
181
185
  leaderboard_value?: number | null;
182
186
  avg_recent_flow?: number | null;
@@ -188,6 +192,10 @@ interface WorkspaceMetrics {
188
192
  recent_flow_effective_end_at?: string | null;
189
193
  recent_flow_computed_at?: string | null;
190
194
  recent_flow_forced_zero_after_shift?: boolean | null;
195
+ video_grid_green_streak_active?: boolean | null;
196
+ video_grid_green_streak_minutes?: number | null;
197
+ video_grid_green_streak_anchor_at?: string | null;
198
+ video_grid_green_streak_started_at?: string | null;
191
199
  scheduled_break_active?: boolean;
192
200
  incoming_wip_current?: number | null;
193
201
  incoming_wip_effective_at?: string | null;
@@ -1,2 +1,2 @@
1
- export { u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, W as WorkspaceMetrics, d as WorkspaceVideoStream } from './automation-Hl2PFMb3.mjs';
1
+ export { u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, W as WorkspaceMetrics, d as WorkspaceVideoStream } from './automation-C3vudVDH.mjs';
2
2
  import 'react';
@@ -1,2 +1,2 @@
1
- export { u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, W as WorkspaceMetrics, d as WorkspaceVideoStream } from './automation-Hl2PFMb3.js';
1
+ export { u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, W as WorkspaceMetrics, d as WorkspaceVideoStream } from './automation-C3vudVDH.js';
2
2
  import 'react';
@@ -1753,8 +1753,6 @@ var isRecentFlowVideoGridMetricMode = (value, assemblyEnabled = false) => {
1753
1753
  return normalized === "recent_flow" || normalized === "recent_flow_wip_gated";
1754
1754
  };
1755
1755
  var isWipGatedVideoGridMetricMode = (value, assemblyEnabled = false) => normalizeVideoGridMetricMode(value, assemblyEnabled) === "recent_flow_wip_gated";
1756
-
1757
- // src/components/dashboard/grid/videoGridMetricUtils.ts
1758
1756
  var isFiniteNumber = (value) => typeof value === "number" && Number.isFinite(value);
1759
1757
  var isVideoGridRecentFlowEnabled = (workspace) => isRecentFlowVideoGridMetricMode(
1760
1758
  workspace.video_grid_metric_mode,
@@ -1777,6 +1775,8 @@ var getRawVideoGridMetricValue = (workspace) => {
1777
1775
  return workspace.efficiency;
1778
1776
  };
1779
1777
  var hasIncomingWipMapping = (workspace) => Boolean(workspace.incoming_wip_buffer_name);
1778
+ var getVideoGridWorkspaceKey = (workspace) => workspace.workspace_uuid || `${workspace.line_id || "unknown"}:${workspace.workspace_name || "unknown"}`;
1779
+ var isVideoGridBlueCandidate = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => hasVideoGridRecentFlow(workspace) && isFiniteNumber(workspace.recent_flow_percent) && workspace.recent_flow_percent >= legend.green_min;
1780
1780
  var getVideoGridBaseColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => {
1781
1781
  const metricValue = getRawVideoGridMetricValue(workspace);
1782
1782
  if (!isFiniteNumber(metricValue)) {
@@ -1847,7 +1847,10 @@ var getSyntheticLowWipDisplayValue = (workspace, minuteBucket) => {
1847
1847
  return 100 + offset;
1848
1848
  };
1849
1849
  var getVideoGridDisplayValue = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND, minuteBucket) => isLowWipGreenOverride(workspace, legend) ? getSyntheticLowWipDisplayValue(workspace, minuteBucket) : getVideoGridMetricValue(workspace, legend);
1850
- var getVideoGridColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => {
1850
+ var getVideoGridColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND, blueWinnerIds) => {
1851
+ if (blueWinnerIds?.has(getVideoGridWorkspaceKey(workspace)) && isVideoGridBlueCandidate(workspace, legend)) {
1852
+ return "blue";
1853
+ }
1851
1854
  const baseColor = getVideoGridBaseColorState(workspace, legend);
1852
1855
  if (!hasVideoGridRecentFlow(workspace)) {
1853
1856
  return baseColor;
@@ -1895,6 +1898,7 @@ var VideoCard = React__default.default.memo(({
1895
1898
  compact = false,
1896
1899
  displayMinuteBucket,
1897
1900
  displayName,
1901
+ isBlueBest = false,
1898
1902
  lastSeenLabel,
1899
1903
  hasRecentHealthSignal = false,
1900
1904
  onMouseEnter,
@@ -1916,7 +1920,11 @@ var VideoCard = React__default.default.memo(({
1916
1920
  const workspaceDisplayName = displayName || workspace.displayName || workspace.workspace_name;
1917
1921
  const videoGridMetricValue = getVideoGridMetricValue(workspace, effectiveLegend);
1918
1922
  const videoGridDisplayValue = getVideoGridDisplayValue(workspace, effectiveLegend, displayMinuteBucket);
1919
- const videoGridColorState = getVideoGridColorState(workspace, effectiveLegend);
1923
+ const videoGridColorState = getVideoGridColorState(
1924
+ workspace,
1925
+ effectiveLegend,
1926
+ isBlueBest ? /* @__PURE__ */ new Set([getVideoGridWorkspaceKey(workspace)]) : void 0
1927
+ );
1920
1928
  const isRecentFlowCard = isVideoGridRecentFlowEnabled(workspace);
1921
1929
  const isHighEfficiencyOverride = isHighEfficiencyRedFlowOverride(workspace, effectiveLegend);
1922
1930
  const hasDisplayMetric = typeof videoGridDisplayValue === "number" && Number.isFinite(videoGridDisplayValue);
@@ -1924,9 +1932,9 @@ var VideoCard = React__default.default.memo(({
1924
1932
  const shouldRenderMetricBadge = hasDisplayMetric;
1925
1933
  const badgeTitle = isHighEfficiencyOverride ? `Efficiency ${Math.round(videoGridDisplayValue ?? 0)}%` : hasVideoGridRecentFlow(workspace) ? `Flow ${Math.round(videoGridDisplayValue ?? 0)}%` : isRecentFlowCard ? "Flow unavailable" : `Efficiency ${Math.round(videoGridDisplayValue ?? 0)}%`;
1926
1934
  const badgeLabel = `${Math.round(videoGridDisplayValue ?? 0)}%`;
1927
- const efficiencyOverlayClass = videoGridColorState === "green" ? "bg-[#00D654]/25" : videoGridColorState === "yellow" ? "bg-[#FFD700]/30" : videoGridColorState === "red" ? "bg-[#FF2D0A]/30" : "bg-transparent";
1928
- const efficiencyBarClass = videoGridColorState === "green" ? "bg-[#00AB45]" : videoGridColorState === "yellow" ? "bg-[#FFB020]" : videoGridColorState === "red" ? "bg-[#E34329]" : "bg-gray-500/70";
1929
- const efficiencyStatus = videoGridColorState === "green" ? "High" : videoGridColorState === "yellow" ? "Medium" : videoGridColorState === "red" ? "Low" : "Neutral";
1935
+ const efficiencyOverlayClass = videoGridColorState === "green" ? "bg-[#00D654]/25" : videoGridColorState === "blue" ? "bg-[#0EA5E9]/30" : videoGridColorState === "yellow" ? "bg-[#FFD700]/30" : videoGridColorState === "red" ? "bg-[#FF2D0A]/30" : "bg-transparent";
1936
+ const efficiencyBarClass = videoGridColorState === "green" ? "bg-[#00AB45]" : videoGridColorState === "blue" ? "bg-[#0EA5E9]" : videoGridColorState === "yellow" ? "bg-[#FFB020]" : videoGridColorState === "red" ? "bg-[#E34329]" : "bg-gray-500/70";
1937
+ const efficiencyStatus = videoGridColorState === "green" ? "High" : videoGridColorState === "blue" ? "Best" : videoGridColorState === "yellow" ? "Medium" : videoGridColorState === "red" ? "Low" : "Neutral";
1930
1938
  const trendInfo = workspace.trend !== void 0 ? getTrendArrowAndColor(workspace.trend) : null;
1931
1939
  const handleClick = React.useCallback(() => {
1932
1940
  trackCoreEvent("Workspace Card Clicked", {
@@ -2047,6 +2055,9 @@ var VideoCard = React__default.default.memo(({
2047
2055
  if (prevProps.displayName !== nextProps.displayName) {
2048
2056
  return false;
2049
2057
  }
2058
+ if (prevProps.isBlueBest !== nextProps.isBlueBest) {
2059
+ return false;
2060
+ }
2050
2061
  if (prevProps.lastSeenLabel !== nextProps.lastSeenLabel) {
2051
2062
  return false;
2052
2063
  }
@@ -1746,8 +1746,6 @@ var isRecentFlowVideoGridMetricMode = (value, assemblyEnabled = false) => {
1746
1746
  return normalized === "recent_flow" || normalized === "recent_flow_wip_gated";
1747
1747
  };
1748
1748
  var isWipGatedVideoGridMetricMode = (value, assemblyEnabled = false) => normalizeVideoGridMetricMode(value, assemblyEnabled) === "recent_flow_wip_gated";
1749
-
1750
- // src/components/dashboard/grid/videoGridMetricUtils.ts
1751
1749
  var isFiniteNumber = (value) => typeof value === "number" && Number.isFinite(value);
1752
1750
  var isVideoGridRecentFlowEnabled = (workspace) => isRecentFlowVideoGridMetricMode(
1753
1751
  workspace.video_grid_metric_mode,
@@ -1770,6 +1768,8 @@ var getRawVideoGridMetricValue = (workspace) => {
1770
1768
  return workspace.efficiency;
1771
1769
  };
1772
1770
  var hasIncomingWipMapping = (workspace) => Boolean(workspace.incoming_wip_buffer_name);
1771
+ var getVideoGridWorkspaceKey = (workspace) => workspace.workspace_uuid || `${workspace.line_id || "unknown"}:${workspace.workspace_name || "unknown"}`;
1772
+ var isVideoGridBlueCandidate = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => hasVideoGridRecentFlow(workspace) && isFiniteNumber(workspace.recent_flow_percent) && workspace.recent_flow_percent >= legend.green_min;
1773
1773
  var getVideoGridBaseColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => {
1774
1774
  const metricValue = getRawVideoGridMetricValue(workspace);
1775
1775
  if (!isFiniteNumber(metricValue)) {
@@ -1840,7 +1840,10 @@ var getSyntheticLowWipDisplayValue = (workspace, minuteBucket) => {
1840
1840
  return 100 + offset;
1841
1841
  };
1842
1842
  var getVideoGridDisplayValue = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND, minuteBucket) => isLowWipGreenOverride(workspace, legend) ? getSyntheticLowWipDisplayValue(workspace, minuteBucket) : getVideoGridMetricValue(workspace, legend);
1843
- var getVideoGridColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND) => {
1843
+ var getVideoGridColorState = (workspace, legend = DEFAULT_EFFICIENCY_LEGEND, blueWinnerIds) => {
1844
+ if (blueWinnerIds?.has(getVideoGridWorkspaceKey(workspace)) && isVideoGridBlueCandidate(workspace, legend)) {
1845
+ return "blue";
1846
+ }
1844
1847
  const baseColor = getVideoGridBaseColorState(workspace, legend);
1845
1848
  if (!hasVideoGridRecentFlow(workspace)) {
1846
1849
  return baseColor;
@@ -1888,6 +1891,7 @@ var VideoCard = React.memo(({
1888
1891
  compact = false,
1889
1892
  displayMinuteBucket,
1890
1893
  displayName,
1894
+ isBlueBest = false,
1891
1895
  lastSeenLabel,
1892
1896
  hasRecentHealthSignal = false,
1893
1897
  onMouseEnter,
@@ -1909,7 +1913,11 @@ var VideoCard = React.memo(({
1909
1913
  const workspaceDisplayName = displayName || workspace.displayName || workspace.workspace_name;
1910
1914
  const videoGridMetricValue = getVideoGridMetricValue(workspace, effectiveLegend);
1911
1915
  const videoGridDisplayValue = getVideoGridDisplayValue(workspace, effectiveLegend, displayMinuteBucket);
1912
- const videoGridColorState = getVideoGridColorState(workspace, effectiveLegend);
1916
+ const videoGridColorState = getVideoGridColorState(
1917
+ workspace,
1918
+ effectiveLegend,
1919
+ isBlueBest ? /* @__PURE__ */ new Set([getVideoGridWorkspaceKey(workspace)]) : void 0
1920
+ );
1913
1921
  const isRecentFlowCard = isVideoGridRecentFlowEnabled(workspace);
1914
1922
  const isHighEfficiencyOverride = isHighEfficiencyRedFlowOverride(workspace, effectiveLegend);
1915
1923
  const hasDisplayMetric = typeof videoGridDisplayValue === "number" && Number.isFinite(videoGridDisplayValue);
@@ -1917,9 +1925,9 @@ var VideoCard = React.memo(({
1917
1925
  const shouldRenderMetricBadge = hasDisplayMetric;
1918
1926
  const badgeTitle = isHighEfficiencyOverride ? `Efficiency ${Math.round(videoGridDisplayValue ?? 0)}%` : hasVideoGridRecentFlow(workspace) ? `Flow ${Math.round(videoGridDisplayValue ?? 0)}%` : isRecentFlowCard ? "Flow unavailable" : `Efficiency ${Math.round(videoGridDisplayValue ?? 0)}%`;
1919
1927
  const badgeLabel = `${Math.round(videoGridDisplayValue ?? 0)}%`;
1920
- const efficiencyOverlayClass = videoGridColorState === "green" ? "bg-[#00D654]/25" : videoGridColorState === "yellow" ? "bg-[#FFD700]/30" : videoGridColorState === "red" ? "bg-[#FF2D0A]/30" : "bg-transparent";
1921
- const efficiencyBarClass = videoGridColorState === "green" ? "bg-[#00AB45]" : videoGridColorState === "yellow" ? "bg-[#FFB020]" : videoGridColorState === "red" ? "bg-[#E34329]" : "bg-gray-500/70";
1922
- const efficiencyStatus = videoGridColorState === "green" ? "High" : videoGridColorState === "yellow" ? "Medium" : videoGridColorState === "red" ? "Low" : "Neutral";
1928
+ const efficiencyOverlayClass = videoGridColorState === "green" ? "bg-[#00D654]/25" : videoGridColorState === "blue" ? "bg-[#0EA5E9]/30" : videoGridColorState === "yellow" ? "bg-[#FFD700]/30" : videoGridColorState === "red" ? "bg-[#FF2D0A]/30" : "bg-transparent";
1929
+ const efficiencyBarClass = videoGridColorState === "green" ? "bg-[#00AB45]" : videoGridColorState === "blue" ? "bg-[#0EA5E9]" : videoGridColorState === "yellow" ? "bg-[#FFB020]" : videoGridColorState === "red" ? "bg-[#E34329]" : "bg-gray-500/70";
1930
+ const efficiencyStatus = videoGridColorState === "green" ? "High" : videoGridColorState === "blue" ? "Best" : videoGridColorState === "yellow" ? "Medium" : videoGridColorState === "red" ? "Low" : "Neutral";
1923
1931
  const trendInfo = workspace.trend !== void 0 ? getTrendArrowAndColor(workspace.trend) : null;
1924
1932
  const handleClick = useCallback(() => {
1925
1933
  trackCoreEvent("Workspace Card Clicked", {
@@ -2040,6 +2048,9 @@ var VideoCard = React.memo(({
2040
2048
  if (prevProps.displayName !== nextProps.displayName) {
2041
2049
  return false;
2042
2050
  }
2051
+ if (prevProps.isBlueBest !== nextProps.isBlueBest) {
2052
+ return false;
2053
+ }
2043
2054
  if (prevProps.lastSeenLabel !== nextProps.lastSeenLabel) {
2044
2055
  return false;
2045
2056
  }
package/dist/index.css CHANGED
@@ -658,6 +658,9 @@ body {
658
658
  .z-50 {
659
659
  z-index: 50;
660
660
  }
661
+ .z-\[10000\] {
662
+ z-index: 10000;
663
+ }
661
664
  .z-\[100\] {
662
665
  z-index: 100;
663
666
  }
@@ -1548,9 +1551,6 @@ body {
1548
1551
  .max-w-\[140px\] {
1549
1552
  max-width: 140px;
1550
1553
  }
1551
- .max-w-\[150px\] {
1552
- max-width: 150px;
1553
- }
1554
1554
  .max-w-\[170px\] {
1555
1555
  max-width: 170px;
1556
1556
  }
@@ -1674,6 +1674,9 @@ body {
1674
1674
  .origin-center {
1675
1675
  transform-origin: center;
1676
1676
  }
1677
+ .origin-left {
1678
+ transform-origin: left;
1679
+ }
1677
1680
  .origin-top-right {
1678
1681
  transform-origin: top right;
1679
1682
  }
@@ -1992,6 +1995,9 @@ body {
1992
1995
  .gap-y-3 {
1993
1996
  row-gap: 0.75rem;
1994
1997
  }
1998
+ .gap-y-4 {
1999
+ row-gap: 1rem;
2000
+ }
1995
2001
  .-space-x-2 > :not([hidden]) ~ :not([hidden]) {
1996
2002
  --tw-space-x-reverse: 0;
1997
2003
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
@@ -2312,6 +2318,9 @@ body {
2312
2318
  .border-none {
2313
2319
  border-style: none;
2314
2320
  }
2321
+ .border-\[\#00AB45\]\/20 {
2322
+ border-color: rgb(0 171 69 / 0.2);
2323
+ }
2315
2324
  .border-\[\#E34329\] {
2316
2325
  --tw-border-opacity: 1;
2317
2326
  border-color: rgb(227 67 41 / var(--tw-border-opacity, 1));
@@ -2651,12 +2660,22 @@ body {
2651
2660
  --tw-bg-opacity: 1;
2652
2661
  background-color: rgb(0 171 69 / var(--tw-bg-opacity, 1));
2653
2662
  }
2663
+ .bg-\[\#00AB45\]\/10 {
2664
+ background-color: rgb(0 171 69 / 0.1);
2665
+ }
2654
2666
  .bg-\[\#00AB45\]\/90 {
2655
2667
  background-color: rgb(0 171 69 / 0.9);
2656
2668
  }
2657
2669
  .bg-\[\#00D654\]\/25 {
2658
2670
  background-color: rgb(0 214 84 / 0.25);
2659
2671
  }
2672
+ .bg-\[\#0EA5E9\] {
2673
+ --tw-bg-opacity: 1;
2674
+ background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
2675
+ }
2676
+ .bg-\[\#0EA5E9\]\/30 {
2677
+ background-color: rgb(14 165 233 / 0.3);
2678
+ }
2660
2679
  .bg-\[\#E34329\] {
2661
2680
  --tw-bg-opacity: 1;
2662
2681
  background-color: rgb(227 67 41 / var(--tw-bg-opacity, 1));
@@ -2701,10 +2720,6 @@ body {
2701
2720
  --tw-bg-opacity: 1;
2702
2721
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
2703
2722
  }
2704
- .bg-amber-200 {
2705
- --tw-bg-opacity: 1;
2706
- background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
2707
- }
2708
2723
  .bg-amber-400 {
2709
2724
  --tw-bg-opacity: 1;
2710
2725
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
@@ -3077,6 +3092,9 @@ body {
3077
3092
  --tw-bg-opacity: 1;
3078
3093
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
3079
3094
  }
3095
+ .bg-slate-900\/40 {
3096
+ background-color: rgb(15 23 42 / 0.4);
3097
+ }
3080
3098
  .bg-slate-900\/60 {
3081
3099
  background-color: rgb(15 23 42 / 0.6);
3082
3100
  }
@@ -4117,9 +4135,6 @@ body {
4117
4135
  .pl-1 {
4118
4136
  padding-left: 0.25rem;
4119
4137
  }
4120
- .pl-1\.5 {
4121
- padding-left: 0.375rem;
4122
- }
4123
4138
  .pl-10 {
4124
4139
  padding-left: 2.5rem;
4125
4140
  }
@@ -4250,6 +4265,9 @@ body {
4250
4265
  .text-\[0\.8rem\] {
4251
4266
  font-size: 0.8rem;
4252
4267
  }
4268
+ .text-\[100px\] {
4269
+ font-size: 100px;
4270
+ }
4253
4271
  .text-\[10px\] {
4254
4272
  font-size: 10px;
4255
4273
  }
@@ -4271,9 +4289,15 @@ body {
4271
4289
  .text-\[15px\] {
4272
4290
  font-size: 15px;
4273
4291
  }
4292
+ .text-\[60px\] {
4293
+ font-size: 60px;
4294
+ }
4274
4295
  .text-\[7px\] {
4275
4296
  font-size: 7px;
4276
4297
  }
4298
+ .text-\[80px\] {
4299
+ font-size: 80px;
4300
+ }
4277
4301
  .text-\[8px\] {
4278
4302
  font-size: 8px;
4279
4303
  }
@@ -4450,10 +4474,6 @@ body {
4450
4474
  --tw-text-opacity: 1;
4451
4475
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
4452
4476
  }
4453
- .text-amber-200 {
4454
- --tw-text-opacity: 1;
4455
- color: rgb(253 230 138 / var(--tw-text-opacity, 1));
4456
- }
4457
4477
  .text-amber-300 {
4458
4478
  --tw-text-opacity: 1;
4459
4479
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
@@ -4897,6 +4917,22 @@ body {
4897
4917
  var(--tw-ring-shadow, 0 0 #0000),
4898
4918
  var(--tw-shadow);
4899
4919
  }
4920
+ .shadow-\[0_0_10px_rgba\(0\,171\,69\,0\.72\)\] {
4921
+ --tw-shadow: 0 0 10px rgba(0,171,69,0.72);
4922
+ --tw-shadow-colored: 0 0 10px var(--tw-shadow-color);
4923
+ box-shadow:
4924
+ var(--tw-ring-offset-shadow, 0 0 #0000),
4925
+ var(--tw-ring-shadow, 0 0 #0000),
4926
+ var(--tw-shadow);
4927
+ }
4928
+ .shadow-\[0_0_16px_rgba\(0\,171\,69\,0\.44\)\] {
4929
+ --tw-shadow: 0 0 16px rgba(0,171,69,0.44);
4930
+ --tw-shadow-colored: 0 0 16px var(--tw-shadow-color);
4931
+ box-shadow:
4932
+ var(--tw-ring-offset-shadow, 0 0 #0000),
4933
+ var(--tw-ring-shadow, 0 0 #0000),
4934
+ var(--tw-shadow);
4935
+ }
4900
4936
  .shadow-\[0_0_4px_rgba\(251\,146\,60\,0\.5\)\] {
4901
4937
  --tw-shadow: 0 0 4px rgba(251,146,60,0.5);
4902
4938
  --tw-shadow-colored: 0 0 4px var(--tw-shadow-color);
@@ -5121,10 +5157,6 @@ body {
5121
5157
  .ring-\[\#FFB020\]\/20 {
5122
5158
  --tw-ring-color: rgb(255 176 32 / 0.2);
5123
5159
  }
5124
- .ring-amber-100 {
5125
- --tw-ring-opacity: 1;
5126
- --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
5127
- }
5128
5160
  .ring-amber-50\/50 {
5129
5161
  --tw-ring-color: rgb(255 251 235 / 0.5);
5130
5162
  }
@@ -5278,6 +5310,14 @@ body {
5278
5310
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
5279
5311
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
5280
5312
  }
5313
+ .drop-shadow-2xl {
5314
+ --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
5315
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
5316
+ }
5317
+ .drop-shadow-\[0_4px_18px_rgba\(0\,0\,0\,0\.45\)\] {
5318
+ --tw-drop-shadow: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
5319
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
5320
+ }
5281
5321
  .drop-shadow-md {
5282
5322
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
5283
5323
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@@ -5563,10 +5603,6 @@ input[type=range]:active::-moz-range-thumb {
5563
5603
  --tw-scale-y: 1.02;
5564
5604
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
5565
5605
  }
5566
- .hover\:border-amber-300:hover {
5567
- --tw-border-opacity: 1;
5568
- border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
5569
- }
5570
5606
  .hover\:border-blue-300:hover {
5571
5607
  --tw-border-opacity: 1;
5572
5608
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
@@ -6481,6 +6517,9 @@ input[type=range]:active::-moz-range-thumb {
6481
6517
  .sm\:mt-2 {
6482
6518
  margin-top: 0.5rem;
6483
6519
  }
6520
+ .sm\:mt-4 {
6521
+ margin-top: 1rem;
6522
+ }
6484
6523
  .sm\:mt-8 {
6485
6524
  margin-top: 2rem;
6486
6525
  }
@@ -6583,9 +6622,15 @@ input[type=range]:active::-moz-range-thumb {
6583
6622
  .sm\:w-5 {
6584
6623
  width: 1.25rem;
6585
6624
  }
6625
+ .sm\:w-56 {
6626
+ width: 14rem;
6627
+ }
6586
6628
  .sm\:w-6 {
6587
6629
  width: 1.5rem;
6588
6630
  }
6631
+ .sm\:w-64 {
6632
+ width: 16rem;
6633
+ }
6589
6634
  .sm\:w-7 {
6590
6635
  width: 1.75rem;
6591
6636
  }
@@ -6682,6 +6727,10 @@ input[type=range]:active::-moz-range-thumb {
6682
6727
  .sm\:gap-6 {
6683
6728
  gap: 1.5rem;
6684
6729
  }
6730
+ .sm\:gap-x-8 {
6731
+ -moz-column-gap: 2rem;
6732
+ column-gap: 2rem;
6733
+ }
6685
6734
  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
6686
6735
  --tw-space-x-reverse: 0;
6687
6736
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
@@ -6904,6 +6953,15 @@ input[type=range]:active::-moz-range-thumb {
6904
6953
  .sm\:text-\[11px\] {
6905
6954
  font-size: 11px;
6906
6955
  }
6956
+ .sm\:text-\[120px\] {
6957
+ font-size: 120px;
6958
+ }
6959
+ .sm\:text-\[140px\] {
6960
+ font-size: 140px;
6961
+ }
6962
+ .sm\:text-\[90px\] {
6963
+ font-size: 90px;
6964
+ }
6907
6965
  .sm\:text-base {
6908
6966
  font-size: 1rem;
6909
6967
  line-height: 1.5rem;
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VideoGridMetricMode, W as WorkspaceMetrics, L as LineInfo, a as WorkspaceDetailedMetrics, S as SkuBreakdownItem, b as SkuSegmentItem, c as LineSkuBreakdownItem, E as EfficiencyLegendUpdate, D as DashboardKPIs, P as PoorPerformingWorkspace, d as WorkspaceVideoStream, K as KpiTrend, M as MonthlyTrendSummary, e as Workspace, f as WorkspaceCameraIpInfo, g as WorkspaceActionUpdate, A as ActionThreshold, h as ShiftConfiguration, i as LineIssueResolutionSummary } from './automation-Hl2PFMb3.mjs';
2
- export { m as CountDelta, C as CurrentWorkspaceSKU, n as DurationDelta, j as LineDetailedMetrics, p as LineThreshold, l as PercentageDelta, u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, q as ShiftConfigurationRecord, k as ValueDelta, o as WorkspaceCropRect, s as isRecentFlowVideoGridMetricMode, t as isWipGatedVideoGridMetricMode, r as normalizeVideoGridMetricMode } from './automation-Hl2PFMb3.mjs';
1
+ import { V as VideoGridMetricMode, W as WorkspaceMetrics, L as LineInfo, a as WorkspaceDetailedMetrics, S as SkuBreakdownItem, b as SkuSegmentItem, c as LineSkuBreakdownItem, E as EfficiencyLegendUpdate, D as DashboardKPIs, P as PoorPerformingWorkspace, d as WorkspaceVideoStream, K as KpiTrend, M as MonthlyTrendSummary, e as Workspace, f as WorkspaceCameraIpInfo, g as WorkspaceActionUpdate, A as ActionThreshold, h as ShiftConfiguration, i as LineIssueResolutionSummary } from './automation-C3vudVDH.mjs';
2
+ export { m as CountDelta, C as CurrentWorkspaceSKU, n as DurationDelta, j as LineDetailedMetrics, p as LineThreshold, l as PercentageDelta, u as RecentFlowSnapshotGrid, R as RecentFlowSnapshotGridProps, q as ShiftConfigurationRecord, k as ValueDelta, o as WorkspaceCropRect, s as isRecentFlowVideoGridMetricMode, t as isWipGatedVideoGridMetricMode, r as normalizeVideoGridMetricMode } from './automation-C3vudVDH.mjs';
3
3
  import * as _supabase_supabase_js from '@supabase/supabase-js';
4
4
  import { SupabaseClient as SupabaseClient$1, Session, User, AuthError } from '@supabase/supabase-js';
5
5
  import { LucideProps, Share2, Download } from 'lucide-react';
@@ -936,7 +936,7 @@ interface LeaderboardDetailViewProps {
936
936
  className?: string;
937
937
  /**
938
938
  * Optional array of line IDs that the user has access to
939
- * Used to filter leaderboard for supervisors
939
+ * Used to gate leaderboard drilldown without hiding same-company lines
940
940
  */
941
941
  userAccessibleLineIds?: string[];
942
942
  }
@@ -2757,6 +2757,11 @@ interface UseDashboardMetricsProps {
2757
2757
  * When provided, this overrides the default factory-view line resolution.
2758
2758
  */
2759
2759
  lineIds?: string[];
2760
+ /**
2761
+ * Optional wider line set used only to compare area-scoped blue workstation winners.
2762
+ * Visible workspace and KPI payloads remain scoped to `lineIds`.
2763
+ */
2764
+ blueComparisonLineIds?: string[];
2760
2765
  /**
2761
2766
  * Optional callback invoked when underlying line metrics data might have changed,
2762
2767
  * suggesting that related components (like a Line KPI display) might need to refresh.
@@ -2818,8 +2823,9 @@ interface DashboardMetricsMetadata {
2818
2823
  * }
2819
2824
  * ```
2820
2825
  */
2821
- declare const useDashboardMetrics: ({ onLineMetricsUpdate, lineId, lineIds, userAccessibleLineIds, enabled, }: UseDashboardMetricsProps) => {
2826
+ declare const useDashboardMetrics: ({ onLineMetricsUpdate, lineId, lineIds, blueComparisonLineIds, userAccessibleLineIds, enabled, }: UseDashboardMetricsProps) => {
2822
2827
  workspaceMetrics: WorkspaceMetrics[];
2828
+ blueComparisonWorkspaceMetrics: WorkspaceMetrics[];
2823
2829
  lineMetrics: OverviewLineMetric[];
2824
2830
  efficiencyLegend: EfficiencyLegendUpdate;
2825
2831
  metadata: DashboardMetricsMetadata | undefined;
@@ -2985,6 +2991,7 @@ interface LineRecord {
2985
2991
  assembly?: boolean;
2986
2992
  video_grid_metric_mode?: VideoGridMetricMode;
2987
2993
  recent_flow_window_minutes?: number;
2994
+ factory_area_id?: string | null;
2988
2995
  }
2989
2996
  /**
2990
2997
  * Hook to fetch all lines from the database
@@ -6023,6 +6030,7 @@ interface Line$1 {
6023
6030
  assembly?: boolean;
6024
6031
  videoGridMetricMode?: VideoGridMetricMode;
6025
6032
  recentFlowWindowMinutes?: number;
6033
+ factoryAreaId?: string | null;
6026
6034
  }
6027
6035
  /**
6028
6036
  * Service for managing lines data
@@ -6444,6 +6452,7 @@ declare const lineLeaderboardService: {
6444
6452
  lineIds?: string[];
6445
6453
  lineMode?: "output" | "uptime";
6446
6454
  limit?: number;
6455
+ includeBelowThreshold?: boolean;
6447
6456
  }): Promise<DailyLineLeaderboardEntry[]>;
6448
6457
  };
6449
6458
 
@@ -6770,6 +6779,25 @@ interface KpiLineHierarchy {
6770
6779
  }
6771
6780
  declare const buildKpiLineHierarchy: (lines: SimpleLine[]) => KpiLineHierarchy;
6772
6781
 
6782
+ interface LineLeaderboardDisplayRow {
6783
+ rowType: 'line' | 'area';
6784
+ id: string;
6785
+ displayName: string;
6786
+ areaId?: string;
6787
+ line?: SimpleLine;
6788
+ lines: SimpleLine[];
6789
+ efficiency: number | null;
6790
+ sortValue: number;
6791
+ rank?: number;
6792
+ }
6793
+ interface BuildLineLeaderboardRowsParams {
6794
+ lines: SimpleLine[];
6795
+ efficiencyByLineId: Map<string, number>;
6796
+ fallbackEfficiencyByLineId?: Map<string, number>;
6797
+ isLoading: boolean;
6798
+ }
6799
+ declare const buildLineLeaderboardRows: ({ lines, efficiencyByLineId, fallbackEfficiencyByLineId, isLoading, }: BuildLineLeaderboardRowsParams) => LineLeaderboardDisplayRow[];
6800
+
6773
6801
  type AwardBadgeType = 'gold' | 'silver' | 'bronze' | 'special' | 'diamond' | 'platinum';
6774
6802
  declare const formatAwardMonth: (periodStart?: string | null) => string;
6775
6803
  declare const getAwardTitle: (awardType: AwardRecord["award_type"]) => string;
@@ -8452,6 +8480,7 @@ declare const WORKSPACE_POSITIONS: WorkspacePosition[];
8452
8480
 
8453
8481
  interface WorkspaceGridProps {
8454
8482
  workspaces: WorkspaceMetrics[];
8483
+ blueComparisonWorkspaces?: WorkspaceMetrics[];
8455
8484
  isPdfMode?: boolean;
8456
8485
  customWorkspacePositions?: typeof DEFAULT_WORKSPACE_POSITIONS;
8457
8486
  lineNames?: Record<string, string>;
@@ -8527,6 +8556,7 @@ declare const TargetWorkspaceGrid: React__default.FC<TargetWorkspaceGridProps>;
8527
8556
 
8528
8557
  interface VideoGridViewProps {
8529
8558
  workspaces: WorkspaceMetrics[];
8559
+ blueComparisonWorkspaces?: WorkspaceMetrics[];
8530
8560
  selectedLine?: number;
8531
8561
  lineNames?: Record<string, string>;
8532
8562
  lineOrder?: string[];
@@ -8575,6 +8605,7 @@ interface VideoCardProps {
8575
8605
  compact?: boolean;
8576
8606
  displayMinuteBucket?: number;
8577
8607
  displayName?: string;
8608
+ isBlueBest?: boolean;
8578
8609
  lastSeenLabel?: string;
8579
8610
  hasRecentHealthSignal?: boolean;
8580
8611
  onMouseEnter?: () => void;
@@ -10407,4 +10438,4 @@ interface ThreadSidebarProps {
10407
10438
  }
10408
10439
  declare const ThreadSidebar: React__default.FC<ThreadSidebarProps>;
10409
10440
 
10410
- export { ACTION_FAMILIES, ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type AccessScope$1 as AccessScope, type Action, type ActionFamily, type ActionName, type ActionService, ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AppRoleLevel, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthStatus, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AvatarUpload, type AvatarUploadProps, type AwardBadgeType, type AwardNotificationRecord, type AwardNotificationType, type AwardRecord, type AwardType, AxelNotificationPopup, type AxelNotificationPopupProps, AxelOrb, type AxelOrbProps, type AxelSuggestion, BackButton, BackButtonMinimal, BarChart, type BarChartDataItem, type BarChartProps, type BarProps, BaseHistoryCalendar, type BaseHistoryCalendarProps, type BaseLineMetric, type BasePerformanceMetric, BottleneckClipsModal, type BottleneckClipsModalProps, type BottleneckClipsNavigationParams, BottleneckClipsView, type BottleneckClipsViewProps, type BottleneckFilterType, type BottleneckVideo, type BottleneckVideoData, BottlenecksContent, type BottlenecksContentProps, type BreadcrumbItem, type Break, BreakNotificationPopup, type BreakNotificationPopupProps, type BreakRowProps, type CacheEntryWithPrefetch, CachePrefetchStatus, type CachePrefetchStatusCallback, type CalendarShiftData, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChangeRoleDialog, type ChangeRoleDialogProps, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, ClipsCostView, CompactWorkspaceHealthCard, type CompanyUsageReport, type CompanyUser, type CompanyUserUsageSummary, type CompanyUserWithDetails, type ComponentOverride, ConfirmRemoveUserDialog, type ConfirmRemoveUserDialogProps, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedHlsVideoPlayer, type CroppedHlsVideoPlayerProps, CroppedVideoPlayer, type CroppedVideoPlayerProps, type CurrentShiftResult, CycleTimeChart, type CycleTimeChartProps, CycleTimeOverTimeChart, type CycleTimeOverTimeChartProps, DEFAULT_ANALYTICS_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_CONFIG, DEFAULT_DATABASE_CONFIG, DEFAULT_DATE_TIME_CONFIG, DEFAULT_ENDPOINTS_CONFIG, DEFAULT_ENTITY_CONFIG, DEFAULT_HOME_VIEW_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_SHIFT_DATA, DEFAULT_THEME_CONFIG, DEFAULT_VIDEO_CONFIG, DEFAULT_WORKSPACE_CONFIG, DEFAULT_WORKSPACE_POSITIONS, type DashboardConfig, DashboardHeader, DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DashboardSurface, type DatabaseConfig, DateDisplay, type DateKeyRange, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DummyAware, type DynamicLineShiftConfig, EFFICIENCY_ON_TRACK_THRESHOLD, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type Factory, FactoryAssignmentDropdown, type FactoryAssignmentDropdownProps, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, type FetchIdleTimeReasonsParams, FileManagerFilters, FileManagerFilters as FileManagerFiltersProps, FilterDialogTrigger, FirstTimeLoginDebug, FirstTimeLoginHandler, FittingTitle, type FormatNumberOptions, type FullyIndexedCallback$1 as FullyIndexedCallback, GaugeChart, type GaugeChartProps, GridComponentsPlaceholder, HamburgerButton, type HamburgerButtonProps, Header, type HeaderProps, type HealthAlertConfig, type HealthAlertHistory, HealthDateShiftSelector, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HlsVideoPlayer, type HlsVideoPlayerProps, type HlsVideoPlayerRef, HomeView, type HomeViewConfig, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, HourlyUptimeChart, type HourlyUptimeChartProps, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeClipMetadata, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, IdleTimeVlmConfigProvider, ImprovementCenterView, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, InvitationsTable, InviteUserDialog, KPICard, type KPICardProps, KPIDetailViewWithDisplayNames as KPIDetailView, type KPIDetailViewProps, KPIGrid, type KPIGridProps, KPIHeader, type KPIHeaderProps, KPISection, type KPITrend, KPIsOverviewView, type KPIsOverviewViewProps, type KpiAreaNode, type KpiFactoryNode, type KpiLineHierarchy, KpiTrend, LINE_1_UUID, LINE_2_UUID, LargeOutputProgressChart, type LargeOutputProgressChartProps, LeaderboardDetailViewWithDisplayNames as LeaderboardDetailView, type LeaderboardDetailViewProps, type LeaderboardEntry, Legend, LineAssignmentDropdown, type LineAssignmentDropdownProps, LineChart, type LineChartDataItem, type LineChartProps, type LineDetails, type LineDisplayData, LineHistoryCalendar, type LineHistoryCalendarProps, LineInfo, LineIssueResolutionSummary, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineRecord, type LineShiftConfig, type LineShiftInfo, LineSkuBreakdownItem, type LineSnapshot, type LineSupervisor, LineWhatsAppShareButton, type LineWhatsAppShareProps, LinesService, LiveTimer, LoadingInline, LoadingInline as LoadingInlineProps, LoadingOverlay, LoadingPage, LoadingSkeleton, LoadingSkeleton as LoadingSkeletonProps, LoadingState, LoadingState as LoadingStateProps, LoginPage, type LoginPageProps, LoginView, type LoginViewProps, Logo, type LogoProps, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type MixpanelSessionOptions, MobileMenuProvider, type MobileMenuProviderProps, type MonthWeekRange, MonthlyTrendSummary, type NavItem, type NavItemTrackingEvent, type NavigationMethod, NewClipsNotification, type NewClipsNotificationProps, NoWorkspaceData, OnboardingDemo, OnboardingTour, type OperatorData, type OperatorInfo, OptifyeAgentClient, type OptifyeAgentContext, type OptifyeAgentRequest, type OptifyeAgentResponse, OptifyeLogoLoader, OutputProgressChart, type OutputProgressChartProps, type OverridesMap, type OverviewLineMetric, type OverviewWorkspaceMetric, PageHeader, type PageHeaderProps, type PageOverride, PieChart, type PieChartProps, PlantHeadView, PlayPauseIndicator, type PlayPauseIndicatorProps, PoorPerformingWorkspace, PrefetchConfigurationError, PrefetchError, PrefetchEvents, type PrefetchKey, type PrefetchManagerConfig, type PrefetchManagerStats, type PrefetchOptions, type PrefetchParams$1 as PrefetchParams, type PrefetchRequest, type PrefetchResult, PrefetchStatus$1 as PrefetchStatus, type PrefetchStatusResult, type PrefetchSubscriptionCallbacks, PrefetchTimeoutError, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, ROOT_DASHBOARD_EVENT_NAMES, type RateLimitOptions, type RateLimitResult, type RealtimeLineMetricsProps, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoleAssignmentKind, RoleBadge, type RoleMetadata, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, SENTRY_HANDLED_EVENT_SESSION_LIMIT, SENTRY_HANDLED_EVENT_WINDOW_MS, SENTRY_QUOTA_STORAGE_KEY, type SKU, type SKUConfig, SKUManagementView, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SentryCaptureOptions, type SentryCaptureSeverity, SessionTracker, SessionTrackingContext, SessionTrackingProvider, SettingsPopup, type SettingsPopupItem, type ShiftConfig, ShiftConfiguration, type ShiftData, type ShiftDefinition, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftLineGroup, type ShiftPanelProps, type ShiftSummaryData, type ShiftTime, ShiftsView, type ShiftsViewProps, SideNavBar, type SideNavBarProps, SignupWithInvitation, type SignupWithInvitationProps, SilentErrorBoundary, type SimpleLine, SimpleOnboardingPopup, SingleVideoStream, type SingleVideoStreamProps, Skeleton, SkuBreakdownItem, SkuSegmentItem, type StatusChangeCallback$1 as StatusChangeCallback, type StorageService, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, type SupervisorDetail, SupervisorDropdown, type SupervisorDropdownProps, type SupervisorLine, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TodayUsage, type TodayUsageData, type TodayUsageReport, type TopPerformerRecord, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserNameInput, type UpdateUserProfileInput, type UpdateUserRoleInput, type UptimeDetails, UptimeDonutChart, type UptimeDonutChartProps, UptimeLineChart, type UptimeLineChartProps, UptimeMetricCards, type UptimeMetricCardsProps, type UptimeStatus$1 as UptimeStatus, type UsageBreakdown, type UseActiveBreaksResult, type UseAllWorkspaceMetricsOptions, type UseClipTypesResult, type UseCompanyUsersUsageOptions, type UseCompanyUsersUsageReturn, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseIdleTimeReasonsProps, type UseIdleTimeReasonsResult, type UseLineShiftConfigResult, type UseLineWorkspaceMetricsOptions, type UseMessagesResult, type UseMultiLineShiftConfigsResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseSupervisorsByLineIdsResult, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseUserUsageOptions, type UseUserUsageReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceHealthStatusReturn, type UseWorkspaceOperatorsOptions, type UseWorkspaceUptimeTimelineOptions, type UseWorkspaceUptimeTimelineResult, UserAvatar, type UserAvatarProps, type UserInvitation, UserManagementService, UserManagementTable, type UserProfileConfig, type UserRole, type UserRoleLevel, UserService, type UserUsageDetail, UserUsageDetailModal, type UserUsageDetailModalProps, type UserUsageInfo, UserUsageStats, type UserUsageStatsProps, type UserUsageSummary, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridMetricMode, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WeeklyTopPerformerRecord, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, Workspace, WorkspaceActionUpdate, WorkspaceCameraIpInfo, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig$1 as WorkspaceConfig, WorkspaceCycleTimeMetricCards, type WorkspaceCycleTimeMetricCardsProps, WrappedComponent as WorkspaceDetailView, WorkspaceDetailedMetrics, WorkspaceDisplayNameExample, type WorkspaceDowntimeSegment, WorkspaceGrid, WorkspaceGridItem, type WorkspaceGridItemProps, type WorkspaceGridPosition, type WorkspaceHealth, WorkspaceHealthCard, type WorkspaceHealthInfo, type WorkspaceHealthStatusData, _default as WorkspaceHealthView, type WorkspaceHealthWithStatus, WorkspaceHistoryCalendar, WorkspaceMetricCards, WorkspaceMetricCardsImpl, type WorkspaceMetricCardsProps, WorkspaceMetrics, WorkspaceMonthlyDataFetcher, type WorkspaceMonthlyDataFetcherProps, WorkspaceMonthlyHistory, type WorkspaceMonthlyMetric, WorkspaceMonthlyPdfGenerator, type WorkspaceMonthlyPdfGeneratorProps, type WorkspaceNavigationParams, WorkspacePdfExportButton, type WorkspacePdfExportButtonProps, WorkspacePdfGenerator, type WorkspacePdfGeneratorProps, type WorkspacePosition, type WorkspaceQualityData, type WorkspaceUptimeTimeline, type WorkspaceUptimeTimelinePoint, type WorkspaceUrlMapping, WorkspaceVideoStream, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, addSentryBreadcrumb, aggregateKPIsFromLineMetricsRows, alertsService, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, awardsService, buildDateKey, buildKPIsFromLineMetricsRow, buildKpiLineHierarchy, buildLineSkuBreakdown, buildShiftGroupsKey, canRoleAccessDashboardPath, canRoleAccessTeamManagement, canRoleAssignFactories, canRoleAssignLines, canRoleChangeRole, canRoleInviteRole, canRoleManageCompany, canRoleManageTargets, canRoleManageUsers, canRoleRemoveUser, canRoleViewClipsCost, canRoleViewUsageStats, captureHandledFrontendException, captureSentryException, captureSentryMessage, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearSentryContext, clearWorkspaceDisplayNamesCache, cn, combineLineMetricsRows, countRealSkus, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStorageService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, fetchIdleTimeReasons, fetchLineDummySkuId, fetchLineSkuCatalog, filterDataByDateKeyRange, filterRealSkuBreakdown, forceRefreshWorkspaceDisplayNames, formatAwardMonth, formatDateInZone, formatDateKeyForDisplay, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatRangeLabel, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getActionDisplayName, getActiveShift, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAssignableRoles, getAssignmentColumnLabel, getAvailableShiftIds, getAwardBadgeType, getAwardDescription, getAwardTitle, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getCurrentWeekFullRange, getCurrentWeekToDateRange, getDashboardHeaderTimeInZone, getDateKeyFromDate, getDateKeyFromValue, getDayDateKey, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getInitials, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getMonthKeyBounds, getMonthWeekRanges, getMonthlyTrendComparisonLabel, getNextUpdateInterval, getOperationalDate, getRoleAssignmentKind, getRoleDescription, getRoleLabel, getRoleMetadata, getRoleNavPaths, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShiftWorkDurationSeconds, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getVisibleRolesForCurrentUser, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, identifyCoreUser, initializeCoreMixpanel, isEfficiencyOnTrack, isFactoryScopedRole, isFullMonthRange, isIgnorableFrontendError, isLegacyConfiguration, isLoopbackHostname, isPrefetchError, isRealSku, isSafari, isSupervisorRole, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, lineLeaderboardService, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, normalizeActionFamily, normalizeDateKeyRange, normalizeDateKeyRangeUnbounded, normalizeRoleLevel, optifyeAgentClient, parseDateKeyToDate, parseS3Uri, pickPreferredLineMetricsRow, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSentryQuotaForTests, resetSubscriptionManager, resolveDefaultSkuId, resolveLiveSkuId, s3VideoPreloader, selectPreferredLineMetricsRow, setSentryUserContext, setSentryWorkspaceContext, shouldEnableLocalDevTestLogin, shuffleArray, simulateApiDelay, skuService, startCoreSessionRecording, stopCoreSessionRecording, storeWorkspaceMapping, streamProxyConfig, subscribeWorkspaceDisplayNames, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, transformToChartData, updateThreadTitle, upsertWorkspaceDisplayNameInCache, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useClipsInit, useCompanyClipsCost, useCompanyFastSlowClipFiltersEnabled, useCompanyHasVlmEnabledLine, useCompanyUsersUsage, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHideMobileHeader, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeClipClassifications, useIdleTimeReasons, useIdleTimeVlmConfig, useKpiTrends, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMobileMenu, useMonthlyTrend, useMultiLineShiftConfigs, useNavigation, useOperationalShiftKey, useOptionalSupabase, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShiftGroups, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthLastSeen, useWorkspaceHealthStatus, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, useWorkspaceVideoStreams, userService, videoPrefetchManager, videoPreloader, weeklyTopPerformerService, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };
10441
+ export { ACTION_FAMILIES, ACTION_NAMES, AIAgentView, AcceptInvite, type AcceptInviteProps, AcceptInviteView, type AcceptInviteViewProps, type AccessControlReturn, type AccessScope$1 as AccessScope, type Action, type ActionFamily, type ActionName, type ActionService, ActionThreshold, type ActiveBreak, AdvancedFilterDialog, AdvancedFilterPanel, type AnalyticsConfig, type AppRoleLevel, type AssignUserToFactoriesInput, type AssignUserToLinesInput, AudioService, AuthCallback, type AuthCallbackProps, AuthCallbackView, type AuthCallbackViewProps, type AuthConfig, AuthProvider, AuthService, type AuthStatus, type AuthUser, AuthenticatedBottleneckClipsView, AuthenticatedFactoryView, AuthenticatedHelpView, AuthenticatedHomeView, AuthenticatedShiftsView, AuthenticatedTargetsView, AuthenticatedTicketsView, AuthenticatedWorkspaceHealthView, AvatarUpload, type AvatarUploadProps, type AwardBadgeType, type AwardNotificationRecord, type AwardNotificationType, type AwardRecord, type AwardType, AxelNotificationPopup, type AxelNotificationPopupProps, AxelOrb, type AxelOrbProps, type AxelSuggestion, BackButton, BackButtonMinimal, BarChart, type BarChartDataItem, type BarChartProps, type BarProps, BaseHistoryCalendar, type BaseHistoryCalendarProps, type BaseLineMetric, type BasePerformanceMetric, BottleneckClipsModal, type BottleneckClipsModalProps, type BottleneckClipsNavigationParams, BottleneckClipsView, type BottleneckClipsViewProps, type BottleneckFilterType, type BottleneckVideo, type BottleneckVideoData, BottlenecksContent, type BottlenecksContentProps, type BreadcrumbItem, type Break, BreakNotificationPopup, type BreakNotificationPopupProps, type BreakRowProps, type CacheEntryWithPrefetch, CachePrefetchStatus, type CachePrefetchStatusCallback, type CalendarShiftData, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChangeRoleDialog, type ChangeRoleDialogProps, type ChatMessage, type ChatThread, type CleanupFunction, type ClipCounts, type ClipCountsWithIndex, ClipFilterProvider, type ClipFilterState, type ClipsConfig, ClipsCostView, CompactWorkspaceHealthCard, type CompanyUsageReport, type CompanyUser, type CompanyUserUsageSummary, type CompanyUserWithDetails, type ComponentOverride, ConfirmRemoveUserDialog, type ConfirmRemoveUserDialogProps, CongratulationsOverlay, type CongratulationsOverlayProps, type CoreComponents, type CreateInvitationInput, type CropConfig, CroppedHlsVideoPlayer, type CroppedHlsVideoPlayerProps, CroppedVideoPlayer, type CroppedVideoPlayerProps, type CurrentShiftResult, CycleTimeChart, type CycleTimeChartProps, CycleTimeOverTimeChart, type CycleTimeOverTimeChartProps, DEFAULT_ANALYTICS_CONFIG, DEFAULT_AUTH_CONFIG, DEFAULT_CONFIG, DEFAULT_DATABASE_CONFIG, DEFAULT_DATE_TIME_CONFIG, DEFAULT_ENDPOINTS_CONFIG, DEFAULT_ENTITY_CONFIG, DEFAULT_HOME_VIEW_CONFIG, DEFAULT_MAP_VIEW_CONFIG, DEFAULT_SHIFT_CONFIG, DEFAULT_SHIFT_DATA, DEFAULT_THEME_CONFIG, DEFAULT_VIDEO_CONFIG, DEFAULT_WORKSPACE_CONFIG, DEFAULT_WORKSPACE_POSITIONS, type DashboardConfig, DashboardHeader, DashboardKPIs, DashboardLayout, type DashboardLayoutProps, DashboardOverridesProvider, DashboardProvider, type DashboardService, type DashboardSurface, type DatabaseConfig, DateDisplay, type DateKeyRange, type DateTimeConfig, DateTimeDisplay, type DateTimeDisplayProps, type DayData, type DayHistoryData, type DaySummaryData, DebugAuth, DebugAuthView, DetailedHealthStatus, type DiagnosisOption$1 as DiagnosisOption, DiagnosisVideoModal, type DummyAware, type DynamicLineShiftConfig, EFFICIENCY_ON_TRACK_THRESHOLD, EmptyStateMessage, type EmptyStateMessageProps, EncouragementOverlay, type EndpointsConfig, type EntityConfig, type ErrorCallback$1 as ErrorCallback, type ExtendedCacheMetrics, type Factory, FactoryAssignmentDropdown, type FactoryAssignmentDropdownProps, type FactoryOverviewMetrics, FactoryView, type FactoryViewProps, type FetchIdleTimeReasonsParams, FileManagerFilters, FileManagerFilters as FileManagerFiltersProps, FilterDialogTrigger, FirstTimeLoginDebug, FirstTimeLoginHandler, FittingTitle, type FormatNumberOptions, type FullyIndexedCallback$1 as FullyIndexedCallback, GaugeChart, type GaugeChartProps, GridComponentsPlaceholder, HamburgerButton, type HamburgerButtonProps, Header, type HeaderProps, type HealthAlertConfig, type HealthAlertHistory, HealthDateShiftSelector, type HealthFilterOptions, type HealthMetrics, type HealthStatus, HealthStatusGrid, HealthStatusIndicator, type HealthSummary, HelpView, type HelpViewProps, type HistoricWorkspaceMetrics, type HistoryCalendarProps, HlsVideoPlayer, type HlsVideoPlayerProps, type HlsVideoPlayerRef, HomeView, type HomeViewConfig, type HookOverride, type HourlyAchievement, HourlyOutputChart, type HourlyOutputChartProps, type HourlyPerformance, HourlyUptimeChart, type HourlyUptimeChartProps, type IPrefetchManager, type ISTDateProps, ISTTimer, type ISTTimerProps, type IdleTimeClipMetadata, type IdleTimeReason, type IdleTimeReasonData, type IdleTimeReasonsData, type IdleTimeReasonsResponse, IdleTimeVlmConfigProvider, ImprovementCenterView, InlineEditableText, InteractiveOnboardingTour, InvitationService, type InvitationWithDetails, InvitationsTable, InviteUserDialog, KPICard, type KPICardProps, KPIDetailViewWithDisplayNames as KPIDetailView, type KPIDetailViewProps, KPIGrid, type KPIGridProps, KPIHeader, type KPIHeaderProps, KPISection, type KPITrend, KPIsOverviewView, type KPIsOverviewViewProps, type KpiAreaNode, type KpiFactoryNode, type KpiLineHierarchy, KpiTrend, LINE_1_UUID, LINE_2_UUID, LargeOutputProgressChart, type LargeOutputProgressChartProps, LeaderboardDetailViewWithDisplayNames as LeaderboardDetailView, type LeaderboardDetailViewProps, type LeaderboardEntry, Legend, LineAssignmentDropdown, type LineAssignmentDropdownProps, LineChart, type LineChartDataItem, type LineChartProps, type LineDetails, type LineDisplayData, LineHistoryCalendar, type LineHistoryCalendarProps, LineInfo, LineIssueResolutionSummary, type LineLeaderboardDisplayRow, type LineMetrics, LineMonthlyHistory, type LineMonthlyHistoryProps, type LineMonthlyMetric, LineMonthlyPdfGenerator, type LineMonthlyPdfGeneratorProps, type LineNavigationParams, LinePdfExportButton, type LinePdfExportButtonProps, LinePdfGenerator, type LinePdfGeneratorProps, type LineProps, type LineRecord, type LineShiftConfig, type LineShiftInfo, LineSkuBreakdownItem, type LineSnapshot, type LineSupervisor, LineWhatsAppShareButton, type LineWhatsAppShareProps, LinesService, LiveTimer, LoadingInline, LoadingInline as LoadingInlineProps, LoadingOverlay, LoadingPage, LoadingSkeleton, LoadingSkeleton as LoadingSkeletonProps, LoadingState, LoadingState as LoadingStateProps, LoginPage, type LoginPageProps, LoginView, type LoginViewProps, Logo, type LogoProps, MainLayout, type MainLayoutProps, MapGridView, type MapViewConfig, type Metric, MetricCard, type MetricCardProps$1 as MetricCardProps, type MetricsError, MinimalOnboardingPopup, type MixpanelSessionOptions, MobileMenuProvider, type MobileMenuProviderProps, type MonthWeekRange, MonthlyTrendSummary, type NavItem, type NavItemTrackingEvent, type NavigationMethod, NewClipsNotification, type NewClipsNotificationProps, NoWorkspaceData, OnboardingDemo, OnboardingTour, type OperatorData, type OperatorInfo, OptifyeAgentClient, type OptifyeAgentContext, type OptifyeAgentRequest, type OptifyeAgentResponse, OptifyeLogoLoader, OutputProgressChart, type OutputProgressChartProps, type OverridesMap, type OverviewLineMetric, type OverviewWorkspaceMetric, PageHeader, type PageHeaderProps, type PageOverride, PieChart, type PieChartProps, PlantHeadView, PlayPauseIndicator, type PlayPauseIndicatorProps, PoorPerformingWorkspace, PrefetchConfigurationError, PrefetchError, PrefetchEvents, type PrefetchKey, type PrefetchManagerConfig, type PrefetchManagerStats, type PrefetchOptions, type PrefetchParams$1 as PrefetchParams, type PrefetchRequest, type PrefetchResult, PrefetchStatus$1 as PrefetchStatus, type PrefetchStatusResult, type PrefetchSubscriptionCallbacks, PrefetchTimeoutError, type ProfileMenuItem, ProfileView, type QualityMetric, type QualityOverview, type QualityService, ROOT_DASHBOARD_EVENT_NAMES, type RateLimitOptions, type RateLimitResult, type RealtimeLineMetricsProps, type RealtimeService, RegistryProvider, type RenderReadyCallback$1 as RenderReadyCallback, type RoleAssignmentKind, RoleBadge, type RoleMetadata, type RoutePath, type S3ClipsAPIParams, S3ClipsSupabaseService as S3ClipsService, type S3Config, type S3ListObjectsParams, S3Service, type S3ServiceConfig, SENTRY_HANDLED_EVENT_SESSION_LIMIT, SENTRY_HANDLED_EVENT_WINDOW_MS, SENTRY_QUOTA_STORAGE_KEY, type SKU, type SKUConfig, SKUManagementView, type SOPCategory$1 as SOPCategory, SOPComplianceChart, type SOPComplianceChartProps, SSEChatClient, type SSEEvent, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SentryCaptureOptions, type SentryCaptureSeverity, SessionTracker, SessionTrackingContext, SessionTrackingProvider, SettingsPopup, type SettingsPopupItem, type ShiftConfig, ShiftConfiguration, type ShiftData, type ShiftDefinition, ShiftDisplay, type ShiftHistoryData, type ShiftHoursMap, type ShiftLineGroup, type ShiftPanelProps, type ShiftSummaryData, type ShiftTime, ShiftsView, type ShiftsViewProps, SideNavBar, type SideNavBarProps, SignupWithInvitation, type SignupWithInvitationProps, SilentErrorBoundary, type SimpleLine, SimpleOnboardingPopup, SingleVideoStream, type SingleVideoStreamProps, Skeleton, SkuBreakdownItem, SkuSegmentItem, type StatusChangeCallback$1 as StatusChangeCallback, type StorageService, type StreamProxyConfig, type SubscriberId, SubscriptionManager, SubscriptionManagerProvider, type SupabaseClient, SupabaseProvider, type Supervisor, type SupervisorAssignment, type SupervisorConfig, type SupervisorDetail, SupervisorDropdown, type SupervisorDropdownProps, type SupervisorLine, type SupervisorManagementData, SupervisorManagementView, type SupervisorManagementViewProps, SupervisorService, type Target, TargetWorkspaceGrid, type TargetWorkspaceGridProps, TargetsViewWithDisplayNames as TargetsView, type TargetsViewProps, type TeamManagementPermissions, TeamManagementView, type TeamManagementViewProps, type ThemeColorValue, type ThemeConfig, ThreadSidebar, TicketHistory, TicketHistoryService, type TicketsConfig, TicketsView, type TicketsViewProps, TimeDisplay, TimePickerDropdown, Timer, TimezoneProvider, TimezoneService, type TodayUsage, type TodayUsageData, type TodayUsageReport, type TopPerformerRecord, type TrackingEventProperties, type TrendDirection, type UnderperformingWorkspace, type UnderperformingWorkspaces, type UpdateUserNameInput, type UpdateUserProfileInput, type UpdateUserRoleInput, type UptimeDetails, UptimeDonutChart, type UptimeDonutChartProps, UptimeLineChart, type UptimeLineChartProps, UptimeMetricCards, type UptimeMetricCardsProps, type UptimeStatus$1 as UptimeStatus, type UsageBreakdown, type UseActiveBreaksResult, type UseAllWorkspaceMetricsOptions, type UseClipTypesResult, type UseCompanyUsersUsageOptions, type UseCompanyUsersUsageReturn, type UseDashboardMetricsProps, type UseDynamicShiftConfigResult, type UseFormatNumberResult, type UseIdleTimeReasonsProps, type UseIdleTimeReasonsResult, type UseLineShiftConfigResult, type UseLineWorkspaceMetricsOptions, type UseMessagesResult, type UseMultiLineShiftConfigsResult, type UsePrefetchClipCountsOptions$1 as UsePrefetchClipCountsOptions, type UsePrefetchClipCountsResult$1 as UsePrefetchClipCountsResult, type UseRealtimeLineMetricsProps, type UseSupervisorsByLineIdsResult, type UseTargetsOptions, type UseThreadsResult, type UseTicketHistoryReturn, type UseUserUsageOptions, type UseUserUsageReturn, type UseWorkspaceHealthByIdOptions, type UseWorkspaceHealthStatusReturn, type UseWorkspaceOperatorsOptions, type UseWorkspaceUptimeTimelineOptions, type UseWorkspaceUptimeTimelineResult, UserAvatar, type UserAvatarProps, type UserInvitation, UserManagementService, UserManagementTable, type UserProfileConfig, type UserRole, type UserRoleLevel, UserService, type UserUsageDetail, UserUsageDetailModal, type UserUsageDetailModalProps, type UserUsageInfo, UserUsageStats, type UserUsageStatsProps, type UserUsageSummary, VideoCard, type VideoConfig, type VideoCroppingConfig, type VideoCroppingRect, VideoGridMetricMode, VideoGridView, type VideoIndex, type VideoIndexEntry, type VideoMetadata, VideoPlayer, type VideoPlayerProps, type VideoPlayerRef, VideoPreloader, type VideoSeverity, type VideoSummary, type VideoType, WORKSPACE_POSITIONS, type WeeklyTopPerformerRecord, type WhatsAppSendResult, WhatsAppShareButton, type WhatsAppShareButtonProps, type WhatsappService, Workspace, WorkspaceActionUpdate, WorkspaceCameraIpInfo, WorkspaceCard, type WorkspaceCardProps, type WorkspaceConfig$1 as WorkspaceConfig, WorkspaceCycleTimeMetricCards, type WorkspaceCycleTimeMetricCardsProps, WrappedComponent as WorkspaceDetailView, WorkspaceDetailedMetrics, WorkspaceDisplayNameExample, type WorkspaceDowntimeSegment, WorkspaceGrid, WorkspaceGridItem, type WorkspaceGridItemProps, type WorkspaceGridPosition, type WorkspaceHealth, WorkspaceHealthCard, type WorkspaceHealthInfo, type WorkspaceHealthStatusData, _default as WorkspaceHealthView, type WorkspaceHealthWithStatus, WorkspaceHistoryCalendar, WorkspaceMetricCards, WorkspaceMetricCardsImpl, type WorkspaceMetricCardsProps, WorkspaceMetrics, WorkspaceMonthlyDataFetcher, type WorkspaceMonthlyDataFetcherProps, WorkspaceMonthlyHistory, type WorkspaceMonthlyMetric, WorkspaceMonthlyPdfGenerator, type WorkspaceMonthlyPdfGeneratorProps, type WorkspaceNavigationParams, WorkspacePdfExportButton, type WorkspacePdfExportButtonProps, WorkspacePdfGenerator, type WorkspacePdfGeneratorProps, type WorkspacePosition, type WorkspaceQualityData, type WorkspaceUptimeTimeline, type WorkspaceUptimeTimelinePoint, type WorkspaceUrlMapping, WorkspaceVideoStream, WorkspaceWhatsAppShareButton, type WorkspaceWhatsAppShareProps, actionService, addSentryBreadcrumb, aggregateKPIsFromLineMetricsRows, alertsService, apiUtils, areAllLinesOnSameShift, authCoreService, authOTPService, authRateLimitService, awardsService, buildDateKey, buildKPIsFromLineMetricsRow, buildKpiLineHierarchy, buildLineLeaderboardRows, buildLineSkuBreakdown, buildShiftGroupsKey, canRoleAccessDashboardPath, canRoleAccessTeamManagement, canRoleAssignFactories, canRoleAssignLines, canRoleChangeRole, canRoleInviteRole, canRoleManageCompany, canRoleManageTargets, canRoleManageUsers, canRoleRemoveUser, canRoleViewClipsCost, canRoleViewUsageStats, captureHandledFrontendException, captureSentryException, captureSentryMessage, checkRateLimit, clearAllRateLimits, clearRateLimit, clearS3VideoCache, clearS3VideoFromCache, clearSentryContext, clearWorkspaceDisplayNamesCache, cn, combineLineMetricsRows, countRealSkus, createDefaultKPIs, createInvitationService, createLinesService, createSessionTracker, createStorageService, createStreamProxyHandler, createSupabaseClient, createSupervisorService, createThrottledReload, createUserManagementService, createUserService, dashboardService, deleteThread, fetchIdleTimeReasons, fetchLineDummySkuId, fetchLineSkuCatalog, filterDataByDateKeyRange, filterRealSkuBreakdown, forceRefreshWorkspaceDisplayNames, formatAwardMonth, formatDateInZone, formatDateKeyForDisplay, formatDateTimeInZone, formatDuration, formatISTDate, formatIdleTime, formatRangeLabel, formatReasonLabel, formatRelativeTime, formatTimeInZone, fromUrlFriendlyName, getActionDisplayName, getActiveShift, getAllLineDisplayNames, getAllThreadMessages, getAllWorkspaceDisplayNamesAsync, getAllWorkspaceDisplayNamesSnapshot, getAnonClient, getAssignableRoles, getAssignmentColumnLabel, getAvailableShiftIds, getAwardBadgeType, getAwardDescription, getAwardTitle, getBrowserName, getCameraNumber, getCompanyMetricsTableName, getConfigurableShortWorkspaceDisplayName, getConfigurableWorkspaceDisplayName, getConfiguredLineIds, getCoreSessionRecordingProperties, getCoreSessionReplayUrl, getCurrentShift, getCurrentShiftForLine, getCurrentTimeInZone, getCurrentWeekFullRange, getCurrentWeekToDateRange, getDashboardHeaderTimeInZone, getDateKeyFromDate, getDateKeyFromValue, getDayDateKey, getDaysDifferenceInZone, getDefaultCameraStreamUrl, getDefaultLineId, getDefaultTabForWorkspace, getInitials, getLineDisplayName, getManufacturingInsights, getMetricsTablePrefix, getMonthKeyBounds, getMonthWeekRanges, getMonthlyTrendComparisonLabel, getNextUpdateInterval, getOperationalDate, getRoleAssignmentKind, getRoleDescription, getRoleLabel, getRoleMetadata, getRoleNavPaths, getS3SignedUrl, getS3VideoSrc, getShiftData, getShiftNameById, getShiftWorkDurationSeconds, getShortShiftName, getShortWorkspaceDisplayName, getShortWorkspaceDisplayNameAsync, getStoredWorkspaceMappings, getSubscriptionManager, getThreadMessages, getUniformShiftGroup, getUserThreads, getUserThreadsPaginated, getVisibleRolesForCurrentUser, getWorkspaceDisplayName, getWorkspaceDisplayNameAsync, getWorkspaceDisplayNamesMap, getWorkspaceFromUrl, getWorkspaceNavigationParams, groupLinesByShift, hasAnyShiftData, identifyCoreUser, initializeCoreMixpanel, isEfficiencyOnTrack, isFactoryScopedRole, isFullMonthRange, isIgnorableFrontendError, isLegacyConfiguration, isLoopbackHostname, isPrefetchError, isRealSku, isSafari, isSupervisorRole, isTransitionPeriod, isUrlPermanentlyFailed, isValidFactoryViewConfiguration, isValidLineInfoPayload, isValidPrefetchParams, isValidPrefetchStatus, isValidWorkspaceDetailedMetricsPayload, isValidWorkspaceMetricsPayload, isWorkspaceDisplayNamesLoaded, isWorkspaceDisplayNamesLoading, lineLeaderboardService, linesService, mergeWithDefaultConfig, migrateLegacyConfiguration, normalizeActionFamily, normalizeDateKeyRange, normalizeDateKeyRangeUnbounded, normalizeRoleLevel, optifyeAgentClient, parseDateKeyToDate, parseS3Uri, pickPreferredLineMetricsRow, preInitializeWorkspaceDisplayNames, preloadS3Video, preloadS3VideoUrl, preloadS3VideosUrl, preloadVideoUrl, preloadVideosUrl, qualityService, realtimeService, refreshWorkspaceDisplayNames, resetCoreMixpanel, resetFailedUrl, resetSentryQuotaForTests, resetSubscriptionManager, resolveDefaultSkuId, resolveLiveSkuId, s3VideoPreloader, selectPreferredLineMetricsRow, setSentryUserContext, setSentryWorkspaceContext, shouldEnableLocalDevTestLogin, shuffleArray, simulateApiDelay, skuService, startCoreSessionRecording, stopCoreSessionRecording, storeWorkspaceMapping, streamProxyConfig, subscribeWorkspaceDisplayNames, throttledReloadDashboard, toUrlFriendlyName, trackCoreEvent, trackCorePageView, transformToChartData, updateThreadTitle, upsertWorkspaceDisplayNameInCache, useAccessControl, useActiveBreaks, useActiveLineId, useAllWorkspaceMetrics, useAnalyticsConfig, useAppTimezone, useAudioService, useAuth, useAuthConfig, useAxelNotifications, useCanSaveTargets, useClipFilter, useClipTypes, useClipTypesWithCounts, useClipsInit, useCompanyClipsCost, useCompanyFastSlowClipFiltersEnabled, useCompanyHasVlmEnabledLine, useCompanyUsersUsage, useComponentOverride, useCustomConfig, useDashboardConfig, useDashboardMetrics, useDatabaseConfig, useDateFormatter, useDateTimeConfig, useDynamicShiftConfig, useEndpointsConfig, useEntityConfig, useFactoryOverviewMetrics, useFeatureFlags, useFormatNumber, useHasLineAccess, useHideMobileHeader, useHistoricWorkspaceMetrics, useHlsStream, useHlsStreamWithCropping, useHookOverride, useHourEndTimer, useHourlyTargetAchievements, useHourlyTargetMisses, useIdleTimeClipClassifications, useIdleTimeReasons, useIdleTimeVlmConfig, useKpiTrends, useLeaderboardMetrics, useLineDetailedMetrics, useLineKPIs, useLineMetrics, useLineShiftConfig, useLineSupervisor, useLineWorkspaceMetrics, useLines, useMessages, useMetrics, useMobileMenu, useMonthlyTrend, useMultiLineShiftConfigs, useNavigation, useOperationalShiftKey, useOptionalSupabase, useOverrides, usePageOverride, usePrefetchClipCounts, useRealtimeLineMetrics, useRegistry, useSKUs, useSessionKeepAlive, useSessionTracking, useSessionTrackingContext, useShiftConfig, useShiftGroups, useShifts, useSubscriptionManager, useSubscriptionManagerSafe, useSupabase, useSupabaseClient, useSupervisorsByLineIds, useTargets, useTeamManagementPermissions, useTheme, useThemeConfig, useThreads, useTicketHistory, useTimezoneContext, useUserLineAccess, useUserUsage, useVideoConfig, useWorkspaceConfig, useWorkspaceDetailedMetrics, useWorkspaceDisplayName, useWorkspaceDisplayNames, useWorkspaceDisplayNamesMap, useWorkspaceHealthById, useWorkspaceHealthLastSeen, useWorkspaceHealthStatus, useWorkspaceMetrics, useWorkspaceNavigation, useWorkspaceOperators, useWorkspaceUptimeTimeline, useWorkspaceVideoStreams, userService, videoPrefetchManager, videoPreloader, weeklyTopPerformerService, whatsappService, withAccessControl, withAuth, withRegistry, withTimezone, workspaceHealthService, workspaceService };