adds initial user defined panels

This commit is contained in:
2025-12-23 16:41:21 -05:00
parent a110aa6376
commit ebbf864af9
33 changed files with 2188 additions and 370 deletions

View File

@@ -0,0 +1,13 @@
export type DynamicComponentData =
| { type: 'text'; text: string; justify_right: boolean }
| { type: 'telemetry'; data: string }
| {
type: 'grid';
columns: number;
equal_width: boolean;
cells: OptionalDynamicComponentData[][];
};
export type OptionalDynamicComponentData =
| { type: 'none' }
| DynamicComponentData;