@provoly/dashboard 0.24.11 → 0.24.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/filters/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2022/lib/core/components/edit-input/edit-input.component.mjs +3 -3
- package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
- package/esm2022/lib/core/store/search/search.service.mjs +2 -2
- package/esm2022/lib/dashboard/components/dashboard.component.mjs +6 -3
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +6 -6
- package/esm2022/notification/components/notification/content/notification-content.component.mjs +2 -2
- package/esm2022/search/i18n/en.translations.mjs +5 -4
- package/esm2022/search/i18n/fr.translations.mjs +3 -2
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +8 -4
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +57 -50
- package/esm2022/widgets/widget-template/component/widget-template.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -1
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-notification.mjs +1 -1
- package/fesm2022/provoly-dashboard-notification.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +6 -4
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +7 -3
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +56 -49
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +12 -10
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/store/search/search.actions.d.ts +0 -4
- package/lib/core/store/search/search.service.d.ts +0 -2
- package/package.json +7 -7
- package/search/i18n/en.translations.d.ts +1 -0
- package/search/i18n/fr.translations.d.ts +1 -0
- package/widgets/widget-map/component/widget-map.component.d.ts +7 -3
|
@@ -45,8 +45,6 @@ export declare const SearchActions: {
|
|
|
45
45
|
filterId: string;
|
|
46
46
|
attributes: {
|
|
47
47
|
id: string;
|
|
48
|
-
technicalName: string;
|
|
49
|
-
label: string;
|
|
50
48
|
datasource: string;
|
|
51
49
|
}[];
|
|
52
50
|
limit: number;
|
|
@@ -54,8 +52,6 @@ export declare const SearchActions: {
|
|
|
54
52
|
filterId: string;
|
|
55
53
|
attributes: {
|
|
56
54
|
id: string;
|
|
57
|
-
technicalName: string;
|
|
58
|
-
label: string;
|
|
59
55
|
datasource: string;
|
|
60
56
|
}[];
|
|
61
57
|
limit: number;
|
|
@@ -45,8 +45,6 @@ export declare class SearchService {
|
|
|
45
45
|
applyTransformations(id: string, rs: ResultSet): ResultSet;
|
|
46
46
|
autocomplete(attributes: {
|
|
47
47
|
id: string;
|
|
48
|
-
technicalName: string;
|
|
49
|
-
label: string;
|
|
50
48
|
datasource: string;
|
|
51
49
|
}[] | undefined, search?: string, limit?: number): Observable<string[]>;
|
|
52
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchService, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.13",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -234,18 +234,18 @@
|
|
|
234
234
|
"esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
|
|
235
235
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
|
|
236
236
|
},
|
|
237
|
-
"./pipeline-components/subgraph": {
|
|
238
|
-
"types": "./pipeline-components/subgraph/index.d.ts",
|
|
239
|
-
"esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
240
|
-
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
241
|
-
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
242
|
-
},
|
|
243
237
|
"./pipeline-components/output-dataset": {
|
|
244
238
|
"types": "./pipeline-components/output-dataset/index.d.ts",
|
|
245
239
|
"esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
246
240
|
"esm": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
247
241
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs"
|
|
248
242
|
},
|
|
243
|
+
"./pipeline-components/subgraph": {
|
|
244
|
+
"types": "./pipeline-components/subgraph/index.d.ts",
|
|
245
|
+
"esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
246
|
+
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
247
|
+
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
248
|
+
},
|
|
249
249
|
"./tooltips/attribute": {
|
|
250
250
|
"types": "./tooltips/attribute/index.d.ts",
|
|
251
251
|
"esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
@@ -127,6 +127,7 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
127
127
|
previousTooltipSub?: Subscription;
|
|
128
128
|
popupOverlay?: Overlay;
|
|
129
129
|
layerGroups$: Observable<LayerGroup[]>;
|
|
130
|
+
layerGroups: LayerGroup[];
|
|
130
131
|
layerSettingsExpandedState: {
|
|
131
132
|
[key: string]: boolean;
|
|
132
133
|
};
|
|
@@ -164,7 +165,7 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
164
165
|
layerHasIntensity(layer: MapWidgetLayerOptions): MapWidgetHeatMapLayerOptions | MapWidgetBubbleLayerOptions;
|
|
165
166
|
changeIntensityAttributes($event: any, layer: MapWidgetLayerOptions): void;
|
|
166
167
|
changeClasses($event: string[], layer: MapWidgetLayerOptions): void;
|
|
167
|
-
deleteLayer(i: number, layer: MapWidgetLayerOptions): void;
|
|
168
|
+
deleteLayer(i: number, layer: MapWidgetLayerOptions, group: LayerGroup): void;
|
|
168
169
|
changeUrl($event: Event, layer: MapWMSLayerLayerOptions | MapFeatureLayerOptions | MapVectorTileLayerOptions | MapRasterTileLayerOptions | MapWMTSLayerLayerOptions | MapGeoServerLayerOptions): void;
|
|
169
170
|
changeAttribution($event: Event, layer: BaseWidgetMapLayerOptions): void;
|
|
170
171
|
changeParamLayer($event: Event, layer: MapWMSLayerLayerOptions | MapWMTSLayerLayerOptions): void;
|
|
@@ -212,10 +213,13 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
212
213
|
updateLayerGroupTitle($event: Event, name: string): void;
|
|
213
214
|
deleteLayerGroup(name: string): void;
|
|
214
215
|
drop(event: CdkDragDrop<MapWidgetLayerOptions[]>, group: LayerGroup): void;
|
|
215
|
-
|
|
216
|
+
moveLayerBetweenGroups(movedLayer: MapWidgetLayerOptions, newGroup: string): void;
|
|
217
|
+
moveLayerInOptions(targetIdxInGroup: number, movedLayer: MapWidgetLayerOptions, group: LayerGroup): void;
|
|
216
218
|
toggleExpandAll(group: LayerGroup): void;
|
|
217
219
|
toggleLayerExpand(layer: MapWidgetLayerOptions, group: LayerGroup): void;
|
|
218
|
-
|
|
220
|
+
updateLayerOrder(): void;
|
|
221
|
+
isGroupUsedByWidgetLayers(group: LayerGroup): boolean | undefined;
|
|
222
|
+
removeEmptyLayerGroups(): void;
|
|
219
223
|
protected readonly DEFAULT_LAYER_GROUP = "DEFAULT";
|
|
220
224
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetMapComponent, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
221
225
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetMapComponent, "pry-widget-map", never, {}, {}, never, never, false, never>;
|