@optifye/dashboard-core 6.12.1 → 6.12.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.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +327 -267
- package/dist/index.mjs +327 -267
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7754,9 +7754,15 @@ declare const CycleTimeOverTimeChart: React__default.FC<CycleTimeOverTimeChartPr
|
|
|
7754
7754
|
interface HourlyOutputChartProps {
|
|
7755
7755
|
data: number[];
|
|
7756
7756
|
pphThreshold: number;
|
|
7757
|
+
/**
|
|
7758
|
+
* Authoritative per-bucket target series from the backend. Explicit `null`
|
|
7759
|
+
* means "hide the target line"; omitted means the chart may fall back to a
|
|
7760
|
+
* local legacy target plan.
|
|
7761
|
+
*/
|
|
7757
7762
|
hourlyTargetOutput?: Array<number | null> | null;
|
|
7758
7763
|
shiftStart: string;
|
|
7759
7764
|
shiftEnd?: string;
|
|
7765
|
+
shiftBreaks?: Break[];
|
|
7760
7766
|
showIdleTime?: boolean;
|
|
7761
7767
|
idleTimeHourly?: Record<string, any> | null;
|
|
7762
7768
|
idleTimeClips?: IdleTimeClipMetadata[];
|
package/dist/index.d.ts
CHANGED
|
@@ -7754,9 +7754,15 @@ declare const CycleTimeOverTimeChart: React__default.FC<CycleTimeOverTimeChartPr
|
|
|
7754
7754
|
interface HourlyOutputChartProps {
|
|
7755
7755
|
data: number[];
|
|
7756
7756
|
pphThreshold: number;
|
|
7757
|
+
/**
|
|
7758
|
+
* Authoritative per-bucket target series from the backend. Explicit `null`
|
|
7759
|
+
* means "hide the target line"; omitted means the chart may fall back to a
|
|
7760
|
+
* local legacy target plan.
|
|
7761
|
+
*/
|
|
7757
7762
|
hourlyTargetOutput?: Array<number | null> | null;
|
|
7758
7763
|
shiftStart: string;
|
|
7759
7764
|
shiftEnd?: string;
|
|
7765
|
+
shiftBreaks?: Break[];
|
|
7760
7766
|
showIdleTime?: boolean;
|
|
7761
7767
|
idleTimeHourly?: Record<string, any> | null;
|
|
7762
7768
|
idleTimeClips?: IdleTimeClipMetadata[];
|