@devtable/dashboard 14.52.0 → 14.53.1

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 (37) hide show
  1. package/dist/components/panel/settings/common/data-field-selector.d.ts +4 -0
  2. package/dist/components/plugins/plugin-context.d.ts +4 -4
  3. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/index.d.ts +1 -0
  4. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/add-a-row.d.ts +6 -0
  5. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/index.d.ts +1 -0
  6. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/palette.d.ts +5 -0
  7. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/row-editor.d.ts +13 -0
  8. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/sections-editor.d.ts +10 -0
  9. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/sections-editor/select-palette.d.ts +7 -0
  10. package/dist/components/plugins/viz-components/merico-linear-gauge/editor/viz-merico-linear-gauge-editor.d.ts +2 -0
  11. package/dist/components/plugins/viz-components/merico-linear-gauge/index.d.ts +2 -0
  12. package/dist/components/plugins/viz-components/merico-linear-gauge/migrator/index.d.ts +5 -0
  13. package/dist/components/plugins/viz-components/merico-linear-gauge/render/chart.d.ts +9 -0
  14. package/dist/components/plugins/viz-components/merico-linear-gauge/render/index.d.ts +1 -0
  15. package/dist/components/plugins/viz-components/merico-linear-gauge/render/option.d.ts +11 -0
  16. package/dist/components/plugins/viz-components/merico-linear-gauge/render/viz-merico-linear-gauge.d.ts +2 -0
  17. package/dist/components/plugins/viz-components/merico-linear-gauge/translation.d.ts +2 -0
  18. package/dist/components/plugins/viz-components/merico-linear-gauge/type.d.ts +14 -0
  19. package/dist/components/plugins/viz-components/regression-chart/render/toolbox/data-key-selector/data-key-selector.d.ts +1 -0
  20. package/dist/contexts/panel-context.d.ts +8 -8
  21. package/dist/dashboard-editor/model/panels/panel.d.ts +2 -2
  22. package/dist/dashboard-editor/model/views/index.d.ts +32 -32
  23. package/dist/dashboard-editor/model/views/view.d.ts +1 -1
  24. package/dist/dashboard-editor/ui/settings/content/edit-view/edit-view-form/index.d.ts +5 -5
  25. package/dist/dashboard.es.js +15280 -14911
  26. package/dist/dashboard.umd.js +216 -216
  27. package/dist/i18n/en.d.ts +8 -0
  28. package/dist/i18n/zh.d.ts +8 -0
  29. package/dist/model/meta-model/dashboard/content/view/view.d.ts +1 -1
  30. package/dist/model/meta-model/dashboard/content/view/widgets/tabs.d.ts +4 -4
  31. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +2 -2
  32. package/dist/model/render-model/dashboard/content/views/view.d.ts +1 -1
  33. package/dist/model/render-model/dashboard/content/views/views.d.ts +26 -26
  34. package/dist/stats.html +1 -1
  35. package/dist/style.css +1 -1
  36. package/dist/version.json +2 -2
  37. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ import { MantineSize } from '@mantine/core';
1
2
  import { EmotionSx } from '@mantine/emotion';
2
3
  import React from './react';
3
4
  interface IDataFieldSelector {
@@ -7,8 +8,11 @@ interface IDataFieldSelector {
7
8
  onChange: (v: string) => void;
8
9
  clearable?: boolean;
9
10
  sx?: EmotionSx;
11
+ size?: MantineSize;
10
12
  queryID?: string;
11
13
  description?: string;
14
+ placeholder?: string;
15
+ unsetKey?: string;
12
16
  }
13
17
  export declare const DataFieldSelector: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<IDataFieldSelector & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>>;
14
18
  export {};
@@ -7498,14 +7498,14 @@ export declare const tokens: {
7498
7498
  group_id: string;
7499
7499
  disabled: boolean;
7500
7500
  }[];
7501
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
7501
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
7502
7502
  label: string;
7503
7503
  value: string;
7504
7504
  group: string;
7505
7505
  group_id: string;
7506
7506
  disabled: boolean;
7507
7507
  }[];
7508
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
7508
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
7509
7509
  group: string;
