@igo2/integration 20.1.0-next.1 → 20.1.0-next.2

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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { OnInit, OnDestroy, ModuleWithProviders } from '@angular/core';
3
- import { IgoMap, LayerListControlsOptions, Catalog, CatalogItem, CatalogItemState, StopsStore, StopsFeatureStore, RoutesFeatureStore, StepsFeatureStore, FeatureStore, FeatureWithDraw, DrawControl, VectorLayer, AnyLayer, ExportOptions, ProjectionsLimitationsOptions, Feature, LayerViewerOptions, Layer, FeatureWithMeasure, SearchResult, Research, SpatialFilterType, SpatialFilterItemType, SpatialFilterQueryType, SpatialFilterThematic, MeasureLengthUnit, EnvironmentOptions as EnvironmentOptions$4, IOfflineOptions, WfsWorkspace, FeatureWorkspace, CommonVectorStyleOptions, FeatureMotion } from '@igo2/geo';
3
+ import { IgoMap, LayerListControlsOptions, Catalog, CatalogItem, CatalogItemState, StopsStore, StopsFeatureStore, RoutesFeatureStore, StepsFeatureStore, FeatureStore, FeatureWithDraw, LayerId, DrawControl, VectorLayer, AnyLayer, ExportOptions, ProjectionsLimitationsOptions, Feature, LayerViewerOptions, Layer, FeatureWithMeasure, SearchResult, Research, SpatialFilterType, SpatialFilterItemType, SpatialFilterQueryType, SpatialFilterThematic, MeasureLengthUnit, EnvironmentOptions as EnvironmentOptions$4, IOfflineOptions, WfsWorkspace, FeatureWorkspace, CommonVectorStyleOptions, FeatureMotion } from '@igo2/geo';
4
4
  import * as _igo2_common_entity from '@igo2/common/entity';
5
5
  import { EntityStore, EntityTableComponent, EntityTableTemplate, EntityRecord, EntityState } from '@igo2/common/entity';
6
6
  import * as rxjs from 'rxjs';
@@ -40,8 +40,10 @@ declare class ContextEditorToolComponent {
40
40
  declare class ContextManagerToolComponent {
41
41
  private toolState;
42
42
  private mapState;
43
+ private mediaService;
43
44
  readonly toolToOpenOnContextChange: i0.InputSignal<string>;
44
45
  get map(): IgoMap;
46
+ isDesktop: i0.Signal<boolean>;
45
47
  editContext(): void;
46
48
  managePermissions(): void;
47
49
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextManagerToolComponent, never>;
@@ -330,13 +332,13 @@ declare class DrawingToolComponent {
330
332
  * @internal
331
333
  */
332
334
  get map(): IgoMap;
333
- get layersID(): string[];
334
- get drawControls(): [string, DrawControl][];
335
- set drawControls(dc: [string, DrawControl][]);
335
+ get layersID(): LayerId[];
336
+ get drawControls(): [LayerId, DrawControl][];
337
+ set drawControls(dc: [LayerId, DrawControl][]);
336
338
  get activeDrawingLayer(): VectorLayer;
337
339
  set activeDrawingLayer(value: VectorLayer);
338
- addLayersID(layerID: string): void;
339
- addDrawControls(dc: [string, DrawControl][]): void;
340
+ addLayersID(layerID: LayerId): void;
341
+ addDrawControls(dc: [LayerId, DrawControl][]): void;
340
342
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawingToolComponent, never>;
341
343
  static ɵcmp: i0.ɵɵComponentDeclaration<DrawingToolComponent, "igo-drawing-tool", never, {}, {}, never, never, true, never>;
342
344
  }
@@ -1199,8 +1201,8 @@ declare class DirectionState {
1199
1201
  declare class DrawState {
1200
1202
  private mapState;
1201
1203
  stores: FeatureStore<FeatureWithDraw>[];
1202
- layersID: string[];
1203
- drawControls: [string, DrawControl][];
1204
+ layersID: LayerId[];
1205
+ drawControls: [LayerId, DrawControl][];
1204
1206
  activeDrawingLayer: VectorLayer;
1205
1207
  constructor();
1206
1208
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawState, never>;
@@ -1311,7 +1313,7 @@ declare class WorkspaceState implements OnDestroy {
1311
1313
  */
1312
1314
  private initWorkspaces;
1313
1315
  private setWorkspaceIsMaximized;
1314
- setActiveWorkspaceById(id: string): void;
1316
+ setActiveWorkspaceById(id: LayerId): void;
1315
1317
  setActiveWorkspaceByTitle(title: string): void;
1316
1318
  /**
1317
1319
  * Teardown all the workspaces
@@ -15,7 +15,7 @@
15
15
  "measurer": "Measure",
16
16
  "print": "Print",
17
17
  "searchResults": "Search Results",
18
- "shareMap": "Share",
18
+ "shareMap": "Share the map",
19
19
  "timeFilter": "Time Filter",
20
20
  "about": "About",
21
21
  "spatialFilter": "Spatial Filter",
@@ -15,7 +15,7 @@
15
15
  "measurer": "Mesurer",
16
16
  "print": "Imprimer",
17
17
  "searchResults": "Résultats de recherche",
18
- "shareMap": "Partager",
18
+ "shareMap": "Partager la carte",
19
19
  "timeFilter": "Filtre temporel",
20
20
  "about": "À propos",
21
21
  "spatialFilter": "Filtre spatial",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igo2/integration",
3
- "version": "20.1.0-next.1",
3
+ "version": "20.1.0-next.2",
4
4
  "description": "IGO Library",
5
5
  "author": "IGO Community",
6
6
  "keywords": [
@@ -30,9 +30,9 @@
30
30
  "peerDependencies": {
31
31
  "@angular/common": "^20.0.0",
32
32
  "@angular/core": "^20.0.0",
33
- "@igo2/auth": "^20.1.0-next.1",
34
- "@igo2/context": "^20.1.0-next.1",
35
- "@igo2/geo": "^20.1.0-next.1",
33
+ "@igo2/auth": "^20.1.0-next.2",
34
+ "@igo2/context": "^20.1.0-next.2",
35
+ "@igo2/geo": "^20.1.0-next.2",
36
36
  "@turf/point-on-feature": "^7.2.0",
37
37
  "jspdf-autotable": "^5.0.0",
38
38
  "jspdf": "^3.0.0",