@optifye/dashboard-core 6.12.48 → 6.12.49
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/automation.js +12 -12
- package/dist/automation.mjs +12 -12
- package/dist/index.css +188 -25
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3977 -3329
- package/dist/index.mjs +1618 -970
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1110,6 +1110,7 @@ interface RedFlowTimelineBin {
|
|
|
1110
1110
|
actual_ppm?: number | null;
|
|
1111
1111
|
target_ppm?: number | null;
|
|
1112
1112
|
efficiency_percent?: number | null;
|
|
1113
|
+
is_idle?: boolean | null;
|
|
1113
1114
|
}
|
|
1114
1115
|
interface RedFlowWorstMinute {
|
|
1115
1116
|
start_time?: string | null;
|
|
@@ -7822,6 +7823,7 @@ interface HourlyOutputChartProps {
|
|
|
7822
7823
|
onHourClick?: (payload: HourlyOutputBarClickPayload) => void;
|
|
7823
7824
|
onWatchClipsClick?: (payload: HourlyOutputBarClickPayload) => void;
|
|
7824
7825
|
onAiSummaryClick?: (payload: HourlyOutputBarClickPayload) => void;
|
|
7826
|
+
onSelectSku?: (skuId: string | null) => void;
|
|
7825
7827
|
}
|
|
7826
7828
|
|
|
7827
7829
|
declare const HourlyOutputChart: (props: HourlyOutputChartProps) => react_jsx_runtime.JSX.Element;
|