@devtable/dashboard 12.3.0 → 12.4.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.
@@ -15,6 +15,7 @@ interface IDashboardProps {
15
15
  filterValues?: Record<string, any>;
16
16
  onFilterValuesChange?: (filterValues: Record<string, any>) => void;
17
17
  onExit: OnExitCallback;
18
+ lang: string;
18
19
  }
19
20
  export interface IDashboardModel {
20
21
  readonly json: IDashboard;
@@ -1,9 +1,4 @@
1
1
  import { EViewComponentType, ViewMetaInstance } from '../../../../../../model';
2
- export declare const viewComponentNames: {
3
- div: string;
4
- modal: string;
5
- tabs: string;
6
- };
7
2
  export declare const EditViewForm: (({ view }: {
8
3
  view?: ({
9
4
  id: string;
@@ -11,8 +11,9 @@ interface IReadOnlyDashboard {
11
11
  setFullScreenPanelID: (v: string) => void;
12
12
  filterValues?: Record<string, any>;
13
13
  onFilterValuesChange?: (filterValues: Record<string, any>) => void;
14
+ lang: string;
14
15
  }
15
- export declare const ReadOnlyDashboard: (({ context, dashboard, content, className, config, fullScreenPanelID, setFullScreenPanelID, filterValues, onFilterValuesChange, }: IReadOnlyDashboard) => import('./react/jsx-runtime').JSX.Element) & {
16
+ export declare const ReadOnlyDashboard: (({ context, dashboard, content, className, config, fullScreenPanelID, setFullScreenPanelID, filterValues, onFilterValuesChange, lang, }: IReadOnlyDashboard) => import('./react/jsx-runtime').JSX.Element) & {
16
17
  displayName: string;
17
18
  };
18
19
  export {};