Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Dec 5, 2023
1 parent 1044dda commit 1226b7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# Bits
# Bits UI

Headless Svelte components built with [Melt UI](https://melt-ui.com) builders.
The headless components for Svelte.

[Read the docs](https://bits-ui.com) (still a work in progress)

## Credits

Logo created by [BruceWayyn](https://github.com/brucewayyn)
Powered by [Melt UI](https://melt-ui.com) builders.
4 changes: 2 additions & 2 deletions src/content/api-reference/radio-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const root: APISchema<RadioGroup.Props> = {
value: {
type: C.STRING,
description:
"The value of the currently selected radio item. This is the value that will be submitted with a form."
"The value of the currently selected radio item. You can bind to this value to control the radio group's value from outside the component."
},
onValueChange: {
type: {
Expand Down Expand Up @@ -76,7 +76,7 @@ export const item: APISchema<RadioGroup.ItemProps> = {
value: {
type: C.STRING,
description:
"The value of the currently selected radio item. This is the value that will be submitted with a form.",
"The value of the radio item. This should be unique for each radio item in the group.",
required: true
},
asChild
Expand Down

0 comments on commit 1226b7f

Please sign in to comment.