@igo2/context 1.13.3 → 1.14.0
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/context-manager/context-list/context-list.component.mjs +24 -24
- package/esm2020/lib/context-manager/shared/context.service.mjs +3 -2
- package/esm2020/lib/context-manager/shared/map-context.directive.mjs +2 -2
- package/esm2020/lib/share-map/shared/share-map.service.mjs +16 -7
- package/fesm2015/igo2-context.mjs +54 -42
- package/fesm2015/igo2-context.mjs.map +1 -1
- package/fesm2020/igo2-context.mjs +53 -42
- package/fesm2020/igo2-context.mjs.map +1 -1
- package/lib/context-manager/context-list/context-list.component.d.ts +1 -3
- package/lib/share-map/shared/share-map.service.d.ts +4 -4
- package/package.json +6 -6
|
@@ -7,11 +7,9 @@ import { ContextListControlsEnum } from './context-list.enum';
|
|
|
7
7
|
import { BehaviorSubject, ReplaySubject } from 'rxjs';
|
|
8
8
|
import { MatDialog } from '@angular/material/dialog';
|
|
9
9
|
import { ActionStore, ActionbarMode } from '@igo2/common';
|
|
10
|
-
import { ContextService } from '../shared/context.service';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
11
|
export declare class ContextListComponent implements OnInit, OnDestroy {
|
|
13
12
|
private cdRef;
|
|
14
|
-
private contextService;
|
|
15
13
|
configService: ConfigService;
|
|
16
14
|
auth: AuthService;
|
|
17
15
|
private dialog;
|
|
@@ -75,7 +73,7 @@ export declare class ContextListComponent implements OnInit, OnDestroy {
|
|
|
75
73
|
private _sortedAlpha;
|
|
76
74
|
showContextFilter: ContextListControlsEnum;
|
|
77
75
|
thresholdToFilter: number;
|
|
78
|
-
constructor(cdRef: ChangeDetectorRef,
|
|
76
|
+
constructor(cdRef: ChangeDetectorRef, configService: ConfigService, auth: AuthService, dialog: MatDialog, languageService: LanguageService, storageService: StorageService);
|
|
79
77
|
ngOnInit(): void;
|
|
80
78
|
private next;
|
|
81
79
|
private filterContextsList;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { RouteService
|
|
1
|
+
import { RouteService } from '@igo2/core';
|
|
2
2
|
import type { IgoMap } from '@igo2/geo';
|
|
3
3
|
import { ContextService } from '../../context-manager/shared/context.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShareMapService {
|
|
6
6
|
private contextService;
|
|
7
|
-
private messageService;
|
|
8
7
|
private route;
|
|
9
|
-
|
|
8
|
+
private language;
|
|
9
|
+
constructor(contextService: ContextService, route: RouteService);
|
|
10
10
|
getUrlWithApi(formValues: any): string;
|
|
11
11
|
createContextShared(map: IgoMap, formValues: any): import("rxjs").Observable<import("../../context-manager/shared/context.interface").Context>;
|
|
12
12
|
updateContextShared(map: IgoMap, formValues: any, id: string): import("rxjs").Observable<import("../../context-manager/shared/context.interface").Context>;
|
|
13
13
|
getUrlWithoutApi(map: IgoMap, publicShareOption: any): string;
|
|
14
14
|
private makeLayersByService;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ShareMapService, [null,
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShareMapService, [null, { optional: true; }]>;
|
|
16
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<ShareMapService>;
|
|
17
17
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"@angular/core": "^14.1.2",
|
|
22
22
|
"@angular/forms": "^14.1.2",
|
|
23
23
|
"@angular/material": "^14.1.2",
|
|
24
|
-
"@igo2/auth": "^1.
|
|
25
|
-
"@igo2/common": "^1.
|
|
26
|
-
"@igo2/core": "^1.
|
|
27
|
-
"@igo2/utils": "^1.
|
|
28
|
-
"@igo2/geo": "^1.
|
|
24
|
+
"@igo2/auth": "^1.14.0",
|
|
25
|
+
"@igo2/common": "^1.14.0",
|
|
26
|
+
"@igo2/core": "^1.14.0",
|
|
27
|
+
"@igo2/utils": "^1.14.0",
|
|
28
|
+
"@igo2/geo": "^1.14.0",
|
|
29
29
|
"ol": "^7.1.0",
|
|
30
30
|
"rxjs": "^7.5.6"
|
|
31
31
|
},
|