@schneideress/dashboardframework 0.0.46 → 0.0.48

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.
@@ -1018,7 +1018,13 @@ var RAWidgetContainer = /** @class */ (function () {
1018
1018
  }
1019
1019
  if (changes.width && changes.width.currentValue != changes.width.previousValue ||
1020
1020
  (changes.height && changes.height.currentValue != changes.height.previousValue)) {
1021
- this.widgetElement.widgetResized(this.height, this.width);
1021
+ if (this.widgetElement) {
1022
+ /** @type {?} */
1023
+ var size = {};
1024
+ size.height = this.height;
1025
+ size.width = this.width;
1026
+ this.widgetElement.widgetResized(size);
1027
+ }
1022
1028
  }
1023
1029
  };
1024
1030
  /**