Skip to content

Commit

Permalink
Add 'help' as severity in splitbutton.d.ts (#7446)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderZeilmann authored Nov 22, 2024
1 parent 4794323 commit 9e12e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/splitbutton/splitbutton.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ export interface SplitButtonProps extends Omit<React.DetailedHTMLProps<React.HTM
*/
outlined?: boolean | undefined;
/**
* Defines the style of the button, valid values are "secondary", "success", "info", "warning", "danger", "contrast".
* Defines the style of the button, valid values are "secondary", "success", "info", "warning", "danger", "contrast", "help".
*/
severity?: 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'contrast' | undefined;
severity?: 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'contrast' | 'help' | undefined;
/**
* Defines the size of the button, valid values are "small" and "large".
*/
Expand Down

0 comments on commit 9e12e79

Please sign in to comment.