@igo2/integration 1.14.1 → 1.14.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/esm2020/lib/draw/draw.state.mjs +2 -1
- package/esm2020/lib/search/search-results-tool/search-results-tool.component.mjs +26 -21
- package/fesm2015/igo2-integration.mjs +44 -39
- package/fesm2015/igo2-integration.mjs.map +1 -1
- package/fesm2020/igo2-integration.mjs +44 -39
- package/fesm2020/igo2-integration.mjs.map +1 -1
- package/lib/draw/draw.state.d.ts +1 -0
- package/lib/search/search-results-tool/search-results-tool.component.d.ts +5 -2
- package/package.json +3 -3
package/lib/draw/draw.state.d.ts
CHANGED
|
@@ -2,11 +2,12 @@ import { OnInit, ElementRef, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { ConfigService } from '@igo2/core';
|
|
4
4
|
import { EntityStore, FlexibleState } from '@igo2/common';
|
|
5
|
-
import { Feature, SearchResult, IgoMap, Research } from '@igo2/geo';
|
|
5
|
+
import { Feature, SearchResult, IgoMap, Research, FeatureWithDraw, FeatureStore } from '@igo2/geo';
|
|
6
6
|
import { MapState } from '../../map/map.state';
|
|
7
7
|
import { SearchState } from '../search.state';
|
|
8
8
|
import { ToolState } from '../../tool/tool.state';
|
|
9
9
|
import { DirectionState } from '../../directions/directions.state';
|
|
10
|
+
import { DrawState } from '../../draw';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* Tool to browse the search results
|
|
@@ -17,6 +18,7 @@ export declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
17
18
|
private elRef;
|
|
18
19
|
toolState: ToolState;
|
|
19
20
|
private directionState;
|
|
21
|
+
private drawState;
|
|
20
22
|
/**
|
|
21
23
|
* to show hide results icons
|
|
22
24
|
*/
|
|
@@ -59,7 +61,8 @@ export declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
59
61
|
get topPanelState(): FlexibleState;
|
|
60
62
|
get termSplitter(): string;
|
|
61
63
|
private format;
|
|
62
|
-
|
|
64
|
+
get stores(): FeatureStore<FeatureWithDraw>[];
|
|
65
|
+
constructor(mapState: MapState, searchState: SearchState, elRef: ElementRef, toolState: ToolState, directionState: DirectionState, configService: ConfigService, drawState: DrawState);
|
|
63
66
|
ngOnInit(): void;
|
|
64
67
|
private monitorResultOutOfView;
|
|
65
68
|
private buildResultEmphasis;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/integration",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.2",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"@angular/common": "^14.1.2",
|
|
20
20
|
"@angular/core": "^14.1.2",
|
|
21
|
-
"@igo2/geo": "1.14.
|
|
22
|
-
"@igo2/context": "1.14.
|
|
21
|
+
"@igo2/geo": "1.14.2",
|
|
22
|
+
"@igo2/context": "1.14.2",
|
|
23
23
|
"rxjs": "^7.5.6"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|