@provoly/dashboard 0.13.10 → 0.13.11
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/dashboard/store/dashboard.actions.mjs +2 -1
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -2
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +12 -3
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +11 -2
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +2 -1
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +1 -0
- package/package.json +43 -43
- package/schematics/ng-update/version-0-13/index.js +5 -0
- package/schematics/ng-update/version-0-13/index.js.map +1 -1
- package/widgets/widget-map/component/widget-map.component.d.ts +3 -2
|
@@ -1305,6 +1305,7 @@ const DashboardActions = {
|
|
|
1305
1305
|
updateFilters: createAction('[Dashboard] (bus) update datasource filters', props()),
|
|
1306
1306
|
removeFilter: createAction('[Dashboard] (bus) remove filter in presentation', props()),
|
|
1307
1307
|
updateFilterValue: createAction('[Dashboard] (bus) update filter value', props()),
|
|
1308
|
+
resetWmsFeatures: createAction('[Widget map] Reset Wms layer features'),
|
|
1308
1309
|
getWmsFeatures: createAction('[Widget map] Get Wms layer features', props()),
|
|
1309
1310
|
addWmsFeatures: createAction('[Widget map] Set Wms layer features', props()),
|
|
1310
1311
|
updateDisplayOptions: createAction('[Dashboard/Display] Update displayed dashboard management features', props())
|
|
@@ -10689,7 +10690,7 @@ const internalReducer = createReducer(dashboardInitialState, on(DashboardActions
|
|
|
10689
10690
|
}
|
|
10690
10691
|
}
|
|
10691
10692
|
};
|
|
10692
|
-
}), on(DashboardActions.getWmsFeatures, (state, action) => ({
|
|
10693
|
+
}), on(DashboardActions.getWmsFeatures, DashboardActions.resetWmsFeatures, (state, action) => ({
|
|
10693
10694
|
...state,
|
|
10694
10695
|
wmsFeatures: []
|
|
10695
10696
|
})), on(DashboardActions.addWmsFeatures, (state, action) => {
|