@devtable/dashboard 13.42.2 → 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 +872 -851
- package/dist/dashboard.umd.js +4 -4
- 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
|
@@ -182,6 +182,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
182
182
|
addLayout(layoutItem: import('../../../model').LayoutItem): void;
|
|
183
183
|
addNewLayout(panelID: string): void;
|
|
184
184
|
removeByPanelID(panelID: string): void;
|
|
185
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
185
186
|
updateLayoutItem(item: Layout): void;
|
|
186
187
|
} & {
|
|
187
188
|
afterCreate(): void;
|
|
@@ -429,6 +430,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
429
430
|
addLayout(layoutItem: import('../../../model').LayoutItem): void;
|
|
430
431
|
addNewLayout(panelID: string): void;
|
|
431
432
|
removeByPanelID(panelID: string): void;
|
|
433
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
432
434
|
updateLayoutItem(item: Layout): void;
|
|
433
435
|
} & {
|
|
434
436
|
afterCreate(): void;
|
|
@@ -612,6 +614,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
612
614
|
addLayout(layoutItem: import('../../../model').LayoutItem): void;
|
|
613
615
|
addNewLayout(panelID: string): void;
|
|
614
616
|
removeByPanelID(panelID: string): void;
|
|
617
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
615
618
|
updateLayoutItem(item: Layout): void;
|
|
616
619
|
} & {
|
|
617
620
|
afterCreate(): void;
|
|
@@ -823,6 +826,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
823
826
|
addLayout(layoutItem: import('../../../model').LayoutItem): void;
|
|
824
827
|
addNewLayout(panelID: string): void;
|
|
825
828
|
removeByPanelID(panelID: string): void;
|
|
829
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
826
830
|
updateLayoutItem(item: Layout): void;
|
|
827
831
|
} & {
|
|
828
832
|
afterCreate(): void;
|
|
@@ -1006,6 +1010,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
1006
1010
|
addLayout(layoutItem: import('../../../model').LayoutItem): void;
|
|
1007
1011
|
addNewLayout(panelID: string): void;
|
|
1008
1012
|
removeByPanelID(panelID: string): void;
|
|
1013
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
1009
1014
|
updateLayoutItem(item: Layout): void;
|
|
1010
1015
|
} & {
|
|
1011
1016
|
afterCreate(): void;
|
|
@@ -1161,6 +1166,7 @@ export declare const LayoutsModel: import("mobx-state-tree").IModelType<{
|
|
|
1161
1166
|
addALayoutItem(panelID: string): void;
|
|
1162
1167
|
duplicateLayoutItemsByPanelID(sourcePanelID: string, targetPanelID: string): void;
|
|
1163
1168
|
removeByPanelID(panelID: string): void;
|
|
1169
|
+
removeByPanelIDs(panelIDs: string[]): void;
|
|
1164
1170
|
setCurrentLayoutWrapperWidth(v: number): void;
|
|
1165
1171
|
addALayoutSet(id: string, name: string, breakpoint: number): void;
|
|
1166
1172
|
updateLayoutSetsInfo(infos: LayoutSetInfo[]): void;
|
|
@@ -8780,8 +8780,10 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
8780
8780
|
readonly _type: "view";
|
|
8781
8781
|
readonly children: import("../editor").NavOptionType[];
|
|
8782
8782
|
}[];
|
|
8783
|
+
readonly contentModel: any;
|
|
8783
8784
|
} & {
|
|
8784
8785
|
setIDOfVIE(id: string): void;
|
|
8786
|
+
resetIDOfVIE(): void;
|
|
8785
8787
|
replace(current: Array<ViewRenderModelInstance>): void;
|
|
8786
8788
|
addANewView(id: string, name: string, type: EViewComponentType, config: ViewDivisionConfigSnapshotIn | ViewModalConfigSnapshotIn): void;
|
|
8787
8789
|
append(item: ViewRenderModelInstance): void;
|