@rcarls/rc-combobox 0.4.0 → 0.4.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 +94 -0
  2. package/package.json +5 -5
package/CHANGELOG.md ADDED
@@ -0,0 +1,94 @@
1
+ # @rcarls/rc-combobox
2
+
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @rcarls/rc-common@0.4.1
8
+ - @rcarls/rc-listbox@0.4.1
9
+ - @rcarls/rc-select@0.4.1
10
+
11
+ ## 0.4.0
12
+
13
+ ### Patch Changes
14
+
15
+ - acc913e: Document the `chips` and `listbox` CSS parts, the `filter-strategy` attribute, and the
16
+ `--rc-combobox-chip-gap`, `--rc-combobox-chip-border`, `--rc-combobox-listbox-border`, and
17
+ `--rc-combobox-shadow` custom properties in the generated API reference. Also correct the
18
+ `allow-create` attribute tag to non-bracket form (it has a real settable `allowCreate`
19
+ property) and fix stale README/docs prose that claimed a `default-value` HTML attribute exists
20
+ for the inherited `defaultValue` property, which has no attribute mapping.
21
+ - fa9bed0: Fix the toggle button's size custom property so it is `--rc-combobox-toggle-size`, matching
22
+ every other `--rc-combobox-*` token in the package. It previously reused rc-select's
23
+ `--rc-select-toggle-indicator-size`, so setting `--rc-combobox-toggle-size` on `<rc-combobox>`
24
+ silently did nothing.
25
+ - Updated dependencies [e57277f]
26
+ - Updated dependencies [8944083]
27
+ - Updated dependencies [ccca8e2]
28
+ - Updated dependencies [9c3bc6f]
29
+ - Updated dependencies [037b1b3]
30
+ - @rcarls/rc-common@0.4.0
31
+ - @rcarls/rc-listbox@0.4.0
32
+ - @rcarls/rc-select@0.4.0
33
+
34
+ ## 0.3.2
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [88b4086]
39
+ - @rcarls/rc-common@0.3.2
40
+ - @rcarls/rc-select@0.3.2
41
+ - @rcarls/rc-listbox@0.3.2
42
+
43
+ ## 0.3.1
44
+
45
+ ### Patch Changes
46
+
47
+ - @rcarls/rc-common@0.3.1
48
+ - @rcarls/rc-listbox@0.3.1
49
+ - @rcarls/rc-select@0.3.1
50
+
51
+ ## 0.3.0
52
+
53
+ ### Added
54
+
55
+ - Add typed action option support for `allow-create` flows.
56
+
57
+ ### Changed
58
+
59
+ - Change the required native `<select>` child to the default slot.
60
+ - Normalize embedded listbox option styling around `--rc-listbox-*` custom properties.
61
+ - Replace the text chevron with an inline SVG chevron.
62
+ - Update package metadata, README intro, and docs links.
63
+
64
+ ### Fixed
65
+
66
+ - Reflect `allowCreate` as the `allow-create` attribute instead of `allowcreate`.
67
+
68
+ ### Migration
69
+
70
+ - Rename the `allowcreate` attribute to `allow-create`.
71
+
72
+ ```diff
73
+ - <rc-combobox allowcreate>
74
+ + <rc-combobox allow-create>
75
+ ```
76
+
77
+ - Remove `slot="select"` from the native `<select>` child.
78
+
79
+ ```diff
80
+ - <rc-combobox><select slot="select" name="tags">...</select></rc-combobox>
81
+ + <rc-combobox><select name="tags">...</select></rc-combobox>
82
+ ```
83
+
84
+ ### Dependencies
85
+
86
+ - Sync internal dependencies to 0.3.0.
87
+
88
+ ## 0.2.0
89
+
90
+ ### Patch Changes
91
+
92
+ - @rcarls/rc-common@0.2.0
93
+ - @rcarls/rc-listbox@0.2.0
94
+ - @rcarls/rc-select@0.2.0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.4.0",
6
+ "version": "0.4.1",
7
7
  "description": "Editable combobox with filtering and optional allow-create behavior, configured from native option data.",
8
8
  "repository": {
9
9
  "type": "git",
@@ -45,9 +45,9 @@
45
45
  "test:browser:firefox": "vitest --run --project=firefox"
46
46
  },
47
47
  "dependencies": {
48
- "@rcarls/rc-common": "workspace:*",
49
- "@rcarls/rc-listbox": "workspace:*",
50
- "@rcarls/rc-select": "workspace:*"
48
+ "@rcarls/rc-common": "0.4.1",
49
+ "@rcarls/rc-listbox": "0.4.1",
50
+ "@rcarls/rc-select": "0.4.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@custom-elements-manifest/analyzer": "0.11.0",
@@ -65,4 +65,4 @@
65
65
  "peerDependencies": {
66
66
  "lit": "^3.0.0"
67
67
  }
68
- }
68
+ }