@surstromming/combobox 0.1.0 → 0.1.2

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 +18 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # @surstromming/combobox
2
+
3
+ ## 0.1.2 — 2026-07-26
4
+
5
+ ### Fixed
6
+
7
+ - Requires `@surstromming/popover@^0.1.2`, so a panel no longer lands away from
8
+ its trigger — or disappears outright — while the page is pinch-zoomed in
9
+ Safari. See popover's changelog for the detail. No change in this package's
10
+ own source or API.
11
+
12
+ ## 0.1.1 — 2026-07-26
13
+
14
+ ### Fixed
15
+
16
+ - Requires `@surstromming/popover@^0.1.1`, so the dropdown panel no longer
17
+ slides into place after opening — see popover's changelog for the detail. No
18
+ change in this package's own source or API.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@surstromming/combobox",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Select with a search field.",
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",
@@ -40,7 +41,7 @@
40
41
  "@surstromming/design": "^0.1.0",
41
42
  "@surstromming/icon": "^0.1.0",
42
43
  "@surstromming/input": "^0.1.0",
43
- "@surstromming/popover": "^0.1.0"
44
+ "@surstromming/popover": "^0.1.2"
44
45
  },
45
46
  "peerDependencies": {
46
47
  "vue": "^3.4.0"