7510
7510
  items: {
7511
7511
  label: string;
@@ -14940,14 +14940,14 @@ export declare const tokens: {
14940
14940
  group_id: string;
14941
14941
  disabled: boolean;
14942
14942
  }[];
14943
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
14943
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
14944
14944
  label: string;
14945
14945
  value: string;
14946
14946
  group: string;
14947
14947
  group_id: string;
14948
14948
  disabled: boolean;
14949
14949
  }[];
14950
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
14950
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
14951
14951
  group: string;
14952
14952
  items: {
14953
14953
  label: string;
@@ -0,0 +1 @@
1
+ export * from './viz-merico-linear-gauge-editor';
@@ -0,0 +1,6 @@
1
+ import { MericoLinearGaugeSection } from '../../type';
2
+ type AddARowProps = {
3
+ append: (v: MericoLinearGaugeSection) => void;
4
+ };
5
+ export declare const AddARow: ({ append }: AddARowProps) => import('./react/jsx-runtime').JSX.Element;
6
+ export {};
@@ -0,0 +1,5 @@
1
+ export type PieChartPaletteOption = {
2
+ name: string;
3
+ colors: string[];
4
+ };
5
+ export declare const PieChartPalettes: PieChartPaletteOption[];
@@ -0,0 +1,13 @@
1
+ import { MericoLinearGaugeSection } from '../../type';
2
+ type RowFieldItem = {
3
+ id: string;
4
+ } & MericoLinearGaugeSection;
5
+ type Props = {
6
+ row: RowFieldItem;
7
+ handleChange: (v: RowFieldItem) => void;
8
+ handleRemove: () => void;
9
+ index: number;
10
+ data: TPanelData;
11
+ };
12
+ export declare const RowEditor: ({ row, index, handleChange, handleRemove, data }: Props) => import('./react/jsx-runtime').JSX.Element;
13
+ export {};
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import { MericoLinearGaugeSection } from '../../type';
3
+ type Props = {
4
+ value: MericoLinearGaugeSection[];
5
+ onChange: (v: MericoLinearGaugeSection[]) => void;
6
+ zIndex?: number;
7
+ data: TPanelData;
8
+ };
9
+ export declare const SectionsEditor: import('./react').ForwardRefExoticComponent<Props & import('./react').RefAttributes<HTMLDivElement>>;
10
+ export {};
@@ -0,0 +1,7 @@
1
+ import { MericoLinearGaugeSection } from '../../type';
2
+ type Props = {
3
+ value: MericoLinearGaugeSection[];
4
+ onChange: (v: MericoLinearGaugeSection[]) => void;
5
+ };
6
+ export declare const SelectPalette: ({ value, onChange }: Props) => import('./react/jsx-runtime').JSX.Element;
7
+ export {};
@@ -0,0 +1,2 @@
1
+ import { VizConfigProps } from '../../../../../types/plugin';
2
+ export declare function VizMericoLinearGaugeEditor({ context }: VizConfigProps): import('./react/jsx-runtime').JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { VizComponent } from '../../../../types/plugin';
2
+ export declare const VizMericoLinearGaugeVizComponent: VizComponent;
@@ -0,0 +1,5 @@
1
+ import { VersionBasedMigrator } from '../../../../../components/plugins/plugin-data-migrator';
2
+ export declare class VizMericoLinearGaugeMigrator extends VersionBasedMigrator {
3
+ configVersions(): void;
4
+ readonly VERSION = 1;
5
+ }
@@ -0,0 +1,9 @@
1
+ import { IMericoLinearGaugeConf } from '../type';
2
+ type Props = {
3
+ conf: IMericoLinearGaugeConf;
4
+ data: TPanelData;
5
+ width: number;
6
+ height: number;
7
+ };
8
+ export declare function Chart({ conf, data, width, height }: Props): import('./react/jsx-runtime').JSX.Element | null;
9
+ export {};
@@ -0,0 +1 @@
1
+ export * from './viz-merico-linear-gauge';
@@ -0,0 +1,11 @@
1
+ import { IMericoLinearGaugeConf } from '../type';
2
+ export declare const getOption: (conf: IMericoLinearGaugeConf, data: TPanelData) => {
3
+ value: any;
4
+ sections: {
5
+ name: string;
6
+ color: string;
7
+ min: any;
8
+ pointer: boolean;
9
+ pointer_equal: boolean;
10
+ }[];
11
+ };
@@ -0,0 +1,2 @@
1
+ import { VizViewProps } from '../../../../../types/plugin';
2
+ export declare function VizMericoLinearGauge({ context }: VizViewProps): import('./react/jsx-runtime').JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { TranslationPatch } from '../../../../types/plugin';
2
+ export declare const translation: TranslationPatch;
@@ -0,0 +1,14 @@
1
+ export type MericoLinearGaugeSection = {
2
+ name: string;
3
+ color: string;
4
+ minKey: string;
5
+ };
6
+ export interface IMericoLinearGaugeConf {
7
+ value: string;
8
+ sections: MericoLinearGaugeSection[];
9
+ stats: {
10
+ top: string;
11
+ bottom: string;
12
+ };
13
+ }
14
+ export declare const getDefaultConfig: () => IMericoLinearGaugeConf;
@@ -5,4 +5,5 @@ export declare const DataKeySelector: React.MemoExoticComponent<React.ForwardRef
5
5
  onChange: (v: string) => void;
6
6
  clearable?: boolean | undefined;
7
7
  queryID?: string | undefined;
8
+ unsetKey?: string | undefined;
8
9
  } & React.RefAttributes<HTMLSelectElement>, "ref"> & React.RefAttributes<HTMLSelectElement>>>;
