feat(Checkbox): add indeterminate state to the checkbox definition

pull/5943/head
Michael Meier 2024-06-21 08:44:39 +02:00 committed by GitHub
parent 197715f102
commit 606831c1c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -225,6 +225,10 @@ export interface CheckboxSlots {
* State of the checkbox.
*/
checked: boolean;
/**
* Indeterminate state of the checkbox.
*/
indeterminate?: boolean | undefined;
/**
* Style class of the icon.
*/