@provoly/dashboard 0.14.12 → 0.14.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.
- package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +1 -1
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +31 -6
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +31 -6
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/package.json +7 -7
- package/widgets/widget-map/component/widget-map.component.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.13",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "14.x || 15.x || 16.x",
|
|
@@ -176,18 +176,18 @@
|
|
|
176
176
|
"esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
177
177
|
"default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
|
|
178
178
|
},
|
|
179
|
-
"./components/filter": {
|
|
180
|
-
"types": "./components/filter/index.d.ts",
|
|
181
|
-
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
182
|
-
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
183
|
-
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
184
|
-
},
|
|
185
179
|
"./components/expand-panel": {
|
|
186
180
|
"types": "./components/expand-panel/index.d.ts",
|
|
187
181
|
"esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
188
182
|
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
189
183
|
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
190
184
|
},
|
|
185
|
+
"./components/filter": {
|
|
186
|
+
"types": "./components/filter/index.d.ts",
|
|
187
|
+
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
188
|
+
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
189
|
+
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
190
|
+
},
|
|
191
191
|
"./components/metadata-editor": {
|
|
192
192
|
"types": "./components/metadata-editor/index.d.ts",
|
|
193
193
|
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
@@ -94,6 +94,8 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
94
94
|
datasource: string;
|
|
95
95
|
extent: Coordinate[];
|
|
96
96
|
}[]>;
|
|
97
|
+
datasourceFilters$: Observable<any>;
|
|
98
|
+
usedClasses$: Observable<any>;
|
|
97
99
|
constructor(store: Store<any>, snackBar: PrySnackbarService, translateService: PryI18nService, tooltipFactoryService: TooltipFactoryService, overlay: cdkOverlay, viewContainerRef: ViewContainerRef, symbolService: SymbolService, injector: Injector, widgetMapLayerService: WidgetMapLayerService, pryAggregationService: PryAggregationService, el: ElementRef);
|
|
98
100
|
initInteractionManager(): InteractionManager;
|
|
99
101
|
ngAfterViewInit(): void;
|