@schneideress/dashboardframework 20.0.29 → 20.0.30

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.
@@ -4977,29 +4977,38 @@ class RADashboardArea {
4977
4977
  this.initialWidgetCount++ : null;
4978
4978
  }
4979
4979
  /**
4980
- * Whether expanded view is active. Uses bulk action as source of truth (works in both normal browser and kiosk).
4981
- * Handles bulkActionData as string (from API) or object (from event). Falls back to URL param for edge cases (e.g. shared link).
4980
+ * Whether expanded view is active. URL `?expanded=true` is checked first; then bulk action (works in normal browser and kiosk).
4981
+ * Handles bulkActionData as string (from API) or object (from event).
4982
4982
  */
4983
4983
  isExpandedView() {
4984
- if (this.bulkActionData) {
4985
- try {
4986
- const data = typeof this.bulkActionData === 'string'
4987
- ? JSON.parse(this.bulkActionData)
4988
- : this.bulkActionData;
4989
- if (data?.allSelections?.expandedView === true)
4984
+ try {
4985
+ if (typeof window !== 'undefined' && window.location?.search) {
4986
+ const fromUrl = new URLSearchParams(window.location.search).get('expanded') === 'true';
4987
+ if (fromUrl) {
4990
4988
  return true;
4989
+ }
4991
4990
  }
4992
- catch (_) {
4993
- // ignore parse errors
4994
- }
4995
4991
  }
4996
- return typeof location !== 'undefined' && new URLSearchParams(window.location.search).get('expanded') === 'true';
4992
+ catch (_) {
4993
+ // ignore URL parse errors
4994
+ }
4995
+ if (!this.bulkActionData)
4996
+ return false;
4997
+ try {
4998
+ const data = typeof this.bulkActionData === 'string'
4999
+ ? JSON.parse(this.bulkActionData)
5000
+ : this.bulkActionData;
5001
+ return data?.allSelections?.expandedView === true;
5002
+ }
5003
+ catch (_) {
5004
+ return false;
5005
+ }
4997
5006
  }
4998
5007
  dataLoaded(widgetInfo) {
4999
5008
  setTimeout(() => {
5000
5009
  this.currentLoadingCount--;
5001
5010
  }, 100);
5002
- // For expanded view, override widget dimensions after data loads (from bulk action or URL)
5011
+ // For expanded view, override widget dimensions after data loads (from bulk action)
5003
5012
  if (this.isExpandedView() && widgetInfo && widgetInfo.widgetInstanceId) {
5004
5013
  this.overrideWidgetDimensions(widgetInfo);
5005
5014
  }