@provoly/dashboard 1.3.20 → 1.3.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.
@@ -103,6 +103,7 @@ export interface MapGeoServerLayerOptions extends BaseWidgetMapLayerOptions {
103
103
  name: string;
104
104
  getWfsFeaturesForTooltips?: boolean;
105
105
  additionalParameters?: any;
106
+ geomPropName?: string;
106
107
  }
107
108
  export interface MapAutoLayerOptions extends BaseWidgetMapLayerOptions {
108
109
  type: 'auto';
@@ -468,11 +468,13 @@ export declare const DashboardActions: {
468
468
  oClass: string;
469
469
  coordinates: number[];
470
470
  componentId: string;
471
+ geomProName: string;
471
472
  }) => {
472
473
  url: string;
473
474
  oClass: string;
474
475
  coordinates: number[];
475
476
  componentId: string;
477
+ geomProName: string;
476
478
  } & import("@ngrx/store/src/models").TypedAction<"[Widget map] Get wfs Features for showing stack tooltips">>;
477
479
  updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] (bus) Update displayed dashboard management features", (props: {
478
480
  mode: ViewMode;
@@ -13,7 +13,7 @@ export declare class WmsService {
13
13
  getWmsFeatures(url: string): Observable<{
14
14
  features: any[];
15
15
  }>;
16
- getWfsFeatures(wmsUrl: string, bbox: number[]): Observable<{
16
+ getWfsFeatures(wmsUrl: string, bbox: number[], geomPropName: string): Observable<{
17
17
  features: any[];
18
18
  }>;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<WmsService, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.3.20",
3
+ "version": "1.3.21",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "16.x || 17.x",