@optifye/dashboard-core 4.2.4 → 4.2.6
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.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2440 -2439
- package/dist/index.mjs +2442 -2441
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3370,6 +3370,11 @@ interface BottlenecksContentProps {
|
|
|
3370
3370
|
* Optional date to fetch clips for (defaults to current date)
|
|
3371
3371
|
*/
|
|
3372
3372
|
date?: string;
|
|
3373
|
+
/**
|
|
3374
|
+
* Optional shift ID for fetching clips (0 = Day shift, 1 = Night shift)
|
|
3375
|
+
* If not provided, defaults to current shift
|
|
3376
|
+
*/
|
|
3377
|
+
shift?: string | number;
|
|
3373
3378
|
/**
|
|
3374
3379
|
* Optional className for styling
|
|
3375
3380
|
*/
|
|
@@ -4164,6 +4169,7 @@ type CoreComponents = {
|
|
|
4164
4169
|
CardFooter: any;
|
|
4165
4170
|
Button: any;
|
|
4166
4171
|
HourlyOutputChart: any;
|
|
4172
|
+
VideoGridView: any;
|
|
4167
4173
|
};
|
|
4168
4174
|
declare const useRegistry: () => CoreComponents;
|
|
4169
4175
|
interface RegistryProviderProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -3370,6 +3370,11 @@ interface BottlenecksContentProps {
|
|
|
3370
3370
|
* Optional date to fetch clips for (defaults to current date)
|
|
3371
3371
|
*/
|
|
3372
3372
|
date?: string;
|
|
3373
|
+
/**
|
|
3374
|
+
* Optional shift ID for fetching clips (0 = Day shift, 1 = Night shift)
|
|
3375
|
+
* If not provided, defaults to current shift
|
|
3376
|
+
*/
|
|
3377
|
+
shift?: string | number;
|
|
3373
3378
|
/**
|
|
3374
3379
|
* Optional className for styling
|
|
3375
3380
|
*/
|
|
@@ -4164,6 +4169,7 @@ type CoreComponents = {
|
|
|
4164
4169
|
CardFooter: any;
|
|
4165
4170
|
Button: any;
|
|
4166
4171
|
HourlyOutputChart: any;
|
|
4172
|
+
VideoGridView: any;
|
|
4167
4173
|
};
|
|
4168
4174
|
declare const useRegistry: () => CoreComponents;
|
|
4169
4175
|
interface RegistryProviderProps {
|