@rcarls/rc-select 0.2.0 → 0.3.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/README.md +4 -4
- package/dist/custom-elements.json +153 -75
- package/dist/{rc-select-BumY2uQl.js → rc-select-Bu4ukw92.js} +235 -122
- package/dist/rc-select-Bu4ukw92.js.map +1 -0
- package/dist/rc-select-define.js +1 -1
- package/dist/rc-select.js +1 -1
- package/dist/types/packages/rc-select/src/rc-select.d.ts +190 -37
- package/package.json +8 -11
- package/dist/demo.css +0 -85
- package/dist/demo.js +0 -40
- package/dist/rc-select-BumY2uQl.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# `@rcarls/rc-select`
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Select-only combobox backed by a native `<select>`, following the [WAI-ARIA Combobox pattern](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/).
|
|
4
|
+
|
|
5
|
+
Docs: [https://richardcarls.github.io/rc-webcomponents/components/rc-select](https://richardcarls.github.io/rc-webcomponents/components/rc-select).
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -30,7 +30,7 @@ import '@rcarls/rc-select/define';
|
|
|
30
30
|
<label>
|
|
31
31
|
Fruit
|
|
32
32
|
<rc-select placeholder="Choose fruit">
|
|
33
|
-
<select
|
|
33
|
+
<select name="fruit">
|
|
34
34
|
<option value="">Choose fruit</option>
|
|
35
35
|
<option value="apple">Apple</option>
|
|
36
36
|
<option value="banana">Banana</option>
|