@schneideress/dashboardframework 0.0.81 → 0.0.83
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 +1 -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 +2 -4
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +1 -3
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +2 -4
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +1 -3
- package/fesm2015/schneideress-dashboardframework.js +1 -5
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +1 -5
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -807,8 +807,6 @@ class RADashboardArea {
|
|
|
807
807
|
if (areaHeight < 600) {
|
|
808
808
|
areaHeight = 600;
|
|
809
809
|
}
|
|
810
|
-
console.log('grid height value is');
|
|
811
|
-
console.log(areaHeight);
|
|
812
810
|
this.gridheight = areaHeight;
|
|
813
811
|
}
|
|
814
812
|
/**
|
|
@@ -964,7 +962,7 @@ class RADashboardArea {
|
|
|
964
962
|
RADashboardArea.decorators = [
|
|
965
963
|
{ type: Component, args: [{
|
|
966
964
|
selector: 'ra-dashboard-area',
|
|
967
|
-
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\" [grid-cell-height]=\"item.rowHeight\" [widget-width]=\"item.cols\" [widget-height]=\"item.rows\" [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",
|
|
965
|
+
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\" [grid-cell-height]=\"item.widgetInfo.rowHeight\" [widget-width]=\"item.cols\" [widget-height]=\"item.rows\" [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",
|
|
968
966
|
styles: ["gridster{width:inherit;resize:height;display:-webkit-box;display:flex;background-color:#ededed;overflow-y:hidden!important}.dvheader{width:100%;height:35px;background:#000;color:#fff;padding:7px 3px 5px 6px;text-transform:uppercase}gridster-item{box-sizing:border-box;z-index:1;position:absolute;overflow:hidden;-webkit-transition:.3s;transition:.3s;display:none;background:#fff;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;box-shadow:0 1px 10px rgba(0,0,0,.05)}gridster-item:hover{box-shadow:0 1px 10px rgba(0,0,0,.15)}"]
|
|
969
967
|
}] }
|
|
970
968
|
];
|
|
@@ -1300,11 +1298,9 @@ class RAWidgetContainer {
|
|
|
1300
1298
|
*/
|
|
1301
1299
|
setLock(config) {
|
|
1302
1300
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1303
|
-
debugger;
|
|
1304
1301
|
this.lockStatus = yield this.widgetElement.loadLockStatus(config);
|
|
1305
1302
|
if (this.lockStatus == 'lock') {
|
|
1306
1303
|
this.lockTitle = 'Locked';
|
|
1307
|
-
console.log(this.lockTitle);
|
|
1308
1304
|
}
|
|
1309
1305
|
else {
|
|
1310
1306
|
this.lockTitle = 'Partially Locked';
|