@surstromming/select 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @surstromming/select
2
+
3
+ ## 0.1.1 — 2026-07-26
4
+
5
+ ### Fixed
6
+
7
+ - Requires `@surstromming/popover@^0.1.1`, so the dropdown panel no longer
8
+ slides into place after opening — see popover's changelog for the detail. No
9
+ change in this package's own source or API.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@surstromming/select",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pick one option from a list.",
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.0"
43
+ "@surstromming/popover": "^0.1.1"
43
44
  },
44
45
  "peerDependencies": {
45
46
  "vue": "^3.4.0"