Add gridstack dashboard layout

This commit is contained in:
Meierschlumpf
2022-12-10 22:14:31 +01:00
parent b7bb1302e4
commit 001890d763
39 changed files with 2822 additions and 918 deletions

View File

@@ -31,13 +31,14 @@ export interface WeatherIntegrationType extends TileBaseType {
export interface DashDotIntegrationType extends TileBaseType {
properties: {
graphs: DashDotIntegrationGraphType[];
graphs: DashDotGraphType[];
isStorageMultiView: boolean;
isCpuMultiView: boolean;
isCompactView: boolean;
url: string;
};
}
type DashDotIntegrationGraphType = { name: DashDotGraphType; isMultiView?: boolean };
export type DashDotGraphType = 'cpu' | 'storage' | 'ram' | 'network' | 'gpu';
export interface BitTorrentIntegrationType extends TileBaseType {