@devtable/dashboard 11.9.0 → 11.10.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.
Files changed (32) hide show
  1. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +2 -95
  2. package/dist/components/plugins/plugin-context.d.ts +2 -95
  3. package/dist/components/plugins/viz-manager/components.d.ts +6 -6
  4. package/dist/components/view/layout/edit-layout.d.ts +9 -0
  5. package/dist/components/view/layout/index.d.ts +2 -2
  6. package/dist/components/view/layout/render-layout.d.ts +9 -0
  7. package/dist/contexts/panel-context.d.ts +4 -189
  8. package/dist/dashboard-editor/model/layouts/index.d.ts +1 -0
  9. package/dist/dashboard-editor/model/layouts/layouts.d.ts +1159 -0
  10. package/dist/dashboard-editor/model/panels/panel.d.ts +1 -38
  11. package/dist/dashboard-editor/model/views/index.d.ts +3 -0
  12. package/dist/dashboard-editor/model/views/view.d.ts +1 -0
  13. package/dist/dashboard-editor/ui/header/breakpoint-switcher/edit-breakpoints.d.ts +5 -0
  14. package/dist/dashboard-editor/ui/header/breakpoint-switcher/index.d.ts +3 -0
  15. package/dist/dashboard.es.js +7752 -7248
  16. package/dist/dashboard.umd.js +75 -75
  17. package/dist/model/meta-model/dashboard/content/index.d.ts +1 -0
  18. package/dist/model/meta-model/dashboard/content/initial-content.d.ts +1 -1
  19. package/dist/model/meta-model/dashboard/content/layout/index.d.ts +2 -0
  20. package/dist/model/meta-model/dashboard/content/{panel/layout.d.ts → layout/layout-item.d.ts} +20 -1
  21. package/dist/model/meta-model/dashboard/content/layout/layout-set.d.ts +192 -0
  22. package/dist/model/meta-model/dashboard/content/panel/index.d.ts +0 -1
  23. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +0 -30
  24. package/dist/model/render-model/dashboard/content/index.d.ts +1 -0
  25. package/dist/model/render-model/dashboard/content/layouts/index.d.ts +1 -0
  26. package/dist/model/render-model/dashboard/content/layouts/layouts.d.ts +1141 -0
  27. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +1 -38
  28. package/dist/stats.html +1 -1
  29. package/dist/types/dashboard.d.ts +2 -9
  30. package/package.json +1 -1
  31. package/dist/components/view/layout/main-layout.d.ts +0 -9
  32. package/dist/components/view/layout/read-only-layout.d.ts +0 -8
@@ -1,4 +1,3 @@
1
- /// <reference types="react-grid-layout" />
2
1
  /// <reference types="react" />
3
2
  import { Instance, SnapshotIn } from 'mobx-state-tree';
4
3
  export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
@@ -14,27 +13,6 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
14
13
  setShow(v: boolean): void;
15
14
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
16
15
  description: import("mobx-state-tree").ISimpleType<string>;
17
- layout: import("mobx-state-tree").IModelType<{
18
- x: import("mobx-state-tree").ISimpleType<number>;
19
- y: import("mobx-state-tree").IMaybeNull<import("mobx-state-tree").ISimpleType<number>>;
20
- w: import("mobx-state-tree").ISimpleType<number>;
21
- h: import("mobx-state-tree").ISimpleType<number>;
22
- moved: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
23
- static: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
24
- }, {
25
- readonly json: {
26
- h: number;
27
- w: number;
28
- x: number;
29
- y: number;
30
- moved: boolean;
31
- static: boolean;
32
- };
33
- } & {
34
- set(layout: Omit<import("react-grid-layout").Layout, "i">): void;
35
- setWidth(w: number): void;
36
- setHeight(h: number): void;
37
- }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
38
16
  queryIDs: import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>;
39
17
  viz: import("mobx-state-tree").IModelType<{
40
18
  type: import("mobx-state-tree").ISimpleType<string>;
@@ -447,14 +425,6 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
447
425
  title: {
448
426
  show: boolean;
449
427
  };
450
- layout: {
451
- h: number;
452
- w: number;
453
- x: number;
454
- y: number;
455
- moved: boolean;
456
- static: boolean;
457
- };
458
428
  queryIDs: string[];
459
429
  variables: {
460
430
  name: string;
@@ -2091,14 +2061,6 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
2091
2061
  title: {
2092
2062
  show: boolean;
2093
2063
  };
2094
- layout: {
2095
- h: number;
2096
- w: number;
2097
- x: number;
2098
- y: number;
2099
- moved: boolean;
2100
- static: boolean;
2101
- };
2102
2064
  queryIDs: string[];
2103
2065
  variables: {
2104
2066
  name: string;
@@ -2389,6 +2351,7 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
2389
2351
  post_process: string;
2390
2352
  dep_query_ids: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").ISimpleType<string>> & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>, [undefined]>>;
2391
2353
  }[];
2354
+ layouts: any;
2392
2355
  };
2393
2356
  downloadSchema(): void;
2394
2357
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;