@schneideress/dashboardframework 0.0.124 → 0.0.125
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 +4 -4
- 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/gridster/lib/gridsterRenderer.service.js +3 -3
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +7 -7
- package/esm2015/lib/ra.dashbard.event.bus.js +1 -1
- package/esm2015/lib/ra.dashboard.service.js +1 -1
- package/esm5/gridster/lib/gridsterRenderer.service.js +4 -4
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +13 -13
- package/esm5/lib/ra.dashbard.event.bus.js +1 -1
- package/esm5/lib/ra.dashboard.service.js +4 -4
- package/fesm2015/schneideress-dashboardframework.js +4 -4
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +4 -4
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +1 -1
- package/lib/ra.dashboard.service.d.ts +1 -1
- package/package.json +5 -2
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
RaDashboardService.ctorParameters = function () { return [
|
|
424
424
|
{ type: core.Injector }
|
|
425
425
|
]; };
|
|
426
|
-
/** @nocollapse */ RaDashboardService
|
|
426
|
+
/** @nocollapse */ RaDashboardService.ngInjectableDef = core.ɵɵdefineInjectable({ factory: function RaDashboardService_Factory() { return new RaDashboardService(core.ɵɵinject(core.INJECTOR)); }, token: RaDashboardService, providedIn: "root" });
|
|
427
427
|
return RaDashboardService;
|
|
428
428
|
}(raCommon.BaseService));
|
|
429
429
|
if (false) {
|
|
@@ -544,7 +544,7 @@
|
|
|
544
544
|
providedIn: 'root'
|
|
545
545
|
},] }
|
|
546
546
|
];
|
|
547
|
-
/** @nocollapse */ RADashboardEventBus
|
|
547
|
+
/** @nocollapse */ RADashboardEventBus.ngInjectableDef = core.ɵɵdefineInjectable({ factory: function RADashboardEventBus_Factory() { return new RADashboardEventBus(); }, token: RADashboardEventBus, providedIn: "root" });
|
|
548
548
|
return RADashboardEventBus;
|
|
549
549
|
}());
|
|
550
550
|
if (false) {
|
|
@@ -3522,7 +3522,7 @@
|
|
|
3522
3522
|
* @return {?}
|
|
3523
3523
|
*/
|
|
3524
3524
|
function (i) {
|
|
3525
|
-
return __assign(
|
|
3525
|
+
return __assign({}, this.getLeftPosition(this.gridster.curColWidth * i), { width: this.gridster.curColWidth - this.gridster.$options.margin + 'px', height: this.gridster.gridRows.length * this.gridster.curRowHeight - this.gridster.$options.margin + 'px' });
|
|
3526
3526
|
};
|
|
3527
3527
|
/**
|
|
3528
3528
|
* @param {?} i
|
|
@@ -3533,7 +3533,7 @@
|
|
|
3533
3533
|
* @return {?}
|
|
3534
3534
|
*/
|
|
3535
3535
|
function (i) {
|
|
3536
|
-
return __assign(
|
|
3536
|
+
return __assign({}, this.getTopPosition(this.gridster.curRowHeight * i), { width: this.gridster.gridColumns.length * this.gridster.curColWidth - this.gridster.$options.margin + 'px', height: this.gridster.curRowHeight - this.gridster.$options.margin + 'px' });
|
|
3537
3537
|
};
|
|
3538
3538
|
/**
|
|
3539
3539
|
* @param {?} d
|