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