@igo2/geo 21.0.0-next.21 → 21.0.0-next.22
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-geo.mjs +158 -102
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/package.json +4 -4
- package/types/igo2-geo.d.ts +17 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/geo",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.22",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@angular/material": "^21.0.0",
|
|
45
45
|
"@angular/material-moment-adapter": "^21.0.0",
|
|
46
46
|
"@angular/platform-browser": "^21.0.0",
|
|
47
|
-
"@igo2/common": "^21.0.0-next.
|
|
48
|
-
"@igo2/core": "^21.0.0-next.
|
|
49
|
-
"@igo2/utils": "^21.0.0-next.
|
|
47
|
+
"@igo2/common": "^21.0.0-next.22",
|
|
48
|
+
"@igo2/core": "^21.0.0-next.22",
|
|
49
|
+
"@igo2/utils": "^21.0.0-next.22",
|
|
50
50
|
"@mat-datetimepicker/core": "^17.0.0",
|
|
51
51
|
"geostyler-legend": "^5.2.0",
|
|
52
52
|
"geostyler-openlayers-parser": "^5.7.0",
|
package/types/igo2-geo.d.ts
CHANGED
|
@@ -4520,12 +4520,12 @@ declare class FeatureStoreSearchIndexStrategy extends EntityStoreStrategy {
|
|
|
4520
4520
|
* Bind this strategy to a store and start watching for entities changes
|
|
4521
4521
|
* @param store Feature store
|
|
4522
4522
|
*/
|
|
4523
|
-
bindStore(store:
|
|
4523
|
+
bindStore(store: EntityStore): void;
|
|
4524
4524
|
/**
|
|
4525
4525
|
* Unbind this strategy from a store and stop watching for entities changes
|
|
4526
4526
|
* @param store Feature store
|
|
4527
4527
|
*/
|
|
4528
|
-
unbindStore(store:
|
|
4528
|
+
unbindStore(store: EntityStore): void;
|
|
4529
4529
|
/**
|
|
4530
4530
|
* Start watching all stores already bound to that strategy at once.
|
|
4531
4531
|
* @internal
|
|
@@ -4537,6 +4537,20 @@ declare class FeatureStoreSearchIndexStrategy extends EntityStoreStrategy {
|
|
|
4537
4537
|
*/
|
|
4538
4538
|
protected doDeactivate(): void;
|
|
4539
4539
|
private initStoreSearchIndex;
|
|
4540
|
+
private createEmptySearchDocument;
|
|
4541
|
+
private createSearchDocument;
|
|
4542
|
+
private toSearchableValue;
|
|
4543
|
+
private toFieldName;
|
|
4544
|
+
private buildSearchDocument;
|
|
4545
|
+
private collectIndexedFeatures;
|
|
4546
|
+
private resolveIndexFields;
|
|
4547
|
+
private resolveConfiguredIndexFields;
|
|
4548
|
+
private resolveInferredIndexFields;
|
|
4549
|
+
private shouldIndexField;
|
|
4550
|
+
private getDistinctValueRatio;
|
|
4551
|
+
private hasExclusiveFloatValues;
|
|
4552
|
+
private buildSearchDocuments;
|
|
4553
|
+
private rebuildSearchDocument;
|
|
4540
4554
|
/**
|
|
4541
4555
|
* Watch for a store's entities changes
|
|
4542
4556
|
* @param store Feature store
|
|
@@ -8085,7 +8099,7 @@ declare class WorkspaceSearchSource extends SearchSource implements TextSearch {
|
|
|
8085
8099
|
}
|
|
8086
8100
|
|
|
8087
8101
|
interface WorkspaceData {
|
|
8088
|
-
index:
|
|
8102
|
+
index: EntityKey;
|
|
8089
8103
|
feature: Feature;
|
|
8090
8104
|
layer: Layer;
|
|
8091
8105
|
field: string;
|