Merge pull request #6989 from laylatichy/update-splitbutton-state-attribute

fix: rename isBlocked to isExpanded in SplitButtonState interface
pull/7014/head
Tuğçe Küçükoğlu 2024-12-26 10:30:07 +03:00 committed by GitHub
commit 43542fd65d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ export interface SplitButtonPassThroughAttributes {
*/ */
export interface SplitButtonState { export interface SplitButtonState {
/** /**
* Current blocked state as a boolean. * Current expanded state as a boolean.
* @defaultValue false * @defaultValue false
*/ */
isBlocked: boolean; isExpanded: boolean;
} }
/** /**