@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
|
@@ -606,14 +606,10 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
606
606
|
* @return {?}
|
|
607
607
|
*/
|
|
608
608
|
function () {
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
if (this.widgetDeleteEvent)
|
|
614
|
-
this.widgetDeleteEvent.unsubscribe();
|
|
615
|
-
if (this.widgetLibraryDoneClick)
|
|
616
|
-
this.widgetLibraryDoneClick.unsubscribe();
|
|
609
|
+
this.conifgAddClick.unsubscribe();
|
|
610
|
+
this.widgetAddEvent.unsubscribe();
|
|
611
|
+
this.widgetDeleteEvent.unsubscribe();
|
|
612
|
+
this.widgetLibraryDoneClick.unsubscribe();
|
|
617
613
|
};
|
|
618
614
|
/**To update position/dimention of all widgets in the area */
|
|
619
615
|
/**
|
|
@@ -883,7 +879,7 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
883
879
|
{ type: Component, args: [{
|
|
884
880
|
selector: 'ra-dashboard-area',
|
|
885
881
|
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",
|
|
886
|
-
styles: ["gridster{width:inherit;resize:height;display:flex
|
|
882
|
+
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}"]
|
|
887
883
|
}] }
|
|
888
884
|
];
|
|
889
885
|
/** @nocollapse */
|
|
@@ -962,8 +958,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
962
958
|
* @return {?}
|
|
963
959
|
*/
|
|
964
960
|
function () {
|
|
965
|
-
|
|
966
|
-
this.configChanged.unsubscribe();
|
|
961
|
+
this.configChanged.unsubscribe();
|
|
967
962
|
};
|
|
968
963
|
/** To Edit current widget configuration*/
|
|
969
964
|
/**
|
|
@@ -5769,5 +5764,15 @@ var RaBaseDashboardFilter = /** @class */ (function () {
|
|
|
5769
5764
|
return RaBaseDashboardFilter;
|
|
5770
5765
|
}());
|
|
5771
5766
|
|
|
5767
|
+
/**
|
|
5768
|
+
* @fileoverview added by tsickle
|
|
5769
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5770
|
+
*/
|
|
5771
|
+
|
|
5772
|
+
/**
|
|
5773
|
+
* @fileoverview added by tsickle
|
|
5774
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5775
|
+
*/
|
|
5776
|
+
|
|
5772
5777
|
export { DashboardFrameworkModule, RADashboardArea, RADashboardEventBus, RAEvent, RAEventKey, RAWidgetContainer, RaBaseDashboardFilter, RaBaseDashboardTemplate, RaDashboardService, GridsterModule as ɵa, GridsterComponent as ɵb, GridsterItemComponent as ɵc, GridsterPreviewComponent as ɵd, customNotifierOptions as ɵe };
|
|
5773
5778
|
//# sourceMappingURL=schneideress-dashboardframework.js.map
|