@surstromming/dropdown-menu 0.1.2 → 0.1.5
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/CHANGELOG.md +26 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @surstromming/dropdown-menu
|
|
2
2
|
|
|
3
|
+
## 0.1.5 — 2026-07-26
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Requires `@surstromming/scroll-area@^0.1.2`, so a tap inside a scroller on a
|
|
8
|
+
touch device is no longer swallowed. See scroll-area's changelog for the
|
|
9
|
+
detail. No change in this package's own source or API.
|
|
10
|
+
|
|
11
|
+
## 0.1.4 — 2026-07-26
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Requires `@surstromming/popover@^0.1.3`, so a menu is placed where its
|
|
16
|
+
trigger is on a pinch-zoomed page instead of somewhere off screen. See
|
|
17
|
+
popover's changelog for the detail. No change in this package's own source or
|
|
18
|
+
API.
|
|
19
|
+
|
|
20
|
+
## 0.1.3 — 2026-07-26
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Requires `@surstromming/popover@^0.1.2`, so a panel no longer lands away from
|
|
25
|
+
its trigger — or disappears outright — while the page is pinch-zoomed in
|
|
26
|
+
Safari. See popover's changelog for the detail. No change in this package's
|
|
27
|
+
own source or API.
|
|
28
|
+
|
|
3
29
|
## 0.1.2 — 2026-07-26
|
|
4
30
|
|
|
5
31
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@surstromming/dropdown-menu",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A menu of actions anchored to a trigger.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Evgeniy Mnatsakanov <evgeniy.mnatsakanov@gmail.com>",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@surstromming/design": "^0.1.0",
|
|
42
42
|
"@surstromming/icon": "^0.1.0",
|
|
43
|
-
"@surstromming/popover": "^0.1.
|
|
43
|
+
"@surstromming/popover": "^0.1.4"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"vue": "^3.4.0"
|