@devtable/dashboard 13.42.3 → 13.42.4
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/dashboard-editor/model/layouts/layouts.d.ts +6 -0
- package/dist/dashboard-editor/model/views/index.d.ts +2 -0
- package/dist/dashboard.es.js +863 -846
- package/dist/dashboard.umd.js +3 -3
- package/dist/model/meta-model/dashboard/content/layout/layout-set.d.ts +1 -0
- package/dist/model/render-model/dashboard/content/layouts/layouts.d.ts +5 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -181,6 +181,7 @@ export declare const LayoutsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
181
181
|
addLayout(layoutItem: import('../../../../../model/meta-model').LayoutItem): void;
|
|
182
182
|
addNewLayout(panelID: string): void;
|
|
183
183
|
removeByPanelID(panelID: string): void;
|
|
184
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
184
185
|
updateLayoutItem(item: Layout): void;
|
|
185
186
|
} & {
|
|
186
187
|
afterCreate(): void;
|
|
@@ -426,6 +427,7 @@ export declare const LayoutsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
426
427
|
addLayout(layoutItem: import('../../../../../model/meta-model').LayoutItem): void;
|
|
427
428
|
addNewLayout(panelID: string): void;
|
|
428
429
|
removeByPanelID(panelID: string): void;
|
|
430
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
429
431
|
updateLayoutItem(item: Layout): void;
|
|
430
432
|
} & {
|
|
431
433
|
afterCreate(): void;
|
|
@@ -609,6 +611,7 @@ export declare const LayoutsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
609
611
|
addLayout(layoutItem: import('../../../../../model/meta-model').LayoutItem): void;
|
|
610
612
|
addNewLayout(panelID: string): void;
|
|
611
613
|
removeByPanelID(panelID: string): void;
|
|
614
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
612
615
|
updateLayoutItem(item: Layout): void;
|
|
613
616
|
} & {
|
|
614
617
|
afterCreate(): void;
|
|
@@ -820,6 +823,7 @@ export declare const LayoutsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
820
823
|
addLayout(layoutItem: import('../../../../../model/meta-model').LayoutItem): void;
|
|
821
824
|
addNewLayout(panelID: string): void;
|
|
822
825
|
removeByPanelID(panelID: string): void;
|
|
826
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
823
827
|
updateLayoutItem(item: Layout): void;
|
|
824
828
|
} & {
|
|
825
829
|
afterCreate(): void;
|
|
@@ -1003,6 +1007,7 @@ export declare const LayoutsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1003
1007
|
addLayout(layoutItem: import('../../../../../model/meta-model').LayoutItem): void;
|
|
1004
1008
|
addNewLayout(panelID: string): void;
|
|
1005
1009
|
removeByPanelID(panelID: string): void;
|
|
1010
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
1006
1011
|
updateLayoutItem(item: Layout): void;
|
|
1007
1012
|
} & {
|
|
1008
1013
|
afterCreate(): void;
|