TextPanel: Fixes so panel title is updated when variables change (#30884)

* TextPanel: Fixes so panel title is updated when variables change

* Tests: fixes tests

* Chore: updates after PR comments
This commit is contained in:
Hugo Häggmark
2021-02-09 06:05:34 +01:00
committed by GitHub
parent 238add18ab
commit f42bb84cbf
14 changed files with 318 additions and 243 deletions

View File

@@ -0,0 +1,7 @@
/**
* A coordinate on a two dimensional plane.
*/
export interface CartesianCoords2D {
x: number;
y: number;
}

View File

@@ -29,5 +29,6 @@ export * from './explore';
export * from './legacyEvents';
export * from './live';
export * from './variables';
export * from './geometry';
export { GrafanaConfig, BuildInfo, FeatureToggles, LicenseInfo } from './config';