@provoly/dashboard 0.15.12 → 0.15.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/dataset/i18n/en.translations.mjs +2 -2
- package/esm2022/dataset/i18n/fr.translations.mjs +2 -2
- package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/store/aggregation/frontend-aggregation/frontend-aggregation.service.mjs +1 -3
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +19 -18
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +47 -35
- package/fesm2022/provoly-dashboard-dataset.mjs +2 -2
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +64 -51
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +2 -4
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
- package/package.json +13 -13
- package/widgets/widget-map/utils/widget-map.utils.d.ts +2 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.13",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "14.x || 15.x || 16.x",
|
|
@@ -85,18 +85,18 @@
|
|
|
85
85
|
"esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
|
|
86
86
|
"default": "./fesm2022/provoly-dashboard-admin.mjs"
|
|
87
87
|
},
|
|
88
|
-
"./dataset": {
|
|
89
|
-
"types": "./dataset/index.d.ts",
|
|
90
|
-
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
91
|
-
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
92
|
-
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
93
|
-
},
|
|
94
88
|
"./import": {
|
|
95
89
|
"types": "./import/index.d.ts",
|
|
96
90
|
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
97
91
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
98
92
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
99
93
|
},
|
|
94
|
+
"./dataset": {
|
|
95
|
+
"types": "./dataset/index.d.ts",
|
|
96
|
+
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
97
|
+
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
98
|
+
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
99
|
+
},
|
|
100
100
|
"./notification": {
|
|
101
101
|
"types": "./notification/index.d.ts",
|
|
102
102
|
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
@@ -115,18 +115,18 @@
|
|
|
115
115
|
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
116
116
|
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
117
117
|
},
|
|
118
|
-
"./restitution": {
|
|
119
|
-
"types": "./restitution/index.d.ts",
|
|
120
|
-
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
121
|
-
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
122
|
-
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
123
|
-
},
|
|
124
118
|
"./search": {
|
|
125
119
|
"types": "./search/index.d.ts",
|
|
126
120
|
"esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
127
121
|
"esm": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
128
122
|
"default": "./fesm2022/provoly-dashboard-search.mjs"
|
|
129
123
|
},
|
|
124
|
+
"./restitution": {
|
|
125
|
+
"types": "./restitution/index.d.ts",
|
|
126
|
+
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
127
|
+
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
128
|
+
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
129
|
+
},
|
|
130
130
|
"./supervision": {
|
|
131
131
|
"types": "./supervision/index.d.ts",
|
|
132
132
|
"esm2022": "./esm2022/supervision/provoly-dashboard-supervision.mjs",
|
|
@@ -2,12 +2,6 @@ import { Attribute, Class, Field, Item, MapWidgetLayerOptions, Relation, ResultS
|
|
|
2
2
|
import { Feature, Map } from 'ol';
|
|
3
3
|
import { Circle, LineString, Point } from 'ol/geom';
|
|
4
4
|
import { Style } from 'ol/style';
|
|
5
|
-
export type LatLonCandidate = {
|
|
6
|
-
min: number;
|
|
7
|
-
max: number;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
};
|
|
11
5
|
export declare const populateLocationAttribute: (layer: MapWidgetLayerOptions, resultSet: ResultSet, classesNotFiltered: Class[], fields: Field[]) => void;
|
|
12
6
|
export declare const populateIntensityAttribute: (layer: MapWidgetLayerOptions, resultSet: ResultSet, classesNotFiltered: Class[], fields: Field[]) => void;
|
|
13
7
|
export declare const getFeatureFromItem: (item: Item, type: string, locationAttribute: Attribute, iconStyle?: Style, selectedIconStyle?: Style) => Feature<import("ol/geom/Geometry").default>;
|
|
@@ -16,10 +10,11 @@ export declare const getLinkFeature: (relation: Relation, featureSource: Feature
|
|
|
16
10
|
export declare const getMapAsPng: (map: Map) => Promise<string>;
|
|
17
11
|
export declare const exportMapAsImage: (map: Map, filename: string) => void;
|
|
18
12
|
export declare const geometryForLayer: (layer: MapWidgetLayerOptions) => string;
|
|
19
|
-
export declare const
|
|
13
|
+
export declare const assignLayersOrder: (_layers: MapWidgetLayerOptions[]) => MapWidgetLayerOptions[];
|
|
20
14
|
export declare const DEFAULT_HEATMAP_RADIUS = 25;
|
|
21
15
|
export declare const DEFAULT_RADIUS_INTENSITY_FACTOR = 10000;
|
|
22
16
|
export declare const DEFAULT_ZOOM_MIN = 3;
|
|
23
17
|
export declare const DEFAULT_ZOOM_START = 10;
|
|
24
18
|
export declare const DEFAULT_ZOOM_MAX = 18;
|
|
25
19
|
export declare const DEFAULT_MAP_CENTER: number[];
|
|
20
|
+
export declare const BACKGROUND_ORDER = 9999;
|