@provoly/dashboard 1.4.25 → 1.4.27
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/esm2022/lib/dashboard/components/dashboard.component.mjs +10 -10
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -2
- package/esm2022/lib/dashboard/store/wms.service.mjs +14 -8
- package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +2 -2
- package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +4 -3
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +4 -3
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +22 -15
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +2 -0
- package/lib/dashboard/store/wms.service.d.ts +1 -1
- package/package.json +7 -7
|
@@ -486,11 +486,13 @@ export declare const DashboardActions: {
|
|
|
486
486
|
oClass: string;
|
|
487
487
|
coordinates: number[];
|
|
488
488
|
componentId: string;
|
|
489
|
+
geomPropName?: string;
|
|
489
490
|
}) => {
|
|
490
491
|
url: string;
|
|
491
492
|
oClass: string;
|
|
492
493
|
coordinates: number[];
|
|
493
494
|
componentId: string;
|
|
495
|
+
geomPropName?: string;
|
|
494
496
|
} & import("@ngrx/store").Action<"[Widget map] Get wfs Features for showing stack tooltips">>;
|
|
495
497
|
updateDisplayOptions: import("@ngrx/store").ActionCreator<"[Dashboard/Display] (bus) Update displayed dashboard management features", (props: {
|
|
496
498
|
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.4.
|
|
3
|
+
"version": "1.4.27",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "17.x || 18.x",
|
|
@@ -162,18 +162,18 @@
|
|
|
162
162
|
"esm": "./esm2022/components/data-format/provoly-dashboard-components-data-format.mjs",
|
|
163
163
|
"default": "./fesm2022/provoly-dashboard-components-data-format.mjs"
|
|
164
164
|
},
|
|
165
|
-
"./components/filter": {
|
|
166
|
-
"types": "./components/filter/index.d.ts",
|
|
167
|
-
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
168
|
-
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
169
|
-
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
170
|
-
},
|
|
171
165
|
"./components/expand-panel": {
|
|
172
166
|
"types": "./components/expand-panel/index.d.ts",
|
|
173
167
|
"esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
174
168
|
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
175
169
|
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
176
170
|
},
|
|
171
|
+
"./components/filter": {
|
|
172
|
+
"types": "./components/filter/index.d.ts",
|
|
173
|
+
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
174
|
+
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
175
|
+
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
176
|
+
},
|
|
177
177
|
"./components/metadata-editor": {
|
|
178
178
|
"types": "./components/metadata-editor/index.d.ts",
|
|
179
179
|
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|