@yugabytedb/perf-advisor-ui 1.0.44 → 1.0.45
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -886,9 +886,10 @@ declare const YBToggleField: <T extends FieldValues>(props: YBInputFieldProps<T>
|
|
|
886
886
|
interface MetricSplitSelectorProps {
|
|
887
887
|
metricSplitSelectors: any;
|
|
888
888
|
anomalyData?: Anomaly | null;
|
|
889
|
+
shouldShowViewMetricsLabel?: boolean;
|
|
889
890
|
onSplitTypeSelected: (selectedOption: MetricMeasure) => void;
|
|
890
891
|
}
|
|
891
|
-
declare const MetricSplitSelector: ({ metricSplitSelectors, onSplitTypeSelected, anomalyData }: MetricSplitSelectorProps) => JSX.Element;
|
|
892
|
+
declare const MetricSplitSelector: ({ metricSplitSelectors, onSplitTypeSelected, shouldShowViewMetricsLabel, anomalyData }: MetricSplitSelectorProps) => JSX.Element;
|
|
892
893
|
|
|
893
894
|
interface OutlierSelectorProps {
|
|
894
895
|
metricOutlierSelectors: any;
|