@optifye/dashboard-core 6.5.0 → 6.5.2

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
@@ -1950,10 +1950,6 @@ body {
1950
1950
  --tw-bg-opacity: 1;
1951
1951
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
1952
1952
  }
1953
- .bg-amber-600 {
1954
- --tw-bg-opacity: 1;
1955
- background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
1956
- }
1957
1953
  .bg-black {
1958
1954
  --tw-bg-opacity: 1;
1959
1955
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
@@ -2094,6 +2090,10 @@ body {
2094
2090
  --tw-bg-opacity: 1;
2095
2091
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
2096
2092
  }
2093
+ .bg-green-400 {
2094
+ --tw-bg-opacity: 1;
2095
+ background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
2096
+ }
2097
2097
  .bg-green-50 {
2098
2098
  --tw-bg-opacity: 1;
2099
2099
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
@@ -2141,6 +2141,10 @@ body {
2141
2141
  --tw-bg-opacity: 1;
2142
2142
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
2143
2143
  }
2144
+ .bg-red-400 {
2145
+ --tw-bg-opacity: 1;
2146
+ background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
2147
+ }
2144
2148
  .bg-red-400\/50 {
2145
2149
  background-color: rgb(248 113 113 / 0.5);
2146
2150
  }
@@ -2164,10 +2168,6 @@ body {
2164
2168
  .bg-red-500\/40 {
2165
2169
  background-color: rgb(239 68 68 / 0.4);
2166
2170
  }
2167
- .bg-red-600 {
2168
- --tw-bg-opacity: 1;
2169
- background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
2170
- }
2171
2171
  .bg-red-700 {
2172
2172
  --tw-bg-opacity: 1;
2173
2173
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
@@ -3718,6 +3718,10 @@ input[type=range]:active::-moz-range-thumb {
3718
3718
  --tw-bg-opacity: 1;
3719
3719
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
3720
3720
  }
3721
+ .focus\:bg-gray-50:focus {
3722
+ --tw-bg-opacity: 1;
3723
+ background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
3724
+ }
3721
3725
  .focus\:bg-white:focus {
3722
3726
  --tw-bg-opacity: 1;
3723
3727
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
@@ -4406,9 +4410,6 @@ input[type=range]:active::-moz-range-thumb {
4406
4410
  .dark\:bg-blue-900\/20 {
4407
4411
  background-color: rgb(30 58 138 / 0.2);
4408
4412
  }
4409
- .dark\:bg-blue-900\/30 {
4410
- background-color: rgb(30 58 138 / 0.3);
4411
- }
4412
4413
  .dark\:bg-emerald-900\/50 {
4413
4414
  background-color: rgb(6 78 59 / 0.5);
4414
4415
  }
@@ -4511,10 +4512,6 @@ input[type=range]:active::-moz-range-thumb {
4511
4512
  --tw-text-opacity: 1;
4512
4513
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
4513
4514
  }
4514
- .dark\:text-blue-400 {
4515
- --tw-text-opacity: 1;
4516
- color: rgb(96 165 250 / var(--tw-text-opacity, 1));
4517
- }
4518
4515
  .dark\:text-emerald-300 {
4519
4516
  --tw-text-opacity: 1;
4520
4517
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
package/dist/index.d.mts CHANGED
@@ -1232,6 +1232,14 @@ declare class S3ClipsService {
1232
1232
  * Fetch clips (main method for compatibility)
1233
1233
  */
1234
1234
  fetchClips(params: S3ClipsAPIParams): Promise<BottleneckVideoData[] | VideoSummary>;
1235
+ /**
1236
+ * Batch fetch multiple videos in parallel
1237
+ */
1238
+ batchFetchVideos(workspaceId: string, date: string, shiftId: string | number, requests: Array<{
1239
+ category: string;
1240
+ index: number;
1241
+ includeMetadata?: boolean;
1242
+ }>): Promise<BottleneckVideoData[]>;
1235
1243
  /**
1236
1244
  * Get videos page using pagination API
1237
1245
  */
@@ -5184,7 +5192,6 @@ declare const CompactWorkspaceHealthCard: React__default.FC<CompactWorkspaceHeal
5184
5192
  interface HealthStatusGridProps {
5185
5193
  workspaces: WorkspaceHealthWithStatus[];
5186
5194
  onWorkspaceClick?: (workspace: WorkspaceHealthWithStatus) => void;
5187
- viewMode?: 'grid' | 'list';
5188
5195
  showFilters?: boolean;
5189
5196
  groupBy?: 'none' | 'line' | 'status';
5190
5197
  className?: string;
package/dist/index.d.ts CHANGED
@@ -1232,6 +1232,14 @@ declare class S3ClipsService {
1232
1232
  * Fetch clips (main method for compatibility)
1233
1233
  */
1234
1234
  fetchClips(params: S3ClipsAPIParams): Promise<BottleneckVideoData[] | VideoSummary>;
1235
+ /**
1236
+ * Batch fetch multiple videos in parallel
1237
+ */
1238
+ batchFetchVideos(workspaceId: string, date: string, shiftId: string | number, requests: Array<{
1239
+ category: string;
1240
+ index: number;
1241
+ includeMetadata?: boolean;
1242
+ }>): Promise<BottleneckVideoData[]>;
1235
1243
  /**
1236
1244
  * Get videos page using pagination API
1237
1245
  */
@@ -5184,7 +5192,6 @@ declare const CompactWorkspaceHealthCard: React__default.FC<CompactWorkspaceHeal
5184
5192
  interface HealthStatusGridProps {
5185
5193
  workspaces: WorkspaceHealthWithStatus[];
5186
5194
  onWorkspaceClick?: (workspace: WorkspaceHealthWithStatus) => void;
5187
- viewMode?: 'grid' | 'list';
5188
5195
  showFilters?: boolean;
5189
5196
  groupBy?: 'none' | 'line' | 'status';
5190
5197
  className?: string;