@rcarls/rc-listbox 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.
- package/CHANGELOG.md +69 -0
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# @rcarls/rc-listbox
|
|
2
|
+
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @rcarls/rc-common@0.4.1
|
|
8
|
+
|
|
9
|
+
## 0.4.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8944083: Document the `multiple`, `checkmark`, and `filter-strategy` attributes, add
|
|
14
|
+
real defaults to the eight `--rc-listbox-*` option-styling custom properties
|
|
15
|
+
that already had one in code but not in the JSDoc, add `@example` blocks to
|
|
16
|
+
the `options` setter and `appendOption()`, and add the missing `checkmark`,
|
|
17
|
+
`value`, and `defaultValue` rows to the README's API table.
|
|
18
|
+
- Updated dependencies [e57277f]
|
|
19
|
+
- Updated dependencies [ccca8e2]
|
|
20
|
+
- Updated dependencies [037b1b3]
|
|
21
|
+
- @rcarls/rc-common@0.4.0
|
|
22
|
+
|
|
23
|
+
## 0.3.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [88b4086]
|
|
28
|
+
- @rcarls/rc-common@0.3.2
|
|
29
|
+
|
|
30
|
+
## 0.3.1
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- @rcarls/rc-common@0.3.1
|
|
35
|
+
|
|
36
|
+
## 0.3.0
|
|
37
|
+
|
|
38
|
+
### Breaking
|
|
39
|
+
|
|
40
|
+
- Render options as `<li role="option">` instead of `<div role="option">`.
|
|
41
|
+
- Remove `part="option-label"`.
|
|
42
|
+
- Move the component-owned structure into shadow DOM.
|
|
43
|
+
|
|
44
|
+
### Added
|
|
45
|
+
|
|
46
|
+
- Add typed action option rows and discriminated `rc-listbox-change` details.
|
|
47
|
+
- Add progressive enhancement from a pre-rendered `<ul>` with `<li>` options.
|
|
48
|
+
|
|
49
|
+
### Changed
|
|
50
|
+
|
|
51
|
+
- Normalize option styling around `--rc-listbox-*` custom properties.
|
|
52
|
+
- Inject base listbox styles into the component root.
|
|
53
|
+
- Update package metadata, README intro, and docs links.
|
|
54
|
+
|
|
55
|
+
### Migration
|
|
56
|
+
|
|
57
|
+
- Update CSS selectors from `div[role="option"]` to `li[role="option"]`.
|
|
58
|
+
- Replace `part="option-label"` styling with selectors for the option text structure now exposed by the component.
|
|
59
|
+
- Query light-DOM option data from the host; do not query the component shadow root for consumer option DOM.
|
|
60
|
+
|
|
61
|
+
### Dependencies
|
|
62
|
+
|
|
63
|
+
- Sync internal dependencies to 0.3.0.
|
|
64
|
+
|
|
65
|
+
## 0.2.0
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- @rcarls/rc-common@0.2.0
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.4.
|
|
6
|
+
"version": "0.4.1",
|
|
7
7
|
"description": "Listbox that keeps option DOM in light DOM for aria-activedescendant navigation.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test:browser:firefox": "vitest --run --project=firefox"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@rcarls/rc-common": "
|
|
48
|
+
"@rcarls/rc-common": "0.4.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@custom-elements-manifest/analyzer": "0.11.0",
|
|
@@ -62,4 +62,4 @@
|
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"lit": "^3.0.0"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
}
|