@atom-learning/components 2.31.0-beta.0 → 2.31.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 +207 -0
- package/dist/components/radio-button-field/RadioButtonField.js +1 -1
- package/dist/components/top-bar/TopBar.js +1 -1
- package/dist/docgen.json +1 -1
- package/dist/docs/RadioButtonField.mdx +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/utilities/hooks/useWindowScrollPosition.d.ts +10 -0
- package/dist/utilities/hooks/useWindowScrollPosition.js +1 -0
- package/package.json +1 -1
- package/dist/utilities/hooks/useScrollPosition.d.ts +0 -4
- package/dist/utilities/hooks/useScrollPosition.js +0 -1
|
@@ -9,7 +9,7 @@ category: Form fields
|
|
|
9
9
|
|
|
10
10
|
**Note**: a `RadioButtonField.Item`’s `value` **must** be a `string`.
|
|
11
11
|
|
|
12
|
-
```tsx preview
|
|
12
|
+
```tsx preview live
|
|
13
13
|
<Form>
|
|
14
14
|
<RadioButtonField name="options" label="Please select an option">
|
|
15
15
|
<RadioButtonField.Item label="Option 1" value="1" />
|