@yugabytedb/perf-advisor-ui 1.0.157 → 1.0.159
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/components/SecondaryDashboard/AnomalyPossibleCause.d.ts +2 -0
- package/dist/components/SecondaryDashboard/IndexAnomalySummary.d.ts +8 -0
- package/dist/esm/index.js +7421 -7244
- package/dist/esm/index.js.map +1 -1
- package/dist/helpers/anomalyRecommendationRenderer.d.ts +32 -0
- package/dist/helpers/constants.d.ts +4 -2
- package/dist/helpers/dtos.d.ts +14 -0
- package/package.json +1 -1
|
@@ -3,5 +3,7 @@ import { AnomalyGroup } from '../../helpers/dtos';
|
|
|
3
3
|
export interface AnomalyPossibleCauseProps {
|
|
4
4
|
accordianExpanded?: boolean;
|
|
5
5
|
anomalyGroupData: AnomalyGroup | null;
|
|
6
|
+
universeUuid?: string;
|
|
7
|
+
apiUrl?: string;
|
|
6
8
|
}
|
|
7
9
|
export declare const AnomalyPossibleCause: React.FC<AnomalyPossibleCauseProps>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { IndexAnomalyDetails } from '../../helpers/dtos';
|
|
3
|
+
export interface IndexAnomalySummaryProps {
|
|
4
|
+
details: IndexAnomalyDetails;
|
|
5
|
+
universeUuid?: string;
|
|
6
|
+
apiUrl?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const IndexAnomalySummary: React.FC<IndexAnomalySummaryProps>;
|