@devtable/dashboard 14.27.0 → 14.29.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,15 @@ export declare const en: {
216
216
  label: string;
217
217
  view: string;
218
218
  };
219
+ switch_tab: {
220
+ label: string;
221
+ view: string;
222
+ tab: string;
223
+ };
224
+ scroll_to_panel: {
225
+ label: string;
226
+ panel: string;
227
+ };
219
228
  set_filter_values: {
220
229
  label: string;
221
230
  set_filter: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -216,6 +216,15 @@ export declare const zh: {
216
216
  label: string;
217
217
  view: string;
218
218
  };
219
+ switch_tab: {
220
+ label: string;
221
+ view: string;
222
+ tab: string;
223
+ };
224
+ scroll_to_panel: {
225
+ label: string;
226
+ panel: string;
227
+ };
219
228
  set_filter_values: {
220
229
  label: string;
221
230
  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;
@@ -0,0 +1,6 @@
1
+ import { IDashboardOperationSchema } from '../../../types/plugin';
2
+ export interface ISwitchTabOperationConfig {
3
+ viewID: string;
4
+ tab: string;
5
+ }
6
+ export declare const SwitchTab: IDashboardOperationSchema;