monkey-front-core 0.0.436 → 0.0.438
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 +12 -4
- package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +12 -9
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +11 -8
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/services/commons/monkeyecx-commons-resolve.service.d.ts +8 -4
- package/monkey-front-core-0.0.438.tgz +0 -0
- package/package.json +3 -3
- package/monkey-front-core-0.0.436.tgz +0 -0
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
import { ActivatedRouteSnapshot, Router, RouterStateSnapshot } from '@angular/router';
|
|
2
2
|
import { Action, Store } from '@ngrx/store';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
4
|
import { MonkeyEcxCommonsService } from '.';
|
|
4
|
-
import { MonkeyEcxTokenStorageService } from '../..';
|
|
5
|
+
import { MonkeyEcxDiscoveryParamsService, MonkeyEcxPaginationService, MonkeyEcxTokenStorageService } from '../..';
|
|
5
6
|
import { MonkeyEcxCommonsConfig, MonkeyEcxInitialResolverConfig } from '../../interfaces';
|
|
6
7
|
import { MonkeyEcxService } from '../monkeyecx-service.service';
|
|
7
8
|
export declare abstract class MonkeyEcxCommonsResolveService extends MonkeyEcxCommonsService {
|
|
8
|
-
protected router: Router;
|
|
9
|
-
protected store: Store;
|
|
10
9
|
private action;
|
|
11
10
|
private actionPagination;
|
|
12
11
|
private selector;
|
|
13
12
|
protected route: string | null;
|
|
14
13
|
protected currentRoute: string | null;
|
|
15
|
-
|
|
14
|
+
protected paginationService: MonkeyEcxPaginationService;
|
|
15
|
+
protected translateService: TranslateService;
|
|
16
|
+
protected router: Router;
|
|
17
|
+
protected store: Store<any>;
|
|
18
|
+
protected monkeyDiscovery: MonkeyEcxDiscoveryParamsService;
|
|
19
|
+
constructor(monkeyecxService: MonkeyEcxService, tokenStorage: MonkeyEcxTokenStorageService, config: {
|
|
16
20
|
actions: {
|
|
17
21
|
load: Action;
|
|
18
22
|
};
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-front-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.438",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^13.1.1",
|
|
6
6
|
"@angular/common": "^13.1.1",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"@ngx-translate/http-loader": "^6.0.0",
|
|
19
19
|
"launchdarkly-js-client-sdk": "3.0.0",
|
|
20
20
|
"moment": "^2.29.4",
|
|
21
|
-
"monkey-style-guide": "^2.0.
|
|
21
|
+
"monkey-style-guide": "^2.0.188",
|
|
22
22
|
"ngx-cookie-service": "^13.1.1",
|
|
23
23
|
"ngx-mask": "^12.0.0",
|
|
24
24
|
"rxjs": "^6.6.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"monkey-style-guide": "^2.0.
|
|
27
|
+
"monkey-style-guide": "^2.0.188",
|
|
28
28
|
"tslib": "^2.3.0"
|
|
29
29
|
},
|
|
30
30
|
"module": "fesm2015/monkey-front-core.mjs",
|
|
Binary file
|