@@ -7482,14 +7482,14 @@ export declare const useRenderPanelContext: () => {
7482
7482
  group_id: string;
7483
7483
  disabled: boolean;
7484
7484
  }[];
7485
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
7485
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
7486
7486
  label: string;
7487
7487
  value: string;
7488
7488
  group: string;
7489
7489
  group_id: string;
7490
7490
  disabled: boolean;
7491
7491
  }[];
7492
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
7492
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
7493
7493
  group: string;
7494
7494
  items: {
7495
7495
  label: string;
@@ -14886,14 +14886,14 @@ export declare const useRenderPanelContext: () => {
14886
14886
  group_id: string;
14887
14887
  disabled: boolean;
14888
14888
  }[];
14889
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
14889
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
14890
14890
  label: string;
14891
14891
  value: string;
14892
14892
  group: string;
14893
14893
  group_id: string;
14894
14894
  disabled: boolean;
14895
14895
  }[];
14896
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
14896
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
14897
14897
  group: string;
14898
14898
  items: {
14899
14899
  label: string;
@@ -22853,14 +22853,14 @@ export declare const useEditPanelContext: () => {
22853
22853
  group_id: string;
22854
22854
  disabled: boolean;
22855
22855
  }[];
22856
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
22856
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
22857
22857
  label: string;
22858
22858
  value: string;
22859
22859
  group: string;
22860
22860
  group_id: string;
22861
22861
  disabled: boolean;
22862
22862
  }[];
22863
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
22863
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
22864
22864
  group: string;
22865
22865
  items: {
22866
22866
  label: string;
@@ -30295,14 +30295,14 @@ export declare const useEditPanelContext: () => {
30295
30295
  group_id: string;
30296
30296
  disabled: boolean;
30297
30297
  }[];
30298
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
30298
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
30299
30299
  label: string;
30300
30300
  value: string;
30301
30301
  group: string;
30302
30302
  group_id: string;
30303
30303
  disabled: boolean;
30304
30304
  }[];
30305
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
30305
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
30306
30306
  group: string;
30307
30307
  items: {
30308
30308
  label: string;
@@ -6916,14 +6916,14 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
6916
6916
  group_id: string;
6917
6917
  disabled: boolean;
6918
6918
  }[];
6919
- dataFieldOptions(selected: string, clearable: boolean, queryID?: string | undefined): {
6919
+ dataFieldOptions(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
6920
6920
  label: string;
6921
6921
  value: string;
6922
6922
  group: string;
6923
6923
  group_id: string;
6924
6924
  disabled: boolean;
6925
6925
  }[];
6926
- dataFieldOptionGroups(selected: string, clearable: boolean, queryID?: string | undefined): {
6926
+ dataFieldOptionGroups(selected: string, clearable: boolean, unsetKey: string, queryID?: string | undefined): {
6927
6927
  group: string;
6928
6928
  items: {
6929
6929
  label: string;
@@ -227,7 +227,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
227
227
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
228
228
  }>>[]): void;
229
229
  addTab(): void;
230
- removeTab(index: number): void;
230
+ removeTab(id: string): void;
231
231
  }> | import("mobx-state-tree").ModelInstanceType<{
232
232
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
233
233
  }, {
@@ -592,7 +592,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
592
592
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
593
593
  }>>[]): void;
