@schneideress/dashboardframework 20.0.26 → 20.0.29

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
@@ -927,7 +927,26 @@ declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
927
927
  widgetLoaded(widgetElement: any, widget: any): void;
928
928
  private loadData;
929
929
  changeInitialWidgetCount(): void;
930
+ /**
931
+ * Whether expanded view is active. Uses bulk action as source of truth (works in both normal browser and kiosk).
932
+ * Handles bulkActionData as string (from API) or object (from event). Falls back to URL param for edge cases (e.g. shared link).
933
+ */
934
+ private isExpandedView;
930
935
  dataLoaded(widgetInfo: any): void;
936
+ /**
937
+ * Override widget height and width for expanded view based on actual data content
938
+ * Reinitializes gridster after updating dimensions
939
+ */
940
+ private overrideWidgetDimensions;
941
+ /**
942
+ * Measure widget content and update dimensions, with retry logic for async data loading
943
+ */
944
+ private measureAndUpdateWidgetDimensions;
945
+ /**
946
+ * Reposition widgets to prevent overlapping after dimension changes in expanded view
947
+ * When 2 widgets are in the same row, the 2nd widget moves to next row after the 1st widget's height
948
+ */
949
+ private repositionWidgetsAfterDimensionChange;
931
950
  private isElementLoaded;
932
951
  private loadWidgetWrappers;
933
952
  /** To initiate eventbus subsctiptions */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schneideress/dashboardframework",
3
- "version": "20.0.26",
3
+ "version": "20.0.29",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.2.1",
6
6
  "@angular/core": "^20.2.1",