@igo2/integration 21.0.0-next.2 → 21.0.0-next.21

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.
@@ -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, 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';
3
+ import { IgoMap, LayerListControlsOptions, LayerId, 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, WfsWorkspace, FeatureWorkspace, ConfigurableStylesOptions, 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';
@@ -22,7 +22,6 @@ import * as i2 from '@angular/common';
22
22
  import * as i3 from '@angular/material/button';
23
23
  import * as i4 from '@igo2/core/language';
24
24
  import { LanguageService } from '@igo2/core/language';
25
- import * as i6 from '@igo2/core/message';
26
25
  import { AuthEnvironmentOptions } from '@igo2/auth/environment';
27
26
  import { EnvironmentOptions as EnvironmentOptions$1 } from '@igo2/common/environment';
28
27
  import { EnvironmentOptions as EnvironmentOptions$2, BaseEnvironmentOptions } from '@igo2/core/environment';
@@ -43,7 +42,7 @@ declare class ContextManagerToolComponent {
43
42
  private mediaService;
44
43
  readonly toolToOpenOnContextChange: i0.InputSignal<string>;
45
44
  get map(): IgoMap;
46
- isDesktop: i0.Signal<boolean>;
45
+ isDesktop: i0.Signal<boolean | undefined>;
47
46
  editContext(): void;
48
47
  managePermissions(): void;
49
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ContextManagerToolComponent, never>;
@@ -74,17 +73,17 @@ declare class IgoAppContextModule {
74
73
  }
75
74
 
76
75
  interface ListExport {
77
- id: string;
76
+ id: LayerId;
78
77
  rank: string;
79
78
  layerTitle: string;
80
79
  layerGroup: string;
81
80
  catalog: string;
82
81
  provider: string;
83
- url: string;
84
- layerName: string;
82
+ url: string | undefined;
83
+ layerName: string | undefined;
85
84
  context: string;
86
85
  metadataAbstract: string;
87
- metadataUrl: string;
86
+ metadataUrl: string | undefined;
88
87
  }
89
88
 
90
89
  /**
@@ -97,7 +96,7 @@ declare class CatalogLibraryToolComponent implements OnInit, OnDestroy {
97
96
  private toolState;
98
97
  private storageService;
99
98
  private languageService;
100
- private generatelist$$;
99
+ private generatelist$$?;
101
100
  /**
102
101
  * Store that contains the catalogs
103
102
  * @internal
@@ -115,7 +114,7 @@ declare class CatalogLibraryToolComponent implements OnInit, OnDestroy {
115
114
  * List of predefined catalogs
116
115
  */
117
116
  readonly predefinedCatalogs: i0.InputSignal<Catalog[]>;
118
- set selectedCatalogId(id: any);
117
+ set selectedCatalogId(id: string | null);
119
118
  get currentTool(): string;
120
119
  get lastTool(): string;
121
120
  /**
@@ -182,12 +181,12 @@ declare class CatalogBrowserToolComponent implements OnInit, OnDestroy {
182
181
  private catalogState;
183
182
  private mapState;
184
183
  private authService;
185
- catalog: Catalog;
184
+ catalog?: Catalog;
186
185
  /**
187
186
  * Store that contains the catalog items
188
187
  * @internal
189
188
  */
190
- store$: BehaviorSubject<EntityStore<CatalogItem, CatalogItemState>>;
189
+ store$: BehaviorSubject<EntityStore<CatalogItem, CatalogItemState> | undefined>;
191
190
  /**
192
191
  * Subscription to the selected catalog
193
192
  */
@@ -247,7 +246,7 @@ declare class ContextState {
247
246
  /**
248
247
  * Observable of the active context
249
248
  */
250
- context$: BehaviorSubject<DetailedContext>;
249
+ context$: BehaviorSubject<DetailedContext | undefined>;
251
250
  constructor();
252
251
  /**
253
252
  * Set the active context
@@ -275,7 +274,7 @@ declare class DirectionsToolComponent implements OnInit {
275
274
  private storageService;
276
275
  contextState: ContextState;
277
276
  private authService;
278
- currentContextUri: string;
277
+ currentContextUri?: string;
279
278
  /**
280
279
  * stops
281
280
  * @internal
@@ -334,8 +333,8 @@ declare class DrawingToolComponent {
334
333
  get layersID(): LayerId[];
335
334
  get drawControls(): [LayerId, DrawControl][];
336
335
  set drawControls(dc: [LayerId, DrawControl][]);
337
- get activeDrawingLayer(): VectorLayer;
338
- set activeDrawingLayer(value: VectorLayer);
336
+ get activeDrawingLayer(): VectorLayer | undefined;
337
+ set activeDrawingLayer(value: VectorLayer | undefined);
339
338
  addLayersID(layerID: LayerId): void;
340
339
  addDrawControls(dc: [LayerId, DrawControl][]): void;
341
340
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawingToolComponent, never>;
@@ -360,20 +359,16 @@ declare class IgoAppDrawModule {
360
359
  static ɵinj: i0.ɵɵInjectorDeclaration<IgoAppDrawModule>;
361
360
  }
362
361
 
363
- declare class WorkspaceButtonComponent implements OnInit, OnDestroy {
362
+ declare class WorkspaceButtonComponent implements OnInit {
364
363
  private workspaceState;
365
- hasWorkspace$: BehaviorSubject<boolean>;
366
- private hasWorkspace$$;
367
- private layer$;
368
- set layer(value: AnyLayer);
369
- get layer(): AnyLayer;
370
- private _layer;
364
+ private destroyRef;
365
+ hasWorkspace: i0.WritableSignal<boolean>;
366
+ readonly layer: i0.InputSignal<AnyLayer | undefined>;
371
367
  readonly color: i0.InputSignal<string>;
372
368
  ngOnInit(): void;
373
- ngOnDestroy(): void;
374
369
  activateWorkspace(): void;
375
370
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceButtonComponent, never>;
376
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceButtonComponent, "igo-workspace-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
371
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceButtonComponent, "igo-workspace-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
377
372
  }
378
373
 
379
374
  /**
@@ -399,7 +394,7 @@ declare enum ImportExportMode {
399
394
  declare class ImportExportState {
400
395
  readonly importExportType$: BehaviorSubject<ImportExportType>;
401
396
  readonly selectedMode$: BehaviorSubject<ImportExportMode>;
402
- readonly exportOptions$: BehaviorSubject<ExportOptions>;
397
+ readonly exportOptions$: BehaviorSubject<ExportOptions | undefined>;
403
398
  setImportExportType(type: ImportExportType): void;
404
399
  setMode(mode: ImportExportMode): void;
405
400
  setsExportOptions(exportOptions: ExportOptions): void;
@@ -412,7 +407,7 @@ declare class ImportExportToolComponent implements OnInit {
412
407
  importExportState: ImportExportState;
413
408
  private workspaceState;
414
409
  contextState: ContextState;
415
- readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
410
+ readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions | undefined>;
416
411
  readonly selectFirstProj: i0.InputSignal<boolean>;
417
412
  /**
418
413
  * Map to measure on
@@ -427,7 +422,9 @@ declare class ImportExportToolComponent implements OnInit {
427
422
  private selectMode;
428
423
  modeChanged(mode: ImportExportMode): void;
429
424
  exportOptionsChange(exportOptions: ExportOptions): void;
430
- importExportTypeChange(event: any): void;
425
+ importExportTypeChange(event: {
426
+ value: ImportExportType;
427
+ }): void;
431
428
  static ɵfac: i0.ɵɵFactoryDeclaration<ImportExportToolComponent, never>;
432
429
  static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportToolComponent, "igo-import-export-tool", never, { "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; "selectFirstProj": { "alias": "selectFirstProj"; "required": false; "isSignal": true; }; "importExportType": { "alias": "importExportType"; "required": false; "isSignal": true; }; "importExportShowBothType": { "alias": "importExportShowBothType"; "required": false; "isSignal": true; }; }, { "importExportType": "importExportTypeChange"; }, never, never, true, never>;
433
430
  }
@@ -450,8 +447,9 @@ declare class MapState {
450
447
  private projectionService;
451
448
  private storageService;
452
449
  private configService;
453
- get showAllLegendsValue(): boolean;
454
- set showAllLegendsValue(value: boolean);
450
+ private overlayService;
451
+ get showAllLegendsValue(): boolean | undefined;
452
+ set showAllLegendsValue(value: boolean | undefined);
455
453
  private _legendToolShowAll;
456
454
  /**
457
455
  * Active map
@@ -467,8 +465,8 @@ declare class AdvancedMapToolComponent {
467
465
  mapState: MapState;
468
466
  get tracking$(): rxjs.BehaviorSubject<boolean>;
469
467
  get followPosition$(): rxjs.BehaviorSubject<boolean>;
470
- toggleTracking(value: any): void;
471
- toggleFollow(value: any): void;
468
+ toggleTracking(value: boolean): void;
469
+ toggleFollow(value: boolean): void;
472
470
  static ɵfac: i0.ɵɵFactoryDeclaration<AdvancedMapToolComponent, never>;
473
471
  static ɵcmp: i0.ɵɵComponentDeclaration<AdvancedMapToolComponent, "igo-advanced-map-tool", never, {}, {}, never, never, true, never>;
474
472
  }
@@ -485,7 +483,7 @@ declare class MapProximityState {
485
483
  proximitylocationType$: BehaviorSubject<string>;
486
484
  proximityFeatureStore: FeatureStore<Feature>;
487
485
  private subs$$;
488
- currentPositionCoordinate$: BehaviorSubject<Coordinate>;
486
+ currentPositionCoordinate$: BehaviorSubject<Coordinate | undefined>;
489
487
  get map(): IgoMap;
490
488
  constructor();
491
489
  subscribeProximityMonitor(): void;
@@ -495,7 +493,7 @@ declare class MapProximityState {
495
493
  */
496
494
  private addFeatureToStore;
497
495
  getQueryTitle(feature: Feature, layer: AnyLayer): string | undefined;
498
- getLabelMatch(feature: Feature, labelMatch: any): string;
496
+ getLabelMatch(feature: Feature, labelMatch: string): string;
499
497
  static ɵfac: i0.ɵɵFactoryDeclaration<MapProximityState, never>;
500
498
  static ɵprov: i0.ɵɵInjectableDeclaration<MapProximityState>;
501
499
  }
@@ -507,7 +505,7 @@ declare class MapProximityToolComponent implements OnInit, OnDestroy {
507
505
  private languageService;
508
506
  private messageService;
509
507
  private subs$$;
510
- readonly table: i0.Signal<EntityTableComponent>;
508
+ readonly table: i0.Signal<EntityTableComponent | undefined>;
511
509
  get maxDistance(): number;
512
510
  set maxDistance(value: number);
513
511
  get map(): IgoMap;
@@ -540,7 +538,7 @@ declare class MapToolComponent implements OnInit {
540
538
  private configService;
541
539
  mediaService: MediaService;
542
540
  private cdr;
543
- isDesktop: boolean;
541
+ isDesktop?: boolean;
544
542
  readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
545
543
  readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
546
544
  readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
@@ -566,12 +564,12 @@ declare class MapToolComponent implements OnInit {
566
564
  */
567
565
  declare class LayerListToolState {
568
566
  readonly keyword$: BehaviorSubject<string>;
569
- readonly sortAlpha$: BehaviorSubject<boolean>;
570
- readonly onlyVisible$: BehaviorSubject<boolean>;
571
- readonly selectedTab$: BehaviorSubject<number>;
567
+ readonly sortAlpha$: BehaviorSubject<boolean | undefined>;
568
+ readonly onlyVisible$: BehaviorSubject<boolean | undefined>;
569
+ readonly selectedTab$: BehaviorSubject<number | undefined>;
572
570
  setKeyword(keyword: string): void;
573
- setSortAlpha(sort: boolean): void;
574
- setOnlyVisible(onlyVisible: boolean): void;
571
+ setSortAlpha(sort: boolean | undefined): void;
572
+ setOnlyVisible(onlyVisible: boolean | undefined): void;
575
573
  setSelectedTab(tab: number): void;
576
574
  getLayerListControls(): LayerListControlsOptions;
577
575
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerListToolState, never>;
@@ -593,21 +591,18 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
593
591
  isDesktop: boolean;
594
592
  layers$: BehaviorSubject<AnyLayer[]>;
595
593
  showAllLegendsValue$: BehaviorSubject<boolean>;
596
- private resolution$$;
597
- private visibleOrInRangeLayers$$;
598
- delayedShowEmptyMapContent: boolean;
594
+ private resolution$$?;
595
+ private visibleOrInRangeLayers$$?;
599
596
  readonly allowShowAllLegends: i0.InputSignal<boolean>;
600
597
  readonly showAllLegendsValue: i0.InputSignal<boolean>;
601
598
  readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
602
599
  readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
603
600
  readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
604
- readonly selectedTabAtOpening: i0.InputSignal<string>;
601
+ readonly selectedTabAtOpening: i0.InputSignal<string | undefined>;
605
602
  readonly ogcButton: i0.InputSignal<boolean>;
606
603
  readonly timeButton: i0.InputSignal<boolean>;
607
604
  readonly layerAdditionAllowed: i0.InputSignal<boolean>;
608
- get layerListControls(): LayerListControlsOptions;
609
- set layerListControls(value: LayerListControlsOptions);
610
- private _layerListControls;
605
+ readonly layerListControls: i0.InputSignalWithTransform<LayerListControlsOptions, LayerListControlsOptions>;
611
606
  get map(): IgoMap;
612
607
  readonly queryBadge: i0.InputSignal<boolean>;
613
608
  get visibleOrInRangeLayers$(): Observable<AnyLayer[]>;
@@ -623,7 +618,7 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
623
618
  constructor();
624
619
  ngOnInit(): void;
625
620
  ngOnDestroy(): void;
626
- onShowAllLegends(event: any): void;
621
+ onShowAllLegends(event: boolean): void;
627
622
  private selectedTab;
628
623
  tabChanged(tab: MatTabChangeEvent): void;
629
624
  onLayerListChange(appliedFilters: LayerListControlsOptions): void;
@@ -634,13 +629,14 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
634
629
  searchEmit(): void;
635
630
  catalogEmit(): void;
636
631
  contextEmit(): void;
637
- isTimeFilterButton(layer: any): boolean;
638
- isOGCFilterButton(layer: any): boolean;
632
+ isTimeFilterButton(layer: AnyLayer): boolean;
633
+ isOGCFilterButton(layer: AnyLayer): boolean;
639
634
  isExportButton(layer: Layer): boolean;
640
635
  isStyleEditButton(layer: Layer): boolean;
641
636
  private handleMedia;
637
+ private transformLayerListControls;
642
638
  static ɵfac: i0.ɵɵFactoryDeclaration<MapToolsComponent, never>;
643
- static ɵcmp: i0.ɵɵComponentDeclaration<MapToolsComponent, "igo-map-tools", never, { "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; "isSignal": true; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "selectedTabAtOpening": { "alias": "selectedTabAtOpening"; "required": false; "isSignal": true; }; "ogcButton": { "alias": "ogcButton"; "required": false; "isSignal": true; }; "timeButton": { "alias": "timeButton"; "required": false; "isSignal": true; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; "isSignal": true; }; "layerListControls": { "alias": "layerListControls"; "required": false; }; "queryBadge": { "alias": "queryBadge"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
639
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapToolsComponent, "igo-map-tools", never, { "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; "isSignal": true; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "selectedTabAtOpening": { "alias": "selectedTabAtOpening"; "required": false; "isSignal": true; }; "ogcButton": { "alias": "ogcButton"; "required": false; "isSignal": true; }; "timeButton": { "alias": "timeButton"; "required": false; "isSignal": true; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; "isSignal": true; }; "layerListControls": { "alias": "layerListControls"; "required": false; "isSignal": true; }; "queryBadge": { "alias": "queryBadge"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
644
640
  }
645
641
 
646
642
  declare class MapDetailsToolComponent implements OnInit {
@@ -690,8 +686,8 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
690
686
  layers$: BehaviorSubject<AnyLayer[]>;
691
687
  showAllLegendsValue$: BehaviorSubject<boolean>;
692
688
  change$: ReplaySubject<void>;
693
- private resolution$$;
694
- private visibleOrInRangeLayers$$;
689
+ private resolution$$?;
690
+ private visibleOrInRangeLayers$$?;
695
691
  readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
696
692
  readonly layerAdditionAllowed: i0.InputSignal<boolean>;
697
693
  readonly allowShowAllLegends: i0.InputSignal<boolean>;
@@ -705,7 +701,7 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
705
701
  get catalogToolInToolbar(): boolean;
706
702
  get contextToolInToolbar(): boolean;
707
703
  ngOnInit(): void;
708
- onShowAllLegends(event: any): void;
704
+ onShowAllLegends(event: boolean): void;
709
705
  showAllLegend(): boolean;
710
706
  ngOnDestroy(): void;
711
707
  searchEmit(): void;
@@ -783,8 +779,8 @@ declare class IgoAppPrintModule {
783
779
  declare class SearchBarBindingDirective implements OnInit, OnDestroy {
784
780
  private component;
785
781
  private searchState;
786
- get searchTerm(): string;
787
- get searchType(): string;
782
+ get searchTerm(): string | undefined;
783
+ get searchType(): string | undefined;
788
784
  private searchTerm$$;
789
785
  private searchType$$;
790
786
  private searchDisabled$$;
@@ -803,7 +799,7 @@ declare class ToolState {
803
799
  private toolService;
804
800
  private importExportState;
805
801
  get toolbox(): Toolbox;
806
- openSidenav$: BehaviorSubject<boolean>;
802
+ openSidenav$: BehaviorSubject<boolean | undefined>;
807
803
  toolToActivateFromOptions(toolToActivate: {
808
804
  tool: string;
809
805
  options: ExportOptions;
@@ -821,6 +817,7 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
821
817
  private elRef;
822
818
  toolState: ToolState;
823
819
  private directionState;
820
+ private overlayService;
824
821
  /**
825
822
  * to show hide results icons
826
823
  */
@@ -829,19 +826,17 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
829
826
  * Determine the top panel default state
830
827
  */
831
828
  readonly topPanelStateDefault: i0.InputSignal<string>;
832
- private hasFeatureEmphasisOnSelection;
829
+ private searchResultsOverlayAll$$;
833
830
  saveSearchResultInLayer: boolean;
834
- private showResultsGeometries$$;
835
- private getRoute$$;
836
- private shownResultsGeometries;
837
- private shownResultsEmphasisGeometries;
838
- private focusedResult$;
831
+ private searchResultsOverlayFocused;
832
+ private searchResultsOverlaySelected;
833
+ private searchResultsOverlayAll;
834
+ private getRoute$$?;
839
835
  isSelectedResultOutOfView$: BehaviorSubject<boolean>;
840
836
  private isSelectedResultOutOfView$$;
841
- private abstractFocusedResult;
842
- private abstractSelectedResult;
843
837
  private destroyRef;
844
838
  debouncedEmpty: i0.WritableSignal<boolean>;
839
+ private searchResult;
845
840
  /**
846
841
  * Store holding the search results
847
842
  * @internal
@@ -852,23 +847,19 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
852
847
  * @internal
853
848
  */
854
849
  get map(): IgoMap;
855
- get featureTitle(): string;
856
- feature: i0.WritableSignal<Feature<Record<string, any>>>;
850
+ get featureTitle(): string | undefined;
851
+ feature: i0.WritableSignal<Feature<Record<string, any>> | undefined>;
857
852
  term: string;
858
853
  private searchTerm$$;
859
- settingsChange$: BehaviorSubject<boolean>;
860
- topPanelState$: BehaviorSubject<FlexibleState>;
861
- private topPanelState$$;
862
- set topPanelState(value: FlexibleState);
863
- get topPanelState(): FlexibleState;
854
+ readonly topPanelState: i0.InputSignal<FlexibleState | undefined>;
855
+ topPanelStateValue: i0.WritableSignal<FlexibleState>;
864
856
  get termSplitter(): string;
865
857
  private format;
866
858
  get stores(): FeatureStore<Feature>[];
867
859
  constructor();
868
860
  ngOnInit(): void;
861
+ handleShowAllResults(): void;
869
862
  private monitorResultOutOfView;
870
- private buildResultEmphasis;
871
- private clearFeatureEmphasis;
872
863
  ngOnDestroy(): void;
873
864
  /**
874
865
  * Try to add a feature to the map when it's being focused
@@ -888,7 +879,7 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
888
879
  results: SearchResult[];
889
880
  }): void;
890
881
  computeElementRef(): any[];
891
- adjustTopPanel(elemSource: any, elem: any): void;
882
+ adjustTopPanel(elemSource: HTMLElement, elem: HTMLElement): void;
892
883
  toggleTopPanel(event?: MouseEvent): void;
893
884
  zoomToFeatureExtent(): void;
894
885
  /**
@@ -896,11 +887,11 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
896
887
  * @param result A search result that could be a feature
897
888
  * @param motion A FeatureMotion to trigger when adding the searchresult to the map search overlay
898
889
  */
899
- private tryAddFeatureToMap;
900
- isScrolledIntoView(elemSource: any, elem: any): boolean;
890
+ private addResultToOverlay;
891
+ isScrolledIntoView(elemSource: HTMLElement, elem: HTMLElement): boolean;
901
892
  getRoute(): void;
902
893
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsToolComponent, never>;
903
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsToolComponent, "igo-search-results-tool", never, { "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "topPanelStateDefault": { "alias": "topPanelStateDefault"; "required": false; "isSignal": true; }; "topPanelState": { "alias": "topPanelState"; "required": false; }; }, {}, never, never, true, never>;
894
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsToolComponent, "igo-search-results-tool", never, { "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "topPanelStateDefault": { "alias": "topPanelStateDefault"; "required": false; "isSignal": true; }; "topPanelState": { "alias": "topPanelState"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
904
895
  }
905
896
 
906
897
  /**
@@ -920,7 +911,7 @@ declare class OgcFilterToolComponent {
920
911
  declare class ActiveOgcFilterToolComponent {
921
912
  mapState: MapState;
922
913
  get map(): IgoMap;
923
- get layer(): Layer;
914
+ get layer(): Layer | undefined;
924
915
  animate: string;
925
916
  static ɵfac: i0.ɵɵFactoryDeclaration<ActiveOgcFilterToolComponent, never>;
926
917
  static ɵcmp: i0.ɵɵComponentDeclaration<ActiveOgcFilterToolComponent, "igo-active-ogc-filter-tool", never, {}, {}, never, never, true, never>;
@@ -934,7 +925,7 @@ declare class TimeFilterToolComponent {
934
925
  declare class ActiveTimeFilterToolComponent {
935
926
  mapState: MapState;
936
927
  get map(): IgoMap;
937
- get layer(): Layer;
928
+ get layer(): Layer | undefined;
938
929
  animate: string;
939
930
  static ɵfac: i0.ɵɵFactoryDeclaration<ActiveTimeFilterToolComponent, never>;
940
931
  static ɵcmp: i0.ɵɵComponentDeclaration<ActiveTimeFilterToolComponent, "igo-active-time-filter-tool", never, {}, {}, never, never, true, never>;
@@ -954,32 +945,32 @@ declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
954
945
  private workspaceState;
955
946
  private cdRef;
956
947
  get map(): IgoMap;
957
- readonly type: i0.ModelSignal<SpatialFilterType>;
948
+ readonly type: i0.ModelSignal<SpatialFilterType | undefined>;
958
949
  readonly itemType: i0.ModelSignal<SpatialFilterItemType>;
959
- readonly freehandDrawIsActive: i0.ModelSignal<boolean>;
950
+ readonly freehandDrawIsActive: i0.ModelSignal<boolean | undefined>;
960
951
  layers: AnyLayer[];
961
952
  activeLayers: AnyLayer[];
962
- queryType: SpatialFilterQueryType;
963
- thematics: SpatialFilterThematic[];
953
+ queryType?: SpatialFilterQueryType;
954
+ thematics?: SpatialFilterThematic[];
964
955
  buffer: number;
965
956
  iterator: number;
966
- selectedFeature$: BehaviorSubject<Feature<Record<string, any>>>;
957
+ selectedFeature$: BehaviorSubject<Feature<Record<string, any>> | undefined>;
967
958
  store: EntityStore<Feature>;
968
959
  spatialListStore: EntityStore<Feature>;
969
960
  loading: boolean;
970
961
  thematicLength: number;
971
962
  measureUnit: MeasureLengthUnit;
972
- defaultStyle: olstyle.Style | ((feature: any, resolution: any) => olstyle.Style);
963
+ defaultStyle?: olstyle.Style | ((feature: unknown, resolution: unknown) => olstyle.Style);
973
964
  zones: Feature[];
974
965
  private unsubscribe$;
975
- private activePredefinedLayerZones;
976
- private activeDrawLayerZones;
966
+ private activePredefinedLayerZones?;
967
+ private activeDrawLayerZones?;
977
968
  ngOnInit(): void;
978
969
  ngOnDestroy(): void;
979
970
  getOutputType(event: SpatialFilterType): void;
980
971
  getOutputQueryType(event: SpatialFilterQueryType): void;
981
972
  activateExportTool(): void;
982
- activateWorkspace(record?: any): void;
973
+ activateWorkspace(record?: Record<string, unknown>): void;
983
974
  private selectWorkspaceEntity;
984
975
  private loadFilterList;
985
976
  getOutputToggleSearch(): void;
@@ -1028,29 +1019,20 @@ declare class AboutToolComponent implements OnInit {
1028
1019
  auth: AuthService<any>;
1029
1020
  private http;
1030
1021
  private cdRef;
1031
- private languageService;
1032
1022
  private userService;
1033
1023
  private configOptions;
1034
- get headerHtml(): string;
1035
- set headerHtml(value: string);
1036
- get html(): string;
1037
- set html(value: string);
1038
- private _discoverTitleInLocale;
1039
- discoverTitleInLocale$: Observable<string>;
1040
- get discoverTitleInLocale(): string;
1041
- set discoverTitleInLocale(value: string);
1042
- readonly trainingGuideURLs: i0.ModelSignal<string[]>;
1043
- effectiveVersion: string;
1044
- private _html;
1045
- private _headerHtml;
1046
- private baseUrlGuide;
1024
+ readonly headerHtml: i0.InputSignalWithTransform<string, string | string[]>;
1025
+ readonly html: i0.InputSignalWithTransform<string, string | string[]>;
1026
+ readonly trainingGuideURLs: i0.ModelSignal<string[] | undefined>;
1027
+ effectiveVersion?: string;
1028
+ private baseUrlGuide?;
1047
1029
  loading: boolean;
1048
1030
  constructor();
1049
1031
  ngOnInit(): void;
1050
- openGuide(guide?: any): void;
1032
+ openGuide(guide?: string): void;
1051
1033
  formatFileName(name: string): string;
1052
1034
  static ɵfac: i0.ɵɵFactoryDeclaration<AboutToolComponent, never>;
1053
- static ɵcmp: i0.ɵɵComponentDeclaration<AboutToolComponent, "igo-about-tool", never, { "headerHtml": { "alias": "headerHtml"; "required": false; }; "html": { "alias": "html"; "required": false; }; "discoverTitleInLocale": { "alias": "discoverTitleInLocale"; "required": false; }; "trainingGuideURLs": { "alias": "trainingGuideURLs"; "required": false; "isSignal": true; }; }, { "trainingGuideURLs": "trainingGuideURLsChange"; }, never, never, true, never>;
1035
+ static ɵcmp: i0.ɵɵComponentDeclaration<AboutToolComponent, "igo-about-tool", never, { "headerHtml": { "alias": "headerHtml"; "required": false; "isSignal": true; }; "html": { "alias": "html"; "required": false; "isSignal": true; }; "trainingGuideURLs": { "alias": "trainingGuideURLs"; "required": false; "isSignal": true; }; }, { "trainingGuideURLs": "trainingGuideURLsChange"; }, never, never, true, never>;
1054
1036
  }
1055
1037
 
1056
1038
  /**
@@ -1078,16 +1060,16 @@ declare class DataIssueReporterToolComponent implements OnInit, OnDestroy {
1078
1060
  /**
1079
1061
  * Url to report the data issue. Use the Post protocol to send the form.
1080
1062
  */
1081
- readonly url: i0.InputSignal<string>;
1063
+ readonly url: i0.InputSignal<string | undefined>;
1082
1064
  /**
1083
1065
  * Map to link to the form
1084
1066
  * @internal
1085
1067
  */
1086
1068
  get map(): IgoMap;
1087
- form$: BehaviorSubject<Form>;
1088
- data$: BehaviorSubject<Record<string, any>>;
1069
+ form$: BehaviorSubject<Form | undefined>;
1070
+ data$: BehaviorSubject<Record<string, unknown> | undefined>;
1089
1071
  submitDisabled: boolean;
1090
- private valueChanges$$;
1072
+ private valueChanges$$?;
1091
1073
  ngOnInit(): void;
1092
1074
  ngOnDestroy(): void;
1093
1075
  clearForm(): void;
@@ -1098,7 +1080,7 @@ declare class DataIssueReporterToolComponent implements OnInit, OnDestroy {
1098
1080
 
1099
1081
  declare class IgoAppGeometryFormModule {
1100
1082
  static ɵfac: i0.ɵɵFactoryDeclaration<IgoAppGeometryFormModule, never>;
1101
- static ɵmod: i0.ɵɵNgModuleDeclaration<IgoAppGeometryFormModule, [typeof DataIssueReporterToolComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.IgoLanguageModule, typeof i5.IgoFormModule, typeof i6.IgoMessageModule], [typeof DataIssueReporterToolComponent]>;
1083
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgoAppGeometryFormModule, [typeof DataIssueReporterToolComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.IgoLanguageModule, typeof i5.IgoFormModule], [typeof DataIssueReporterToolComponent]>;
1102
1084
  static ɵinj: i0.ɵɵInjectorDeclaration<IgoAppGeometryFormModule>;
1103
1085
  }
1104
1086
 
@@ -1153,7 +1135,7 @@ declare class CatalogState {
1153
1135
  * @param catalog Catalog
1154
1136
  * @returns Store that contains the catalog items
1155
1137
  */
1156
- getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem>;
1138
+ getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem> | undefined;
1157
1139
  /**
1158
1140
  * Bind a catalog items store to a catalog
1159
1141
  * @param catalog Catalog
@@ -1201,7 +1183,7 @@ declare class DrawState {
1201
1183
  stores: FeatureStore<FeatureWithDraw>[];
1202
1184
  layersID: LayerId[];
1203
1185
  drawControls: [LayerId, DrawControl][];
1204
- activeDrawingLayer: VectorLayer;
1186
+ activeDrawingLayer?: VectorLayer;
1205
1187
  constructor();
1206
1188
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawState, never>;
1207
1189
  static ɵprov: i0.ɵɵInjectableDeclaration<DrawState>;
@@ -1213,7 +1195,6 @@ interface EnvironmentOptions extends BaseEnvironmentOptions {
1213
1195
  }
1214
1196
  interface IntegrationEnvironmentOptions {
1215
1197
  app?: AppOptions;
1216
- hasFeatureEmphasisOnSelection?: boolean;
1217
1198
  saveSearchResultInLayer?: boolean;
1218
1199
  }
1219
1200
  interface AppOptions {
@@ -1227,7 +1208,9 @@ interface AppOptions {
1227
1208
  enabled?: boolean;
1228
1209
  path?: string;
1229
1210
  };
1230
- offline?: IOfflineOptions;
1211
+ offline?: {
1212
+ enabled?: boolean;
1213
+ };
1231
1214
  }
1232
1215
 
1233
1216
  declare class WfsActionsService implements OnDestroy {
@@ -1240,7 +1223,7 @@ declare class WfsActionsService implements OnDestroy {
1240
1223
  maximize$: BehaviorSubject<boolean>;
1241
1224
  selectOnlyCheckCondition$: BehaviorSubject<boolean>;
1242
1225
  zoomAuto$: BehaviorSubject<boolean>;
1243
- private storageChange$$;
1226
+ private storageChange$$?;
1244
1227
  get storageService(): StorageService;
1245
1228
  get zoomAuto(): boolean;
1246
1229
  constructor();
@@ -1259,7 +1242,7 @@ declare class FeatureActionsService implements OnDestroy {
1259
1242
  private interactiveSelectionFormWidget;
1260
1243
  maximize$: BehaviorSubject<boolean>;
1261
1244
  zoomAuto$: BehaviorSubject<boolean>;
1262
- private storageChange$$;
1245
+ private storageChange$$?;
1263
1246
  get storageService(): StorageService;
1264
1247
  get zoomAuto(): boolean;
1265
1248
  constructor();
@@ -1289,19 +1272,19 @@ declare class WorkspaceState implements OnDestroy {
1289
1272
  /** Subscription to the active workspace */
1290
1273
  private activeWorkspace$$;
1291
1274
  /** Subscription to the active workspace widget */
1292
- private activeWorkspaceWidget$$;
1275
+ private activeWorkspaceWidget$$?;
1293
1276
  /** Active widget observable. Only one may be active for all available workspaces */
1294
- readonly activeWorkspaceWidget$: BehaviorSubject<Widget>;
1277
+ readonly activeWorkspaceWidget$: BehaviorSubject<Widget | undefined>;
1295
1278
  /**
1296
1279
  * Observable of the active workspace
1297
1280
  */
1298
- workspace$: BehaviorSubject<Workspace<object>>;
1281
+ workspace$: BehaviorSubject<Workspace<object> | undefined>;
1299
1282
  /**
1300
1283
  * Store that holds all the available workspaces
1301
1284
  */
1302
1285
  get store(): WorkspaceStore;
1303
1286
  private _store;
1304
- get workspaceSelection(): EntityRecord<object, EntityState>[];
1287
+ get workspaceSelection(): EntityRecord<object, EntityState>[] | undefined;
1305
1288
  get workspaceSelection$(): Observable<EntityRecord<object, EntityState>[]>;
1306
1289
  constructor();
1307
1290
  /**
@@ -1356,9 +1339,7 @@ declare class QueryState {
1356
1339
  * Store that holds the query results
1357
1340
  */
1358
1341
  store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
1359
- queryOverlayStyle: CommonVectorStyleOptions;
1360
- queryOverlayStyleSelection: CommonVectorStyleOptions;
1361
- queryOverlayStyleFocus: CommonVectorStyleOptions;
1342
+ queryOverlayStyle: ConfigurableStylesOptions;
1362
1343
  constructor();
1363
1344
  static ɵfac: i0.ɵɵFactoryDeclaration<QueryState, never>;
1364
1345
  static ɵprov: i0.ɵɵInjectableDeclaration<QueryState>;
@@ -1381,11 +1362,8 @@ declare class SearchState {
1381
1362
  private configService;
1382
1363
  private mapState;
1383
1364
  searchLayerStores: FeatureStore<Feature>[];
1384
- searchOverlayStyle: CommonVectorStyleOptions;
1385
- searchOverlayStyleSelection: CommonVectorStyleOptions;
1386
- searchOverlayStyleFocus: CommonVectorStyleOptions;
1387
- focusedOrResolution$$: Subscription;
1388
- selectedOrResolution$$: Subscription;
1365
+ focusedOrResolution$$?: Subscription;
1366
+ selectedOrResolution$$?: Subscription;
1389
1367
  /**
1390
1368
  * Default feature motion are:
1391
1369
  * on selection = FeatureMotion.Default and
@@ -1393,16 +1371,17 @@ declare class SearchState {
1393
1371
  */
1394
1372
  featureMotion: SearchFeatureMotion;
1395
1373
  readonly searchTermSplitter$: BehaviorSubject<string>;
1396
- readonly searchTerm$: BehaviorSubject<string>;
1397
- readonly searchType$: BehaviorSubject<string>;
1374
+ readonly searchTerm$: BehaviorSubject<string | undefined>;
1375
+ readonly searchType$: BehaviorSubject<string | undefined>;
1398
1376
  readonly searchDisabled$: BehaviorSubject<boolean>;
1399
1377
  readonly searchResultsGeometryEnabled$: BehaviorSubject<boolean>;
1400
- readonly searchSettingsChange$: BehaviorSubject<boolean>;
1401
- readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any>>>;
1378
+ readonly searchSettingsChange$: BehaviorSubject<boolean | undefined>;
1379
+ readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any>> | undefined>;
1402
1380
  /**
1403
1381
  * Store that holds the search results
1404
1382
  */
1405
1383
  readonly store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
1384
+ searchOverlayStyle: ConfigurableStylesOptions;
1406
1385
  /**
1407
1386
  * Search types currently enabled in the search source service
1408
1387
  */
@@ -1422,11 +1401,11 @@ declare class SearchState {
1422
1401
  deactivateCustomFilterTermStrategy(): void;
1423
1402
  enableSearch(): void;
1424
1403
  disableSearch(): void;
1425
- setSearchTerm(searchTerm: string): void;
1426
- setSearchType(searchType: string): void;
1404
+ setSearchTerm(searchTerm: string | undefined): void;
1405
+ setSearchType(searchType: string | undefined): void;
1427
1406
  setSearchSettingsChange(): void;
1428
1407
  setSelectedResult(result: SearchResult): void;
1429
- setSearchResultsGeometryStatus(value: any): void;
1408
+ setSearchResultsGeometryStatus(value: boolean): void;
1430
1409
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchState, never>;
1431
1410
  static ɵprov: i0.ɵɵInjectableDeclaration<SearchState>;
1432
1411
  }