@provoly/dashboard 0.25.8 → 0.25.10
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/dataset/i18n/en.translations.d.ts +1 -0
- package/dataset/i18n/fr.translations.d.ts +1 -0
- package/dataset/style/_o-pry-dataset.scss +0 -1
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
- package/esm2022/dataset/i18n/en.translations.mjs +2 -1
- package/esm2022/dataset/i18n/fr.translations.mjs +2 -1
- package/esm2022/dataset/style/css.component.mjs +2 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +4 -4
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +37 -10
- package/fesm2022/provoly-dashboard-dataset.mjs +6 -4
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +36 -9
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +5 -3
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +2 -5
- package/package.json +37 -37
- package/styles/components/_o-modal.scss +0 -2
|
@@ -7,6 +7,7 @@ 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';
|
|
10
11
|
export type DashboardCellParams = {
|
|
11
12
|
gridWidth: number;
|
|
12
13
|
gridHeight: number;
|
|
@@ -513,11 +514,7 @@ export declare const DashboardActions: {
|
|
|
513
514
|
}) => {
|
|
514
515
|
layers?: string[] | undefined;
|
|
515
516
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] init default layer group">>;
|
|
516
|
-
addLayerGroup: import("@ngrx/store").ActionCreator<"[Dashboard] add map layer group", (props:
|
|
517
|
-
defaultTitle: string;
|
|
518
|
-
}) => {
|
|
519
|
-
defaultTitle: string;
|
|
520
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] add map layer group">>;
|
|
517
|
+
addLayerGroup: import("@ngrx/store").ActionCreator<"[Dashboard] add map layer group", (props: Partial<LayerGroup>) => Partial<LayerGroup> & import("@ngrx/store/src/models").TypedAction<"[Dashboard] add map layer group">>;
|
|
521
518
|
updateLayerGroup: import("@ngrx/store").ActionCreator<"[Dashboard] update map layer group", (props: {
|
|
522
519
|
name: string;
|
|
523
520
|
newName?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.10",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -96,18 +96,18 @@
|
|
|
96
96
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
97
97
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
98
98
|
},
|
|
99
|
-
"./notification": {
|
|
100
|
-
"types": "./notification/index.d.ts",
|
|
101
|
-
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
102
|
-
"esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
103
|
-
"default": "./fesm2022/provoly-dashboard-notification.mjs"
|
|
104
|
-
},
|
|
105
99
|
"./pipeline": {
|
|
106
100
|
"types": "./pipeline/index.d.ts",
|
|
107
101
|
"esm2022": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
108
102
|
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
109
103
|
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
110
104
|
},
|
|
105
|
+
"./notification": {
|
|
106
|
+
"types": "./notification/index.d.ts",
|
|
107
|
+
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
108
|
+
"esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
109
|
+
"default": "./fesm2022/provoly-dashboard-notification.mjs"
|
|
110
|
+
},
|
|
111
111
|
"./presentation": {
|
|
112
112
|
"types": "./presentation/index.d.ts",
|
|
113
113
|
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
@@ -132,6 +132,36 @@
|
|
|
132
132
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
133
133
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
134
134
|
},
|
|
135
|
+
"./filters/autocomplete": {
|
|
136
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
138
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
139
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
140
|
+
},
|
|
141
|
+
"./filters/date": {
|
|
142
|
+
"types": "./filters/date/index.d.ts",
|
|
143
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
144
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./filters/list": {
|
|
148
|
+
"types": "./filters/list/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
150
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./filters/number": {
|
|
154
|
+
"types": "./filters/number/index.d.ts",
|
|
155
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
156
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./filters/text": {
|
|
160
|
+
"types": "./filters/text/index.d.ts",
|
|
161
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
162
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
164
|
+
},
|
|
135
165
|
"./components/card": {
|
|
136
166
|
"types": "./components/card/index.d.ts",
|
|
137
167
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -198,36 +228,6 @@
|
|
|
198
228
|
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
199
229
|
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
200
230
|
},
|
|
201
|
-
"./filters/autocomplete": {
|
|
202
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
204
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
206
|
-
},
|
|
207
|
-
"./filters/date": {
|
|
208
|
-
"types": "./filters/date/index.d.ts",
|
|
209
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
210
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
211
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
212
|
-
},
|
|
213
|
-
"./filters/list": {
|
|
214
|
-
"types": "./filters/list/index.d.ts",
|
|
215
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
216
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
217
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
218
|
-
},
|
|
219
|
-
"./filters/number": {
|
|
220
|
-
"types": "./filters/number/index.d.ts",
|
|
221
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
222
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
223
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
224
|
-
},
|
|
225
|
-
"./filters/text": {
|
|
226
|
-
"types": "./filters/text/index.d.ts",
|
|
227
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
228
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
229
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
230
|
-
},
|
|
231
231
|
"./pipeline-components/filter": {
|
|
232
232
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
233
233
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@use '../abstracts' as *;
|
|
2
2
|
|
|
3
3
|
.o-modal-wrapper__backdrop::before {
|
|
4
|
-
z-index: 9999;
|
|
5
4
|
content: "";
|
|
6
5
|
position: absolute;
|
|
7
6
|
top: 0;
|
|
@@ -16,7 +15,6 @@
|
|
|
16
15
|
/* Organism - modal */
|
|
17
16
|
.o-modal-wrapper {
|
|
18
17
|
position: absolute;
|
|
19
|
-
z-index: 10000;
|
|
20
18
|
top: 50%;
|
|
21
19
|
left: 50%;
|
|
22
20
|
width: 100%;
|