@yugabytedb/perf-advisor-ui 1.0.52 → 1.0.53-alpha.14
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
|
@@ -838,7 +838,7 @@ interface YBPanelItemProps {
|
|
|
838
838
|
body: any;
|
|
839
839
|
title?: string;
|
|
840
840
|
}
|
|
841
|
-
declare const YBPanelItem: ({ noBackground, className, bodyClassName, children, body, header, title
|
|
841
|
+
declare const YBPanelItem: ({ noBackground, className, bodyClassName, children, body, header, title }: YBPanelItemProps) => JSX.Element;
|
|
842
842
|
|
|
843
843
|
interface CustomTableOptions extends MUIDataTableOptions {
|
|
844
844
|
customHeader?: ReactNode;
|
|
@@ -1251,6 +1251,7 @@ declare const METRIC_NAMES: {
|
|
|
1251
1251
|
table_memory_rejections: string;
|
|
1252
1252
|
table_compaction: string;
|
|
1253
1253
|
table_block_cache_hit_miss: string;
|
|
1254
|
+
table_rocksdb_blooms_checked_and_useful: string;
|
|
1254
1255
|
table_mem_tracker_db_memtable: string;
|
|
1255
1256
|
};
|
|
1256
1257
|
declare const METRICS_SESSION_STORAGE_KEY = "METRICS_NAMES";
|