@devtable/dashboard 14.4.3 → 14.5.0

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.
@@ -108,9 +108,18 @@ export interface IPanelScopeConfigMigrator {
108
108
  export interface IConfigMigrator extends IPanelScopeConfigMigrator {
109
109
  migrate(ctx: IConfigMigrationContext): Promise<void>;
110
110
  }
111
+ export interface IPanelAddonRenderProps {
112
+ viz: VizInstance;
113
+ isInEditMode: boolean;
114
+ }
115
+ export interface IPanelAddon {
116
+ name: string;
117
+ addonRender: React.ComponentType<IPanelAddonRenderProps>;
118
+ }
111
119
  export interface IPluginManifest {
112
120
  viz: VizComponent[];
113
121
  color: IColorPaletteItem[];
122
+ panelAddon?: IPanelAddon[];
114
123
  }
115
124
  export interface IDashboardPlugin {
116
125
  id: string;
package/dist/version.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "semver": "14.4.3",
3
- "version": "050ef2452e3157d0a47690adfc4426f49962bbec"
2
+ "semver": "14.5.0",
3
+ "version": "c2bab85e44ce48294282204f7cb089e3791bfa77"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "14.4.3",
3
+ "version": "14.5.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",