monkey-front-core 0.0.434 → 0.0.435
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/esm2020/lib/core/services/commons/monkeyecx-commons-resolve.service.mjs +4 -12
- package/fesm2015/monkey-front-core.mjs +6 -9
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +6 -9
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/commons/monkeyecx-commons-resolve.service.d.ts +4 -8
- package/monkey-front-core-0.0.435.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.434.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, NgModule, Pipe, ViewEncapsulation, Injectable, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self, InjectionToken, Inject, Optional,
|
|
2
|
+
import { Component, Input, NgModule, Pipe, ViewEncapsulation, Injectable, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self, InjectionToken, Inject, Optional, SkipSelf, NgZone, ErrorHandler } from '@angular/core';
|
|
3
3
|
import * as i1 from 'monkey-style-guide';
|
|
4
4
|
import { MonkeyButtonModule, MonkeyModalModule, MonkeyIconModule, MonkeyInputModule, MonkeyRadioButtonModule, MonkeyOptionModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
@@ -14,13 +14,13 @@ import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS, HttpClientModule } fr
|
|
|
14
14
|
import * as i2$1 from '@angular/platform-browser';
|
|
15
15
|
import * as i1$3 from 'ngx-cookie-service';
|
|
16
16
|
import * as i2$2 from '@angular/router';
|
|
17
|
-
import { NavigationStart, NavigationEnd, NavigationError, NavigationCancel
|
|
17
|
+
import { NavigationStart, NavigationEnd, NavigationError, NavigationCancel } from '@angular/router';
|
|
18
18
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
19
19
|
import { TemplatePortal } from '@angular/cdk/portal';
|
|
20
20
|
import * as i1$4 from '@angular/cdk/overlay';
|
|
21
21
|
import { OverlayModule } from '@angular/cdk/overlay';
|
|
22
22
|
import * as i2$3 from '@ngrx/store';
|
|
23
|
-
import { createAction, props, INIT, createReducer, on, createFeatureSelector, createSelector,
|
|
23
|
+
import { createAction, props, INIT, createReducer, on, createFeatureSelector, createSelector, StoreModule } from '@ngrx/store';
|
|
24
24
|
import { createEntityAdapter } from '@ngrx/entity';
|
|
25
25
|
import { __decorate } from 'tslib';
|
|
26
26
|
import { datadogRum } from '@datadog/browser-rum';
|
|
@@ -3100,15 +3100,12 @@ __decorate([
|
|
|
3100
3100
|
], MonkeyEcxCommonsService.prototype, "getGenericData", null);
|
|
3101
3101
|
|
|
3102
3102
|
class MonkeyEcxCommonsResolveService extends MonkeyEcxCommonsService {
|
|
3103
|
-
constructor(monkeyecxService, tokenStorage, config) {
|
|
3103
|
+
constructor(monkeyecxService, tokenStorage, router, store, config) {
|
|
3104
3104
|
super(monkeyecxService, tokenStorage);
|
|
3105
|
+
this.router = router;
|
|
3106
|
+
this.store = store;
|
|
3105
3107
|
this.route = null;
|
|
3106
3108
|
this.currentRoute = null;
|
|
3107
|
-
this.paginationService = inject(MonkeyEcxPaginationService);
|
|
3108
|
-
this.translateService = inject(TranslateService);
|
|
3109
|
-
this.router = inject(Router);
|
|
3110
|
-
this.store = inject(Store);
|
|
3111
|
-
this.monkeyDiscovery = inject(MonkeyEcxDiscoveryParamsService);
|
|
3112
3109
|
const { actions, actionsPagination, selectors } = config;
|
|
3113
3110
|
this.action = actions;
|
|
3114
3111
|
this.actionPagination = actionsPagination;
|