594
594
  addTab(): void;
595
- removeTab(index: number): void;
595
+ removeTab(id: string): void;
596
596
  }> | import("mobx-state-tree").ModelInstanceType<{
597
597
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
598
598
  }, {
@@ -1089,7 +1089,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
1089
1089
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1090
1090
  }>>[]): void;
1091
1091
  addTab(): void;
1092
- removeTab(index: number): void;
1092
+ removeTab(id: string): void;
1093
1093
  }> | import("mobx-state-tree").ModelInstanceType<{
1094
1094
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1095
1095
  }, {
@@ -1205,7 +1205,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
1205
1205
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1206
1206
  }>>[]): void;
1207
1207
  addTab(): void;
1208
- removeTab(index: number): void;
1208
+ removeTab(id: string): void;
1209
1209
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
1210
1210
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
1211
1211
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -1426,7 +1426,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
1426
1426
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1427
1427
  }>>[]): void;
1428
1428
  addTab(): void;
1429
- removeTab(index: number): void;
1429
+ removeTab(id: string): void;
1430
1430
  }> | import("mobx-state-tree").ModelInstanceType<{
1431
1431
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1432
1432
  }, {
@@ -1659,7 +1659,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
1659
1659
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1660
1660
  }>>[]): void;
1661
1661
  addTab(): void;
1662
- removeTab(index: number): void;
1662
+ removeTab(id: string): void;
1663
1663
  }> | import("mobx-state-tree").ModelInstanceType<{
1664
1664
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1665
1665
  }, {
@@ -1928,7 +1928,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
1928
1928
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1929
1929
  }>>[]): void;
1930
1930
  addTab(): void;
1931
- removeTab(index: number): void;
1931
+ removeTab(id: string): void;
1932
1932
  }> | import("mobx-state-tree").ModelInstanceType<{
1933
1933
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1934
1934
  }, {
@@ -2248,7 +2248,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
2248
2248
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
2249
2249
  }>>[]): void;
2250
2250
  addTab(): void;
2251
- removeTab(index: number): void;
2251
+ removeTab(id: string): void;
2252
2252
  }> | import("mobx-state-tree").ModelInstanceType<{
2253
2253
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2254
2254
  }, {
@@ -2364,7 +2364,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
2364
2364
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
2365
2365
  }>>[]): void;
2366
2366
  addTab(): void;
2367
- removeTab(index: number): void;
2367
+ removeTab(id: string): void;
2368
2368
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
2369
2369
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
2370
2370
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -2585,7 +2585,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
2585
2585
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
2586
2586
  }>>[]): void;
2587
2587
  addTab(): void;
2588
- removeTab(index: number): void;
2588
+ removeTab(id: string): void;
2589
2589
  }> | import("mobx-state-tree").ModelInstanceType<{
2590
2590
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2591
2591
  }, {
@@ -2818,7 +2818,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
2818
2818
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
2819
2819
  }>>[]): void;
2820
2820
  addTab(): void;
2821
- removeTab(index: number): void;
2821
+ removeTab(id: string): void;
2822
2822
  }> | import("mobx-state-tree").ModelInstanceType<{
2823
2823
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
2824
2824
  }, {
@@ -3179,7 +3179,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
3179
3179
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
3180
3180
  }>>[]): void;
3181
3181
  addTab(): void;
3182
- removeTab(index: number): void;
3182
+ removeTab(id: string): void;
3183
3183
  }> | import("mobx-state-tree").ModelInstanceType<{
3184
3184
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3185
3185
  }, {
@@ -3592,7 +3592,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
3592
3592
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
3593
3593
  }>>[]): void;
3594
3594
  addTab(): void;
3595
- removeTab(index: number): void;
3595
+ removeTab(id: string): void;
3596
3596
  }> | import("mobx-state-tree").ModelInstanceType<{
3597
3597
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3598
3598
  }, {
@@ -3708,7 +3708,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
3708
3708
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
3709
3709
  }>>[]): void;
