@schneideress/dashboardframework 0.0.234 → 0.0.236
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 +129 -120
- 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-widget-container/ra.widget.container.component.js +38 -26
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +130 -121
- package/fesm2015/schneideress-dashboardframework.js +37 -25
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +129 -120
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +1 -0
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -1998,16 +1998,18 @@
|
|
|
1998
1998
|
*/
|
|
1999
1999
|
function () {
|
|
2000
2000
|
if (this.widgetElement) {
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
this.
|
|
2009
|
-
|
|
2010
|
-
|
|
2001
|
+
if (typeof this.widgetElement.widgetResized === "function") {
|
|
2002
|
+
/** @type {?} */
|
|
2003
|
+
var size = {};
|
|
2004
|
+
size.height = this.height;
|
|
2005
|
+
size.width = this.width;
|
|
2006
|
+
size.cellHeight = this.gridCellHeight;
|
|
2007
|
+
this.widgetElement.widgetResized(size);
|
|
2008
|
+
if (this.height == 1 || this.width == 1)
|
|
2009
|
+
this.isKpiView = true;
|
|
2010
|
+
else
|
|
2011
|
+
this.isKpiView = false;
|
|
2012
|
+
}
|
|
2011
2013
|
}
|
|
2012
2014
|
};
|
|
2013
2015
|
/**
|
|
@@ -2087,6 +2089,9 @@
|
|
|
2087
2089
|
function () {
|
|
2088
2090
|
if (this.configChanged)
|
|
2089
2091
|
this.configChanged.unsubscribe();
|
|
2092
|
+
if (this.widgetElementHandler && this.data && this.data.widgetInfo && this.data.widgetInfo.widgetInstanceId) {
|
|
2093
|
+
document.body.removeEventListener('widgetinitiated' + this.data.widgetInfo.widgetInstanceId, this.widgetElementHandler);
|
|
2094
|
+
}
|
|
2090
2095
|
};
|
|
2091
2096
|
/** To Edit current widget configuration*/
|
|
2092
2097
|
/**
|
|
@@ -2295,120 +2300,122 @@
|
|
|
2295
2300
|
function () {
|
|
2296
2301
|
me.widgetElement = document.createElement(widgetInfo.customTag);
|
|
2297
2302
|
me.widgetElement.setAttribute("widget-instance-id", widgetInfo.widgetInstanceId);
|
|
2298
|
-
|
|
2303
|
+
/** @type {?} */
|
|
2304
|
+
var handler = (/**
|
|
2305
|
+
* @param {?} event
|
|
2299
2306
|
* @return {?}
|
|
2300
2307
|
*/
|
|
2301
|
-
function () {
|
|
2308
|
+
function (event) {
|
|
2302
2309
|
var _this = this;
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
}
|
|
2354
|
-
}));
|
|
2355
|
-
if (typeof (me.widgetElement.titleLineEnabled) != 'undefined') {
|
|
2356
|
-
titleLineEnabled = me.widgetElement.titleLineEnabled();
|
|
2357
|
-
if (titleLineEnabled) {
|
|
2358
|
-
this.enableTitleLine = titleLineEnabled;
|
|
2359
|
-
this.enableTitleLineActual = titleLineEnabled;
|
|
2360
|
-
}
|
|
2310
|
+
setTimeout((/**
|
|
2311
|
+
* @return {?}
|
|
2312
|
+
*/
|
|
2313
|
+
function () { return __awaiter(_this, void 0, void 0, function () {
|
|
2314
|
+
var titleLineEnabled;
|
|
2315
|
+
var _this = this;
|
|
2316
|
+
return __generator(this, function (_a) {
|
|
2317
|
+
switch (_a.label) {
|
|
2318
|
+
case 0:
|
|
2319
|
+
console.log('widget inititated listener triggered');
|
|
2320
|
+
this.widgetElement.addEventListener('on-widget-respond', (/**
|
|
2321
|
+
* @param {?} e
|
|
2322
|
+
* @return {?}
|
|
2323
|
+
*/
|
|
2324
|
+
function (e) {
|
|
2325
|
+
/** @type {?} */
|
|
2326
|
+
var type = e.detail.type;
|
|
2327
|
+
switch (type) {
|
|
2328
|
+
case 'onDataLoad':
|
|
2329
|
+
if (e.detail.data)
|
|
2330
|
+
_this.showPanel = true;
|
|
2331
|
+
else
|
|
2332
|
+
_this.showPanel = false;
|
|
2333
|
+
break;
|
|
2334
|
+
case 'onConfigEditClicked':
|
|
2335
|
+
_this.editWidget();
|
|
2336
|
+
break;
|
|
2337
|
+
case 'onEnableDefaultState':
|
|
2338
|
+
_this.setEmptyState(e.detail.data);
|
|
2339
|
+
break;
|
|
2340
|
+
case 'onSetTitleUnderline':
|
|
2341
|
+
if (e.detail.data == true)
|
|
2342
|
+
_this.enableTitleLine = true;
|
|
2343
|
+
else
|
|
2344
|
+
_this.enableTitleLine = _this.enableTitleLineActual;
|
|
2345
|
+
break;
|
|
2346
|
+
case 'onWidgetTitleHidden':
|
|
2347
|
+
if (e.detail.data == true)
|
|
2348
|
+
_this.hideTitle = true;
|
|
2349
|
+
else
|
|
2350
|
+
_this.hideTitle = false;
|
|
2351
|
+
break;
|
|
2352
|
+
case 'onUpdateLockData':
|
|
2353
|
+
_this.setLock(e.detail.data);
|
|
2354
|
+
break;
|
|
2355
|
+
case 'onGlobalFilterApplicableCheck':
|
|
2356
|
+
_this.setInapplicableFilters(e.detail.data, widgetInfo.widgetInstanceId);
|
|
2357
|
+
break;
|
|
2358
|
+
default:
|
|
2359
|
+
break;
|
|
2361
2360
|
}
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
this.
|
|
2361
|
+
}));
|
|
2362
|
+
if (typeof (this.widgetElement.titleLineEnabled) != 'undefined') {
|
|
2363
|
+
titleLineEnabled = this.widgetElement.titleLineEnabled();
|
|
2364
|
+
if (titleLineEnabled) {
|
|
2365
|
+
this.enableTitleLine = titleLineEnabled;
|
|
2366
|
+
this.enableTitleLineActual = titleLineEnabled;
|
|
2367
2367
|
}
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2368
|
+
}
|
|
2369
|
+
this.editText = this.translateService.translate('Common.edit');
|
|
2370
|
+
if (this.translateService.translate('Common.edit').length > 6) {
|
|
2371
|
+
this.editText = (this.translateService.translate('Common.edit').substring(0, 6) + '...');
|
|
2372
|
+
this.editToolTipValue = this.translateService.translate('Common.edit');
|
|
2373
|
+
this.editToolTipWidth = "300px";
|
|
2374
|
+
}
|
|
2375
|
+
this.copyText = this.translateService.translate('Common.copy');
|
|
2376
|
+
if (this.translateService.translate('Common.copy').length > 6) {
|
|
2377
|
+
this.copyText = (this.translateService.translate('Common.copy').substring(0, 6) + '...');
|
|
2378
|
+
this.copyToolTipValue = this.translateService.translate('Common.copy');
|
|
2379
|
+
this.copyToolTipWidth = "300px";
|
|
2380
|
+
}
|
|
2381
|
+
this.moveText = this.translateService.translate('Common.move');
|
|
2382
|
+
if (this.translateService.translate('Common.move').length > 6) {
|
|
2383
|
+
this.moveText = (this.translateService.translate('Common.move').substring(0, 6) + '...');
|
|
2384
|
+
this.moveToolTipValue = this.translateService.translate('Common.move');
|
|
2385
|
+
this.moveToolTipWidth = "300px";
|
|
2386
|
+
}
|
|
2387
|
+
this.excelText = this.translateService.translate('Common.excel');
|
|
2388
|
+
if (this.translateService.translate('Common.excel').length > 6) {
|
|
2389
|
+
this.excelText = (this.translateService.translate('Common.excel').substring(0, 6) + '...');
|
|
2390
|
+
this.excelToolTipValue = this.translateService.translate('Common.excel');
|
|
2391
|
+
this.excelToolTipWidth = "300px";
|
|
2392
|
+
}
|
|
2393
|
+
this.deleteText = this.translateService.translate('Common.delete');
|
|
2394
|
+
if (this.translateService.translate('Common.delete').length > 6) {
|
|
2395
|
+
this.deleteText = (this.translateService.translate('Common.delete').substring(0, 6) + '...');
|
|
2396
|
+
this.deleteToolTipValue = this.translateService.translate('Common.delete');
|
|
2397
|
+
this.deleteToolTipWidth = "300px";
|
|
2398
|
+
}
|
|
2399
|
+
this.isWidgetLoaded = true;
|
|
2400
|
+
widgetConfigFilter.appConfig = this.appConfig;
|
|
2401
|
+
widgetConfigFilter.widgetInfo = widgetInfo;
|
|
2402
|
+
widgetConfigFilter.configChanges = this.getConfigChanges(false);
|
|
2403
|
+
widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
|
|
2404
|
+
widgetConfigFilter.globalFilter = this.globalFilter;
|
|
2405
|
+
this.widgetElement.loadContent(widgetConfigFilter);
|
|
2406
|
+
return [4 /*yield*/, this.setLock(widgetConfigFilter.config)];
|
|
2407
|
+
case 1:
|
|
2408
|
+
_a.sent();
|
|
2409
|
+
return [4 /*yield*/, this.setDownloadIcon()];
|
|
2410
|
+
case 2:
|
|
2411
|
+
_a.sent();
|
|
2412
|
+
return [2 /*return*/];
|
|
2413
|
+
}
|
|
2414
|
+
});
|
|
2415
|
+
}); }));
|
|
2416
|
+
}).bind(_this);
|
|
2417
|
+
_this.widgetElementHandler = handler;
|
|
2418
|
+
document.body.addEventListener('widgetinitiated' + widgetInfo.widgetInstanceId, handler);
|
|
2412
2419
|
_this.ctlWidget.nativeElement.appendChild(_this.widgetElement);
|
|
2413
2420
|
}));
|
|
2414
2421
|
}));
|
|
@@ -2959,7 +2966,7 @@
|
|
|
2959
2966
|
RAWidgetContainer.decorators = [
|
|
2960
2967
|
{ type: core.Component, args: [{
|
|
2961
2968
|
selector: 'ra-widget-container',
|
|
2962
|
-
template: "<div #wcWrapper class=\"wc-wrapper\" (mouseenter)=\"mouseHover(true)\" (mouseleave)=\"mouseHover(false)\"\r\n [ngStyle]=\"{'margin-left': noPadding?'0px':'15px','margin-right': noPadding?'0px':'15px'}\">\r\n <div class=\"wcheader widget-move\" *ngIf=\"!hideTitle\"\r\n [ngClass]=\"{'underLine': enableTitleLine || isWidgetStateApplicable}\">\r\n <div class=\"col-md-12 wc-mover\" style=\"padding-left: 0px;height:inherit;padding-right: 0px;\">\r\n <div style=\"display:flex;margin-top:10px;\"\r\n [ngStyle]=\"{'margin-left': noPadding?'15px':'0px','margin-right': noPadding?'15px':'0px'}\">\r\n <div class=\"col-9 float-left title-label\">\r\n <ra-tooltip [value]=\"toolTipValue\" [width]=\"toolTipWidth\">\r\n <div [hidden]=\"hideTitle\" style=\"text-overflow: ellipsis;white-space: nowrap;overflow: hidden;\"\r\n (mouseover)=\"mouseOver($event)\" #searchInput>{{WidgetDisplayName}}</div>\r\n </ra-tooltip>\r\n </div>\r\n <div class=\"col-3\" style=\"cursor:default;padding-right: 0px;\"> \r\n <div class=\"float-right\" style=\"display: flex;\">\r\n <div class=\"title-bar-lock-icon lock-dropdown\" [hidden]=\"!inapplicableFilters || inapplicableFilters.length == 0\">\r\n <i class=\"fal fa-ban lock\"></i>\r\n <div class=\"lock-dropdown-content light widget-config-item\">\r\n <div *ngIf=\"inapplicableFilters\">\r\n <label style=\"color: #D9F0FA;\">\r\n {{'Common.InapplicableFilters'|translate}}:\r\n </label>\r\n <div style=\"color: white;\">\r\n <label class=\"bold\" style=\"margin-bottom: 0px;width: 100%;\" *ngFor=\"let item of inapplicableFilters\">\r\n {{item}}\r\n </label>\r\n </div>\r\n <hr>\r\n <div style=\"color: #D9F0FA;\">\r\n <label>{{'Common.InapplicableFiltersDesc'|translate}}</label>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n <div class=\"title-bar-lock-icon lock-dropdown\" [hidden]=\"!lockDetails && !lockTemplateInfo\">\r\n <i class=\"fal fa-lock lock\"></i>\r\n <div class=\"lock-dropdown-content light widget-config-item\">\r\n <div *ngIf=\"lockDetails && !lockTemplateInfo\">\r\n <label style=\"color: #D9F0FA;\">\r\n {{'Common.lockedfields'|translate}}\r\n </label>\r\n <div style=\"color: white;\">\r\n <label class=\"bold\" style=\"margin-bottom: 0px;width: 100%;\" *ngFor=\"let item of lockDetails\">\r\n {{item}}\r\n </label>\r\n </div>\r\n <hr>\r\n <div style=\"color: #D9F0FA;\">\r\n <label>{{'Common.lockedfieldseditinfo'|translate}}</label>\r\n </div>\r\n </div>\r\n <div *ngIf=\"!lockDetails && lockTemplateInfo\">\r\n <ng-container *ngTemplateOutlet=\"lockTemplateInfo\">\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"widget-menu\" style=\"width:10px;\"\r\n [ngClass]=\"{'widget-menu-show': isMouseHover && showSettingsLink}\">\r\n <div class=\"dropbtn title-bar-icon\">\r\n <i (click)=\"showDropDown($event)\" #widgetDropdown class=\"fal fa-ellipsis-v widget-menu-ellipse\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"hideTitle\" class=\"wcheader widget-move\"\r\n style=\"height: 45px;width: 95%;cursor: move;z-index: 99;opacity: 0;\">\r\n </div>\r\n <div *ngIf=\"hideTitle\" class=\"widget-menu widget-menu-title-hidden\" [ngClass]=\"{'widget-menu-show': isMouseHover && showSettingsLink}\">\r\n <div class=\"dropbtn title-bar-icon\">\r\n <i (click)=\"showDropDown($event)\" class=\"fal fa-ellipsis-v\" style=\"text-align: center;\"></i>\r\n </div>\r\n </div>\r\n <div class=\"wcBody\" [ngStyle]=\"{'bottom': noPadding?'0px':'10px','top':hideTitle?'10px':'46px'}\">\r\n <div [hidden]=\"isWidgetStateApplicable\" class=\"m-fadeOut widget-overlay\" [ngClass]=\"{'m-fadeIn': showPanel}\">\r\n <div class=\"lds-roller\">\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n </div>\r\n </div>\r\n <div class=\"wc\" [hidden]=\"isWidgetStateApplicable\">\r\n <div #ctlWidget></div>\r\n </div>\r\n <div *ngIf=\"isWidgetStateApplicable\" class=\"defaultConfig\">\r\n <ra-widget-state style=\"width: 100%;height: 100%;\" [isWidgetStateApplicable]=\"isWidgetStateApplicable\"\r\n [isGlobalFilterApplied]=\"isGlobalFilterApplied\" [widgetEmptyState]=\"widgetEmptyState\"\r\n (editWidgetClicked)=editWidget() [widthCol]=\"width\" [heightCol]=\"height\">\r\n </ra-widget-state>\r\n </div>\r\n <div>\r\n </div>\r\n </div>\r\n</div>"
|
|
2969
|
+
template: "<div #wcWrapper class=\"wc-wrapper\" (mouseenter)=\"mouseHover(true)\" (mouseleave)=\"mouseHover(false)\"\r\n [ngStyle]=\"{'margin-left': noPadding?'0px':'15px','margin-right': noPadding?'0px':'15px'}\">\r\n <div class=\"wcheader widget-move\" *ngIf=\"!hideTitle\"\r\n [ngClass]=\"{'underLine': enableTitleLine || isWidgetStateApplicable}\">\r\n <div class=\"col-md-12 wc-mover\" style=\"padding-left: 0px;height:inherit;padding-right: 0px;\">\r\n <div style=\"display:flex;margin-top:10px;\"\r\n [ngStyle]=\"{'margin-left': noPadding?'15px':'0px','margin-right': noPadding?'15px':'0px'}\">\r\n <div class=\"col-9 float-left title-label\">\r\n <ra-tooltip [value]=\"toolTipValue\" [width]=\"toolTipWidth\">\r\n <div [hidden]=\"hideTitle\" style=\"text-overflow: ellipsis;white-space: nowrap;overflow: hidden;\"\r\n (mouseover)=\"mouseOver($event)\" #searchInput>{{WidgetDisplayName}}</div>\r\n </ra-tooltip>\r\n </div>\r\n <div class=\"col-3\" style=\"cursor:default;padding-right: 0px;\"> \r\n <div class=\"float-right\" style=\"display: flex;\">\r\n <div class=\"title-bar-lock-icon lock-dropdown\" [hidden]=\"!inapplicableFilters || inapplicableFilters.length == 0 || !globalFilter || globalFilter == '{}'\">\r\n <i class=\"fal fa-ban lock\"></i>\r\n <div class=\"lock-dropdown-content light widget-config-item\">\r\n <div *ngIf=\"inapplicableFilters && globalFilter && globalFilter !='{}'\">\r\n <label style=\"color: #D9F0FA;\">\r\n {{'Common.InapplicableFilters'|translate}}:\r\n </label>\r\n <div style=\"color: white;\">\r\n <label class=\"bold\" style=\"margin-bottom: 0px;width: 100%;\" *ngFor=\"let item of inapplicableFilters\">\r\n {{item}}\r\n </label>\r\n </div>\r\n <hr>\r\n <div style=\"color: #D9F0FA;\">\r\n <label>{{'Common.InapplicableFiltersDesc'|translate}}</label>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n <div class=\"title-bar-lock-icon lock-dropdown\" [hidden]=\"!lockDetails && !lockTemplateInfo\">\r\n <i class=\"fal fa-lock lock\"></i>\r\n <div class=\"lock-dropdown-content light widget-config-item\">\r\n <div *ngIf=\"lockDetails && !lockTemplateInfo\">\r\n <label style=\"color: #D9F0FA;\">\r\n {{'Common.lockedfields'|translate}}\r\n </label>\r\n <div style=\"color: white;\">\r\n <label class=\"bold\" style=\"margin-bottom: 0px;width: 100%;\" *ngFor=\"let item of lockDetails\">\r\n {{item}}\r\n </label>\r\n </div>\r\n <hr>\r\n <div style=\"color: #D9F0FA;\">\r\n <label>{{'Common.lockedfieldseditinfo'|translate}}</label>\r\n </div>\r\n </div>\r\n <div *ngIf=\"!lockDetails && lockTemplateInfo\">\r\n <ng-container *ngTemplateOutlet=\"lockTemplateInfo\">\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"widget-menu\" style=\"width:10px;\"\r\n [ngClass]=\"{'widget-menu-show': isMouseHover && showSettingsLink}\">\r\n <div class=\"dropbtn title-bar-icon\">\r\n <i (click)=\"showDropDown($event)\" #widgetDropdown class=\"fal fa-ellipsis-v widget-menu-ellipse\"></i>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div *ngIf=\"hideTitle\" class=\"wcheader widget-move\"\r\n style=\"height: 45px;width: 95%;cursor: move;z-index: 99;opacity: 0;\">\r\n </div>\r\n <div *ngIf=\"hideTitle\" class=\"widget-menu widget-menu-title-hidden\" [ngClass]=\"{'widget-menu-show': isMouseHover && showSettingsLink}\">\r\n <div class=\"dropbtn title-bar-icon\">\r\n <i (click)=\"showDropDown($event)\" class=\"fal fa-ellipsis-v\" style=\"text-align: center;\"></i>\r\n </div>\r\n </div>\r\n <div class=\"wcBody\" [ngStyle]=\"{'bottom': noPadding?'0px':'10px','top':hideTitle?'10px':'46px'}\">\r\n <div [hidden]=\"isWidgetStateApplicable\" class=\"m-fadeOut widget-overlay\" [ngClass]=\"{'m-fadeIn': showPanel}\">\r\n <div class=\"lds-roller\">\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n <div></div>\r\n </div>\r\n </div>\r\n <div class=\"wc\" [hidden]=\"isWidgetStateApplicable\">\r\n <div #ctlWidget></div>\r\n </div>\r\n <div *ngIf=\"isWidgetStateApplicable\" class=\"defaultConfig\">\r\n <ra-widget-state style=\"width: 100%;height: 100%;\" [isWidgetStateApplicable]=\"isWidgetStateApplicable\"\r\n [isGlobalFilterApplied]=\"isGlobalFilterApplied\" [widgetEmptyState]=\"widgetEmptyState\"\r\n (editWidgetClicked)=editWidget() [widthCol]=\"width\" [heightCol]=\"height\">\r\n </ra-widget-state>\r\n </div>\r\n <div>\r\n </div>\r\n </div>\r\n</div>"
|
|
2963
2970
|
}] }
|
|
2964
2971
|
];
|
|
2965
2972
|
/** @nocollapse */
|
|
@@ -3131,6 +3138,8 @@
|
|
|
3131
3138
|
RAWidgetContainer.prototype.WidgetDisplayName;
|
|
3132
3139
|
/** @type {?} */
|
|
3133
3140
|
RAWidgetContainer.prototype.enableTitleLineActual;
|
|
3141
|
+
/** @type {?} */
|
|
3142
|
+
RAWidgetContainer.prototype.widgetElementHandler;
|
|
3134
3143
|
/**
|
|
3135
3144
|
* @type {?}
|
|
3136
3145
|
* @private
|