chore(docs): add missing onValueChange in CheckboxGroup (#5332)

This commit is contained in:
WK 2025-06-02 01:19:33 +08:00 committed by GitHub
parent 9433bff517
commit 6e9247ad32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -233,6 +233,12 @@ In case you need to customize the checkbox even further, you can use the `useChe
type: "(value: string[]) => void",
description: "Handler that is called when the value changes.",
default: "-"
},
{
attribute: "onValueChange",
type: "(value: T) => void",
description: "Handler that is called when the element's selection state changes.",
default: "-"
}
]}
/>