@schneideress/dashboardframework 20.0.25 → 20.0.28
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/index.d.ts
CHANGED
|
@@ -928,6 +928,20 @@ declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
928
928
|
private loadData;
|
|
929
929
|
changeInitialWidgetCount(): void;
|
|
930
930
|
dataLoaded(widgetInfo: any): void;
|
|
931
|
+
/**
|
|
932
|
+
* Override widget height and width for expanded view based on actual data content
|
|
933
|
+
* Reinitializes gridster after updating dimensions
|
|
934
|
+
*/
|
|
935
|
+
private overrideWidgetDimensions;
|
|
936
|
+
/**
|
|
937
|
+
* Measure widget content and update dimensions, with retry logic for async data loading
|
|
938
|
+
*/
|
|
939
|
+
private measureAndUpdateWidgetDimensions;
|
|
940
|
+
/**
|
|
941
|
+
* Reposition widgets to prevent overlapping after dimension changes in expanded view
|
|
942
|
+
* When 2 widgets are in the same row, the 2nd widget moves to next row after the 1st widget's height
|
|
943
|
+
*/
|
|
944
|
+
private repositionWidgetsAfterDimensionChange;
|
|
931
945
|
private isElementLoaded;
|
|
932
946
|
private loadWidgetWrappers;
|
|
933
947
|
/** To initiate eventbus subsctiptions */
|