@provoly/dashboard 1.4.9 → 1.4.11
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/components/paginator/paginator.component.d.ts +3 -1
- package/dataset/components/dataset-detail/dataset-detail.component.d.ts +4 -3
- package/esm2022/components/paginator/paginator.component.mjs +8 -4
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +9 -11
- package/esm2022/import/components/list/import-list.component.mjs +1 -1
- package/esm2022/lib/core/components/select/select.component.mjs +3 -3
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/result-set.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
- package/esm2022/lib/core/store/search/search.effects.mjs +33 -8
- package/esm2022/lib/core/store/search/search.service.mjs +24 -6
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +20 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -5
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +16 -49
- package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +2 -4
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +34 -15
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +60 -55
- package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +41 -48
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +32 -17
- package/fesm2022/provoly-dashboard-components-paginator.mjs +7 -3
- package/fesm2022/provoly-dashboard-components-paginator.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-dataset.mjs +9 -11
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-import.mjs +1 -1
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +32 -13
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +100 -102
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +32 -17
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +299 -280
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/manifest.interface.d.ts +2 -10
- package/lib/core/model/result-set.interface.d.ts +1 -0
- package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
- package/lib/core/store/search/search.actions.d.ts +4 -0
- package/lib/core/store/search/search.effects.d.ts +12 -1
- package/lib/core/store/search/search.service.d.ts +3 -1
- package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +1 -0
- package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +1 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +9 -18
- package/lib/dashboard/store/dashboard.effects.d.ts +3 -1
- package/lib/dashboard/store/dashboard.selectors.d.ts +0 -9
- package/package.json +49 -49
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -1
- package/widgets/widget-map/component/widget-map.component.d.ts +1 -2
- package/widgets/widget-map/interaction/tooltip-manager.class.d.ts +0 -2
|
@@ -6,7 +6,7 @@ import { DetailWidgetOptions } from './widget-detail-manifest.interface';
|
|
|
6
6
|
import { GraphWidgetOptions } from './widget-graph-manifest.interface';
|
|
7
7
|
import { IframeWidgetOptions } from './widget-iframe-manifest.interface';
|
|
8
8
|
import { ImageWidgetOptions } from './widget-image-manifest.interface';
|
|
9
|
-
import {
|
|
9
|
+
import { MapWidgetOptions } from './widget-map-manifest.interface';
|
|
10
10
|
import { TableWidgetOptions } from './widget-table-manifest.interface';
|
|
11
11
|
import { TemplateWidgetOptions } from './widget-template-manifest.interface';
|
|
12
12
|
import { TileWidgetOptions } from './widget-tile-manifest.interface';
|
|
@@ -53,21 +53,12 @@ export interface DashboardManifest {
|
|
|
53
53
|
grid?: GridLayout;
|
|
54
54
|
widgets: WidgetManifest[];
|
|
55
55
|
}
|
|
56
|
-
export interface Payload {
|
|
57
|
-
filters: any[];
|
|
58
|
-
}
|
|
59
|
-
export interface Request {
|
|
60
|
-
url: string;
|
|
61
|
-
method: string;
|
|
62
|
-
payload: Payload;
|
|
63
|
-
}
|
|
64
56
|
export interface GlobalManifest {
|
|
65
57
|
windows: DashboardManifest[];
|
|
66
58
|
refreshRates?: {
|
|
67
59
|
[key: string]: number;
|
|
68
60
|
};
|
|
69
61
|
filters?: Filter[];
|
|
70
|
-
layerGroups?: LayerGroup[];
|
|
71
62
|
}
|
|
72
63
|
export interface WidgetManifest {
|
|
73
64
|
title?: string;
|
|
@@ -77,6 +68,7 @@ export interface WidgetManifest {
|
|
|
77
68
|
datasource?: string | string[];
|
|
78
69
|
header?: boolean;
|
|
79
70
|
contextMenu?: boolean;
|
|
71
|
+
excludeGeo?: 'exclude-all' | 'exclude-none' | 'exclude-not-geo' | 'exclude-geo' | 'widget-type-based';
|
|
80
72
|
}
|
|
81
73
|
export interface CustomWidgetOptions {
|
|
82
74
|
[opt: string]: any;
|
|
@@ -16,6 +16,7 @@ export interface MapWidgetOptions {
|
|
|
16
16
|
ignoreAutoLayer?: string[];
|
|
17
17
|
automaticLayers?: boolean;
|
|
18
18
|
slide?: boolean;
|
|
19
|
+
layerGroups?: LayerGroup[];
|
|
19
20
|
}
|
|
20
21
|
export type MapWidgetLayerOptions = MapWidgetHeatMapLayerOptions | MapWidgetMarkerLayerOptions | MapWidgetBubbleLayerOptions | MapWidgetRelationLayerOptions | MapWMSLayerLayerOptions | MapFeatureLayerOptions | MapVectorTileLayerOptions | MapRasterTileLayerOptions | MapGeoServerLayerOptions | MapAutoLayerOptions | MapWMTSLayerLayerOptions | MapWidgetGeometryLayerOptions;
|
|
21
22
|
export interface BaseWidgetMapLayerOptions {
|
|
@@ -13,19 +13,23 @@ export declare const SearchActions: {
|
|
|
13
13
|
id: string;
|
|
14
14
|
excludeGeo: boolean;
|
|
15
15
|
from: string;
|
|
16
|
+
next?: boolean;
|
|
16
17
|
}) => {
|
|
17
18
|
id: string;
|
|
18
19
|
excludeGeo: boolean;
|
|
19
20
|
from: string;
|
|
21
|
+
next?: boolean;
|
|
20
22
|
} & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">>;
|
|
21
23
|
searchSuccess: import("@ngrx/store").ActionCreator<"[Search Api] (bus) Search Success (not-active-action)", (props: {
|
|
22
24
|
resultSet: ResultSet;
|
|
23
25
|
id?: string;
|
|
24
26
|
params?: string;
|
|
27
|
+
next?: boolean;
|
|
25
28
|
}) => {
|
|
26
29
|
resultSet: ResultSet;
|
|
27
30
|
id?: string;
|
|
28
31
|
params?: string;
|
|
32
|
+
next?: boolean;
|
|
29
33
|
} & import("@ngrx/store").Action<"[Search Api] (bus) Search Success (not-active-action)">>;
|
|
30
34
|
searchFailure: import("@ngrx/store").ActionCreator<"[Search Api] (bus) Search Failure", (props: {
|
|
31
35
|
error: any;
|
|
@@ -1,24 +1,34 @@
|
|
|
1
1
|
import { Actions } from '@ngrx/effects';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { SearchService } from './search.service';
|
|
4
|
+
import { WidgetFactoryService } from '../../../dashboard/components/widgets/widget-instanciator/widget-factory.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SearchEffects {
|
|
6
7
|
private actions$;
|
|
7
8
|
private searchService;
|
|
8
9
|
private store;
|
|
9
|
-
|
|
10
|
+
private widgetFactoryService;
|
|
11
|
+
constructor(actions$: Actions, searchService: SearchService, store: Store, widgetFactoryService: WidgetFactoryService);
|
|
10
12
|
searchNamed$: import("rxjs").Observable<({
|
|
11
13
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
12
14
|
id?: string;
|
|
13
15
|
params?: string;
|
|
16
|
+
next?: boolean;
|
|
14
17
|
} & import("@ngrx/store").Action<"[Search Api] (bus) Search Success (not-active-action)">) | ({
|
|
15
18
|
error: any;
|
|
16
19
|
id?: string;
|
|
17
20
|
} & import("@ngrx/store").Action<"[Search Api] (bus) Search Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
21
|
+
fetchMore$: import("rxjs").Observable<{
|
|
22
|
+
id: string;
|
|
23
|
+
excludeGeo: boolean;
|
|
24
|
+
from: string;
|
|
25
|
+
next?: boolean;
|
|
26
|
+
} & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
18
27
|
search$: import("rxjs").Observable<({
|
|
19
28
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
20
29
|
id?: string;
|
|
21
30
|
params?: string;
|
|
31
|
+
next?: boolean;
|
|
22
32
|
} & import("@ngrx/store").Action<"[Search Api] (bus) Search Success (not-active-action)">) | ({
|
|
23
33
|
error: any;
|
|
24
34
|
id?: string;
|
|
@@ -27,6 +37,7 @@ export declare class SearchEffects {
|
|
|
27
37
|
id: string;
|
|
28
38
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
29
39
|
params?: string;
|
|
40
|
+
next?: boolean;
|
|
30
41
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) received named resultSet (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
31
42
|
getPossibleFilterValues$: import("rxjs").Observable<{
|
|
32
43
|
filterId: string;
|
|
@@ -8,6 +8,7 @@ import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
|
|
|
8
8
|
import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
|
|
9
9
|
import { ConfigState } from '../config/config.reducer';
|
|
10
10
|
import { SearchState } from './search.reducer';
|
|
11
|
+
import { DataSource } from '../data-source/data-source.model';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export type ResultsetTransformation = (id: string, result: ResultSet) => ResultSet;
|
|
13
14
|
export declare class SearchService {
|
|
@@ -20,8 +21,9 @@ export declare class SearchService {
|
|
|
20
21
|
limits: {
|
|
21
22
|
[p: string]: number;
|
|
22
23
|
};
|
|
24
|
+
datasources: DataSource[];
|
|
23
25
|
constructor(httpClient: HttpClient, store: Store<ConfigState | SearchState>);
|
|
24
|
-
getItems(id: string, quickOrder?: ResultOrder, excludeGeo?: boolean): Observable<ResultSet>;
|
|
26
|
+
getItems(id: string, quickOrder?: ResultOrder, excludeGeo?: boolean, searchAfter?: string): Observable<ResultSet>;
|
|
25
27
|
getItemsSerializedParams(id: string, quickOrder?: {
|
|
26
28
|
[id: string]: ResultOrder | undefined;
|
|
27
29
|
}): string;
|
|
@@ -15,6 +15,7 @@ export declare const WidgetPlacementUtils: {
|
|
|
15
15
|
datasource?: string | string[];
|
|
16
16
|
header?: boolean;
|
|
17
17
|
contextMenu?: boolean;
|
|
18
|
+
excludeGeo?: "exclude-all" | "exclude-none" | "exclude-not-geo" | "exclude-geo" | "widget-type-based";
|
|
18
19
|
}[];
|
|
19
20
|
swapArrayElements: (arr: any[], x: number, y: number) => any[];
|
|
20
21
|
getOverlaps: (widgets: WidgetManifest[]) => WidgetManifest[][];
|
|
@@ -7,7 +7,6 @@ import { Relation } from '../../core/model/relation.interface';
|
|
|
7
7
|
import { OrderValue } from '../../core/model/result-order.interface';
|
|
8
8
|
import { ResultSet, ResultSets } from '../../core/model/result-set.interface';
|
|
9
9
|
import { GetCapabilitiesResponse } from './wms.service';
|
|
10
|
-
import { LayerGroup } from '../../core/model/widget-map-manifest.interface';
|
|
11
10
|
export type DashboardCellParams = {
|
|
12
11
|
gridWidth: number;
|
|
13
12
|
gridHeight: number;
|
|
@@ -204,6 +203,13 @@ export declare const DashboardActions: {
|
|
|
204
203
|
}) => {
|
|
205
204
|
id: string;
|
|
206
205
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) fetching staticManifest">>;
|
|
206
|
+
fetchMoreItems: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) fetching more items", (props: {
|
|
207
|
+
id: string;
|
|
208
|
+
widgetType: string;
|
|
209
|
+
}) => {
|
|
210
|
+
id: string;
|
|
211
|
+
widgetType: string;
|
|
212
|
+
} & import("@ngrx/store").Action<"[Dashboard] (bus) fetching more items">>;
|
|
207
213
|
endLoading: import("@ngrx/store").ActionCreator<"[Dashboard] end loading", () => import("@ngrx/store").Action<"[Dashboard] end loading">>;
|
|
208
214
|
updateStaticManifest: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) received staticManifest", (props: {
|
|
209
215
|
staticManifest: GlobalManifest;
|
|
@@ -290,10 +296,12 @@ export declare const DashboardActions: {
|
|
|
290
296
|
id: string;
|
|
291
297
|
resultSet: ResultSet;
|
|
292
298
|
params?: string;
|
|
299
|
+
next?: boolean;
|
|
293
300
|
}) => {
|
|
294
301
|
id: string;
|
|
295
302
|
resultSet: ResultSet;
|
|
296
303
|
params?: string;
|
|
304
|
+
next?: boolean;
|
|
297
305
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) received named resultSet (not-active-action)">>;
|
|
298
306
|
addRelationsToResultSets: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) add relations to resultSet", (props: {
|
|
299
307
|
relations: Relation[];
|
|
@@ -521,21 +529,4 @@ export declare const DashboardActions: {
|
|
|
521
529
|
presentation: ManifestDescription;
|
|
522
530
|
viewMode: ViewMode;
|
|
523
531
|
} & import("@ngrx/store").Action<"[Dashboard] load presentation">>;
|
|
524
|
-
initDefaultLayerGroup: import("@ngrx/store").ActionCreator<"[Dashboard] init default layer group", (props: {
|
|
525
|
-
layers?: string[];
|
|
526
|
-
}) => {
|
|
527
|
-
layers?: string[];
|
|
528
|
-
} & import("@ngrx/store").Action<"[Dashboard] init default layer group">>;
|
|
529
|
-
updateLayerVisibility: import("@ngrx/store").ActionCreator<"[Dashboard] update visible layers on the layer group", (props: {
|
|
530
|
-
name: string;
|
|
531
|
-
visibleLayers?: string | string[];
|
|
532
|
-
}) => {
|
|
533
|
-
name: string;
|
|
534
|
-
visibleLayers?: string | string[];
|
|
535
|
-
} & import("@ngrx/store").Action<"[Dashboard] update visible layers on the layer group">>;
|
|
536
|
-
updateLayerGroups: import("@ngrx/store").ActionCreator<"[Dashboard] update all layer groups", (props: {
|
|
537
|
-
layerGroups: LayerGroup[];
|
|
538
|
-
}) => {
|
|
539
|
-
layerGroups: LayerGroup[];
|
|
540
|
-
} & import("@ngrx/store").Action<"[Dashboard] update all layer groups">>;
|
|
541
532
|
};
|
|
@@ -97,6 +97,7 @@ export declare class DashboardEffects {
|
|
|
97
97
|
id: string;
|
|
98
98
|
excludeGeo: boolean;
|
|
99
99
|
from: string;
|
|
100
|
+
next?: boolean;
|
|
100
101
|
} & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">) | ({
|
|
101
102
|
id: string;
|
|
102
103
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) Triggering aggregates for datasource">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
@@ -150,7 +151,6 @@ export declare class DashboardEffects {
|
|
|
150
151
|
[key: string]: number;
|
|
151
152
|
};
|
|
152
153
|
filters?: import("@provoly/dashboard").Filter[];
|
|
153
|
-
layerGroups?: import("../../core/model/widget-map-manifest.interface").LayerGroup[];
|
|
154
154
|
}]> & import("@ngrx/effects").CreateEffectMetadata;
|
|
155
155
|
saveManifest$: import("rxjs").Observable<import("@ngrx/store").Action<"[Dashboard] (bus) fetching available manifests"> | ({
|
|
156
156
|
tenants?: string[];
|
|
@@ -178,6 +178,7 @@ export declare class DashboardEffects {
|
|
|
178
178
|
id: string;
|
|
179
179
|
resultSet: import("@provoly/dashboard").ResultSet;
|
|
180
180
|
params?: string;
|
|
181
|
+
next?: boolean;
|
|
181
182
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) received named resultSet (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
182
183
|
explore$: import("rxjs").Observable<{
|
|
183
184
|
id: string;
|
|
@@ -220,6 +221,7 @@ export declare class DashboardEffects {
|
|
|
220
221
|
id: string;
|
|
221
222
|
excludeGeo: boolean;
|
|
222
223
|
from: string;
|
|
224
|
+
next?: boolean;
|
|
223
225
|
} & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
224
226
|
propagateGridLayout$: import("rxjs").Observable<{
|
|
225
227
|
manifest: import("../../core/model/manifest.interface").DashboardManifest;
|
|
@@ -32,7 +32,6 @@ export declare const DashboardSelectors: {
|
|
|
32
32
|
[key: string]: number;
|
|
33
33
|
};
|
|
34
34
|
filters?: Filter[];
|
|
35
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
36
35
|
}, (s1: {
|
|
37
36
|
sender: string;
|
|
38
37
|
tenants: string[];
|
|
@@ -47,7 +46,6 @@ export declare const DashboardSelectors: {
|
|
|
47
46
|
[key: string]: number;
|
|
48
47
|
};
|
|
49
48
|
filters?: Filter[];
|
|
50
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
51
49
|
}>;
|
|
52
50
|
refreshRates: MemoizedSelector<object, {
|
|
53
51
|
[key: string]: number;
|
|
@@ -57,7 +55,6 @@ export declare const DashboardSelectors: {
|
|
|
57
55
|
[key: string]: number;
|
|
58
56
|
};
|
|
59
57
|
filters?: Filter[];
|
|
60
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
61
58
|
}) => {
|
|
62
59
|
[key: string]: number;
|
|
63
60
|
}>;
|
|
@@ -67,7 +64,6 @@ export declare const DashboardSelectors: {
|
|
|
67
64
|
[key: string]: number;
|
|
68
65
|
};
|
|
69
66
|
filters?: Filter[];
|
|
70
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
71
67
|
}, s2: number) => DashboardManifest>;
|
|
72
68
|
widgetManifest: (index: number) => MemoizedSelector<DashboardManifest, WidgetManifest>;
|
|
73
69
|
manifestsList: MemoizedSelector<object, import("../../core/model/manifest.interface").ManifestDescription[], (s1: {
|
|
@@ -137,7 +133,6 @@ export declare const DashboardSelectors: {
|
|
|
137
133
|
[key: string]: number;
|
|
138
134
|
};
|
|
139
135
|
filters?: Filter[];
|
|
140
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
141
136
|
}) => {
|
|
142
137
|
[key: string]: {
|
|
143
138
|
windowIndex: number;
|
|
@@ -257,7 +252,6 @@ export declare const DashboardSelectors: {
|
|
|
257
252
|
[key: string]: number;
|
|
258
253
|
};
|
|
259
254
|
filters?: Filter[];
|
|
260
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
261
255
|
}, (s1: {
|
|
262
256
|
sender: string;
|
|
263
257
|
tenants: string[];
|
|
@@ -272,7 +266,6 @@ export declare const DashboardSelectors: {
|
|
|
272
266
|
[key: string]: number;
|
|
273
267
|
};
|
|
274
268
|
filters?: Filter[];
|
|
275
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
276
269
|
}>;
|
|
277
270
|
loading: MemoizedSelector<object, boolean, (s1: {
|
|
278
271
|
sender: string;
|
|
@@ -323,7 +316,6 @@ export declare const DashboardSelectors: {
|
|
|
323
316
|
[key: string]: number;
|
|
324
317
|
};
|
|
325
318
|
filters?: Filter[];
|
|
326
|
-
layerGroups?: import("@provoly/dashboard").LayerGroup[];
|
|
327
319
|
}) => boolean>;
|
|
328
320
|
datasourceFilters: MemoizedSelector<object, {
|
|
329
321
|
[datasourceId: string]: FilterContext[];
|
|
@@ -337,5 +329,4 @@ export declare const DashboardSelectors: {
|
|
|
337
329
|
}, (s1: DashboardState) => {
|
|
338
330
|
[url: string]: import("@provoly/dashboard").GetCapabilitiesResponse | null;
|
|
339
331
|
}>;
|
|
340
|
-
layerGroups: MemoizedSelector<object, import("@provoly/dashboard").LayerGroup[], (s1: DashboardState) => import("@provoly/dashboard").LayerGroup[]>;
|
|
341
332
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.11",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "17.x || 18.x",
|
|
@@ -114,18 +114,18 @@
|
|
|
114
114
|
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
115
115
|
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
116
116
|
},
|
|
117
|
-
"./presentation": {
|
|
118
|
-
"types": "./presentation/index.d.ts",
|
|
119
|
-
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
120
|
-
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
121
|
-
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
122
|
-
},
|
|
123
117
|
"./restitution": {
|
|
124
118
|
"types": "./restitution/index.d.ts",
|
|
125
119
|
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
126
120
|
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
127
121
|
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
128
122
|
},
|
|
123
|
+
"./presentation": {
|
|
124
|
+
"types": "./presentation/index.d.ts",
|
|
125
|
+
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
126
|
+
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
127
|
+
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
128
|
+
},
|
|
129
129
|
"./search": {
|
|
130
130
|
"types": "./search/index.d.ts",
|
|
131
131
|
"esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
@@ -138,6 +138,36 @@
|
|
|
138
138
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
139
139
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
140
140
|
},
|
|
141
|
+
"./filters/autocomplete": {
|
|
142
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
143
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
144
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
145
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./filters/date": {
|
|
148
|
+
"types": "./filters/date/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
150
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./filters/list": {
|
|
154
|
+
"types": "./filters/list/index.d.ts",
|
|
155
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
156
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
157
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./filters/number": {
|
|
160
|
+
"types": "./filters/number/index.d.ts",
|
|
161
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
162
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
163
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
164
|
+
},
|
|
165
|
+
"./filters/text": {
|
|
166
|
+
"types": "./filters/text/index.d.ts",
|
|
167
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
168
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
169
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
170
|
+
},
|
|
141
171
|
"./components/card": {
|
|
142
172
|
"types": "./components/card/index.d.ts",
|
|
143
173
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -168,18 +198,18 @@
|
|
|
168
198
|
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
169
199
|
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
170
200
|
},
|
|
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
201
|
"./components/metadata-editor": {
|
|
178
202
|
"types": "./components/metadata-editor/index.d.ts",
|
|
179
203
|
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
180
204
|
"esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
181
205
|
"default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
|
|
182
206
|
},
|
|
207
|
+
"./components/filter": {
|
|
208
|
+
"types": "./components/filter/index.d.ts",
|
|
209
|
+
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
210
|
+
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
211
|
+
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
212
|
+
},
|
|
183
213
|
"./components/page-loader": {
|
|
184
214
|
"types": "./components/page-loader/index.d.ts",
|
|
185
215
|
"esm2022": "./esm2022/components/page-loader/provoly-dashboard-components-page-loader.mjs",
|
|
@@ -210,36 +240,6 @@
|
|
|
210
240
|
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
211
241
|
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
212
242
|
},
|
|
213
|
-
"./filters/autocomplete": {
|
|
214
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
215
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
216
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
217
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
218
|
-
},
|
|
219
|
-
"./filters/date": {
|
|
220
|
-
"types": "./filters/date/index.d.ts",
|
|
221
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
222
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
223
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
224
|
-
},
|
|
225
|
-
"./filters/list": {
|
|
226
|
-
"types": "./filters/list/index.d.ts",
|
|
227
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
228
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
229
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
230
|
-
},
|
|
231
|
-
"./filters/number": {
|
|
232
|
-
"types": "./filters/number/index.d.ts",
|
|
233
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
234
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
235
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
236
|
-
},
|
|
237
|
-
"./filters/text": {
|
|
238
|
-
"types": "./filters/text/index.d.ts",
|
|
239
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
240
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
241
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
242
|
-
},
|
|
243
243
|
"./pipeline-components/filter": {
|
|
244
244
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
245
245
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -282,18 +282,18 @@
|
|
|
282
282
|
"esm": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
|
|
283
283
|
"default": "./fesm2022/provoly-dashboard-tooltips-cluster.mjs"
|
|
284
284
|
},
|
|
285
|
-
"./widgets/widget-analytic": {
|
|
286
|
-
"types": "./widgets/widget-analytic/index.d.ts",
|
|
287
|
-
"esm2022": "./esm2022/widgets/widget-analytic/provoly-dashboard-widgets-widget-analytic.mjs",
|
|
288
|
-
"esm": "./esm2022/widgets/widget-analytic/provoly-dashboard-widgets-widget-analytic.mjs",
|
|
289
|
-
"default": "./fesm2022/provoly-dashboard-widgets-widget-analytic.mjs"
|
|
290
|
-
},
|
|
291
285
|
"./widgets/widget-aggregated-chart": {
|
|
292
286
|
"types": "./widgets/widget-aggregated-chart/index.d.ts",
|
|
293
287
|
"esm2022": "./esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs",
|
|
294
288
|
"esm": "./esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs",
|
|
295
289
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs"
|
|
296
290
|
},
|
|
291
|
+
"./widgets/widget-analytic": {
|
|
292
|
+
"types": "./widgets/widget-analytic/index.d.ts",
|
|
293
|
+
"esm2022": "./esm2022/widgets/widget-analytic/provoly-dashboard-widgets-widget-analytic.mjs",
|
|
294
|
+
"esm": "./esm2022/widgets/widget-analytic/provoly-dashboard-widgets-widget-analytic.mjs",
|
|
295
|
+
"default": "./fesm2022/provoly-dashboard-widgets-widget-analytic.mjs"
|
|
296
|
+
},
|
|
297
297
|
"./widgets/widget-chart": {
|
|
298
298
|
"types": "./widgets/widget-chart/index.d.ts",
|
|
299
299
|
"esm2022": "./esm2022/widgets/widget-chart/provoly-dashboard-widgets-widget-chart.mjs",
|
|
@@ -137,7 +137,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
|
|
|
137
137
|
} | {
|
|
138
138
|
labelAngle?: undefined;
|
|
139
139
|
};
|
|
140
|
-
getAbscissaType(abscissaVegaType: VegaType,
|
|
140
|
+
getAbscissaType(abscissaVegaType: VegaType, options: ChartAggregatedWidgetOptions): VegaType;
|
|
141
141
|
isTimeInterval(abscissaInterval: string | number): abscissaInterval is string;
|
|
142
142
|
getLabelExpr(axis: 'x' | 'y', axisType: string, interval: string | undefined, field?: Field): string;
|
|
143
143
|
getDataFormat(axisType: string, interval: string | undefined, field?: Field): {
|
|
@@ -154,6 +154,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
|
|
|
154
154
|
};
|
|
155
155
|
getLocaleFormat(type: string | undefined, interval: string | undefined): any;
|
|
156
156
|
private getTimeUnit;
|
|
157
|
+
private reverseAxis;
|
|
157
158
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartComponent, never>;
|
|
158
159
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetAggregatedChartComponent, "pry-widget-aggregated-chart", never, {}, {}, never, never, false, never>;
|
|
159
160
|
}
|
|
@@ -125,8 +125,6 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
125
125
|
attributions$: Observable<boolean>;
|
|
126
126
|
olZoomElement$: BehaviorSubject<HTMLDivElement | null>;
|
|
127
127
|
previousLayers: BaseLayer[];
|
|
128
|
-
layerGroups$: Observable<LayerGroup[]>;
|
|
129
|
-
layerGroups: LayerGroup[];
|
|
130
128
|
layerSettingsExpandedState: {
|
|
131
129
|
[key: string]: boolean;
|
|
132
130
|
};
|
|
@@ -184,6 +182,7 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
|
|
|
184
182
|
get leftSlideLayers(): BaseLayer[];
|
|
185
183
|
changeVisibility(group: LayerGroup, _layer?: MapWidgetLayerOptions): void;
|
|
186
184
|
isLayerVisible(layer: MapWidgetLayerOptions, group?: LayerGroup): boolean;
|
|
185
|
+
updateLayerVisibility(name: string, visibleLayers: string[] | string): void;
|
|
187
186
|
changeAutoLayer($event: any): void;
|
|
188
187
|
get layerVisibleIdx(): number;
|
|
189
188
|
ngOnDestroy(): void;
|
|
@@ -30,8 +30,6 @@ export declare class TooltipManager {
|
|
|
30
30
|
[p: string]: boolean;
|
|
31
31
|
}>, map: Map, popup: ElementRef, popupContent: ViewContainerRef, interactionManager: InteractionManager, parent: WidgetMapComponent): this;
|
|
32
32
|
private addOverlayOnInteraction;
|
|
33
|
-
previous: string;
|
|
34
|
-
previousPromise?: Promise<any>;
|
|
35
33
|
generateTooltip(value: {
|
|
36
34
|
oClass: string;
|
|
37
35
|
coordinates: Pixel;
|