@devtable/dashboard 14.28.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,11 @@ 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
+ };
219
224
  scroll_to_panel: {
220
225
  label: string;
221
226
  panel: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -216,6 +216,11 @@ 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
+ };
219
224
  scroll_to_panel: {
220
225
  label: string;
221
226
  panel: string;
@@ -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;