@schneideress/dashboardframework 0.0.21 → 0.0.22
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 +10 -5
- 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 +9 -5
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +3 -2
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +9 -5
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +3 -2
- package/fesm2015/schneideress-dashboardframework.js +10 -5
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +10 -5
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -641,10 +641,14 @@
|
|
|
641
641
|
* @return {?}
|
|
642
642
|
*/
|
|
643
643
|
function () {
|
|
644
|
-
this.conifgAddClick
|
|
645
|
-
|
|
646
|
-
this.
|
|
647
|
-
|
|
644
|
+
if (this.conifgAddClick)
|
|
645
|
+
this.conifgAddClick.unsubscribe();
|
|
646
|
+
if (this.widgetAddEvent)
|
|
647
|
+
this.widgetAddEvent.unsubscribe();
|
|
648
|
+
if (this.widgetDeleteEvent)
|
|
649
|
+
this.widgetDeleteEvent.unsubscribe();
|
|
650
|
+
if (this.widgetLibraryDoneClick)
|
|
651
|
+
this.widgetLibraryDoneClick.unsubscribe();
|
|
648
652
|
};
|
|
649
653
|
/**To update position/dimention of all widgets in the area */
|
|
650
654
|
/**
|
|
@@ -993,7 +997,8 @@
|
|
|
993
997
|
* @return {?}
|
|
994
998
|
*/
|
|
995
999
|
function () {
|
|
996
|
-
this.configChanged
|
|
1000
|
+
if (this.configChanged)
|
|
1001
|
+
this.configChanged.unsubscribe();
|
|
997
1002
|
};
|
|
998
1003
|
/** To Edit current widget configuration*/
|
|
999
1004
|
/**
|