@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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # `@rcarls/rc-select`
2
2
 
3
- A headless select-only ARIA combobox built with Lit 3. The component keeps a
4
- native slotted `<select>` as the source of truth for form submission while
5
- rendering a custom trigger and popover listbox.
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 slot="select" name="fruit">
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>