@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.
@@ -1851,13 +1851,113 @@
1851
1851
  RADashboardArea.prototype.permissionService;
1852
1852
  }
1853
1853
 
1854
+ /**
1855
+ * @fileoverview added by tsickle
1856
+ * Generated from: lib/ra-widget-container/lock-tooltip/lock.tooltip.component.ts
1857
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1858
+ */
1859
+ var LockTooltip = /** @class */ (function () {
1860
+ function LockTooltip(domService) {
1861
+ this.domService = domService;
1862
+ }
1863
+ /**
1864
+ * @return {?}
1865
+ */
1866
+ LockTooltip.prototype.ngOnInit = /**
1867
+ * @return {?}
1868
+ */
1869
+ function () {
1870
+ if (this.element) {
1871
+ this.setPopupPosition();
1872
+ }
1873
+ };
1874
+ /**
1875
+ * @private
1876
+ * @return {?}
1877
+ */
1878
+ LockTooltip.prototype.setPopupPosition = /**
1879
+ * @private
1880
+ * @return {?}
1881
+ */
1882
+ function () {
1883
+ /** @type {?} */
1884
+ var rect = this.element.getBoundingClientRect();
1885
+ if ((rect.left + 250) > window.innerWidth) {
1886
+ this.containerLeft = (rect.left - ((rect.left + 270) - window.innerWidth)) + 'px';
1887
+ }
1888
+ else {
1889
+ this.containerLeft = rect.left + 'px';
1890
+ }
1891
+ if (rect.bottom + 100 < window.innerHeight) {
1892
+ this.containerTop = (rect.bottom) + 'px';
1893
+ this.containerBottom = null;
1894
+ }
1895
+ else {
1896
+ this.containerTop = null;
1897
+ this.containerBottom = (window.innerHeight - rect.top) + 'px';
1898
+ }
1899
+ };
1900
+ /**
1901
+ * @param {?} comp
1902
+ * @return {?}
1903
+ */
1904
+ LockTooltip.prototype.removeMe = /**
1905
+ * @param {?} comp
1906
+ * @return {?}
1907
+ */
1908
+ function (comp) {
1909
+ var _this = this;
1910
+ setTimeout((/**
1911
+ * @return {?}
1912
+ */
1913
+ function () {
1914
+ _this.domService.removeComponent(comp);
1915
+ }));
1916
+ };
1917
+ LockTooltip.decorators = [
1918
+ { type: core.Component, args: [{
1919
+ selector: 'ra-lock-tooltip',
1920
+ 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>",
1921
+ 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}"]
1922
+ }] }
1923
+ ];
1924
+ /** @nocollapse */
1925
+ LockTooltip.ctorParameters = function () { return [
1926
+ { type: raCommon.DomService }
1927
+ ]; };
1928
+ return LockTooltip;
1929
+ }());
1930
+ if (false) {
1931
+ /** @type {?} */
1932
+ LockTooltip.prototype.element;
1933
+ /** @type {?} */
1934
+ LockTooltip.prototype.title;
1935
+ /** @type {?} */
1936
+ LockTooltip.prototype.data;
1937
+ /** @type {?} */
1938
+ LockTooltip.prototype.footer;
1939
+ /** @type {?} */
1940
+ LockTooltip.prototype.template;
1941
+ /** @type {?} */
1942
+ LockTooltip.prototype.containerLeft;
1943
+ /** @type {?} */
1944
+ LockTooltip.prototype.containerTop;
1945
+ /** @type {?} */
1946
+ LockTooltip.prototype.containerBottom;
1947
+ /**
1948
+ * @type {?}
1949
+ * @private
1950
+ */
1951
+ LockTooltip.prototype.domService;
1952
+ }
1953
+
1854
1954
  /**
1855
1955
  * @fileoverview added by tsickle
1856
1956
  * Generated from: lib/ra-widget-container/ra.widget.container.component.ts
1857
1957
  * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1858
1958
  */
