@grafana/plugin-types 0.0.49 → 0.0.51
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.
|
@@ -267,6 +267,10 @@ export interface PluginSchema {
|
|
|
267
267
|
* Initialize plugin on startup. By default, the plugin initializes on first use, but when preload is set to true the plugin loads when the Grafana web app loads the first time. Only applicable to app plugins. When setting to `true`, implement [frontend code splitting](https://grafana.com/developers/plugin-tools/get-started/best-practices#app-plugins) to minimise performance implications.
|
|
268
268
|
*/
|
|
269
269
|
preload?: boolean;
|
|
270
|
+
/**
|
|
271
|
+
* For panel plugins. If set to true, the plugin's suggestions supplier will be invoked and any suggestions returned will be included in the Suggestions pane in the Panel Editor.
|
|
272
|
+
*/
|
|
273
|
+
suggestions?: boolean;
|
|
270
274
|
/**
|
|
271
275
|
* For data source plugins. There is a query options section in the plugin's query editor and these options can be turned on if needed.
|
|
272
276
|
*/
|