3710
3710
  addTab(): void;
3711
- removeTab(index: number): void;
3711
+ removeTab(id: string): void;
3712
3712
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
3713
3713
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
3714
3714
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -3929,7 +3929,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
3929
3929
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
3930
3930
  }>>[]): void;
3931
3931
  addTab(): void;
3932
- removeTab(index: number): void;
3932
+ removeTab(id: string): void;
3933
3933
  }> | import("mobx-state-tree").ModelInstanceType<{
3934
3934
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
3935
3935
  }, {
@@ -4162,7 +4162,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
4162
4162
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
4163
4163
  }>>[]): void;
4164
4164
  addTab(): void;
4165
- removeTab(index: number): void;
4165
+ removeTab(id: string): void;
4166
4166
  }> | import("mobx-state-tree").ModelInstanceType<{
4167
4167
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
4168
4168
  }, {
@@ -4523,7 +4523,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
4523
4523
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
4524
4524
  }>>[]): void;
4525
4525
  addTab(): void;
4526
- removeTab(index: number): void;
4526
+ removeTab(id: string): void;
4527
4527
  }> | import("mobx-state-tree").ModelInstanceType<{
4528
4528
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
4529
4529
  }, {
@@ -4936,7 +4936,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
4936
4936
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
4937
4937
  }>>[]): void;
4938
4938
  addTab(): void;
4939
- removeTab(index: number): void;
4939
+ removeTab(id: string): void;
4940
4940
  }> | import("mobx-state-tree").ModelInstanceType<{
4941
4941
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
4942
4942
  }, {
@@ -5052,7 +5052,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
5052
5052
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
5053
5053
  }>>[]): void;
5054
5054
  addTab(): void;
5055
- removeTab(index: number): void;
5055
+ removeTab(id: string): void;
5056
5056
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
5057
5057
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
5058
5058
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -5273,7 +5273,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
5273
5273
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
5274
5274
  }>>[]): void;
5275
5275
  addTab(): void;
5276
- removeTab(index: number): void;
5276
+ removeTab(id: string): void;
5277
5277
  }> | import("mobx-state-tree").ModelInstanceType<{
5278
5278
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
5279
5279
  }, {
@@ -5506,7 +5506,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
5506
5506
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
5507
5507
  }>>[]): void;
5508
5508
  addTab(): void;
5509
- removeTab(index: number): void;
5509
+ removeTab(id: string): void;
5510
5510
  }> | import("mobx-state-tree").ModelInstanceType<{
5511
5511
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
5512
5512
  }, {
@@ -5867,7 +5867,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
5867
5867
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
5868
5868
  }>>[]): void;
5869
5869
  addTab(): void;
5870
- removeTab(index: number): void;
5870
+ removeTab(id: string): void;
5871
5871
  }> | import("mobx-state-tree").ModelInstanceType<{
5872
5872
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
5873
5873
  }, {
@@ -6280,7 +6280,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
6280
6280
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
6281
6281
  }>>[]): void;
6282
6282
  addTab(): void;
6283
- removeTab(index: number): void;
6283
+ removeTab(id: string): void;
6284
6284
  }> | import("mobx-state-tree").ModelInstanceType<{
6285
6285
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
6286
6286
  }, {
@@ -6396,7 +6396,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
6396
6396
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
6397
6397
  }>>[]): void;
6398
6398
  addTab(): void;
6399
- removeTab(index: number): void;
6399
+ removeTab(id: string): void;
6400
6400
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
6401
6401
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
6402
6402
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -6617,7 +6617,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
6617
6617
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
6618
6618
  }>>[]): void;
6619
6619
  addTab(): void;
6620
- removeTab(index: number): void;
6620
+ removeTab(id: string): void;
6621
6621
  }> | import("mobx-state-tree").ModelInstanceType<{
6622
6622
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
6623
6623
  }, {
@@ -6850,7 +6850,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
6850
6850
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
6851
6851
  }>>[]): void;
6852
6852
  addTab(): void;
6853
- removeTab(index: number): void;
6853
+ removeTab(id: string): void;
6854
6854
  }> | import("mobx-state-tree").ModelInstanceType<{
6855
6855
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
6856
6856
  }, {
@@ -7211,7 +7211,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
7211
7211
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
7212
7212
  }>>[]): void;