1859
1959
  var RAWidgetContainer = /** @class */ (function () {
1860
- function RAWidgetContainer(dashboardService, ngxService, translateService, ngZone, notifier, renderer, raPermissionService) {
1960
+ function RAWidgetContainer(dashboardService, ngxService, translateService, ngZone, notifier, renderer, raPermissionService, domService) {
1861
1961
  var _this = this;
1862
1962
  this.dashboardService = dashboardService;
1863
1963
  this.ngxService = ngxService;
@@ -1866,6 +1966,7 @@
1866
1966
  this.notifier = notifier;
1867
1967
  this.renderer = renderer;
1868
1968
  this.raPermissionService = raPermissionService;
1969
+ this.domService = domService;
1869
1970
  this.showPanel = true;
1870
1971
  this.isWidgetLoaded = false;
1871
1972
  this.lockClass = "unlocked";
@@ -1940,6 +2041,10 @@
1940
2041
  */
1941
2042
  function () {
1942
2043
  this.WidgetDisplayName = this.translateService.translate('Common.' + this.data.widgetInfo.widgetTitle, true);
2044
+ this.lockIconTitle = this.translateService.translate('Common.lockedfields');
2045
+ this.lockIconFooter = this.translateService.translate('Common.lockedfieldseditinfo');
2046
+ this.inapplicableIconTitle = this.translateService.translate('Common.InapplicableFilters');
2047
+ this.inapplicableIconFooter = this.translateService.translate('Common.InapplicableFiltersDesc');
1943
2048
  };
1944
2049
  Object.defineProperty(RAWidgetContainer.prototype, "widgetViewState", {
1945
2050
  get: /**
@@ -2051,6 +2156,7 @@
2051
2156
  */
2052
2157
  function () {
2053
2158
  _this.removeMenu();
2159
+ _this.closePopup();
2054
2160
  }));
2055
2161
  setTimeout((/**
2056
2162
  * @return {?}
@@ -2963,10 +3069,52 @@
2963
3069
  }
2964
3070
  this.updateAppliedFilters.emit(widgetData);
2965
3071
  };
3072
+ /**
3073
+ * @param {?} title
3074
+ * @param {?} data
3075
+ * @param {?} footer
3076
+ * @param {?} type
3077
+ * @param {?=} template
3078
+ * @return {?}
3079
+ */
3080
+ RAWidgetContainer.prototype.openPopup = /**
3081
+ * @param {?} title
3082
+ * @param {?} data
3083
+ * @param {?} footer
3084
+ * @param {?} type
3085
+ * @param {?=} template
3086
+ * @return {?}
3087
+ */
3088
+ function (title, data, footer, type, template) {
3089
+ if (template === void 0) { template = undefined; }
3090
+ /** @type {?} */
3091
+ var props = {};
3092
+ if (type == 'innaplicable' && this.banPopupDiv)
3093
+ props.element = this.banPopupDiv.nativeElement;
3094
+ if (type == 'lock' && this.lockPopupDiv)
3095
+ props.element = this.lockPopupDiv.nativeElement;
3096
+ props.title = title;
3097
+ props.data = data;
3098
+ props.footer = footer;
3099
+ if (template)
3100
+ props.template = template;
3101
+ this.currentComponent = this.domService.appendComponent(LockTooltip, document.body, props);
3102
+ this.popupInstance = (/** @type {?} */ (this.currentComponent.instance));
3103
+ };
3104
+ /**
3105
+ * @return {?}
3106
+ */
3107
+ RAWidgetContainer.prototype.closePopup = /**
3108
+ * @return {?}
3109
+ */
3110
+ function () {
3111
+ if (this.currentComponent)
3112
+ this.popupInstance.removeMe(this.currentComponent);
3113
+ };
2966
3114
  RAWidgetContainer.decorators = [
2967
3115
  { type: core.Component, args: [{
2968
3116
  selector: 'ra-widget-container',
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>"
3117
+ 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>"
2970
3118
  }] }
2971
3119
  ];
2972
3120
  /** @nocollapse */
@@ -2977,13 +3125,16 @@
2977
3125
  { type: core.NgZone },
2978
3126
  { type: angularNotifier.NotifierService },
2979
3127
  { type: core.Renderer2 },
2980
- { type: raCommon.RAPermissionService }
3128
+ { type: raCommon.RAPermissionService },
3129
+ { type: raCommon.DomService }
2981
3130
  ]; };
2982
3131
  RAWidgetContainer.propDecorators = {
2983
3132
  ctlWidget: [{ type: core.ViewChild, args: ['ctlWidget', { static: false },] }],
2984
3133
  widgetDropdown: [{ type: core.ViewChild, args: ['widgetDropdown', { static: false },] }],
2985
3134
  searchInput: [{ type: core.ViewChild, args: ['searchInput', { static: false },] }],
2986
3135
  wcWrapper: [{ type: core.ViewChild, args: ['wcWrapper', { static: false },] }],
3136
+ banPopupDiv: [{ type: core.ViewChild, args: ['banPopupDiv', { static: false },] }],
3137
+ lockPopupDiv: [{ type: core.ViewChild, args: ['lockPopupDiv', { static: false },] }],
2987
3138
  widgetInstanceId: [{ type: core.Input, args: ['widget-instance-id',] }],
2988
3139
  globalFilter: [{ type: core.Input, args: ['global-filter',] }],
2989
3140
  data: [{ type: core.Input, args: ['data',] }],
@@ -3089,6 +3240,18 @@
3089
3240
  /** @type {?} */
3090
3241
  RAWidgetContainer.prototype.inapplicableFilters;
3091
3242
  /** @type {?} */
3243
+ RAWidgetContainer.prototype.popupInstance;
3244
+ /** @type {?} */
3245
+ RAWidgetContainer.prototype.currentComponent;
3246
+ /** @type {?} */
3247
+ RAWidgetContainer.prototype.lockIconTitle;
3248
+ /** @type {?} */
3249
+ RAWidgetContainer.prototype.lockIconFooter;
3250
+ /** @type {?} */
3251
+ RAWidgetContainer.prototype.inapplicableIconTitle;
3252
+ /** @type {?} */
3253
+ RAWidgetContainer.prototype.inapplicableIconFooter;
3254
+ /** @type {?} */
3092
3255
  RAWidgetContainer.prototype.ctlWidget;
3093
3256
  /** @type {?} */
3094
3257
  RAWidgetContainer.prototype.widgetDropdown;
@@ -3097,6 +3260,10 @@
3097
3260
  /** @type {?} */
3098
3261
  RAWidgetContainer.prototype.wcWrapper;
3099
3262
  /** @type {?} */
3263
+ RAWidgetContainer.prototype.banPopupDiv;
3264
+ /** @type {?} */
3265
+ RAWidgetContainer.prototype.lockPopupDiv;
3266
+ /** @type {?} */
3100
3267
  RAWidgetContainer.prototype.widgetInstanceId;
3101
3268
  /** @type {?} */
3102
3269
  RAWidgetContainer.prototype.globalFilter;
@@ -3175,6 +3342,11 @@
3175
3342
  * @private
3176
3343
  */
3177
3344
  RAWidgetContainer.prototype.raPermissionService;
3345
+ /**
3346
+ * @type {?}
3347
+ * @private
3348
+ */
3349
+ RAWidgetContainer.prototype.domService;
3178
3350
  }
3179
3351
 
3180
3352
  /**
@@ -8477,7 +8649,8 @@
8477
8649
  { type: core.NgModule, args: [{
8478
8650
  declarations: [
8479
8651
  RADashboardArea,
8480
- RAWidgetContainer
8652
+ RAWidgetContainer,
8653
+ LockTooltip
8481
8654
  ],
8482
8655
  imports: [
8483
8656
  platformBrowser.BrowserModule,
@@ -8492,7 +8665,10 @@
8492
8665
  exports: [
8493
8666
  RADashboardArea
8494
8667
  ],
8495
- bootstrap: [RADashboardArea]
8668
+ bootstrap: [RADashboardArea],
8669
+ entryComponents: [
8670
+ LockTooltip
8671
+ ]
8496
8672
  },] }
8497
8673
  ];
8498
8674
  return DashboardFrameworkModule;
@@ -8691,11 +8867,12 @@
8691
8867
  exports.RaBaseDashboardFilter = RaBaseDashboardFilter;
8692
8868
  exports.RaBaseDashboardTemplate = RaBaseDashboardTemplate;
8693
8869
  exports.RaDashboardService = RaDashboardService;
8694
- exports.ɵa = GridsterModule;
8695
- exports.ɵb = GridsterComponent;
8696
- exports.ɵc = GridsterItemComponent;
8697
- exports.ɵd = GridsterPreviewComponent;
8698
- exports.ɵe = customNotifierOptions;
8870
+ exports.ɵa = LockTooltip;
8871
+ exports.ɵb = GridsterModule;
8872
+ exports.ɵc = GridsterComponent;
8873
+ exports.ɵd = GridsterItemComponent;
8874
+ exports.ɵe = GridsterPreviewComponent;
8875
+ exports.ɵf = customNotifierOptions;
8699
8876
 
8700
8877
  Object.defineProperty(exports, '__esModule', { value: true });
8701
8878