Skip to content

Commit

Permalink
Merge branch 'master' into fix/issue-7219
Browse files Browse the repository at this point in the history
  • Loading branch information
KumJungMin authored Nov 23, 2024
2 parents 5114aa3 + 54acecd commit 859a3df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -46777,9 +46777,9 @@
"name": "severity",
"optional": true,
"readonly": false,
"type": "\"success\" | \"warning\" | \"secondary\" | \"info\" | \"danger\" | \"contrast\"",
"type": "\"success\" | \"help\" | \"warning\" | \"secondary\" | \"info\" | \"danger\" | \"contrast\"",
"default": "",
"description": "Defines the style of the button, valid values are \"secondary\", \"success\", \"info\", \"warning\", \"danger\", \"contrast\"."
"description": "Defines the style of the button, valid values are \"secondary\", \"success\", \"info\", \"warning\", \"danger\", \"contrast\", \"help\"."
},
{
"name": "size",
Expand Down
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
2 changes: 1 addition & 1 deletion components/lib/tree/UITreeNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ export const UITreeNode = React.memo((props) => {
type: 'button',
className: cx('toggler'),
tabIndex: -1,
'aria-hidden': true,
'aria-hidden': false,
onClick: onTogglerClick
},
getPTOptions('toggler')
Expand Down

0 comments on commit 859a3df

Please sign in to comment.