Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.4] - 2026-07-08

### Added
- Filter panel close button: the `dm-filter` panel header now shows a close (×) button in the top-right that closes the panel (all variants).

### Fixed
- Search: selecting a map result (feature/marker) now highlights the marker itself — active icon, brought to front — and opens its infowindow, instead of only moving the map.
- Hovering a selected marker no longer leaves it stuck on the hover icon; it returns to the active icon when the mouse leaves.

### Changed
- Re-vendored `assets/vendor/draad-maps.iife.js` from `@draadnl/map-components` 0.5.8.

## [1.4.3] - 2026-07-06

### Fixed
Expand Down
148 changes: 89 additions & 59 deletions assets/vendor/draad-maps.iife.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions draad-maps-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Draad Maps Advanced
* Plugin URI: https://draad.nl
* Description: Create and embed interactive maps using the draad-maps web component library.
* Version: 1.4.3
* Version: 1.4.4
* Author: Draad
* License: GPL-2.0-or-later
* Text Domain: draad-maps
Expand All @@ -14,8 +14,8 @@
exit;
}

define( 'DRAAD_MAPS_VERSION', '1.4.3' );
define( 'DRAAD_MAPS_COMPONENTS_VERSION', '0.5.6' ); // map-components package version (bump on re-vendor)
define( 'DRAAD_MAPS_VERSION', '1.4.4' );
define( 'DRAAD_MAPS_COMPONENTS_VERSION', '0.5.8' ); // map-components package version (bump on re-vendor)

// Static PDOK Locatieserver filter applied to all address searches. Use a gemeentecode
// (e.g. '0518' = Den Haag); name won't work — Den Haag is stored as "'s-Gravenhage".
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "draad-maps-advanced",
"version": "1.4.3",
"version": "1.4.4",
"private": true,
"scripts": {
"prebuild": "node scripts/wrap-tokens.js",
Expand All @@ -10,7 +10,7 @@
"start": "wp-scripts start"
},
"dependencies": {
"@draadnl/map-components": "^0.5.6",
"@draadnl/map-components": "^0.5.8",
"@gemeente-denhaag/design-tokens": "^1.2.0"
},
"devDependencies": {
Expand Down