@devtable/dashboard 14.27.0 → 14.28.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.
package/dist/i18n/en.d.ts CHANGED
@@ -216,6 +216,10 @@ export declare const en: {
216
216
  label: string;
217
217
  view: string;
218
218
  };
219
+ scroll_to_panel: {
220
+ label: string;
221
+ panel: string;
222
+ };
219
223
  set_filter_values: {
220
224
  label: string;
221
225
  set_filter: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -216,6 +216,10 @@ export declare const zh: {
216
216
  label: string;
217
217
  view: string;
218
218
  };
219
+ scroll_to_panel: {
220
+ label: string;
221
+ panel: string;
222
+ };
219
223
  set_filter_values: {
220
224
  label: string;
221
225
  set_filter: string;
@@ -0,0 +1,5 @@
1
+ import { IDashboardOperationSchema } from '../../../types/plugin';
2
+ export interface IScrollToPanelOperationConfig {
3
+ panelID: string;
4
+ }
5
+ export declare const ScrollToPanel: IDashboardOperationSchema;