@schneideress/dashboardframework 0.0.24 → 0.0.25
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 +2 -1
- 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 +1 -1
- package/esm2015/lib/ra.dashboard.module.js +3 -1
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +1 -1
- package/esm5/lib/ra.dashboard.module.js +3 -1
- package/fesm2015/schneideress-dashboardframework.js +13 -2
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +13 -2
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -5,7 +5,7 @@ import { BaseService } from '@schneideress/ess-util';
|
|
|
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';
|
|
8
|
-
import { TranslateService } from '@schneideress/ess-base';
|
|
8
|
+
import { TranslateService, TranslateModule } from '@schneideress/ess-base';
|
|
9
9
|
import { BrowserModule } from '@angular/platform-browser';
|
|
10
10
|
import { HttpClientModule } from '@angular/common/http';
|
|
11
11
|
import { CommonModule } from '@angular/common';
|
|
@@ -886,7 +886,7 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
886
886
|
{ type: Component, args: [{
|
|
887
887
|
selector: 'ra-dashboard-area',
|
|
888
888
|
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\" [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",
|
|
889
|
-
styles: ["gridster{width:inherit;resize:height;display:flex
|
|
889
|
+
styles: ["gridster{width:inherit;resize:height;display:flex}gridster-item{background:#fff!important}.dvheader{width:100%;height:35px;background:#000;color:#fff;padding:7px 3px 5px 6px;text-transform:uppercase}"]
|
|
890
890
|
}] }
|
|
891
891
|
];
|
|
892
892
|
/** @nocollapse */
|
|
@@ -5712,6 +5712,7 @@ var DashboardFrameworkModule = /** @class */ (function () {
|
|
|
5712
5712
|
GridsterModule,
|
|
5713
5713
|
HttpClientModule,
|
|
5714
5714
|
NgxUiLoaderModule,
|
|
5715
|
+
TranslateModule,
|
|
5715
5716
|
NotifierModule.withConfig(customNotifierOptions)
|
|
5716
5717
|
],
|
|
5717
5718
|
exports: [
|
|
@@ -5785,5 +5786,15 @@ var RaBaseDashboardFilter = /** @class */ (function () {
|
|
|
5785
5786
|
return RaBaseDashboardFilter;
|
|
5786
5787
|
}());
|
|
5787
5788
|
|
|
5789
|
+
/**
|
|
5790
|
+
* @fileoverview added by tsickle
|
|
5791
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5792
|
+
*/
|
|
5793
|
+
|
|
5794
|
+
/**
|
|
5795
|
+
* @fileoverview added by tsickle
|
|
5796
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5797
|
+
*/
|
|
5798
|
+
|
|
5788
5799
|
export { DashboardFrameworkModule, RADashboardArea, RADashboardEventBus, RAEvent, RAEventKey, RAWidgetContainer, RaBaseDashboardFilter, RaBaseDashboardTemplate, RaDashboardService, GridsterModule as ɵa, GridsterComponent as ɵb, GridsterItemComponent as ɵc, GridsterPreviewComponent as ɵd, customNotifierOptions as ɵe };
|
|
5789
5800
|
//# sourceMappingURL=schneideress-dashboardframework.js.map
|