adds charts panel

This commit is contained in:
2025-02-15 15:42:33 -08:00
parent 69c0b0965d
commit e9751c2489
16 changed files with 600 additions and 42 deletions

View File

@@ -1,8 +1,8 @@
import type { RouteLocationRaw } from 'vue-router';
export enum PanelHeirarchyType {
LEAF,
FOLDER,
LEAF = 'leaf',
FOLDER = 'folder',
}
export type PanelHeirarchyLeaf = {
@@ -37,6 +37,12 @@ export function getPanelHeirarchy(): PanelHeirarchyChildren {
type: PanelHeirarchyType.LEAF,
});
result.push({
name: 'Chart',
to: { name: 'chart' },
type: PanelHeirarchyType.LEAF,
});
return result;
}