diff --git a/packages/clients/afm/CHANGELOG.md b/packages/clients/afm/CHANGELOG.md index c6fb9430d..1fd2ee12d 100644 --- a/packages/clients/afm/CHANGELOG.md +++ b/packages/clients/afm/CHANGELOG.md @@ -4,6 +4,7 @@ - Feature: This client now supports the `@polar/core`'s field `stylePath`. The usage is documented in the API.md file. - Feature: Update icon of `layerChooser` in `iconMenu` to `fa-layer-group` to clear-up the content hidden behind the menu button. +- Chore: Change value of `pins.movable` configuration to `'drag'` as using a boolean has been deprecated in a future release. ## 1.0.1 diff --git a/packages/clients/afm/example/polar-example.js b/packages/clients/afm/example/polar-example.js index a9d64fa8e..3ba7422ec 100644 --- a/packages/clients/afm/example/polar-example.js +++ b/packages/clients/afm/example/polar-example.js @@ -67,7 +67,7 @@ const mapConfiguration = { }, pins: { toZoomLevel: 9, - movable: true, + movable: 'drag', appearOnClick: { show: true, atZoomLevel: 3, diff --git a/packages/clients/dish/CHANGELOG.md b/packages/clients/dish/CHANGELOG.md index 4c3268f4a..477a7c6d9 100644 --- a/packages/clients/dish/CHANGELOG.md +++ b/packages/clients/dish/CHANGELOG.md @@ -3,6 +3,7 @@ ## unpublished - Feature: If a user is geolocated outside of the map's extent, the client will inform the user of why geolocation did not take effect via a textbox. +- Chore: Change value of `pins.movable` configuration to `'drag'` as using a boolean has been deprecated in a future release. ## 1.1.1 diff --git a/packages/clients/dish/src/mapConfig.ts b/packages/clients/dish/src/mapConfig.ts index bd19f59e6..17cf69ebb 100644 --- a/packages/clients/dish/src/mapConfig.ts +++ b/packages/clients/dish/src/mapConfig.ts @@ -208,7 +208,7 @@ export const mapConfiguration = { }, pins: { toZoomLevel: 7, - movable: true, + movable: 'drag', style: { fill: shBlue, }, diff --git a/packages/clients/meldemichel/CHANGELOG.md b/packages/clients/meldemichel/CHANGELOG.md index cea9d999f..89a97bfba 100644 --- a/packages/clients/meldemichel/CHANGELOG.md +++ b/packages/clients/meldemichel/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## unpublished + +- Chore: Change value of `pins.movable` configuration to `'drag'` as using a boolean has been deprecated in a future release. + ## 1.1.2 - Chore: Fix bugs via dependency updates. diff --git a/packages/clients/meldemichel/src/mapConfigurations.ts b/packages/clients/meldemichel/src/mapConfigurations.ts index 06a129ebb..0f9e7b626 100644 --- a/packages/clients/meldemichel/src/mapConfigurations.ts +++ b/packages/clients/meldemichel/src/mapConfigurations.ts @@ -104,7 +104,7 @@ const addressSearch: AddressSearchConfiguration = { const commonPins: Partial = { toZoomLevel: 7, - movable: true, + movable: 'drag', style: { fill: hamburgRed, }, diff --git a/packages/clients/snowbox/src/mapConfiguration.ts b/packages/clients/snowbox/src/mapConfiguration.ts index e46eb155b..8e4a1eadd 100644 --- a/packages/clients/snowbox/src/mapConfiguration.ts +++ b/packages/clients/snowbox/src/mapConfiguration.ts @@ -179,7 +179,7 @@ export const mapConfiguration = { pins: { boundaryLayerId: hamburgBorder, toZoomLevel: 9, - movable: true, + movable: 'drag', appearOnClick: { show: true, atZoomLevel: 0, diff --git a/packages/plugins/Attributions/CHANGELOG.md b/packages/plugins/Attributions/CHANGELOG.md index 4de4f6b01..7bae5be81 100644 --- a/packages/plugins/Attributions/CHANGELOG.md +++ b/packages/plugins/Attributions/CHANGELOG.md @@ -2,6 +2,7 @@ ## unpublished +- Feature: Add new option `'footer'` to configuration parameter `renderType` that changes the attributions to be displayed as a small version of the information box that is always visible. - Refactor: Replace redundant props with computed properties. ## 1.2.1 diff --git a/packages/plugins/Attributions/src/components/AttributionContent.vue b/packages/plugins/Attributions/src/components/AttributionContent.vue index 19a297fb6..e57bcc555 100644 --- a/packages/plugins/Attributions/src/components/AttributionContent.vue +++ b/packages/plugins/Attributions/src/components/AttributionContent.vue @@ -1,7 +1,14 @@