@igo2/context 20.1.0-next.16 → 20.1.0-next.18

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -4
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -283,7 +283,7 @@ declare enum ContextListControlsEnum {
283
283
 
284
284
  declare class ContextListComponent implements OnInit, OnDestroy {
285
285
  configService: ConfigService<any>;
286
- auth: AuthService;
286
+ auth: AuthService<any>;
287
287
  private contextService;
288
288
  private shareMapService;
289
289
  private clipboard;
@@ -393,7 +393,7 @@ declare class ContextListComponent implements OnInit, OnDestroy {
393
393
  }
394
394
 
395
395
  declare class ContextItemComponent {
396
- auth: AuthService;
396
+ auth: AuthService<any>;
397
397
  private storageService;
398
398
  typePermission: readonly ["read", "write"];
399
399
  color: string;
@@ -454,7 +454,7 @@ declare class ContextEditComponent {
454
454
  declare class ContextPermissionsComponent implements OnInit {
455
455
  private formBuilder;
456
456
  private http;
457
- authService: AuthService;
457
+ authService: AuthService<any>;
458
458
  private config;
459
459
  private contextService;
460
460
  private contextPermissionService;
@@ -552,7 +552,7 @@ declare class PoiButtonComponent implements OnInit, OnDestroy {
552
552
  declare class UserButtonComponent {
553
553
  private dialog;
554
554
  private config;
555
- auth: AuthService;
555
+ auth: AuthService<any>;
556
556
  get map(): IgoMap;
557
557
  set map(value: IgoMap);
558
558
  private _map;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igo2/context",
3
- "version": "20.1.0-next.16",
3
+ "version": "20.1.0-next.18",
4
4
  "description": "IGO Library",
5
5
  "author": "IGO Community",
6
6
  "keywords": [
@@ -35,11 +35,11 @@
35
35
  "@angular/forms": "^20.0.0",
36
36
  "@angular/material": "^20.0.0",
37
37
  "@angular/platform-browser": "^20.0.0",
38
- "@igo2/auth": "^20.1.0-next.16",
39
- "@igo2/common": "^20.1.0-next.16",
40
- "@igo2/core": "^20.1.0-next.16",
41
- "@igo2/geo": "^20.1.0-next.16",
42
- "@igo2/utils": "^20.1.0-next.16",
38
+ "@igo2/auth": "^20.1.0-next.18",
39
+ "@igo2/common": "^20.1.0-next.18",
40
+ "@igo2/core": "^20.1.0-next.18",
41
+ "@igo2/geo": "^20.1.0-next.18",
42
+ "@igo2/utils": "^20.1.0-next.18",
43
43
  "ol": "^10.0.0",
44
44
  "rxjs": "^7.8.0"
45
45
  },