@provoly/dashboard 0.13.4 → 0.13.5
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/widgets/widget-map/component/widget-map.component.mjs +3 -3
- package/esm2022/widgets/widget-map/pipe/widget-map-legend-url.pipe.mjs +56 -5
- package/esm2022/widgets/widget-map/pipe/xml-utils.class.mjs +32 -0
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +88 -7
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/package.json +7 -7
- package/widgets/widget-map/pipe/widget-map-legend-url.pipe.d.ts +6 -1
- package/widgets/widget-map/pipe/xml-utils.class.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "15.x || 16.x",
|
|
@@ -85,18 +85,18 @@
|
|
|
85
85
|
"esm": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
86
86
|
"default": "./fesm2022/provoly-dashboard-search.mjs"
|
|
87
87
|
},
|
|
88
|
-
"./supervision": {
|
|
89
|
-
"types": "./supervision/index.d.ts",
|
|
90
|
-
"esm2022": "./esm2022/supervision/provoly-dashboard-supervision.mjs",
|
|
91
|
-
"esm": "./esm2022/supervision/provoly-dashboard-supervision.mjs",
|
|
92
|
-
"default": "./fesm2022/provoly-dashboard-supervision.mjs"
|
|
93
|
-
},
|
|
94
88
|
"./toolbox": {
|
|
95
89
|
"types": "./toolbox/index.d.ts",
|
|
96
90
|
"esm2022": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
97
91
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
98
92
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
99
93
|
},
|
|
94
|
+
"./supervision": {
|
|
95
|
+
"types": "./supervision/index.d.ts",
|
|
96
|
+
"esm2022": "./esm2022/supervision/provoly-dashboard-supervision.mjs",
|
|
97
|
+
"esm": "./esm2022/supervision/provoly-dashboard-supervision.mjs",
|
|
98
|
+
"default": "./fesm2022/provoly-dashboard-supervision.mjs"
|
|
99
|
+
},
|
|
100
100
|
"./filters/date": {
|
|
101
101
|
"types": "./filters/date/index.d.ts",
|
|
102
102
|
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
1
2
|
import { PipeTransform } from '@angular/core';
|
|
2
3
|
import { MapGeoServerLayerOptions, MapWMSLayerLayerOptions } from '@provoly/dashboard';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class WidgetMapLegendUrlPipe implements PipeTransform {
|
|
5
|
-
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
parser: DOMParser;
|
|
10
|
+
transform(geoLayer: MapGeoServerLayerOptions | MapWMSLayerLayerOptions): Observable<string>;
|
|
6
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetMapLegendUrlPipe, never>;
|
|
7
12
|
static ɵpipe: i0.ɵɵPipeDeclaration<WidgetMapLegendUrlPipe, "legendUrl", false>;
|
|
8
13
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare class XMLUtils {
|
|
2
|
+
static find(childs: NodeListOf<ChildNode>, name: string): ChildNode | null;
|
|
3
|
+
static findAll(childs: NodeListOf<ChildNode>, name: string): ChildNode[];
|
|
4
|
+
static findWith(childs: NodeListOf<ChildNode>, attribute: string, value: string): ChildNode | null;
|
|
5
|
+
}
|