7213
7213
  addTab(): void;
7214
- removeTab(index: number): void;
7214
+ removeTab(id: string): void;
7215
7215
  }> | import("mobx-state-tree").ModelInstanceType<{
7216
7216
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
7217
7217
  }, {
@@ -7635,7 +7635,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
7635
7635
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
7636
7636
  }>>[]): void;
7637
7637
  addTab(): void;
7638
- removeTab(index: number): void;
7638
+ removeTab(id: string): void;
7639
7639
  }> | import("mobx-state-tree").ModelInstanceType<{
7640
7640
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
7641
7641
  }, {
@@ -7751,7 +7751,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
7751
7751
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
7752
7752
  }>>[]): void;
7753
7753
  addTab(): void;
7754
- removeTab(index: number): void;
7754
+ removeTab(id: string): void;
7755
7755
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
7756
7756
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
7757
7757
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -7972,7 +7972,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
7972
7972
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
7973
7973
  }>>[]): void;
7974
7974
  addTab(): void;
7975
- removeTab(index: number): void;
7975
+ removeTab(id: string): void;
7976
7976
  }> | import("mobx-state-tree").ModelInstanceType<{
7977
7977
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
7978
7978
  }, {
@@ -8205,7 +8205,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
8205
8205
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
8206
8206
  }>>[]): void;
8207
8207
  addTab(): void;
8208
- removeTab(index: number): void;
8208
+ removeTab(id: string): void;
8209
8209
  }> | import("mobx-state-tree").ModelInstanceType<{
8210
8210
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
8211
8211
  }, {
@@ -8619,7 +8619,7 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
8619
8619
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
8620
8620
  }>>[]): void;
8621
8621
  addTab(): void;
8622
- removeTab(index: number): void;
8622
+ removeTab(id: string): void;
8623
8623
  }> | import("mobx-state-tree").ModelInstanceType<{
8624
8624
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
8625
8625
  }, {
@@ -225,7 +225,7 @@ export declare const ViewModel: import("mobx-state-tree").IModelType<{
225
225
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
226
226
  }>>[]): void;
227
227
  addTab(): void;
228
- removeTab(index: number): void;
228
+ removeTab(id: string): void;
229
229
  }> | import("mobx-state-tree").ModelInstanceType<{
230
230
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
231
231
  }, {
@@ -274,7 +274,7 @@ export declare const EditViewForm: (({ view }: {
274
274
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
275
275
  }>>[]): void;
276
276
  addTab(): void;
277
- removeTab(index: number): void;
277
+ removeTab(id: string): void;
278
278
  }> | import("mobx-state-tree").ModelInstanceType<{
279
279
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
280
280
  }, {
@@ -390,7 +390,7 @@ export declare const EditViewForm: (({ view }: {
390
390
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
391
391
  }>>[]): void;
392
392
  addTab(): void;
393
- removeTab(index: number): void;
393
+ removeTab(id: string): void;
394
394
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").ITypeUnion<import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
395
395
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Modal>;
396
396
  width: import("mobx-state-tree").ISimpleType<string>;
@@ -611,7 +611,7 @@ export declare const EditViewForm: (({ view }: {
611
611
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
612
612
  }>>[]): void;
613
613
  addTab(): void;
614
- removeTab(index: number): void;
614
+ removeTab(id: string): void;
615
615
  }> | import("mobx-state-tree").ModelInstanceType<{
616
616
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
617
617
  }, {
@@ -844,7 +844,7 @@ export declare const EditViewForm: (({ view }: {
844
844
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
845
845
  }>>[]): void;
846
846
  addTab(): void;
847
- removeTab(index: number): void;
847
+ removeTab(id: string): void;
848
848
  }> | import("mobx-state-tree").ModelInstanceType<{
849
849
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
850
850
  }, {
@@ -1113,7 +1113,7 @@ export declare const EditViewForm: (({ view }: {
1113
1113
  order: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
1114
1114
  }>>[]): void;
1115
1115
  addTab(): void;
1116
- removeTab(index: number): void;
1116
+ removeTab(id: string): void;
1117
1117
  }> | import("mobx-state-tree").ModelInstanceType<{
1118
1118
  _name: import("mobx-state-tree").ISimpleType<EViewComponentType.Division>;
1119
1119
  }, {