@schneideress/dashboardframework 0.0.2 → 0.0.3
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/bundles/schneideress-dashboardframework.umd.js +3 -1
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +4 -2
- package/esm2015/lib/ra.dashboard.service.js +1 -1
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +4 -2
- package/esm5/lib/ra.dashboard.service.js +1 -1
- package/fesm2015/schneideress-dashboardframework.js +3 -1
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +3 -1
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -621,8 +621,10 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
621
621
|
* @return {?}
|
|
622
622
|
*/
|
|
623
623
|
function (widgets) {
|
|
624
|
-
if (widgets)
|
|
624
|
+
if (widgets) {
|
|
625
625
|
_this.widgetList = _this.mapObjectListToGridsterItemList(widgets);
|
|
626
|
+
_this.setAreaHeight();
|
|
627
|
+
}
|
|
626
628
|
}));
|
|
627
629
|
};
|
|
628
630
|
/** To set Area(Gridster) height dynamically as widgets are added/removed */
|