@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
|
@@ -2206,6 +2206,7 @@ const enTranslations = {
|
|
|
2206
2206
|
INACTIVE: 'Invalid',
|
|
2207
2207
|
ERROR: 'Error',
|
|
2208
2208
|
ACTIVE: 'Available',
|
|
2209
|
+
DELETING: 'Deleting',
|
|
2209
2210
|
currentlyActive: 'Active',
|
|
2210
2211
|
delete: {
|
|
2211
2212
|
title: 'Delete version',
|
|
@@ -2293,6 +2294,7 @@ const frTranslations = {
|
|
|
2293
2294
|
INACTIVE: 'Invalide',
|
|
2294
2295
|
ERROR: 'En erreur',
|
|
2295
2296
|
ACTIVE: 'Disponible',
|
|
2297
|
+
DELETING: 'En cours de suppression',
|
|
2296
2298
|
currentlyActive: 'Actif',
|
|
2297
2299
|
delete: {
|
|
2298
2300
|
title: 'Supprimer une version',
|
|
@@ -12163,9 +12165,9 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
|
|
|
12163
12165
|
layerGroups: [
|
|
12164
12166
|
...(state.manifests.manifest.layerGroups ?? []),
|
|
12165
12167
|
{
|
|
12166
|
-
name: action.
|
|
12167
|
-
singleLayer: false,
|
|
12168
|
-
visibleLayers: []
|
|
12168
|
+
name: action.name ?? 'MISSING NAME',
|
|
12169
|
+
singleLayer: action.singleLayer ?? false,
|
|
12170
|
+
visibleLayers: action.visibleLayers ?? []
|
|
12169
12171
|
}
|
|
12170
12172
|
]
|
|
12171
12173
|
}
|