Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "chore: Making the content focusable and updating example's text.",
"packageName": "@fluentui/react-infobutton",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export const useInfoButton_unstable = (props: InfoButtonProps, ref: React.Ref<HT
required: true,
defaultProps: {
role: 'note',
tabIndex: -1,
},
}),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const InfoButtonWithLabel = () => {
<InfoButton
id={infoButtonId}
aria-labelledby={`${labelId} ${infoButtonId}`}
content="Your username should have at least 6 characters."
content="Usernames offer a unique way to identify you and keep your account secure."
/>
</div>
<Input id={inputId} placeholder="Username" />
Expand Down