Skip to content

Commit

Permalink
GA endcall experience GA (#4547)
Browse files Browse the repository at this point in the history
GA endcall experience GA
  • Loading branch information
PorterNan committed May 2, 2024
1 parent 177cfc7 commit 566e097
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
6 changes: 3 additions & 3 deletions common/config/babel/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ module.exports = {
'image-overlay-theme',
// Feature for local recording notification for teams meetings
'local-recording-notification',
// Feature for end call options
'end-call-options',
// Close captions feature for ACS calls
"acs-close-captions",
// Feature for Rich Text Editor (RTE) support
Expand All @@ -90,11 +88,13 @@ module.exports = {
"video-stream-is-receiving-flag",
// Feature for spotlight
'spotlight',
// Feature for end of call survey
// Feature for end of call survey
'end-of-call-survey',
// Feature for PPT Live for teams meeting
'ppt-live',
// feature for hiding attendee name in the teams meeting
"hide-attendee-name",
// Feature for end call options
'end-call-options',
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -583,16 +583,23 @@ export interface CallCompositeStrings {
dtmfDialerButtonTooltipOn?: string;
dtmfDialerMoreButtonLabelOff?: string;
dtmfDialerMoreButtonLabelOn?: string;
endCallConfirmButtonLabel?: string;
endCallConfirmDialogContent?: string;
endCallConfirmDialogTitle?: string;
endOfSurveyText: string;
exitSpotlightButtonLabel: string;
exitSpotlightButtonTooltip: string;
failedToJoinCallDueToNoNetworkMoreDetails?: string;
failedToJoinCallDueToNoNetworkTitle: string;
failedToJoinTeamsMeetingReasonAccessDeniedMoreDetails?: string;
failedToJoinTeamsMeetingReasonAccessDeniedTitle: string;
hangUpCancelButtonLabel?: string;
inviteToRoomRemovedDetails?: string;
inviteToRoomRemovedTitle: string;
learnMore: string;
leaveConfirmButtonLabel?: string;
leaveConfirmDialogContent?: string;
leaveConfirmDialogTitle?: string;
leavingCallTitle?: string;
leftCallMoreDetails?: string;
leftCallTitle: string;
Expand Down Expand Up @@ -1633,7 +1640,9 @@ export type CommonCallAdapterOptions = {
export type CommonCallControlOptions = {
displayType?: CallControlDisplayType;
cameraButton?: boolean;
endCallButton?: boolean;
endCallButton?: boolean | /* @conditional-compile-remove(end-call-options) */ {
hangUpForEveryone?: false | 'endCallOptions';
};
microphoneButton?: boolean;
devicesButton?: boolean;
participantsButton?: boolean | {
Expand Down Expand Up @@ -2432,13 +2441,16 @@ export const EndCallButton: (props: EndCallButtonProps) => JSX.Element;

// @public
export interface EndCallButtonProps extends ControlBarButtonProps {
enableEndCallMenu?: boolean;
onHangUp?: (forEveryone?: boolean) => Promise<void>;
strings?: EndCallButtonStrings;
}

// @public
export interface EndCallButtonStrings {
endCallOption?: string;
label: string;
leaveOption?: string;
tooltipContent?: string;
}

Expand Down

0 comments on commit 566e097

Please sign in to comment.