@schneideress/dashboardframework 0.0.236 → 0.0.237
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 +187 -10
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +2 -2
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.js +92 -0
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +67 -5
- package/esm2015/lib/ra.dashboard.module.js +8 -3
- package/esm2015/schneideress-dashboardframework.js +7 -6
- package/esm5/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.js +103 -0
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +78 -5
- package/esm5/lib/ra.dashboard.module.js +8 -3
- package/esm5/schneideress-dashboardframework.js +7 -6
- package/fesm2015/schneideress-dashboardframework.js +162 -7
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +183 -7
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.d.ts +17 -0
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +14 -2
- package/package.json +1 -1
- package/schneideress-dashboardframework.d.ts +6 -5
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends, __awaiter, __generator, __assign } from 'tslib';
|
|
2
2
|
import { Injectable, Injector, ɵɵdefineInjectable, ɵɵinject, INJECTOR, EventEmitter, Component, NgZone, Input, Output, ViewChild, Renderer2, ViewEncapsulation, ElementRef, ChangeDetectorRef, Host, NgModule } from '@angular/core';
|
|
3
3
|
import { of, Subject } from 'rxjs';
|
|
4
|
-
import { BaseService, RATranslateService, RAPermissionService, RACommonModule } from '@schneideress/ra-common';
|
|
4
|
+
import { BaseService, RATranslateService, RAPermissionService, DomService, RACommonModule } from '@schneideress/ra-common';
|
|
5
5
|
import { filter, map } from 'rxjs/operators';
|
|
6
6
|
import { NgxUiLoaderService, NgxUiLoaderModule } from 'ngx-ui-loader';
|
|
7
7
|
import { NotifierService, NotifierModule } from 'angular-notifier';
|
|
@@ -1640,13 +1640,113 @@ if (false) {
|
|
|
1640
1640
|
RADashboardArea.prototype.permissionService;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
|
+
/**
|
|
1644
|
+
* @fileoverview added by tsickle
|
|
1645
|
+
* Generated from: lib/ra-widget-container/lock-tooltip/lock.tooltip.component.ts
|
|
1646
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1647
|
+
*/
|
|
1648
|
+
var LockTooltip = /** @class */ (function () {
|
|
1649
|
+
function LockTooltip(domService) {
|
|
1650
|
+
this.domService = domService;
|
|
1651
|
+
}
|
|
1652
|
+
/**
|
|
1653
|
+
* @return {?}
|
|
1654
|
+
*/
|
|
1655
|
+
LockTooltip.prototype.ngOnInit = /**
|
|
1656
|
+
* @return {?}
|
|
1657
|
+
*/
|
|
1658
|
+
function () {
|
|
1659
|
+
if (this.element) {
|
|
1660
|
+
this.setPopupPosition();
|
|
1661
|
+
}
|
|
1662
|
+
};
|
|
1663
|
+
/**
|
|
1664
|
+
* @private
|
|
1665
|
+
* @return {?}
|
|
1666
|
+
*/
|
|
1667
|
+
LockTooltip.prototype.setPopupPosition = /**
|
|
1668
|
+
* @private
|
|
1669
|
+
* @return {?}
|
|
1670
|
+
*/
|
|
1671
|
+
function () {
|
|
1672
|
+
/** @type {?} */
|
|
1673
|
+
var rect = this.element.getBoundingClientRect();
|
|
1674
|
+
if ((rect.left + 250) > window.innerWidth) {
|
|
1675
|
+
this.containerLeft = (rect.left - ((rect.left + 270) - window.innerWidth)) + 'px';
|
|
1676
|
+
}
|
|
1677
|
+
else {
|
|
1678
|
+
this.containerLeft = rect.left + 'px';
|
|
1679
|
+
}
|
|
1680
|
+
if (rect.bottom + 100 < window.innerHeight) {
|
|
1681
|
+
this.containerTop = (rect.bottom) + 'px';
|
|
1682
|
+
this.containerBottom = null;
|
|
1683
|
+
}
|
|
1684
|
+
else {
|
|
1685
|
+
this.containerTop = null;
|
|
1686
|
+
this.containerBottom = (window.innerHeight - rect.top) + 'px';
|
|
1687
|
+
}
|
|
1688
|
+
};
|
|
1689
|
+
/**
|
|
1690
|
+
* @param {?} comp
|
|
1691
|
+
* @return {?}
|
|
1692
|
+
*/
|
|
1693
|
+
LockTooltip.prototype.removeMe = /**
|
|
1694
|
+
* @param {?} comp
|
|
1695
|
+
* @return {?}
|
|
1696
|
+
*/
|
|
1697
|
+
function (comp) {
|
|
1698
|
+
var _this = this;
|
|
1699
|
+
setTimeout((/**
|
|
1700
|
+
* @return {?}
|
|
1701
|
+
*/
|
|
1702
|
+
function () {
|
|
1703
|
+
_this.domService.removeComponent(comp);
|
|
1704
|
+
}));
|
|
1705
|
+
};
|
|
1706
|
+
LockTooltip.decorators = [
|
|
1707
|
+
{ type: Component, args: [{
|
|
1708
|
+
selector: 'ra-lock-tooltip',
|
|
1709
|
+
template: "<div class=\"lock-popup-content light widget-config-item\"\r\n [ngStyle]=\"{'top': containerTop,'bottom':containerBottom,'position':'fixed','left':containerLeft,'z-index': '9999','width':'250px','min-height':'fit-content'}\">\r\n <div *ngIf=\"data && !template\">\r\n <label style=\"color: #D9F0FA;\">\r\n {{title}}:\r\n </label>\r\n <div style=\"color: white;\">\r\n <label class=\"bold\" style=\"margin-bottom: 0px;width: 100%;\" *ngFor=\"let item of data\">\r\n {{item}}\r\n </label>\r\n </div>\r\n <hr style=\"background-color: white;\">\r\n <div style=\"color: #D9F0FA;\">\r\n <label>{{footer}}</label>\r\n </div>\r\n </div>\r\n <div *ngIf=\"!data && template\">\r\n <ng-container *ngTemplateOutlet=\"template\">\r\n </ng-container>\r\n </div>\r\n</div>",
|
|
1710
|
+
styles: [".lock-popup-content{margin-top:8px;position:absolute;right:0;top:79%;box-shadow:0 8px 16px 8px rgba(0,0,0,.2);z-index:899;font-size:12px;min-width:220px!important;min-height:112px;background-color:#219bfd;opacity:.9;padding:15px;color:#fff}.widget-config-item i{font-size:17px;color:#42b4e6}.widget-config-item span{font-size:12px;font:inherit;padding-left:12px;color:#42b4e6}"]
|
|
1711
|
+
}] }
|
|
1712
|
+
];
|
|
1713
|
+
/** @nocollapse */
|
|
1714
|
+
LockTooltip.ctorParameters = function () { return [
|
|
1715
|
+
{ type: DomService }
|
|
1716
|
+
]; };
|
|
1717
|
+
return LockTooltip;
|
|
1718
|
+
}());
|
|
1719
|
+
if (false) {
|
|
1720
|
+
/** @type {?} */
|
|
1721
|
+
LockTooltip.prototype.element;
|
|
1722
|
+
/** @type {?} */
|
|
1723
|
+
LockTooltip.prototype.title;
|
|
1724
|
+
/** @type {?} */
|
|
1725
|
+
LockTooltip.prototype.data;
|
|
1726
|
+
/** @type {?} */
|
|
1727
|
+
LockTooltip.prototype.footer;
|
|
1728
|
+
/** @type {?} */
|
|
1729
|
+
LockTooltip.prototype.template;
|
|
1730
|
+
/** @type {?} */
|
|
1731
|
+
LockTooltip.prototype.containerLeft;
|
|
1732
|
+
/** @type {?} */
|
|
1733
|
+
LockTooltip.prototype.containerTop;
|
|
1734
|
+
/** @type {?} */
|
|
1735
|
+
LockTooltip.prototype.containerBottom;
|
|
1736
|
+
/**
|
|
1737
|
+
* @type {?}
|
|
1738
|
+
* @private
|
|
1739
|
+
*/
|
|
1740
|
+
LockTooltip.prototype.domService;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1643
1743
|
/**
|
|
1644
1744
|
* @fileoverview added by tsickle
|
|
1645
1745
|
* Generated from: lib/ra-widget-container/ra.widget.container.component.ts
|
|
1646
1746
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
1647
1747
|
*/
|
|
1648
1748
|
var RAWidgetContainer = /** @class */ (function () {
|
|
1649
|
-
function RAWidgetContainer(dashboardService, ngxService, translateService, ngZone, notifier, renderer, raPermissionService) {
|
|
1749
|
+
function RAWidgetContainer(dashboardService, ngxService, translateService, ngZone, notifier, renderer, raPermissionService, domService) {
|
|
1650
1750
|
var _this = this;
|
|
1651
1751
|
this.dashboardService = dashboardService;
|
|
1652
1752
|
this.ngxService = ngxService;
|
|
@@ -1655,6 +1755,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1655
1755
|
this.notifier = notifier;
|
|
1656
1756
|
this.renderer = renderer;
|
|
1657
1757
|
this.raPermissionService = raPermissionService;
|
|
1758
|
+
this.domService = domService;
|
|
1658
1759
|
this.showPanel = true;
|
|
1659
1760
|
this.isWidgetLoaded = false;
|
|
1660
1761
|
this.lockClass = "unlocked";
|
|
@@ -1729,6 +1830,10 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1729
1830
|
*/
|
|
1730
1831
|
function () {
|
|
1731
1832
|
this.WidgetDisplayName = this.translateService.translate('Common.' + this.data.widgetInfo.widgetTitle, true);
|
|
1833
|
+
this.lockIconTitle = this.translateService.translate('Common.lockedfields');
|
|
1834
|
+
this.lockIconFooter = this.translateService.translate('Common.lockedfieldseditinfo');
|
|
1835
|
+
this.inapplicableIconTitle = this.translateService.translate('Common.InapplicableFilters');
|
|
1836
|
+
this.inapplicableIconFooter = this.translateService.translate('Common.InapplicableFiltersDesc');
|
|
1732
1837
|
};
|
|
1733
1838
|
Object.defineProperty(RAWidgetContainer.prototype, "widgetViewState", {
|
|
1734
1839
|
get: /**
|
|
@@ -1840,6 +1945,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1840
1945
|
*/
|
|
1841
1946
|
function () {
|
|
1842
1947
|
_this.removeMenu();
|
|
1948
|
+
_this.closePopup();
|
|
1843
1949
|
}));
|
|
1844
1950
|
setTimeout((/**
|
|
1845
1951
|
* @return {?}
|
|
@@ -2752,10 +2858,52 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
2752
2858
|
}
|
|
2753
2859
|
this.updateAppliedFilters.emit(widgetData);
|
|
2754
2860
|
};
|
|
2861
|
+
/**
|
|
2862
|
+
* @param {?} title
|
|
2863
|
+
* @param {?} data
|
|
2864
|
+
* @param {?} footer
|
|
2865
|
+
* @param {?} type
|
|
2866
|
+
* @param {?=} template
|
|
2867
|
+
* @return {?}
|
|
2868
|
+
*/
|
|
2869
|
+
RAWidgetContainer.prototype.openPopup = /**
|
|
2870
|
+
* @param {?} title
|
|
2871
|
+
* @param {?} data
|
|
2872
|
+
* @param {?} footer
|
|
2873
|
+
* @param {?} type
|
|
2874
|
+
* @param {?=} template
|
|
2875
|
+
* @return {?}
|
|
2876
|
+
*/
|
|
2877
|
+
function (title, data, footer, type, template) {
|
|
2878
|
+
if (template === void 0) { template = undefined; }
|
|
2879
|
+
/** @type {?} */
|
|
2880
|
+
var props = {};
|
|
2881
|
+
if (type == 'innaplicable' && this.banPopupDiv)
|
|
2882
|
+
props.element = this.banPopupDiv.nativeElement;
|
|
2883
|
+
if (type == 'lock' && this.lockPopupDiv)
|
|
2884
|
+
props.element = this.lockPopupDiv.nativeElement;
|
|
2885
|
+
props.title = title;
|
|
2886
|
+
props.data = data;
|
|
2887
|
+
props.footer = footer;
|
|
2888
|
+
if (template)
|
|
2889
|
+
props.template = template;
|
|
2890
|
+
this.currentComponent = this.domService.appendComponent(LockTooltip, document.body, props);
|
|
2891
|
+
this.popupInstance = (/** @type {?} */ (this.currentComponent.instance));
|
|
2892
|
+
};
|
|
2893
|
+
/**
|
|
2894
|
+
* @return {?}
|
|
2895
|
+
*/
|
|
2896
|
+
RAWidgetContainer.prototype.closePopup = /**
|
|
2897
|
+
* @return {?}
|
|
2898
|
+
*/
|
|
2899
|
+
function () {
|
|
2900
|
+
if (this.currentComponent)
|
|
2901
|
+
this.popupInstance.removeMe(this.currentComponent);
|
|
2902
|
+
};
|
|
2755
2903
|
RAWidgetContainer.decorators = [
|
|
2756
2904
|
{ type: Component, args: [{
|
|
2757
2905
|
selector: 'ra-widget-container',
|
|
2758
|
-
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
|
|
2906
|
+
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 #banPopupDiv (mouseover)=\"openPopup(inapplicableIconTitle,inapplicableFilters,inapplicableIconFooter,'innaplicable')\" (mouseout)=\"closePopup()\" 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>\r\n <div #lockPopupDiv (mouseover)=\"openPopup(lockIconTitle,lockDetails,lockIconFooter,'lock',lockTemplateInfo)\" (mouseout)=\"closePopup()\" class=\"title-bar-lock-icon lock-dropdown\" [hidden]=\"!lockDetails && !lockTemplateInfo\">\r\n <i class=\"fal fa-lock lock\"></i> \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>"
|
|
2759
2907
|
}] }
|
|
2760
2908
|
];
|
|
2761
2909
|
/** @nocollapse */
|
|
@@ -2766,13 +2914,16 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
2766
2914
|
{ type: NgZone },
|
|
2767
2915
|
{ type: NotifierService },
|
|
2768
2916
|
{ type: Renderer2 },
|
|
2769
|
-
{ type: RAPermissionService }
|
|
2917
|
+
{ type: RAPermissionService },
|
|
2918
|
+
{ type: DomService }
|
|
2770
2919
|
]; };
|
|
2771
2920
|
RAWidgetContainer.propDecorators = {
|
|
2772
2921
|
ctlWidget: [{ type: ViewChild, args: ['ctlWidget', { static: false },] }],
|
|
2773
2922
|
widgetDropdown: [{ type: ViewChild, args: ['widgetDropdown', { static: false },] }],
|
|
2774
2923
|
searchInput: [{ type: ViewChild, args: ['searchInput', { static: false },] }],
|
|
2775
2924
|
wcWrapper: [{ type: ViewChild, args: ['wcWrapper', { static: false },] }],
|
|
2925
|
+
banPopupDiv: [{ type: ViewChild, args: ['banPopupDiv', { static: false },] }],
|
|
2926
|
+
lockPopupDiv: [{ type: ViewChild, args: ['lockPopupDiv', { static: false },] }],
|
|
2776
2927
|
widgetInstanceId: [{ type: Input, args: ['widget-instance-id',] }],
|
|
2777
2928
|
globalFilter: [{ type: Input, args: ['global-filter',] }],
|
|
2778
2929
|
data: [{ type: Input, args: ['data',] }],
|
|
@@ -2878,6 +3029,18 @@ if (false) {
|
|
|
2878
3029
|
/** @type {?} */
|
|
2879
3030
|
RAWidgetContainer.prototype.inapplicableFilters;
|
|
2880
3031
|
/** @type {?} */
|
|
3032
|
+
RAWidgetContainer.prototype.popupInstance;
|
|
3033
|
+
/** @type {?} */
|
|
3034
|
+
RAWidgetContainer.prototype.currentComponent;
|
|
3035
|
+
/** @type {?} */
|
|
3036
|
+
RAWidgetContainer.prototype.lockIconTitle;
|
|
3037
|
+
/** @type {?} */
|
|
3038
|
+
RAWidgetContainer.prototype.lockIconFooter;
|
|
3039
|
+
/** @type {?} */
|
|
3040
|
+
RAWidgetContainer.prototype.inapplicableIconTitle;
|
|
3041
|
+
/** @type {?} */
|
|
3042
|
+
RAWidgetContainer.prototype.inapplicableIconFooter;
|
|
3043
|
+
/** @type {?} */
|
|
2881
3044
|
RAWidgetContainer.prototype.ctlWidget;
|
|
2882
3045
|
/** @type {?} */
|
|
2883
3046
|
RAWidgetContainer.prototype.widgetDropdown;
|
|
@@ -2886,6 +3049,10 @@ if (false) {
|
|
|
2886
3049
|
/** @type {?} */
|
|
2887
3050
|
RAWidgetContainer.prototype.wcWrapper;
|
|
2888
3051
|
/** @type {?} */
|
|
3052
|
+
RAWidgetContainer.prototype.banPopupDiv;
|
|
3053
|
+
/** @type {?} */
|
|
3054
|
+
RAWidgetContainer.prototype.lockPopupDiv;
|
|
3055
|
+
/** @type {?} */
|
|
2889
3056
|
RAWidgetContainer.prototype.widgetInstanceId;
|
|
2890
3057
|
/** @type {?} */
|
|
2891
3058
|
RAWidgetContainer.prototype.globalFilter;
|
|
@@ -2964,6 +3131,11 @@ if (false) {
|
|
|
2964
3131
|
* @private
|
|
2965
3132
|
*/
|
|
2966
3133
|
RAWidgetContainer.prototype.raPermissionService;
|
|
3134
|
+
/**
|
|
3135
|
+
* @type {?}
|
|
3136
|
+
* @private
|
|
3137
|
+
*/
|
|
3138
|
+
RAWidgetContainer.prototype.domService;
|
|
2967
3139
|
}
|
|
2968
3140
|
|
|
2969
3141
|
/**
|
|
@@ -8266,7 +8438,8 @@ var DashboardFrameworkModule = /** @class */ (function () {
|
|
|
8266
8438
|
{ type: NgModule, args: [{
|
|
8267
8439
|
declarations: [
|
|
8268
8440
|
RADashboardArea,
|
|
8269
|
-
RAWidgetContainer
|
|
8441
|
+
RAWidgetContainer,
|
|
8442
|
+
LockTooltip
|
|
8270
8443
|
],
|
|
8271
8444
|
imports: [
|
|
8272
8445
|
BrowserModule,
|
|
@@ -8281,7 +8454,10 @@ var DashboardFrameworkModule = /** @class */ (function () {
|
|
|
8281
8454
|
exports: [
|
|
8282
8455
|
RADashboardArea
|
|
8283
8456
|
],
|
|
8284
|
-
bootstrap: [RADashboardArea]
|
|
8457
|
+
bootstrap: [RADashboardArea],
|
|
8458
|
+
entryComponents: [
|
|
8459
|
+
LockTooltip
|
|
8460
|
+
]
|
|
8285
8461
|
},] }
|
|
8286
8462
|
];
|
|
8287
8463
|
return DashboardFrameworkModule;
|
|
@@ -8482,5 +8658,5 @@ if (false) {
|
|
|
8482
8658
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
8483
8659
|
*/
|
|
8484
8660
|
|
|
8485
|
-
export { DashboardFrameworkModule, RADashboardArea, RADashboardEventBus, RADashboardResponsiveService, RAEvent, RAEventKey, RAWidgetContainer, RaBaseDashboardFilter, RaBaseDashboardTemplate, RaDashboardService,
|
|
8661
|
+
export { DashboardFrameworkModule, RADashboardArea, RADashboardEventBus, RADashboardResponsiveService, RAEvent, RAEventKey, RAWidgetContainer, RaBaseDashboardFilter, RaBaseDashboardTemplate, RaDashboardService, LockTooltip as ɵa, GridsterModule as ɵb, GridsterComponent as ɵc, GridsterItemComponent as ɵd, GridsterPreviewComponent as ɵe, customNotifierOptions as ɵf };
|
|
8486
8662
|
//# sourceMappingURL=schneideress-dashboardframework.js.map
|