diff --git a/README.md b/README.md index f965cb521..9c4fe8208 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/content/api-reference/radio-group.ts b/src/content/api-reference/radio-group.ts index 79771ca6a..d20649364 100644 --- a/src/content/api-reference/radio-group.ts +++ b/src/content/api-reference/radio-group.ts @@ -37,7 +37,7 @@ export const root: APISchema = { 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: { @@ -76,7 +76,7 @@ export const item: APISchema = { 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