diff --git a/cspell.json b/cspell.json
index 48394a5c..4b0b15a4 100644
--- a/cspell.json
+++ b/cspell.json
@@ -11,6 +11,8 @@
"autoplay",
"bezier",
"boxicons",
+ "callout",
+ "callouts",
"chatbubble",
"checkmark",
"claviska",
@@ -36,6 +38,7 @@
"enterkeyhint",
"eqeqeq",
"erroneou",
+ "errormessage",
"esbuild",
"exportparts",
"fieldsets",
@@ -120,6 +123,7 @@
"treeitem",
"Triaging",
"turbolinks",
+ "typeof",
"unbundles",
"unbundling",
"unicons",
diff --git a/docs/assets/plugins/metadata/metadata.js b/docs/assets/plugins/metadata/metadata.js
index c061ac0f..fe9f6c2c 100644
--- a/docs/assets/plugins/metadata/metadata.js
+++ b/docs/assets/plugins/metadata/metadata.js
@@ -117,7 +117,7 @@
method.parameters?.length
? `
${escapeHtml(
- method.parameters.map(param => `${param.name}: ${param.type.text}`).join(', ')
+ method.parameters.map(param => `${param.name}: ${param.type?.text || ''}`).join(', ')
)}
`
: '-'
diff --git a/docs/components/radio-button.md b/docs/components/radio-button.md
index df6de475..03046ef0 100644
--- a/docs/components/radio-button.md
+++ b/docs/components/radio-button.md
@@ -7,10 +7,10 @@ Radios buttons allow the user to select a single option from a group using a but
Radio buttons are designed to be used with [radio groups](/components/radio-group). When a radio button has focus, the arrow keys can be used to change the selected option just like standard radio controls.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -18,31 +18,25 @@ Radio buttons are designed to be used with [radio groups](/components/radio-grou
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
- Option 1
-
-
- Option 2
-
-
- Option 3
-
+
+ Option 1
+ Option 2
+ Option 3
);
```
## Examples
-### Checked
+### Checked States
-To set the initial checked state, use the `checked` attribute.
+To set the initial value and checked state, use the `value` attribute on the containing radio group.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -50,16 +44,10 @@ To set the initial checked state, use the `checked` attribute.
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
- Option 1
-
-
- Option 2
-
-
- Option 3
-
+
+ Option 1
+ Option 2
+ Option 3
);
```
@@ -69,10 +57,10 @@ const App = () => (
Use the `disabled` attribute to disable a radio button.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -80,14 +68,10 @@ Use the `disabled` attribute to disable a radio button.
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
- Option 1
-
-
- Option 2
-
-
+
+ Option 1
+ Option 2
+
Option 3
@@ -99,26 +83,26 @@ const App = () => (
Use the `size` attribute to change a radio button's size.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -126,26 +110,26 @@ Use the `size` attribute to change a radio button's size.
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
);
```
@@ -155,26 +139,26 @@ const App = () => (
Use the `pill` attribute to give radio buttons rounded edges.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -182,26 +166,26 @@ Use the `pill` attribute to give radio buttons rounded edges.
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
);
```
@@ -211,18 +195,18 @@ const App = () => (
Use the `prefix` and `suffix` slots to add icons.
```html preview
-
-
+
+
Option 1
-
+
Option 2
-
+
Option 3
@@ -234,18 +218,18 @@ Use the `prefix` and `suffix` slots to add icons.
import { SlIcon, SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
+
+
Option 1
-
+
Option 2
-
+
Option 3
@@ -259,24 +243,24 @@ const App = () => (
You can omit button labels and use icons instead. Make sure to set a `label` attribute on each icon so screen readers will announce each option correctly.
```html preview
-
-
+
+
-
+
-
+
-
+
-
+
@@ -286,101 +270,28 @@ You can omit button labels and use icons instead. Make sure to set a `label` att
import { SlIcon, SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
+
+
-
+
-
+
-
+
-
+
);
```
-### Custom Validity
-
-Use the `setCustomValidity()` method to set a custom validation message. This will prevent the form from submitting and make the browser display the error message you provide. To clear the error, call this function with an empty string.
-
-```html preview
-
-
-```
-
-```jsx react
-import { useEffect, useRef } from 'react';
-import { SlButton, SlIcon, SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
-const App = () => {
- const radio = useRef(null);
- const errorMessage = 'You must choose this option';
- function handleChange(event) {
- radio.current.setCustomValidity(radio.current.checked ? '' : errorMessage);
- }
- function handleSubmit(event) {
- event.preventDefault();
- alert('All fields are valid!');
- }
- useEffect(() => {
- radio.current.setCustomValidity(errorMessage);
- }, []);
- return (
-
- );
-};
-```
-
[component-metadata:sl-radio-button]
diff --git a/docs/components/radio-group.md b/docs/components/radio-group.md
index cc0c48ed..9c1bf9a5 100644
--- a/docs/components/radio-group.md
+++ b/docs/components/radio-group.md
@@ -5,7 +5,7 @@
Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.
```html preview
-
+
Option 1
Option 2
Option 3
@@ -16,7 +16,7 @@ Radio groups are used to group multiple [radios](/components/radio) or [radio bu
import { SlRadio, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
+
Option 1
Option 2
Option 3
@@ -31,10 +31,10 @@ const App = () => (
You can show the fieldset and legend that wraps the radio group using the `fieldset` attribute. If you don't use this option, you should still provide a label so screen readers announce the control correctly.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -42,16 +42,10 @@ You can show the fieldset and legend that wraps the radio group using the `field
import { SlRadio, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
- Option 1
-
-
- Option 2
-
-
- Option 3
-
+
+ Option 1
+ Option 2
+ Option 3
);
```
@@ -61,10 +55,10 @@ const App = () => (
[Radio buttons](/components/radio-button) offer an alternate way to display radio controls. In this case, an internal [button group](/components/button-group) is used to group the buttons into a single, cohesive control.
```html preview
-
- Option 1
- Option 2
- Option 3
+
+ Option 1
+ Option 2
+ Option 3
```
@@ -72,16 +66,10 @@ const App = () => (
import { SlRadioButton, SlRadioGroup } from '@shoelace-style/shoelace/dist/react';
const App = () => (
-
-
- Option 1
-
-
- Option 2
-
-
- Option 3
-
+
+ Option 1
+ Option 2
+ Option 3
);
```
@@ -92,10 +80,10 @@ Setting the `required` attribute to make selecting an option mandatory. If a val
```html preview