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": "patch",
"comment": "Update Aria labels for people button to allow for voice access controls on windows.",
"packageName": "@azure/communication-react",
"email": "94866715+dmceachernmsft@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"type": "pre-release",
"type": "prerelease",
"comment": "Video Effects Button and Pane",
"packageName": "@azure/communication-react",
"email": "97124699+prabhjot-msft@users.noreply.github.com",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Update Aria labels for people button to allow for voice access controls on windows.",
"packageName": "@azure/communication-react",
"email": "94866715+dmceachernmsft@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ export const CallControls = (props: CallControlsProps & ContainerRectProps): JSX
/* @conditional-compile-remove(one-to-n-calling) */ /* @conditional-compile-remove(PSTN-calls) */
<People
checked={props.peopleButtonChecked}
ariaLabel={peopleButtonStrings?.label}
showLabel={options?.displayType !== 'compact'}
onClick={props.onPeopleButtonClicked}
data-ui-id="call-composite-people-button"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ export const CallWithChatControlBar = (props: CallWithChatControlBarProps & Cont
{isEnabled(options?.peopleButton) && (
<PeopleButton
checked={props.peopleButtonChecked}
ariaLabel={peopleButtonStrings?.label}
showLabel={options.displayType !== 'compact'}
onClick={props.onPeopleButtonClicked}
data-ui-id="call-with-chat-composite-people-button"
Expand Down