@provoly/dashboard 0.15.11 → 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/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +3 -3
- package/esm2022/dataset/i18n/en.translations.mjs +2 -2
- package/esm2022/dataset/i18n/fr.translations.mjs +2 -2
- package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +3 -3
- 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-admin.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- 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 +4 -6
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
- package/package.json +31 -31
- package/styles/components/_o-modal.scss +12 -0
- 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",
|
|
@@ -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",
|
|
@@ -139,6 +139,30 @@
|
|
|
139
139
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
140
140
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
141
141
|
},
|
|
142
|
+
"./filters/date": {
|
|
143
|
+
"types": "./filters/date/index.d.ts",
|
|
144
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
146
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
147
|
+
},
|
|
148
|
+
"./filters/list": {
|
|
149
|
+
"types": "./filters/list/index.d.ts",
|
|
150
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
152
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
153
|
+
},
|
|
154
|
+
"./filters/number": {
|
|
155
|
+
"types": "./filters/number/index.d.ts",
|
|
156
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
158
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
159
|
+
},
|
|
160
|
+
"./filters/text": {
|
|
161
|
+
"types": "./filters/text/index.d.ts",
|
|
162
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
164
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
165
|
+
},
|
|
142
166
|
"./components/card": {
|
|
143
167
|
"types": "./components/card/index.d.ts",
|
|
144
168
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -181,30 +205,6 @@
|
|
|
181
205
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
182
206
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
183
207
|
},
|
|
184
|
-
"./filters/date": {
|
|
185
|
-
"types": "./filters/date/index.d.ts",
|
|
186
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
187
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
188
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
189
|
-
},
|
|
190
|
-
"./filters/list": {
|
|
191
|
-
"types": "./filters/list/index.d.ts",
|
|
192
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
193
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
194
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
195
|
-
},
|
|
196
|
-
"./filters/number": {
|
|
197
|
-
"types": "./filters/number/index.d.ts",
|
|
198
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
199
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
200
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
201
|
-
},
|
|
202
|
-
"./filters/text": {
|
|
203
|
-
"types": "./filters/text/index.d.ts",
|
|
204
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
205
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
206
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
207
|
-
},
|
|
208
208
|
"./pipeline-components/filter": {
|
|
209
209
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
210
210
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
@use '../abstracts' as *;
|
|
2
2
|
|
|
3
|
+
.o-modal-wrapper__backdrop::before {
|
|
4
|
+
content: "";
|
|
5
|
+
position: absolute;
|
|
6
|
+
top: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
background-color: gray;
|
|
11
|
+
opacity: 0.3;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
/* Organism - modal */
|
|
4
16
|
.o-modal-wrapper {
|
|
5
17
|
position: absolute;
|
|
@@ -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;
|