Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: slider vertical navigation and value setting bugs #3176

Merged
merged 6 commits into from
May 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1>Radio Group</h1>
<h4>Defaults</h4>
<div>
<fast-radio-group name="numbers">
<label slot="label">Numbers</label>
<label style="color: --var(neutral-foreground-rest)" slot="label">Numbers</label>
<fast-radio value="one">One</fast-radio>
<fast-radio value="two">Two</fast-radio>
</fast-radio-group>
Expand All @@ -13,7 +13,7 @@ <h4>Defaults</h4>
<h4>Single radio</h4>
<div style="display: flex; flex-direction: column;margin-top: 12px;">
<fast-radio-group name="players">
<label slot="label">Best basketball players</label>
<label style="color: --var(neutral-foreground-rest)" slot="label">Best basketball players</label>
<fast-radio value="airjordan">Michael Jordan</fast-radio>
</fast-radio-group>
</div>
Expand Down
Loading