@provoly/dashboard 0.23.12 → 0.23.13

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.
@@ -100,6 +100,7 @@ export interface MapGeoServerLayerOptions extends BaseWidgetMapLayerOptions {
100
100
  datasourceId: string;
101
101
  namespace: string;
102
102
  name: string;
103
+ getWfsFeaturesForTooltips?: boolean;
103
104
  additionalParameters?: any;
104
105
  }
105
106
  export interface MapAutoLayerOptions extends BaseWidgetMapLayerOptions {
@@ -437,6 +437,26 @@ export declare const DashboardActions: {
437
437
  }) => {
438
438
  features: any;
439
439
  } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Set Wms layer features">>;
440
+ getWfsFeatures: import("@ngrx/store").ActionCreator<"[Widget map] Get wfs Features for point", (props: {
441
+ url: string;
442
+ oClass: string;
443
+ coordinates: number[];
444
+ style: string;
445
+ }) => {
446
+ url: string;
447
+ oClass: string;
448
+ coordinates: number[];
449
+ style: string;
450
+ } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Get wfs Features for point">>;
451
+ getWfsFeaturesForPointStackTooltips: import("@ngrx/store").ActionCreator<"[Widget map] Get wfs Features for showing stack tooltips", (props: {
452
+ url: string;
453
+ oClass: string;
454
+ coordinates: number[];
455
+ }) => {
456
+ url: string;
457
+ oClass: string;
458
+ coordinates: number[];
459
+ } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Get wfs Features for showing stack tooltips">>;
440
460
  updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] (bus) Update displayed dashboard management features", (props: {
441
461
  mode: ViewMode;
442
462
  customDisplay?: DisplayOptions | undefined;
@@ -220,6 +220,9 @@ export declare class DashboardEffects {
220
220
  getWmsFeatures: import("rxjs").Observable<{
221
221
  features: any;
222
222
  } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Set Wms layer features">> & import("@ngrx/effects").CreateEffectMetadata;
223
+ getWfsFeaturesForPointStack: import("rxjs").Observable<{
224
+ features: any;
225
+ } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Set Wms layer features">> & import("@ngrx/effects").CreateEffectMetadata;
223
226
  addManifestMetadata: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) fetching available manifests">> & import("@ngrx/effects").CreateEffectMetadata;
224
227
  deleteManifestMetadata$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) fetching available manifests">> & import("@ngrx/effects").CreateEffectMetadata;
225
228
  loadPresentation$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) follow manifest route"> | ({
@@ -13,6 +13,9 @@ export declare class WmsService {
13
13
  getWmsFeatures(url: string): Observable<{
14
14
  features: any[];
15
15
  }>;
16
+ getWfsFeatures(wmsUrl: string, bbox: number[]): Observable<{
17
+ features: any[];
18
+ }>;
16
19
  static ɵfac: i0.ɵɵFactoryDeclaration<WmsService, never>;
17
20
  static ɵprov: i0.ɵɵInjectableDeclaration<WmsService>;
18
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.23.12",
3
+ "version": "0.23.13",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "16.x || 17.x",