@provoly/dashboard 0.24.12 → 0.24.14
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/lib/core/i18n/en.translations.mjs +7 -7
- package/esm2022/lib/core/i18n/fr.translations.mjs +2 -2
- package/esm2022/lib/core/store/search/search.service.mjs +2 -2
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +6 -6
- package/esm2022/notification/components/notification/content/notification-content.component.mjs +2 -2
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +57 -50
- package/fesm2022/provoly-dashboard-notification.mjs +1 -1
- package/fesm2022/provoly-dashboard-notification.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.mjs +13 -13
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/package.json +37 -37
- package/widgets/widget-map/component/widget-map.component.d.ts +7 -3
|
@@ -185,12 +185,12 @@ const enTranslations$1 = {
|
|
|
185
185
|
loading: 'Loading'
|
|
186
186
|
},
|
|
187
187
|
about: {
|
|
188
|
-
front: '
|
|
189
|
-
ref: '
|
|
190
|
-
data: '
|
|
191
|
-
replay: '
|
|
192
|
-
exec: '
|
|
193
|
-
transfo: '
|
|
188
|
+
front: 'Front library version',
|
|
189
|
+
ref: 'Data-red version',
|
|
190
|
+
data: 'Data-virt version',
|
|
191
|
+
replay: 'Replay version',
|
|
192
|
+
exec: 'Execution version',
|
|
193
|
+
transfo: 'Transformation version',
|
|
194
194
|
noVersion: 'Version not found'
|
|
195
195
|
},
|
|
196
196
|
header: {
|
|
@@ -909,7 +909,7 @@ const frTranslations$1 = {
|
|
|
909
909
|
unselectItem: "Désélectionner le groupe d'utilisateurs",
|
|
910
910
|
noItemSelected: "Aucun groupe d'utilisateurs sélectionné",
|
|
911
911
|
groups: {
|
|
912
|
-
ALL: '
|
|
912
|
+
ALL: 'Public',
|
|
913
913
|
AUTHENTICATED: 'Les utilisateurs connectés'
|
|
914
914
|
}
|
|
915
915
|
}
|
|
@@ -4157,7 +4157,7 @@ class SearchService {
|
|
|
4157
4157
|
this.filters[id]
|
|
4158
4158
|
.filter((filter) => filter.value !== null && filter.value !== undefined)
|
|
4159
4159
|
.forEach((filter) => {
|
|
4160
|
-
params = params.append('filter', `${filter.attribute},${filter.operator},${filter.value}`);
|
|
4160
|
+
params = params.append('filter', `${filter.attribute},${filter.operator},${filter.value.toString()}`);
|
|
4161
4161
|
});
|
|
4162
4162
|
}
|
|
4163
4163
|
if (includeLimit) {
|
|
@@ -12016,12 +12016,12 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
|
|
|
12016
12016
|
manifest: {
|
|
12017
12017
|
...state.manifests.manifest,
|
|
12018
12018
|
layerGroups: [
|
|
12019
|
+
...(state.manifests.manifest.layerGroups ?? []),
|
|
12019
12020
|
{
|
|
12020
12021
|
name: action.defaultTitle + ' ' + ((state.manifests.manifest.layerGroups?.length ?? 0) + 1).toString(),
|
|
12021
12022
|
singleLayer: false,
|
|
12022
12023
|
visibleLayers: []
|
|
12023
|
-
}
|
|
12024
|
-
...(state.manifests.manifest.layerGroups ?? [])
|
|
12024
|
+
}
|
|
12025
12025
|
]
|
|
12026
12026
|
}
|
|
12027
12027
|
}
|
|
@@ -12035,13 +12035,13 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
|
|
|
12035
12035
|
...(state.manifests.manifest.layerGroups ?? []).map((group) => group.name === action.name
|
|
12036
12036
|
? {
|
|
12037
12037
|
...group,
|
|
12038
|
-
name: action.newName ?? group.name,
|
|
12039
|
-
singleLayer: action.singleLayer ?? group.singleLayer,
|
|
12040
12038
|
visibleLayers: action.visibleLayers
|
|
12041
12039
|
? typeof action.visibleLayers === 'string'
|
|
12042
12040
|
? [...group.visibleLayers, action.visibleLayers]
|
|
12043
12041
|
: action.visibleLayers
|
|
12044
|
-
: group.visibleLayers
|
|
12042
|
+
: group.visibleLayers,
|
|
12043
|
+
name: action.newName ?? group.name,
|
|
12044
|
+
singleLayer: action.singleLayer ?? group.singleLayer
|
|
12045
12045
|
}
|
|
12046
12046
|
: group)
|
|
12047
12047
|
]
|