@schneideress/dashboardframework 20.0.6 → 20.0.8
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.
|
@@ -164,6 +164,8 @@ var RAEvent;
|
|
|
164
164
|
RAEvent["SnapShotClick"] = "SnapShotClick";
|
|
165
165
|
/** Event on emission report snapshot selected from list*/
|
|
166
166
|
RAEvent["SnapShotSelected"] = "SnapShotSelected";
|
|
167
|
+
/** Event to update widget count */
|
|
168
|
+
RAEvent["UpdateWidgetCount"] = "UpdateWidgetCount";
|
|
167
169
|
})(RAEvent || (RAEvent = {}));
|
|
168
170
|
var RAEventKey;
|
|
169
171
|
(function (RAEventKey) {
|
|
@@ -4780,14 +4782,16 @@ class RADashboardArea {
|
|
|
4780
4782
|
this.showEmptyDashboard = false;
|
|
4781
4783
|
this.showDownloadOnlyState = false;
|
|
4782
4784
|
this.isWidgetMgmnt = false;
|
|
4783
|
-
this.
|
|
4785
|
+
this.hasGrid = false;
|
|
4784
4786
|
this.initialWidgetCount = 10;
|
|
4785
4787
|
this.currentLoadingCount = 0;
|
|
4788
|
+
this.isSiteDetailDashboard = false;
|
|
4786
4789
|
this.downloadDatastreamLimit = 200;
|
|
4787
4790
|
this.reportDatastreamLimit = 50;
|
|
4788
4791
|
this.widgetHeight = 2;
|
|
4789
4792
|
this.widgetWidth = 4;
|
|
4790
4793
|
this.isIndicatorDashboard = false;
|
|
4794
|
+
this.widgetCount = 0;
|
|
4791
4795
|
this.hideDashboardBanner = new EventEmitter();
|
|
4792
4796
|
}
|
|
4793
4797
|
scroll() {
|
|
@@ -4803,7 +4807,8 @@ class RADashboardArea {
|
|
|
4803
4807
|
this.setEmptyDashboardConfig();
|
|
4804
4808
|
this.setDownloadOnlyStateConfig();
|
|
4805
4809
|
this.lastViewType = this.responsiveService.IsDesktopView ? 'desktop' : 'mobile';
|
|
4806
|
-
|
|
4810
|
+
const gridTemplates = ['Emission Report', 'CostUsage Report', 'Site Detail'];
|
|
4811
|
+
this.hasGrid = gridTemplates.includes(this.dashboardInfo.templateName);
|
|
4807
4812
|
this.responsiveService.resized.subscribe((isDesktop) => {
|
|
4808
4813
|
if (this.lastViewType != (isDesktop ? 'desktop' : 'mobile') || !isDesktop) {
|
|
4809
4814
|
this.lastViewType = (isDesktop ? 'desktop' : 'mobile');
|
|
@@ -4945,8 +4950,10 @@ class RADashboardArea {
|
|
|
4945
4950
|
if (el) {
|
|
4946
4951
|
let rect = el.getBoundingClientRect();
|
|
4947
4952
|
const height = rect.height;
|
|
4948
|
-
if (this.
|
|
4949
|
-
|
|
4953
|
+
if (this.hasGrid) {
|
|
4954
|
+
const multiplier = Math.max(1, this.widgetList.length / 2);
|
|
4955
|
+
this.gridsterHeight = (height + 20) * multiplier + 'px';
|
|
4956
|
+
}
|
|
4950
4957
|
return rect && rect.top < window.innerHeight;
|
|
4951
4958
|
}
|
|
4952
4959
|
}
|
|
@@ -5077,6 +5084,7 @@ class RADashboardArea {
|
|
|
5077
5084
|
isIndicatorDashboard: this.isIndicatorDashboard
|
|
5078
5085
|
};
|
|
5079
5086
|
let _the = this;
|
|
5087
|
+
this.isSiteDetailDashboard = this.dashboardInfo?.templateName === 'Site Detail';
|
|
5080
5088
|
this.dashboardService.getWidgetsByDashboardArea(widgetInfo, this.appConfig).subscribe(widgets => {
|
|
5081
5089
|
_the.widgetList = [];
|
|
5082
5090
|
this.userWidgets = widgets;
|
|
@@ -5088,6 +5096,8 @@ class RADashboardArea {
|
|
|
5088
5096
|
if (settings && settings.isPAMWidget)
|
|
5089
5097
|
this.PAMWidgets.push(element.widgetInstanceId);
|
|
5090
5098
|
}
|
|
5099
|
+
if (this.isSiteDetailDashboard)
|
|
5100
|
+
element.templateSettings = JSON.stringify(this.dashboardInfo?.templateConfig?.widget);
|
|
5091
5101
|
});
|
|
5092
5102
|
this.checkPAMWidgets();
|
|
5093
5103
|
if (this.dashboardInfo?.isReport && widgets && widgets.length > this.reportDatastreamLimit) {
|
|
@@ -5103,8 +5113,15 @@ class RADashboardArea {
|
|
|
5103
5113
|
else {
|
|
5104
5114
|
this.showDownloadOnlyState = false;
|
|
5105
5115
|
this.showEmptyDashboard = true;
|
|
5106
|
-
|
|
5116
|
+
if (this.isSiteDetailDashboard) {
|
|
5117
|
+
this.showDownloadOnlyState = false;
|
|
5118
|
+
this.showEmptyDashboard = false;
|
|
5119
|
+
}
|
|
5120
|
+
else {
|
|
5121
|
+
this.raDashboardEventBus.publish(RAEvent.HideDashboardBanner, this.showEmptyDashboard);
|
|
5122
|
+
}
|
|
5107
5123
|
}
|
|
5124
|
+
this.raDashboardEventBus.publish(RAEvent.UpdateWidgetCount, this.userWidgets.length);
|
|
5108
5125
|
});
|
|
5109
5126
|
}
|
|
5110
5127
|
/** To set Area(Gridster) height dynamically as widgets are added/removed */
|
|
@@ -5120,7 +5137,12 @@ class RADashboardArea {
|
|
|
5120
5137
|
if (this.options.api) {
|
|
5121
5138
|
curRowHeight = this.options.api.getCurrentRowHeight();
|
|
5122
5139
|
}
|
|
5123
|
-
|
|
5140
|
+
if (this.isSiteDetailDashboard) {
|
|
5141
|
+
this.showEmptyDashboard = false;
|
|
5142
|
+
}
|
|
5143
|
+
else {
|
|
5144
|
+
this.showEmptyDashboard = this.userWidgets.length === 0;
|
|
5145
|
+
}
|
|
5124
5146
|
this.widgetList.forEach((t) => {
|
|
5125
5147
|
let currentHeight = t.y + t.rows;
|
|
5126
5148
|
if (currentHeight > areaScrollHeight) {
|
|
@@ -5144,7 +5166,7 @@ class RADashboardArea {
|
|
|
5144
5166
|
areaHeight = 600;
|
|
5145
5167
|
}
|
|
5146
5168
|
this.gridheight = areaHeight;
|
|
5147
|
-
if (this.
|
|
5169
|
+
if (this.hasGrid) {
|
|
5148
5170
|
const height = this.gridItem.height; // to handle the height of the gridster in emission report
|
|
5149
5171
|
if (height)
|
|
5150
5172
|
this.gridsterHeight = height + 20 + 'px';
|
|
@@ -5176,9 +5198,13 @@ class RADashboardArea {
|
|
|
5176
5198
|
}
|
|
5177
5199
|
}
|
|
5178
5200
|
this.showEmptyDashboard = this.userWidgets.length > 0 ? false : true;
|
|
5179
|
-
if (this.showEmptyDashboard == true) {
|
|
5201
|
+
if (this.showEmptyDashboard == true && !this.isSiteDetailDashboard) {
|
|
5180
5202
|
this.raDashboardEventBus.publish(RAEvent.HideDashboardBanner, this.showEmptyDashboard);
|
|
5181
5203
|
}
|
|
5204
|
+
if (this.isSiteDetailDashboard) {
|
|
5205
|
+
this.raDashboardEventBus.publish(RAEvent.UpdateWidgetCount, -1);
|
|
5206
|
+
this.raDashboardEventBus.publish(RAEvent.RearrangeClicked, true);
|
|
5207
|
+
}
|
|
5182
5208
|
}
|
|
5183
5209
|
/**To rearrange widgets position in the dashboard, compactLeft&Up,compactLeft,compactUp,etc*/
|
|
5184
5210
|
rearrangeWidgets() {
|
|
@@ -5219,6 +5245,8 @@ class RADashboardArea {
|
|
|
5219
5245
|
data.dashboardId = this.userDashboardId;
|
|
5220
5246
|
this.ngxService.start();
|
|
5221
5247
|
this.dashboardService.addWidget(data, this.appConfig).subscribe(widget => {
|
|
5248
|
+
if (this.isSiteDetailDashboard)
|
|
5249
|
+
widget.templateSettings = JSON.stringify(this.dashboardInfo?.templateConfig?.widget);
|
|
5222
5250
|
this.userWidgets.push(widget);
|
|
5223
5251
|
let gridsterItem = this.responsiveService.getGridsterItem(widget);
|
|
5224
5252
|
this.widgetList.push(gridsterItem);
|
|
@@ -5330,11 +5358,11 @@ class RADashboardArea {
|
|
|
5330
5358
|
}
|
|
5331
5359
|
}
|
|
5332
5360
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: RADashboardArea, deps: [{ token: RaDashboardService }, { token: i0.NgZone }, { token: i2$1.NgxUiLoaderService }, { token: i3.RATranslateService }, { token: i4.NotifierService }, { token: i0.ChangeDetectorRef }, { token: RADashboardResponsiveService }, { token: i3.RAPermissionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5333
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: RADashboardArea, isStandalone: false, selector: "ra-dashboard-area", inputs: { userDashboardId: ["user-dashboard-id", "userDashboardId"], areaKey: ["area-key", "areaKey"], downloadDatastreamLimit: ["download-datastream-limit", "downloadDatastreamLimit"], reportDatastreamLimit: ["report-datastream-limit", "reportDatastreamLimit"], globalFilter: ["global-filter", "globalFilter"], raDashboardEventBus: ["event-bus", "raDashboardEventBus"], widgetHeight: ["widget-height", "widgetHeight"], widgetWidth: ["widget-width", "widgetWidth"], appConfig: ["app-config", "appConfig"], dashboardInfo: ["dashboard-info", "dashboardInfo"], isIndicatorDashboard: "isIndicatorDashboard", templateConfig: "templateConfig", bulkActionData: ["bulk_Action_Data", "bulkActionData"] }, outputs: { hideDashboardBanner: "hideDashboardBanner" }, host: { listeners: { "document:scroll": "scroll()" } }, viewQueries: [{ propertyName: "gridWrapper", first: true, predicate: ["gridWrapper"], descendants: true }, { propertyName: "gridItem", first: true, predicate: ["gridItem"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"\r\n [ngStyle]=\"{'height': (userWidgets.length > 0 && !showDownloadOnlyState) && !
|
|
5361
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.2.1", type: RADashboardArea, isStandalone: false, selector: "ra-dashboard-area", inputs: { userDashboardId: ["user-dashboard-id", "userDashboardId"], areaKey: ["area-key", "areaKey"], downloadDatastreamLimit: ["download-datastream-limit", "downloadDatastreamLimit"], reportDatastreamLimit: ["report-datastream-limit", "reportDatastreamLimit"], globalFilter: ["global-filter", "globalFilter"], raDashboardEventBus: ["event-bus", "raDashboardEventBus"], widgetHeight: ["widget-height", "widgetHeight"], widgetWidth: ["widget-width", "widgetWidth"], appConfig: ["app-config", "appConfig"], dashboardInfo: ["dashboard-info", "dashboardInfo"], isIndicatorDashboard: "isIndicatorDashboard", templateConfig: "templateConfig", bulkActionData: ["bulk_Action_Data", "bulkActionData"], widgetCount: ["widget-count", "widgetCount"] }, outputs: { hideDashboardBanner: "hideDashboardBanner" }, host: { listeners: { "document:scroll": "scroll()" } }, viewQueries: [{ propertyName: "gridWrapper", first: true, predicate: ["gridWrapper"], descendants: true }, { propertyName: "gridItem", first: true, predicate: ["gridItem"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"\r\n [ngStyle]=\"{'height': (userWidgets.length > 0 && !showDownloadOnlyState) && !hasGrid ? ( gridheight + 'px') : 'unset'}\">\r\n <!-- <div #gridWrapper class=\"wrap gridster\"> -->\r\n <gridster [style.min-height]=\"gridsterHeight + '!important'\" [options]=\"options\" style=\"height:100%;\" *ngIf=\"userWidgets.length > 0 && !showDownloadOnlyState\">\r\n <gridster-item #gridItem [item]=\"item\" *ngFor=\"let item of widgetList\">\r\n <ra-widget-container (widgetLoaded)=\"widgetLoaded($event, item)\" [canLoadData]=\"item.canLoadData\" (dataLoaded)=\"dataLoaded($event)\"\r\n [bulk-action-data]=\"bulkActionData\" [dashboard-info]=\"dashboardInfo\" [app-config]=\"appConfig\"\r\n [event-bus]=\"raDashboardEventBus\" (widgetDeleted)=\"deleteWidget($event)\" [data]=\"item\"\r\n [global-filter]=\"globalFilter\" [grid-cell-height]=\"gridcellHeight\" *ngIf=\"gridcellHeight && gridcellHeight > 0\"\r\n [widget-width]=\"item.cols\" [widget-height]=\"item.rows\" [widget-instance-id]=\"item.widgetInstanceId\"\r\n [dom-resized]=\"domResized\" (updateAppliedFilters)=\"updateAppliedFilters($event)\">\r\n </ra-widget-container>\r\n </gridster-item>\r\n </gridster>\r\n\r\n <div class=\"empty-padding kiosk-hide\" *ngIf=\"showEmptyDashboard\">\r\n <div class=\"empty-wrapper\">\r\n <div></div>\r\n <div class=\"empty-prefix\">\r\n <!-- <i class=\"fal fa-edit edit-icon\"></i> -->\r\n <span>{{emptyDashboardTitle}}</span>\r\n </div>\r\n <hr class=\"horizontalLine-solid\" />\r\n <div class=\"empty-content light\">\r\n <div>\r\n <div class=\"col-sm-12 empty-msg\">\r\n {{emptyDashboardMsg1}} <br />\r\n {{emptyDashboardMsg2}}\r\n </div>\r\n <button *ngIf=\"isWidgetMgmnt\" class=\"btn btnLib btn-sm dashboard-button light\" (click)=\"buttonClick()\">\r\n <i class=\"{{emptyDashboardButtonIcon}}\"></i>{{emptyDashboardButtonText}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"empty-padding kiosk-hide\" *ngIf=\"showDownloadOnlyState\">\r\n <div class=\"empty-wrapper\">\r\n <div></div>\r\n <div class=\"empty-prefix\">\r\n <!-- <i class=\"fal fa-edit edit-icon\"></i> -->\r\n <span>{{DownloadOnlyStateTitle}}</span>\r\n </div>\r\n <hr class=\"horizontalLine-solid\" />\r\n <div class=\"empty-content light\">\r\n <div>\r\n <div class=\"col-sm-12 empty-msg\">\r\n {{DownloadOnlyStateMsg1}} <br />\r\n {{DownloadOnlyStateMsg2}}\r\n </div>\r\n <button *ngIf=\"isWidgetMgmnt\" class=\"btn btnLib btn-sm dashboard-button light\" (click)=\"buttonActionClick(DownloadOnlyStateButtonAction1)\">\r\n <i class=\"{{DownloadOnlyStateButtonIcon1}}\"></i>{{DownloadOnlyStateButtonText1}}</button>\r\n <button class=\"btn btnLib btn-sm dashboard-button light button-margin\" (click)=\"buttonActionClick(DownloadOnlyStateButtonAction2)\">\r\n <i class=\"{{DownloadOnlyStateButtonIcon2}}\"></i>{{DownloadOnlyStateButtonText2}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <notifier-container></notifier-container>\r\n</div>\r\n", styles: ["gridster{width:inherit;resize:height;display:flex;background-color:#fff;overflow-y:hidden!important;flex-direction:column}.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;transition:.3s;display:none;background:#fff;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;box-shadow:none}gridster-item:hover{box-shadow:0 1px 10px #00000026!important}.button-margin{margin-left:10px}@media screen and (max-width: 685px){.gridster-mobile{height:auto!important;margin-bottom:50px!important}}@media screen and (max-width: 350px){.gridster-mobile{min-height:330px!important;margin-bottom:0!important}}.empty-padding{padding:15px 0;background-color:#fff;display:flex}.empty-wrapper{background-color:#fff;border:1px solid #9FA0A4;min-height:125px;width:100%}.empty-prefix{color:#32ad3c;font-size:18px;padding:15px}.empty-content{color:#626469;width:100%;padding:15px}.empty-msg{padding:0 0 15px;font-size:16px}.horizontalLine-solid{border-top:1px solid #cbcbcb;margin:0 15px}.dashboard-button{padding:5px 10px 5px 5px!important}.btnLib{background-color:#ededed;color:#333!important}.btn-sm,.btn-group-sm>.btn{padding:5px 20px 5px 5px}.edit-icon{color:#32ad3c;font-size:24px;margin-right:15px}.empty-title{margin-top:10px}@media screen and (max-width: 600px){.empty-padding{padding:15px 0;background-color:#fff;width:100%;display:block}.empty-wrapper{display:flex;background-color:#fff;border:1px solid #9FA0A4;min-height:125px;width:100%}.empty-prefix{color:#32ad3c;font-size:16px;display:flex;height:40px;padding:15px}.empty-content{color:#333;display:flex;padding:15px}.empty-msg{padding:0 0 15px;font-size:14px}.edit-icon{color:#32ad3c;font-size:20px;margin-right:6px}.empty-title{margin-top:6px}}.gridster-h{min-height:50vh!important}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: GridsterComponent, selector: "gridster", inputs: ["options"] }, { kind: "component", type: GridsterItemComponent, selector: "gridster-item", inputs: ["item"], outputs: ["itemInit", "itemChange", "itemResize"] }, { kind: "component", type: i4.NotifierContainerComponent, selector: "notifier-container" }, { kind: "component", type: RAWidgetContainer, selector: "ra-widget-container", inputs: ["widget-instance-id", "global-filter", "dashboard-info", "data", "event-bus", "app-config", "widget-width", "widget-height", "grid-cell-height", "bulk-action-data", "canLoadData", "dom-resized"], outputs: ["widgetDeleted", "updateAppliedFilters", "dataLoaded", "widgetLoaded"] }] }); }
|
|
5334
5362
|
}
|
|
5335
5363
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImport: i0, type: RADashboardArea, decorators: [{
|
|
5336
5364
|
type: Component,
|
|
5337
|
-
args: [{ selector: 'ra-dashboard-area', standalone: false, template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"\r\n [ngStyle]=\"{'height': (userWidgets.length > 0 && !showDownloadOnlyState) && !
|
|
5365
|
+
args: [{ selector: 'ra-dashboard-area', standalone: false, template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"\r\n [ngStyle]=\"{'height': (userWidgets.length > 0 && !showDownloadOnlyState) && !hasGrid ? ( gridheight + 'px') : 'unset'}\">\r\n <!-- <div #gridWrapper class=\"wrap gridster\"> -->\r\n <gridster [style.min-height]=\"gridsterHeight + '!important'\" [options]=\"options\" style=\"height:100%;\" *ngIf=\"userWidgets.length > 0 && !showDownloadOnlyState\">\r\n <gridster-item #gridItem [item]=\"item\" *ngFor=\"let item of widgetList\">\r\n <ra-widget-container (widgetLoaded)=\"widgetLoaded($event, item)\" [canLoadData]=\"item.canLoadData\" (dataLoaded)=\"dataLoaded($event)\"\r\n [bulk-action-data]=\"bulkActionData\" [dashboard-info]=\"dashboardInfo\" [app-config]=\"appConfig\"\r\n [event-bus]=\"raDashboardEventBus\" (widgetDeleted)=\"deleteWidget($event)\" [data]=\"item\"\r\n [global-filter]=\"globalFilter\" [grid-cell-height]=\"gridcellHeight\" *ngIf=\"gridcellHeight && gridcellHeight > 0\"\r\n [widget-width]=\"item.cols\" [widget-height]=\"item.rows\" [widget-instance-id]=\"item.widgetInstanceId\"\r\n [dom-resized]=\"domResized\" (updateAppliedFilters)=\"updateAppliedFilters($event)\">\r\n </ra-widget-container>\r\n </gridster-item>\r\n </gridster>\r\n\r\n <div class=\"empty-padding kiosk-hide\" *ngIf=\"showEmptyDashboard\">\r\n <div class=\"empty-wrapper\">\r\n <div></div>\r\n <div class=\"empty-prefix\">\r\n <!-- <i class=\"fal fa-edit edit-icon\"></i> -->\r\n <span>{{emptyDashboardTitle}}</span>\r\n </div>\r\n <hr class=\"horizontalLine-solid\" />\r\n <div class=\"empty-content light\">\r\n <div>\r\n <div class=\"col-sm-12 empty-msg\">\r\n {{emptyDashboardMsg1}} <br />\r\n {{emptyDashboardMsg2}}\r\n </div>\r\n <button *ngIf=\"isWidgetMgmnt\" class=\"btn btnLib btn-sm dashboard-button light\" (click)=\"buttonClick()\">\r\n <i class=\"{{emptyDashboardButtonIcon}}\"></i>{{emptyDashboardButtonText}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"empty-padding kiosk-hide\" *ngIf=\"showDownloadOnlyState\">\r\n <div class=\"empty-wrapper\">\r\n <div></div>\r\n <div class=\"empty-prefix\">\r\n <!-- <i class=\"fal fa-edit edit-icon\"></i> -->\r\n <span>{{DownloadOnlyStateTitle}}</span>\r\n </div>\r\n <hr class=\"horizontalLine-solid\" />\r\n <div class=\"empty-content light\">\r\n <div>\r\n <div class=\"col-sm-12 empty-msg\">\r\n {{DownloadOnlyStateMsg1}} <br />\r\n {{DownloadOnlyStateMsg2}}\r\n </div>\r\n <button *ngIf=\"isWidgetMgmnt\" class=\"btn btnLib btn-sm dashboard-button light\" (click)=\"buttonActionClick(DownloadOnlyStateButtonAction1)\">\r\n <i class=\"{{DownloadOnlyStateButtonIcon1}}\"></i>{{DownloadOnlyStateButtonText1}}</button>\r\n <button class=\"btn btnLib btn-sm dashboard-button light button-margin\" (click)=\"buttonActionClick(DownloadOnlyStateButtonAction2)\">\r\n <i class=\"{{DownloadOnlyStateButtonIcon2}}\"></i>{{DownloadOnlyStateButtonText2}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <notifier-container></notifier-container>\r\n</div>\r\n", styles: ["gridster{width:inherit;resize:height;display:flex;background-color:#fff;overflow-y:hidden!important;flex-direction:column}.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;transition:.3s;display:none;background:#fff;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;box-shadow:none}gridster-item:hover{box-shadow:0 1px 10px #00000026!important}.button-margin{margin-left:10px}@media screen and (max-width: 685px){.gridster-mobile{height:auto!important;margin-bottom:50px!important}}@media screen and (max-width: 350px){.gridster-mobile{min-height:330px!important;margin-bottom:0!important}}.empty-padding{padding:15px 0;background-color:#fff;display:flex}.empty-wrapper{background-color:#fff;border:1px solid #9FA0A4;min-height:125px;width:100%}.empty-prefix{color:#32ad3c;font-size:18px;padding:15px}.empty-content{color:#626469;width:100%;padding:15px}.empty-msg{padding:0 0 15px;font-size:16px}.horizontalLine-solid{border-top:1px solid #cbcbcb;margin:0 15px}.dashboard-button{padding:5px 10px 5px 5px!important}.btnLib{background-color:#ededed;color:#333!important}.btn-sm,.btn-group-sm>.btn{padding:5px 20px 5px 5px}.edit-icon{color:#32ad3c;font-size:24px;margin-right:15px}.empty-title{margin-top:10px}@media screen and (max-width: 600px){.empty-padding{padding:15px 0;background-color:#fff;width:100%;display:block}.empty-wrapper{display:flex;background-color:#fff;border:1px solid #9FA0A4;min-height:125px;width:100%}.empty-prefix{color:#32ad3c;font-size:16px;display:flex;height:40px;padding:15px}.empty-content{color:#333;display:flex;padding:15px}.empty-msg{padding:0 0 15px;font-size:14px}.edit-icon{color:#32ad3c;font-size:20px;margin-right:6px}.empty-title{margin-top:6px}}.gridster-h{min-height:50vh!important}\n"] }]
|
|
5338
5366
|
}], ctorParameters: () => [{ type: RaDashboardService }, { type: i0.NgZone }, { type: i2$1.NgxUiLoaderService }, { type: i3.RATranslateService }, { type: i4.NotifierService }, { type: i0.ChangeDetectorRef }, { type: RADashboardResponsiveService }, { type: i3.RAPermissionService }], propDecorators: { userDashboardId: [{
|
|
5339
5367
|
type: Input,
|
|
5340
5368
|
args: ['user-dashboard-id']
|
|
@@ -5373,6 +5401,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.2.1", ngImpor
|
|
|
5373
5401
|
}], bulkActionData: [{
|
|
5374
5402
|
type: Input,
|
|
5375
5403
|
args: ['bulk_Action_Data']
|
|
5404
|
+
}], widgetCount: [{
|
|
5405
|
+
type: Input,
|
|
5406
|
+
args: ['widget-count']
|
|
5376
5407
|
}], hideDashboardBanner: [{
|
|
5377
5408
|
type: Output
|
|
5378
5409
|
}], gridWrapper: [{
|