@rcarls/rc-select 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 +71 -0
- package/package.json +4 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# @rcarls/rc-select
|
|
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
|
+
|
|
10
|
+
## 0.4.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 9c3bc6f: Document the `listbox` CSS part, the `open`/`multiple`/`disabled`/`placeholder`/`display`
|
|
15
|
+
attributes, and the `--rc-select-chip-gap`, `--rc-select-chip-border`,
|
|
16
|
+
`--rc-select-listbox-border`, and `--rc-select-shadow` custom properties in the generated API
|
|
17
|
+
reference.
|
|
18
|
+
- Updated dependencies [e57277f]
|
|
19
|
+
- Updated dependencies [8944083]
|
|
20
|
+
- Updated dependencies [ccca8e2]
|
|
21
|
+
- Updated dependencies [037b1b3]
|
|
22
|
+
- @rcarls/rc-common@0.4.0
|
|
23
|
+
- @rcarls/rc-listbox@0.4.0
|
|
24
|
+
|
|
25
|
+
## 0.3.2
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 88b4086: Fix Firefox for Android bug: `<label>`-wrapped multiple selects [Bugzilla 1475723](https://bugzilla.mozilla.org/show_bug.cgi?id=1475723)
|
|
30
|
+
- Updated dependencies [88b4086]
|
|
31
|
+
- @rcarls/rc-common@0.3.2
|
|
32
|
+
- @rcarls/rc-listbox@0.3.2
|
|
33
|
+
|
|
34
|
+
## 0.3.1
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- @rcarls/rc-common@0.3.1
|
|
39
|
+
- @rcarls/rc-listbox@0.3.1
|
|
40
|
+
|
|
41
|
+
## 0.3.0
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- Add typed listbox action option support through the embedded listbox.
|
|
46
|
+
|
|
47
|
+
### Changed
|
|
48
|
+
|
|
49
|
+
- Change the required native `<select>` child to the default slot.
|
|
50
|
+
- Normalize embedded listbox option styling around `--rc-listbox-*` custom properties.
|
|
51
|
+
- Update package metadata, README intro, and docs links.
|
|
52
|
+
|
|
53
|
+
### Migration
|
|
54
|
+
|
|
55
|
+
- Remove `slot="select"` from the native `<select>` child.
|
|
56
|
+
|
|
57
|
+
```diff
|
|
58
|
+
- <rc-select><select slot="select" name="status">...</select></rc-select>
|
|
59
|
+
+ <rc-select><select name="status">...</select></rc-select>
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Dependencies
|
|
63
|
+
|
|
64
|
+
- Sync internal dependencies to 0.3.0.
|
|
65
|
+
|
|
66
|
+
## 0.2.0
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- @rcarls/rc-common@0.2.0
|
|
71
|
+
- @rcarls/rc-listbox@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": "Select-only combobox backed by a native <select>.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"test:browser:firefox": "vitest --run --project=firefox"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@rcarls/rc-common": "
|
|
49
|
-
"@rcarls/rc-listbox": "
|
|
48
|
+
"@rcarls/rc-common": "0.4.1",
|
|
49
|
+
"@rcarls/rc-listbox": "0.4.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@custom-elements-manifest/analyzer": "0.11.0",
|
|
@@ -63,4 +63,4 @@
|
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"lit": "^3.0.0"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|