@igo2/integration 21.0.0-next.2 → 21.0.0-next.20
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/fesm2022/igo2-integration.mjs +540 -687
- package/fesm2022/igo2-integration.mjs.map +1 -1
- package/package.json +4 -4
- package/types/igo2-integration.d.ts +109 -134
|
@@ -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,
|
|
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, IOfflineOptions, 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:
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
362
|
+
declare class WorkspaceButtonComponent implements OnInit {
|
|
364
363
|
private workspaceState;
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
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:
|
|
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,8 @@ 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
|
+
get showAllLegendsValue(): boolean | undefined;
|
|
451
|
+
set showAllLegendsValue(value: boolean | undefined);
|
|
455
452
|
private _legendToolShowAll;
|
|
456
453
|
/**
|
|
457
454
|
* Active map
|
|
@@ -467,8 +464,8 @@ declare class AdvancedMapToolComponent {
|
|
|
467
464
|
mapState: MapState;
|
|
468
465
|
get tracking$(): rxjs.BehaviorSubject<boolean>;
|
|
469
466
|
get followPosition$(): rxjs.BehaviorSubject<boolean>;
|
|
470
|
-
toggleTracking(value:
|
|
471
|
-
toggleFollow(value:
|
|
467
|
+
toggleTracking(value: boolean): void;
|
|
468
|
+
toggleFollow(value: boolean): void;
|
|
472
469
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvancedMapToolComponent, never>;
|
|
473
470
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdvancedMapToolComponent, "igo-advanced-map-tool", never, {}, {}, never, never, true, never>;
|
|
474
471
|
}
|
|
@@ -485,7 +482,7 @@ declare class MapProximityState {
|
|
|
485
482
|
proximitylocationType$: BehaviorSubject<string>;
|
|
486
483
|
proximityFeatureStore: FeatureStore<Feature>;
|
|
487
484
|
private subs$$;
|
|
488
|
-
currentPositionCoordinate$: BehaviorSubject<Coordinate>;
|
|
485
|
+
currentPositionCoordinate$: BehaviorSubject<Coordinate | undefined>;
|
|
489
486
|
get map(): IgoMap;
|
|
490
487
|
constructor();
|
|
491
488
|
subscribeProximityMonitor(): void;
|
|
@@ -495,7 +492,7 @@ declare class MapProximityState {
|
|
|
495
492
|
*/
|
|
496
493
|
private addFeatureToStore;
|
|
497
494
|
getQueryTitle(feature: Feature, layer: AnyLayer): string | undefined;
|
|
498
|
-
getLabelMatch(feature: Feature, labelMatch:
|
|
495
|
+
getLabelMatch(feature: Feature, labelMatch: string): string;
|
|
499
496
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapProximityState, never>;
|
|
500
497
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapProximityState>;
|
|
501
498
|
}
|
|
@@ -507,7 +504,7 @@ declare class MapProximityToolComponent implements OnInit, OnDestroy {
|
|
|
507
504
|
private languageService;
|
|
508
505
|
private messageService;
|
|
509
506
|
private subs$$;
|
|
510
|
-
readonly table: i0.Signal<EntityTableComponent>;
|
|
507
|
+
readonly table: i0.Signal<EntityTableComponent | undefined>;
|
|
511
508
|
get maxDistance(): number;
|
|
512
509
|
set maxDistance(value: number);
|
|
513
510
|
get map(): IgoMap;
|
|
@@ -540,7 +537,7 @@ declare class MapToolComponent implements OnInit {
|
|
|
540
537
|
private configService;
|
|
541
538
|
mediaService: MediaService;
|
|
542
539
|
private cdr;
|
|
543
|
-
isDesktop
|
|
540
|
+
isDesktop?: boolean;
|
|
544
541
|
readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
|
|
545
542
|
readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
|
|
546
543
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
@@ -566,12 +563,12 @@ declare class MapToolComponent implements OnInit {
|
|
|
566
563
|
*/
|
|
567
564
|
declare class LayerListToolState {
|
|
568
565
|
readonly keyword$: BehaviorSubject<string>;
|
|
569
|
-
readonly sortAlpha$: BehaviorSubject<boolean>;
|
|
570
|
-
readonly onlyVisible$: BehaviorSubject<boolean>;
|
|
571
|
-
readonly selectedTab$: BehaviorSubject<number>;
|
|
566
|
+
readonly sortAlpha$: BehaviorSubject<boolean | undefined>;
|
|
567
|
+
readonly onlyVisible$: BehaviorSubject<boolean | undefined>;
|
|
568
|
+
readonly selectedTab$: BehaviorSubject<number | undefined>;
|
|
572
569
|
setKeyword(keyword: string): void;
|
|
573
|
-
setSortAlpha(sort: boolean): void;
|
|
574
|
-
setOnlyVisible(onlyVisible: boolean): void;
|
|
570
|
+
setSortAlpha(sort: boolean | undefined): void;
|
|
571
|
+
setOnlyVisible(onlyVisible: boolean | undefined): void;
|
|
575
572
|
setSelectedTab(tab: number): void;
|
|
576
573
|
getLayerListControls(): LayerListControlsOptions;
|
|
577
574
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListToolState, never>;
|
|
@@ -593,21 +590,18 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
593
590
|
isDesktop: boolean;
|
|
594
591
|
layers$: BehaviorSubject<AnyLayer[]>;
|
|
595
592
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
596
|
-
private resolution
|
|
597
|
-
private visibleOrInRangeLayers
|
|
598
|
-
delayedShowEmptyMapContent: boolean;
|
|
593
|
+
private resolution$$?;
|
|
594
|
+
private visibleOrInRangeLayers$$?;
|
|
599
595
|
readonly allowShowAllLegends: i0.InputSignal<boolean>;
|
|
600
596
|
readonly showAllLegendsValue: i0.InputSignal<boolean>;
|
|
601
597
|
readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
|
|
602
598
|
readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
|
|
603
599
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
604
|
-
readonly selectedTabAtOpening: i0.InputSignal<string>;
|
|
600
|
+
readonly selectedTabAtOpening: i0.InputSignal<string | undefined>;
|
|
605
601
|
readonly ogcButton: i0.InputSignal<boolean>;
|
|
606
602
|
readonly timeButton: i0.InputSignal<boolean>;
|
|
607
603
|
readonly layerAdditionAllowed: i0.InputSignal<boolean>;
|
|
608
|
-
|
|
609
|
-
set layerListControls(value: LayerListControlsOptions);
|
|
610
|
-
private _layerListControls;
|
|
604
|
+
readonly layerListControls: i0.InputSignalWithTransform<LayerListControlsOptions, LayerListControlsOptions>;
|
|
611
605
|
get map(): IgoMap;
|
|
612
606
|
readonly queryBadge: i0.InputSignal<boolean>;
|
|
613
607
|
get visibleOrInRangeLayers$(): Observable<AnyLayer[]>;
|
|
@@ -623,7 +617,7 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
623
617
|
constructor();
|
|
624
618
|
ngOnInit(): void;
|
|
625
619
|
ngOnDestroy(): void;
|
|
626
|
-
onShowAllLegends(event:
|
|
620
|
+
onShowAllLegends(event: boolean): void;
|
|
627
621
|
private selectedTab;
|
|
628
622
|
tabChanged(tab: MatTabChangeEvent): void;
|
|
629
623
|
onLayerListChange(appliedFilters: LayerListControlsOptions): void;
|
|
@@ -634,13 +628,14 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
634
628
|
searchEmit(): void;
|
|
635
629
|
catalogEmit(): void;
|
|
636
630
|
contextEmit(): void;
|
|
637
|
-
isTimeFilterButton(layer:
|
|
638
|
-
isOGCFilterButton(layer:
|
|
631
|
+
isTimeFilterButton(layer: AnyLayer): boolean;
|
|
632
|
+
isOGCFilterButton(layer: AnyLayer): boolean;
|
|
639
633
|
isExportButton(layer: Layer): boolean;
|
|
640
634
|
isStyleEditButton(layer: Layer): boolean;
|
|
641
635
|
private handleMedia;
|
|
636
|
+
private transformLayerListControls;
|
|
642
637
|
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>;
|
|
638
|
+
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
639
|
}
|
|
645
640
|
|
|
646
641
|
declare class MapDetailsToolComponent implements OnInit {
|
|
@@ -690,8 +685,8 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
690
685
|
layers$: BehaviorSubject<AnyLayer[]>;
|
|
691
686
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
692
687
|
change$: ReplaySubject<void>;
|
|
693
|
-
private resolution
|
|
694
|
-
private visibleOrInRangeLayers
|
|
688
|
+
private resolution$$?;
|
|
689
|
+
private visibleOrInRangeLayers$$?;
|
|
695
690
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
696
691
|
readonly layerAdditionAllowed: i0.InputSignal<boolean>;
|
|
697
692
|
readonly allowShowAllLegends: i0.InputSignal<boolean>;
|
|
@@ -705,7 +700,7 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
705
700
|
get catalogToolInToolbar(): boolean;
|
|
706
701
|
get contextToolInToolbar(): boolean;
|
|
707
702
|
ngOnInit(): void;
|
|
708
|
-
onShowAllLegends(event:
|
|
703
|
+
onShowAllLegends(event: boolean): void;
|
|
709
704
|
showAllLegend(): boolean;
|
|
710
705
|
ngOnDestroy(): void;
|
|
711
706
|
searchEmit(): void;
|
|
@@ -783,8 +778,8 @@ declare class IgoAppPrintModule {
|
|
|
783
778
|
declare class SearchBarBindingDirective implements OnInit, OnDestroy {
|
|
784
779
|
private component;
|
|
785
780
|
private searchState;
|
|
786
|
-
get searchTerm(): string;
|
|
787
|
-
get searchType(): string;
|
|
781
|
+
get searchTerm(): string | undefined;
|
|
782
|
+
get searchType(): string | undefined;
|
|
788
783
|
private searchTerm$$;
|
|
789
784
|
private searchType$$;
|
|
790
785
|
private searchDisabled$$;
|
|
@@ -803,7 +798,7 @@ declare class ToolState {
|
|
|
803
798
|
private toolService;
|
|
804
799
|
private importExportState;
|
|
805
800
|
get toolbox(): Toolbox;
|
|
806
|
-
openSidenav$: BehaviorSubject<boolean>;
|
|
801
|
+
openSidenav$: BehaviorSubject<boolean | undefined>;
|
|
807
802
|
toolToActivateFromOptions(toolToActivate: {
|
|
808
803
|
tool: string;
|
|
809
804
|
options: ExportOptions;
|
|
@@ -829,19 +824,17 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
829
824
|
* Determine the top panel default state
|
|
830
825
|
*/
|
|
831
826
|
readonly topPanelStateDefault: i0.InputSignal<string>;
|
|
832
|
-
private
|
|
827
|
+
private searchResultsOverlayAll$$;
|
|
833
828
|
saveSearchResultInLayer: boolean;
|
|
834
|
-
private
|
|
835
|
-
private
|
|
836
|
-
private
|
|
837
|
-
private
|
|
838
|
-
private focusedResult$;
|
|
829
|
+
private searchResultsOverlayFocused;
|
|
830
|
+
private searchResultsOverlaySelected;
|
|
831
|
+
private searchResultsOverlayAll;
|
|
832
|
+
private getRoute$$?;
|
|
839
833
|
isSelectedResultOutOfView$: BehaviorSubject<boolean>;
|
|
840
834
|
private isSelectedResultOutOfView$$;
|
|
841
|
-
private abstractFocusedResult;
|
|
842
|
-
private abstractSelectedResult;
|
|
843
835
|
private destroyRef;
|
|
844
836
|
debouncedEmpty: i0.WritableSignal<boolean>;
|
|
837
|
+
private searchResult;
|
|
845
838
|
/**
|
|
846
839
|
* Store holding the search results
|
|
847
840
|
* @internal
|
|
@@ -852,23 +845,19 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
852
845
|
* @internal
|
|
853
846
|
*/
|
|
854
847
|
get map(): IgoMap;
|
|
855
|
-
get featureTitle(): string;
|
|
856
|
-
feature: i0.WritableSignal<Feature<Record<string, any
|
|
848
|
+
get featureTitle(): string | undefined;
|
|
849
|
+
feature: i0.WritableSignal<Feature<Record<string, any>> | undefined>;
|
|
857
850
|
term: string;
|
|
858
851
|
private searchTerm$$;
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
private topPanelState$$;
|
|
862
|
-
set topPanelState(value: FlexibleState);
|
|
863
|
-
get topPanelState(): FlexibleState;
|
|
852
|
+
readonly topPanelState: i0.InputSignal<FlexibleState | undefined>;
|
|
853
|
+
topPanelStateValue: i0.WritableSignal<FlexibleState>;
|
|
864
854
|
get termSplitter(): string;
|
|
865
855
|
private format;
|
|
866
856
|
get stores(): FeatureStore<Feature>[];
|
|
867
857
|
constructor();
|
|
868
858
|
ngOnInit(): void;
|
|
859
|
+
handleShowAllResults(): void;
|
|
869
860
|
private monitorResultOutOfView;
|
|
870
|
-
private buildResultEmphasis;
|
|
871
|
-
private clearFeatureEmphasis;
|
|
872
861
|
ngOnDestroy(): void;
|
|
873
862
|
/**
|
|
874
863
|
* Try to add a feature to the map when it's being focused
|
|
@@ -888,7 +877,7 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
888
877
|
results: SearchResult[];
|
|
889
878
|
}): void;
|
|
890
879
|
computeElementRef(): any[];
|
|
891
|
-
adjustTopPanel(elemSource:
|
|
880
|
+
adjustTopPanel(elemSource: HTMLElement, elem: HTMLElement): void;
|
|
892
881
|
toggleTopPanel(event?: MouseEvent): void;
|
|
893
882
|
zoomToFeatureExtent(): void;
|
|
894
883
|
/**
|
|
@@ -896,11 +885,11 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
896
885
|
* @param result A search result that could be a feature
|
|
897
886
|
* @param motion A FeatureMotion to trigger when adding the searchresult to the map search overlay
|
|
898
887
|
*/
|
|
899
|
-
private
|
|
900
|
-
isScrolledIntoView(elemSource:
|
|
888
|
+
private addResultToOverlay;
|
|
889
|
+
isScrolledIntoView(elemSource: HTMLElement, elem: HTMLElement): boolean;
|
|
901
890
|
getRoute(): void;
|
|
902
891
|
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>;
|
|
892
|
+
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
893
|
}
|
|
905
894
|
|
|
906
895
|
/**
|
|
@@ -920,7 +909,7 @@ declare class OgcFilterToolComponent {
|
|
|
920
909
|
declare class ActiveOgcFilterToolComponent {
|
|
921
910
|
mapState: MapState;
|
|
922
911
|
get map(): IgoMap;
|
|
923
|
-
get layer(): Layer;
|
|
912
|
+
get layer(): Layer | undefined;
|
|
924
913
|
animate: string;
|
|
925
914
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveOgcFilterToolComponent, never>;
|
|
926
915
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveOgcFilterToolComponent, "igo-active-ogc-filter-tool", never, {}, {}, never, never, true, never>;
|
|
@@ -934,7 +923,7 @@ declare class TimeFilterToolComponent {
|
|
|
934
923
|
declare class ActiveTimeFilterToolComponent {
|
|
935
924
|
mapState: MapState;
|
|
936
925
|
get map(): IgoMap;
|
|
937
|
-
get layer(): Layer;
|
|
926
|
+
get layer(): Layer | undefined;
|
|
938
927
|
animate: string;
|
|
939
928
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveTimeFilterToolComponent, never>;
|
|
940
929
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveTimeFilterToolComponent, "igo-active-time-filter-tool", never, {}, {}, never, never, true, never>;
|
|
@@ -954,32 +943,32 @@ declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
|
|
|
954
943
|
private workspaceState;
|
|
955
944
|
private cdRef;
|
|
956
945
|
get map(): IgoMap;
|
|
957
|
-
readonly type: i0.ModelSignal<SpatialFilterType>;
|
|
946
|
+
readonly type: i0.ModelSignal<SpatialFilterType | undefined>;
|
|
958
947
|
readonly itemType: i0.ModelSignal<SpatialFilterItemType>;
|
|
959
|
-
readonly freehandDrawIsActive: i0.ModelSignal<boolean>;
|
|
948
|
+
readonly freehandDrawIsActive: i0.ModelSignal<boolean | undefined>;
|
|
960
949
|
layers: AnyLayer[];
|
|
961
950
|
activeLayers: AnyLayer[];
|
|
962
|
-
queryType
|
|
963
|
-
thematics
|
|
951
|
+
queryType?: SpatialFilterQueryType;
|
|
952
|
+
thematics?: SpatialFilterThematic[];
|
|
964
953
|
buffer: number;
|
|
965
954
|
iterator: number;
|
|
966
|
-
selectedFeature$: BehaviorSubject<Feature<Record<string, any
|
|
955
|
+
selectedFeature$: BehaviorSubject<Feature<Record<string, any>> | undefined>;
|
|
967
956
|
store: EntityStore<Feature>;
|
|
968
957
|
spatialListStore: EntityStore<Feature>;
|
|
969
958
|
loading: boolean;
|
|
970
959
|
thematicLength: number;
|
|
971
960
|
measureUnit: MeasureLengthUnit;
|
|
972
|
-
defaultStyle
|
|
961
|
+
defaultStyle?: olstyle.Style | ((feature: unknown, resolution: unknown) => olstyle.Style);
|
|
973
962
|
zones: Feature[];
|
|
974
963
|
private unsubscribe$;
|
|
975
|
-
private activePredefinedLayerZones
|
|
976
|
-
private activeDrawLayerZones
|
|
964
|
+
private activePredefinedLayerZones?;
|
|
965
|
+
private activeDrawLayerZones?;
|
|
977
966
|
ngOnInit(): void;
|
|
978
967
|
ngOnDestroy(): void;
|
|
979
968
|
getOutputType(event: SpatialFilterType): void;
|
|
980
969
|
getOutputQueryType(event: SpatialFilterQueryType): void;
|
|
981
970
|
activateExportTool(): void;
|
|
982
|
-
activateWorkspace(record?:
|
|
971
|
+
activateWorkspace(record?: Record<string, unknown>): void;
|
|
983
972
|
private selectWorkspaceEntity;
|
|
984
973
|
private loadFilterList;
|
|
985
974
|
getOutputToggleSearch(): void;
|
|
@@ -1028,29 +1017,20 @@ declare class AboutToolComponent implements OnInit {
|
|
|
1028
1017
|
auth: AuthService<any>;
|
|
1029
1018
|
private http;
|
|
1030
1019
|
private cdRef;
|
|
1031
|
-
private languageService;
|
|
1032
1020
|
private userService;
|
|
1033
1021
|
private configOptions;
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
private
|
|
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;
|
|
1022
|
+
readonly headerHtml: i0.InputSignalWithTransform<string, string | string[]>;
|
|
1023
|
+
readonly html: i0.InputSignalWithTransform<string, string | string[]>;
|
|
1024
|
+
readonly trainingGuideURLs: i0.ModelSignal<string[] | undefined>;
|
|
1025
|
+
effectiveVersion?: string;
|
|
1026
|
+
private baseUrlGuide?;
|
|
1047
1027
|
loading: boolean;
|
|
1048
1028
|
constructor();
|
|
1049
1029
|
ngOnInit(): void;
|
|
1050
|
-
openGuide(guide?:
|
|
1030
|
+
openGuide(guide?: string): void;
|
|
1051
1031
|
formatFileName(name: string): string;
|
|
1052
1032
|
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;
|
|
1033
|
+
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
1034
|
}
|
|
1055
1035
|
|
|
1056
1036
|
/**
|
|
@@ -1078,16 +1058,16 @@ declare class DataIssueReporterToolComponent implements OnInit, OnDestroy {
|
|
|
1078
1058
|
/**
|
|
1079
1059
|
* Url to report the data issue. Use the Post protocol to send the form.
|
|
1080
1060
|
*/
|
|
1081
|
-
readonly url: i0.InputSignal<string>;
|
|
1061
|
+
readonly url: i0.InputSignal<string | undefined>;
|
|
1082
1062
|
/**
|
|
1083
1063
|
* Map to link to the form
|
|
1084
1064
|
* @internal
|
|
1085
1065
|
*/
|
|
1086
1066
|
get map(): IgoMap;
|
|
1087
|
-
form$: BehaviorSubject<Form>;
|
|
1088
|
-
data$: BehaviorSubject<Record<string,
|
|
1067
|
+
form$: BehaviorSubject<Form | undefined>;
|
|
1068
|
+
data$: BehaviorSubject<Record<string, unknown> | undefined>;
|
|
1089
1069
|
submitDisabled: boolean;
|
|
1090
|
-
private valueChanges
|
|
1070
|
+
private valueChanges$$?;
|
|
1091
1071
|
ngOnInit(): void;
|
|
1092
1072
|
ngOnDestroy(): void;
|
|
1093
1073
|
clearForm(): void;
|
|
@@ -1098,7 +1078,7 @@ declare class DataIssueReporterToolComponent implements OnInit, OnDestroy {
|
|
|
1098
1078
|
|
|
1099
1079
|
declare class IgoAppGeometryFormModule {
|
|
1100
1080
|
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
|
|
1081
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoAppGeometryFormModule, [typeof DataIssueReporterToolComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.IgoLanguageModule, typeof i5.IgoFormModule], [typeof DataIssueReporterToolComponent]>;
|
|
1102
1082
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoAppGeometryFormModule>;
|
|
1103
1083
|
}
|
|
1104
1084
|
|
|
@@ -1153,7 +1133,7 @@ declare class CatalogState {
|
|
|
1153
1133
|
* @param catalog Catalog
|
|
1154
1134
|
* @returns Store that contains the catalog items
|
|
1155
1135
|
*/
|
|
1156
|
-
getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem
|
|
1136
|
+
getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem> | undefined;
|
|
1157
1137
|
/**
|
|
1158
1138
|
* Bind a catalog items store to a catalog
|
|
1159
1139
|
* @param catalog Catalog
|
|
@@ -1201,7 +1181,7 @@ declare class DrawState {
|
|
|
1201
1181
|
stores: FeatureStore<FeatureWithDraw>[];
|
|
1202
1182
|
layersID: LayerId[];
|
|
1203
1183
|
drawControls: [LayerId, DrawControl][];
|
|
1204
|
-
activeDrawingLayer
|
|
1184
|
+
activeDrawingLayer?: VectorLayer;
|
|
1205
1185
|
constructor();
|
|
1206
1186
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawState, never>;
|
|
1207
1187
|
static ɵprov: i0.ɵɵInjectableDeclaration<DrawState>;
|
|
@@ -1213,7 +1193,6 @@ interface EnvironmentOptions extends BaseEnvironmentOptions {
|
|
|
1213
1193
|
}
|
|
1214
1194
|
interface IntegrationEnvironmentOptions {
|
|
1215
1195
|
app?: AppOptions;
|
|
1216
|
-
hasFeatureEmphasisOnSelection?: boolean;
|
|
1217
1196
|
saveSearchResultInLayer?: boolean;
|
|
1218
1197
|
}
|
|
1219
1198
|
interface AppOptions {
|
|
@@ -1240,7 +1219,7 @@ declare class WfsActionsService implements OnDestroy {
|
|
|
1240
1219
|
maximize$: BehaviorSubject<boolean>;
|
|
1241
1220
|
selectOnlyCheckCondition$: BehaviorSubject<boolean>;
|
|
1242
1221
|
zoomAuto$: BehaviorSubject<boolean>;
|
|
1243
|
-
private storageChange
|
|
1222
|
+
private storageChange$$?;
|
|
1244
1223
|
get storageService(): StorageService;
|
|
1245
1224
|
get zoomAuto(): boolean;
|
|
1246
1225
|
constructor();
|
|
@@ -1259,7 +1238,7 @@ declare class FeatureActionsService implements OnDestroy {
|
|
|
1259
1238
|
private interactiveSelectionFormWidget;
|
|
1260
1239
|
maximize$: BehaviorSubject<boolean>;
|
|
1261
1240
|
zoomAuto$: BehaviorSubject<boolean>;
|
|
1262
|
-
private storageChange
|
|
1241
|
+
private storageChange$$?;
|
|
1263
1242
|
get storageService(): StorageService;
|
|
1264
1243
|
get zoomAuto(): boolean;
|
|
1265
1244
|
constructor();
|
|
@@ -1289,19 +1268,19 @@ declare class WorkspaceState implements OnDestroy {
|
|
|
1289
1268
|
/** Subscription to the active workspace */
|
|
1290
1269
|
private activeWorkspace$$;
|
|
1291
1270
|
/** Subscription to the active workspace widget */
|
|
1292
|
-
private activeWorkspaceWidget
|
|
1271
|
+
private activeWorkspaceWidget$$?;
|
|
1293
1272
|
/** Active widget observable. Only one may be active for all available workspaces */
|
|
1294
|
-
readonly activeWorkspaceWidget$: BehaviorSubject<Widget>;
|
|
1273
|
+
readonly activeWorkspaceWidget$: BehaviorSubject<Widget | undefined>;
|
|
1295
1274
|
/**
|
|
1296
1275
|
* Observable of the active workspace
|
|
1297
1276
|
*/
|
|
1298
|
-
workspace$: BehaviorSubject<Workspace<object
|
|
1277
|
+
workspace$: BehaviorSubject<Workspace<object> | undefined>;
|
|
1299
1278
|
/**
|
|
1300
1279
|
* Store that holds all the available workspaces
|
|
1301
1280
|
*/
|
|
1302
1281
|
get store(): WorkspaceStore;
|
|
1303
1282
|
private _store;
|
|
1304
|
-
get workspaceSelection(): EntityRecord<object, EntityState>[];
|
|
1283
|
+
get workspaceSelection(): EntityRecord<object, EntityState>[] | undefined;
|
|
1305
1284
|
get workspaceSelection$(): Observable<EntityRecord<object, EntityState>[]>;
|
|
1306
1285
|
constructor();
|
|
1307
1286
|
/**
|
|
@@ -1356,9 +1335,7 @@ declare class QueryState {
|
|
|
1356
1335
|
* Store that holds the query results
|
|
1357
1336
|
*/
|
|
1358
1337
|
store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
|
|
1359
|
-
queryOverlayStyle:
|
|
1360
|
-
queryOverlayStyleSelection: CommonVectorStyleOptions;
|
|
1361
|
-
queryOverlayStyleFocus: CommonVectorStyleOptions;
|
|
1338
|
+
queryOverlayStyle: ConfigurableStylesOptions;
|
|
1362
1339
|
constructor();
|
|
1363
1340
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryState, never>;
|
|
1364
1341
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueryState>;
|
|
@@ -1381,11 +1358,8 @@ declare class SearchState {
|
|
|
1381
1358
|
private configService;
|
|
1382
1359
|
private mapState;
|
|
1383
1360
|
searchLayerStores: FeatureStore<Feature>[];
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
searchOverlayStyleFocus: CommonVectorStyleOptions;
|
|
1387
|
-
focusedOrResolution$$: Subscription;
|
|
1388
|
-
selectedOrResolution$$: Subscription;
|
|
1361
|
+
focusedOrResolution$$?: Subscription;
|
|
1362
|
+
selectedOrResolution$$?: Subscription;
|
|
1389
1363
|
/**
|
|
1390
1364
|
* Default feature motion are:
|
|
1391
1365
|
* on selection = FeatureMotion.Default and
|
|
@@ -1393,16 +1367,17 @@ declare class SearchState {
|
|
|
1393
1367
|
*/
|
|
1394
1368
|
featureMotion: SearchFeatureMotion;
|
|
1395
1369
|
readonly searchTermSplitter$: BehaviorSubject<string>;
|
|
1396
|
-
readonly searchTerm$: BehaviorSubject<string>;
|
|
1397
|
-
readonly searchType$: BehaviorSubject<string>;
|
|
1370
|
+
readonly searchTerm$: BehaviorSubject<string | undefined>;
|
|
1371
|
+
readonly searchType$: BehaviorSubject<string | undefined>;
|
|
1398
1372
|
readonly searchDisabled$: BehaviorSubject<boolean>;
|
|
1399
1373
|
readonly searchResultsGeometryEnabled$: BehaviorSubject<boolean>;
|
|
1400
|
-
readonly searchSettingsChange$: BehaviorSubject<boolean>;
|
|
1401
|
-
readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any
|
|
1374
|
+
readonly searchSettingsChange$: BehaviorSubject<boolean | undefined>;
|
|
1375
|
+
readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any>> | undefined>;
|
|
1402
1376
|
/**
|
|
1403
1377
|
* Store that holds the search results
|
|
1404
1378
|
*/
|
|
1405
1379
|
readonly store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
|
|
1380
|
+
searchOverlayStyle: ConfigurableStylesOptions;
|
|
1406
1381
|
/**
|
|
1407
1382
|
* Search types currently enabled in the search source service
|
|
1408
1383
|
*/
|
|
@@ -1422,11 +1397,11 @@ declare class SearchState {
|
|
|
1422
1397
|
deactivateCustomFilterTermStrategy(): void;
|
|
1423
1398
|
enableSearch(): void;
|
|
1424
1399
|
disableSearch(): void;
|
|
1425
|
-
setSearchTerm(searchTerm: string): void;
|
|
1426
|
-
setSearchType(searchType: string): void;
|
|
1400
|
+
setSearchTerm(searchTerm: string | undefined): void;
|
|
1401
|
+
setSearchType(searchType: string | undefined): void;
|
|
1427
1402
|
setSearchSettingsChange(): void;
|
|
1428
1403
|
setSelectedResult(result: SearchResult): void;
|
|
1429
|
-
setSearchResultsGeometryStatus(value:
|
|
1404
|
+
setSearchResultsGeometryStatus(value: boolean): void;
|
|
1430
1405
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchState, never>;
|
|
1431
1406
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchState>;
|
|
1432
1407
|
}
|