@igo2/context 1.13.4 → 1.14.1
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 +2 -2
- 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 +20 -10
- package/fesm2015/igo2-context.mjs.map +1 -1
- package/fesm2020/igo2-context.mjs +20 -10
- package/fesm2020/igo2-context.mjs.map +1 -1
- package/lib/share-map/shared/share-map.service.d.ts +4 -4
- package/package.json +6 -6
|
@@ -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.1",
|
|
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.1",
|
|
25
|
+
"@igo2/common": "^1.14.1",
|
|
26
|
+
"@igo2/core": "^1.14.1",
|
|
27
|
+
"@igo2/utils": "^1.14.1",
|
|
28
|
+
"@igo2/geo": "^1.14.1",
|
|
29
29
|
"ol": "^7.1.0",
|
|
30
30
|
"rxjs": "^7.5.6"
|
|
31
31
|
},
|