@schneideress/dashboardframework 0.0.22 → 0.0.23
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 +6 -11
- 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 +6 -10
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +2 -3
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +6 -10
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +2 -3
- package/fesm2015/schneideress-dashboardframework.js +16 -11
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +16 -11
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -641,14 +641,10 @@
|
|
|
641
641
|
* @return {?}
|
|
642
642
|
*/
|
|
643
643
|
function () {
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
if (this.widgetDeleteEvent)
|
|
649
|
-
this.widgetDeleteEvent.unsubscribe();
|
|
650
|
-
if (this.widgetLibraryDoneClick)
|
|
651
|
-
this.widgetLibraryDoneClick.unsubscribe();
|
|
644
|
+
this.conifgAddClick.unsubscribe();
|
|
645
|
+
this.widgetAddEvent.unsubscribe();
|
|
646
|
+
this.widgetDeleteEvent.unsubscribe();
|
|
647
|
+
this.widgetLibraryDoneClick.unsubscribe();
|
|
652
648
|
};
|
|
653
649
|
/**To update position/dimention of all widgets in the area */
|
|
654
650
|
/**
|
|
@@ -918,7 +914,7 @@
|
|
|
918
914
|
{ type: core.Component, args: [{
|
|
919
915
|
selector: 'ra-dashboard-area',
|
|
920
916
|
template: "<div #gridWrapper class=\"wrap gridster\" [style.height.px]=\"gridheight\">\r\n<!-- <div #gridWrapper class=\"wrap gridster\"> -->\r\n <gridster [options]=\"options\" style=\"height:100%;\">\r\n <gridster-item [item]=\"item\" *ngFor=\"let item of widgetList\">\r\n <ra-widget-container [app-config]=\"appConfig\" [event-bus]=\"raDashboardEventBus\" (widgetDeleted)=\"deleteWidget($event)\" [data]=\"item\"\r\n [global-filter]=\"globalFilter\" [widget-instance-id]=\"item.widgetInstanceId\"></ra-widget-container>\r\n </gridster-item>\r\n </gridster>\r\n <notifier-container></notifier-container>\r\n</div>\r\n\r\n",
|
|
921
|
-
styles: ["gridster{width:inherit;resize:height;display:flex
|
|
917
|
+
styles: ["gridster{width:inherit;resize:height;display:flex}gridster-item{background:#fff!important}.dvheader{width:100%;height:35px;background:#000;color:#fff;padding:7px 3px 5px 6px;text-transform:uppercase}"]
|
|
922
918
|
}] }
|
|
923
919
|
];
|
|
924
920
|
/** @nocollapse */
|
|
@@ -997,8 +993,7 @@
|
|
|
997
993
|
* @return {?}
|
|
998
994
|
*/
|
|
999
995
|
function () {
|
|
1000
|
-
|
|
1001
|
-
this.configChanged.unsubscribe();
|
|
996
|
+
this.configChanged.unsubscribe();
|
|
1002
997
|
};
|
|
1003
998
|
/** To Edit current widget configuration*/
|
|
1004
999
|
/**
|