@surstromming/dropdown-menu 0.1.0 → 0.1.1
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 +9 -0
- package/package.json +4 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @surstromming/dropdown-menu
|
|
2
|
+
|
|
3
|
+
## 0.1.1 — 2026-07-26
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Requires `@surstromming/popover@^0.1.1`, so the menu panel no longer slides
|
|
8
|
+
into place after opening — see popover's changelog for the detail. No change
|
|
9
|
+
in this package's own source or API.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@surstromming/dropdown-menu",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A menu of actions anchored to a trigger.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Evgeniy Mnatsakanov <evgeniy.mnatsakanov@gmail.com>",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"**/*.css"
|
|
29
29
|
],
|
|
30
30
|
"files": [
|
|
31
|
-
"src"
|
|
31
|
+
"src",
|
|
32
|
+
"CHANGELOG.md"
|
|
32
33
|
],
|
|
33
34
|
"main": "./src/index.ts",
|
|
34
35
|
"module": "./src/index.ts",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"dependencies": {
|
|
40
41
|
"@surstromming/design": "^0.1.0",
|
|
41
42
|
"@surstromming/icon": "^0.1.0",
|
|
42
|
-
"@surstromming/popover": "^0.1.
|
|
43
|
+
"@surstromming/popover": "^0.1.1"
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
46
|
"vue": "^3.4.0"
|