@azure/communication-react 1.14.0-alpha-202403020011 → 1.14.0-alpha-202403030013
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/communication-react.d.ts +23 -0
- package/dist/dist-cjs/communication-react/index.js +155 -32
- package/dist/dist-cjs/communication-react/index.js.map +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.d.ts +1 -0
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js +6 -0
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.d.ts +8 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +8 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.d.ts +4 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js +72 -23
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/SidePane.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/SidePane.js +2 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/SidePane.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/usePeoplePane.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/usePeoplePane.js +25 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/SidePane/usePeoplePane.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js +4 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js +6 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.d.ts +4 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.js +6 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/ExitSpotlightButton.js +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/ExitSpotlightButton.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/SidePaneHeader.d.ts +3 -0
- package/dist/dist-esm/react-composites/src/composites/common/SidePaneHeader.js +6 -1
- package/dist/dist-esm/react-composites/src/composites/common/SidePaneHeader.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/TabHeader.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/common/TabHeader.js +5 -1
- package/dist/dist-esm/react-composites/src/composites/common/TabHeader.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/icons.d.ts +6 -0
- package/dist/dist-esm/react-composites/src/composites/common/icons.js +6 -2
- package/dist/dist-esm/react-composites/src/composites/common/icons.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/styles/Pane.styles.js +8 -1
- package/dist/dist-esm/react-composites/src/composites/common/styles/Pane.styles.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/localization/locales/en-US/strings.json +2 -0
- package/package.json +1 -1
@@ -910,6 +910,10 @@ export declare interface CallAdapterCallOperations {
|
|
910
910
|
* Stop spotlight
|
911
911
|
*/
|
912
912
|
stopSpotlight(userIds?: string[]): Promise<void>;
|
913
|
+
/**
|
914
|
+
* Stop all spotlights
|
915
|
+
*/
|
916
|
+
stopAllSpotlight(): Promise<void>;
|
913
917
|
}
|
914
918
|
|
915
919
|
/**
|
@@ -1496,6 +1500,8 @@ export declare type CallCompositeIcons = {
|
|
1496
1500
|
LargeGalleryLayout?: JSX.Element;
|
1497
1501
|
DefaultCustomButton?: JSX.Element;
|
1498
1502
|
DtmfDialpadButton?: JSX.Element;
|
1503
|
+
PeoplePaneMoreButton?: JSX.Element;
|
1504
|
+
StopAllSpotlightMenuButton?: JSX.Element;
|
1499
1505
|
};
|
1500
1506
|
|
1501
1507
|
/**
|
@@ -1897,6 +1903,10 @@ export declare interface CallCompositeStrings {
|
|
1897
1903
|
* Side pane People section Title.
|
1898
1904
|
*/
|
1899
1905
|
peoplePaneTitle: string;
|
1906
|
+
/**
|
1907
|
+
* Aria label of more button in people pane
|
1908
|
+
*/
|
1909
|
+
peoplePaneMoreButtonAriaLabel: string;
|
1900
1910
|
/**
|
1901
1911
|
* Aria label string for return to call back button
|
1902
1912
|
*/
|
@@ -1957,6 +1967,10 @@ export declare interface CallCompositeStrings {
|
|
1957
1967
|
* Label for menu item to stop spotlight on local user
|
1958
1968
|
*/
|
1959
1969
|
spotlightLimitReachedParticipantListMenuTitle: string;
|
1970
|
+
/**
|
1971
|
+
* Label for menu item to stop all spotlight
|
1972
|
+
*/
|
1973
|
+
stopAllSpotlightMenuLabel: string;
|
1960
1974
|
/**
|
1961
1975
|
* Label for add people dropdown
|
1962
1976
|
*/
|
@@ -3238,6 +3252,10 @@ export declare interface CallWithChatAdapterManagement {
|
|
3238
3252
|
* Stop spotlight
|
3239
3253
|
*/
|
3240
3254
|
stopSpotlight(userIds?: string[]): Promise<void>;
|
3255
|
+
/**
|
3256
|
+
* Stop all spotlights
|
3257
|
+
*/
|
3258
|
+
stopAllSpotlight(): Promise<void>;
|
3241
3259
|
}
|
3242
3260
|
|
3243
3261
|
/**
|
@@ -3467,6 +3485,8 @@ export declare type CallWithChatCompositeIcons = {
|
|
3467
3485
|
SendBoxAttachFile?: JSX.Element;
|
3468
3486
|
ParticipantItemOptions?: JSX.Element;
|
3469
3487
|
ParticipantItemOptionsHovered?: JSX.Element;
|
3488
|
+
PeoplePaneMoreButton?: JSX.Element;
|
3489
|
+
StopAllSpotlightMenuButton?: JSX.Element;
|
3470
3490
|
};
|
3471
3491
|
|
3472
3492
|
/**
|
@@ -5094,6 +5114,7 @@ export declare interface CommonCallingHandlers {
|
|
5094
5114
|
onSubmitSurvey(survey: CallSurvey): Promise<CallSurveyResponse | undefined>;
|
5095
5115
|
onStartSpotlight: (userIds?: string[]) => Promise<void>;
|
5096
5116
|
onStopSpotlight: (userIds?: string[]) => Promise<void>;
|
5117
|
+
onStopAllSpotlight: () => Promise<void>;
|
5097
5118
|
}
|
5098
5119
|
|
5099
5120
|
/**
|
@@ -6339,6 +6360,8 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
|
|
6339
6360
|
LargeGalleryLayout?: JSX.Element | undefined;
|
6340
6361
|
DefaultCustomButton?: JSX.Element | undefined;
|
6341
6362
|
DtmfDialpadButton?: JSX.Element | undefined;
|
6363
|
+
PeoplePaneMoreButton?: JSX.Element | undefined;
|
6364
|
+
StopAllSpotlightMenuButton?: JSX.Element | undefined;
|
6342
6365
|
ChevronLeft?: JSX.Element | undefined;
|
6343
6366
|
ControlBarChatButtonActive?: JSX.Element | undefined;
|
6344
6367
|
ControlBarChatButtonInactive?: JSX.Element | undefined;
|
@@ -174,7 +174,7 @@ function getDefaultExportFromCjs (x) {
|
|
174
174
|
// Copyright (c) Microsoft Corporation.
|
175
175
|
// Licensed under the MIT License.
|
176
176
|
// GENERATED FILE. DO NOT EDIT MANUALLY.
|
177
|
-
var telemetryVersion = '1.14.0-alpha-
|
177
|
+
var telemetryVersion = '1.14.0-alpha-202403030013';
|
178
178
|
|
179
179
|
|
180
180
|
var telemetryVersion$1 = /*@__PURE__*/getDefaultExportFromCjs(telemetryVersion);
|
@@ -1171,6 +1171,10 @@ const createDefaultCommonCallingHandlers = memoizeOne((callClient, deviceManager
|
|
1171
1171
|
yield (call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.Spotlight).stopSpotlight(participants));
|
1172
1172
|
});
|
1173
1173
|
/* @conditional-compile-remove(spotlight) */
|
1174
|
+
const onStopAllSpotlight = () => __awaiter$Q(void 0, void 0, void 0, function* () {
|
1175
|
+
yield (call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.Spotlight).stopAllSpotlight());
|
1176
|
+
});
|
1177
|
+
/* @conditional-compile-remove(spotlight) */
|
1174
1178
|
const canSpotlight = call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.Capabilities).capabilities.spotlightParticipant.isPresent;
|
1175
1179
|
/* @conditional-compile-remove(spotlight) */
|
1176
1180
|
const onStartLocalSpotlight = canSpotlight
|
@@ -1251,6 +1255,8 @@ const createDefaultCommonCallingHandlers = memoizeOne((callClient, deviceManager
|
|
1251
1255
|
/* @conditional-compile-remove(spotlight) */
|
1252
1256
|
onStopSpotlight,
|
1253
1257
|
/* @conditional-compile-remove(spotlight) */
|
1258
|
+
onStopAllSpotlight,
|
1259
|
+
/* @conditional-compile-remove(spotlight) */
|
1254
1260
|
onStartLocalSpotlight,
|
1255
1261
|
/* @conditional-compile-remove(spotlight) */
|
1256
1262
|
onStopLocalSpotlight,
|
@@ -23613,7 +23619,11 @@ const COMPOSITE_ONLY_ICONS = {
|
|
23613
23619
|
/* @conditional-compile-remove(control-bar-button-injection) */
|
23614
23620
|
DefaultCustomButton: React.createElement(reactIcons.Circle20Regular, null),
|
23615
23621
|
/* @conditional-compile-remove(dtmf-dialer) */
|
23616
|
-
DtmfDialpadButton: React.createElement(reactIcons.Dialpad20Regular, null)
|
23622
|
+
DtmfDialpadButton: React.createElement(reactIcons.Dialpad20Regular, null),
|
23623
|
+
/* @conditional-compile-remove(spotlight) */
|
23624
|
+
PeoplePaneMoreButton: React.createElement(reactIcons.MoreHorizontal20Filled, null),
|
23625
|
+
/* @conditional-compile-remove(spotlight) */
|
23626
|
+
StopAllSpotlightMenuButton: React.createElement(reactIcons.VideoPersonStarOff20Filled, null)
|
23617
23627
|
};
|
23618
23628
|
/**
|
23619
23629
|
* The default set of icons that are available to used in the Composites.
|
@@ -23646,7 +23656,7 @@ const CallCompositeIcon = (props) => (React.createElement(react.FontIcon, Object
|
|
23646
23656
|
*/
|
23647
23657
|
const CallWithChatCompositeIcon = (props) => (React.createElement(react.FontIcon, Object.assign({}, props)));
|
23648
23658
|
|
23649
|
-
var call$k={cameraLabel:"Camera",noCamerasLabel:"No cameras found",cameraPermissionDenied:"Your browser is blocking access to your camera",cameraTurnedOff:"Your camera is turned off",chatButtonLabel:"Chat",close:"Close",complianceBannerNowOnlyRecording:"You are now only recording this meeting.",complianceBannerNowOnlyTranscription:"You are now only transcribing this meeting.",complianceBannerRecordingAndTranscriptionSaved:"Recording and transcription are being saved.",complianceBannerRecordingAndTranscriptionStarted:"Recording and transcription have started.",complianceBannerRecordingAndTranscriptionStopped:"Recording and transcription have stopped.",complianceBannerRecordingSaving:"Recording is being saved.",complianceBannerRecordingStarted:"Recording has started.",complianceBannerRecordingStopped:"Recording has stopped.",complianceBannerTranscriptionStarted:"Transcription has started.",complianceBannerTranscriptionConsent:"By joining, you are giving consent for this meeting to be transcribed.",complianceBannerTranscriptionSaving:"Transcription is being saved.",complianceBannerTranscriptionStopped:"Transcription has stopped.",configurationPageTitle:"Start a call",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied",defaultPlaceHolder:"Select an option",dismissSidePaneButtonLabel:"Close",videoEffectsPaneTitle:"Effects",videoEffectsPaneBackgroundSelectionTitle:"Background",configurationPageVideoEffectsButtonLabel:"Effects",unableToStartVideoEffect:"Unable to apply video effect.",blurBackgroundEffectButtonLabel:"Blur",blurBackgroundTooltip:"Blur Background",removeBackgroundEffectButtonLabel:"None",removeBackgroundTooltip:"Remove Background",cameraOffBackgroundEffectWarningText:"Your camera is off. Turn on camera to see video effect.",failedToJoinCallDueToNoNetworkMoreDetails:"Call was disconnected due to a network issue. Check your connection and join again.",failedToJoinCallDueToNoNetworkTitle:"Call disconnected",failedToJoinTeamsMeetingReasonAccessDeniedMoreDetails:"You were not granted entry in the call. If this was a mistake, re-join the call.",failedToJoinTeamsMeetingReasonAccessDeniedTitle:"Dismissed from lobby",learnMore:"Learn more",leavingCallTitle:"Leaving...",leftCallMoreDetails:"If this was a mistake, re-join the call.",leftCallTitle:"You left the call",lobbyScreenConnectingToCallTitle:"Joining call",lobbyScreenWaitingToBeAdmittedTitle:"Waiting to be admitted",microphonePermissionDenied:"Your browser is blocking access to your microphone",microphoneToggleInLobbyNotAllowed:"Cannot mute or unmute while in lobby.",mutedMessage:"You're muted",networkReconnectMoreDetails:"Looks like something went wrong. We're trying to get back into the call.",networkReconnectTitle:"Hold on",notInvitedToRoomDetails:"You are not able to join this room because you do not have an invite.",notInvitedToRoomTitle:"Not invited to room",peopleButtonLabel:"People",selectedPeopleButtonLabel:"People Button Selected",peoplePaneTitle:"People",peopleButtonTooltipOpen:"Show participants",peopleButtonTooltipClose:"Hide participants",peoplePaneSubTitle:"In this call {numberOfPeople}",privacyPolicy:"Privacy policy",rejoinCallButtonLabel:"Re-join call",removedFromCallMoreDetails:"Another participant removed you from the call.",removedFromCallTitle:"You were removed",removeMenuLabel:"Remove",startSpotlightParticipantListMenuLabel:"Spotlight for everyone",addSpotlightParticipantListMenuLabel:"Add spotlight",stopSpotlightParticipantListMenuLabel:"Stop spotlighting",stopSpotlightOnSelfParticipantListMenuLabel:"Exit spotlight",spotlightLimitReachedParticipantListMenuTitle:"Spotlight limit reached",returnToCallButtonAriaDescription:"Return to Call",returnToCallButtonAriaLabel:"Back",roomNotFoundDetails:"The room ID provided could not be found.",roomNotFoundTitle:"Room not found",roomNotValidDetails:"This room is not valid at this current time.",roomNotValidTitle:"Room not valid",inviteToRoomRemovedDetails:"Your invite to join this room was removed.",inviteToRoomRemovedTitle:"Invite to room removed",soundLabel:"Sound",noMicrophonesLabel:"No microphones found",noSpeakersLabel:"No speakers found",startCallButtonLabel:"Start call",openDialpadButtonLabel:"Dial phone number",peoplePaneAddPeopleButtonLabel:"Add People",dialpadStartCallButtonLabel:"Call",dialpadModalTitle:"Dial Phone Number",dialpadModalAriaLabel:"Dialpad",dialpadCloseModalButtonAriaLabel:"Close dialpad",moreButtonCallingLabel:"More",resumeCallButtonLabel:"Resume",resumingCallButtonLabel:"Resuming...",resumeCallButtonAriaLabel:"Resume call",resumingCallButtonAriaLabel:"Resume call",holdScreenLabel:"You're on hold",openDtmfDialpadLabel:"Show dialpad",dtmfDialpadPlaceholderText:"Enter number",outboundCallingNoticeString:"Calling...",participantJoinedNoticeString:"{displayName} joined",twoParticipantJoinedNoticeString:"{displayName1} and {displayName2} have joined",threeParticipantJoinedNoticeString:"{displayName1}, {displayName2} and {displayName3} have joined",participantLeftNoticeString:"{displayName} left",twoParticipantLeftNoticeString:"{displayName1} and {displayName2} have left",threeParticipantLeftNoticeString:"{displayName1}, {displayName2} and {displayName3} have left",unnamedParticipantString:"unnamed participant",manyUnnamedParticipantsJoined:"unnamed participant and {numOfParticipants} other participants joined",manyUnnamedParticipantsLeft:"unnamed participant and {numOfParticipants} other participants left",manyParticipantsJoined:"{displayName1}, {displayName2}, {displayName3} and {numOfParticipants} other participants joined",manyParticipantsLeft:"{displayName1}, {displayName2}, {displayName3} and {numOfParticipants} other participants left",liveCaptionsLabel:"Live captions",captionsSettingsLabel:"Caption settings",startCaptionsButtonOnLabel:"Turn on captions",startCaptionsButtonOffLabel:"Turn off captions",startCaptionsButtonTooltipOnContent:"Turn off captions",startCaptionsButtonTooltipOffContent:"Turn on captions",captionsSettingsModalTitle:"Captions Settings",captionsSettingsSpokenLanguageDropdownLabel:"Spoken language",captionsSettingsCaptionLanguageDropdownLabel:"Captions language",captionsSettingsSpokenLanguageDropdownInfoText:"Language that everyone on this call is speaking.",captionsSettingsCaptionLanguageDropdownInfoText:"Captions will appear in this langugage.",captionsSettingsConfirmButtonLabel:"Confirm",captionsSettingsCancelButtonLabel:"Cancel",captionsSettingsModalAriaLabel:"Captions Setting Modal",captionsSettingsCloseModalButtonAriaLabel:"Close Captions Setting",captionsBannerMoreButtonCallingLabel:"More",captionsBannerMoreButtonTooltip:"More options",dismissModalAriaLabel:"Local and remote picture and picture, press enter to return to call",callRejectedTitle:"The call could not be completed",callRejectedMoreDetails:"The person you are trying to reach is unavailable. Please try again later.",callTimeoutTitle:"The call could not be completed",callTimeoutDetails:"The person you are trying to reach is unavailable. Please try again later.",callTimeoutBotTitle:"The call could not be completed",callTimeoutBotDetails:"The service that you are trying to reach is unavailable. Please try again later.",dtmfDialerButtonLabel:"Dialpad",dtmfDialerButtonTooltipOn:"Show dialpad",dtmfDialerButtonTooltipOff:"Hide dialpad",dtmfDialerMoreButtonLabelOn:"Show dialpad",dtmfDialerMoreButtonLabelOff:"Hide dialpad",spokenLanguageStrings:{"ar-ae":"Arabic - U.A.E.","ar-sa":"Arabic - Saudi Arabia","da-dk":"Danish","de-de":"German - Germany","en-au":"English - Australia","en-ca":"English - Canada","en-gb":"English - United Kingdom","en-in":"English - India","en-nz":"English - New Zealand","en-us":"English - United States","es-es":"Spanish - Spain (Modern Sort)","es-mx":"Spanish - Mexico","fi-fi":"Finnish","fr-ca":"French - Canada","fr-fr":"French - France","hi-in":"Hindi","it-it":"Italian - Italy","ja-jp":"Japanese","ko-kr":"Korean","nb-no":"Norwegian (Bokmål)","nl-be":"Dutch - Belgium","nl-nl":"Dutch - Netherlands","pl-pl":"Polish","pt-br":"Portuguese - Brazil","ru-ru":"Russian","sv-se":"Swedish","zh-cn":"Chinese - People's Republic of China","zh-hk":"Chinese - Hong Kong SAR","cs-cz":"Czech","pt-pt":"Portuguese - Portugal","tr-tr":"Turkish","vi-vn":"Vietnamese","th-th":"Thai","he-il":"Hebrew","cy-gb":"Welsh","uk-ua":"Ukrainian","el-gr":"Greek","hu-hu":"Hungarian","ro-ro":"Romanian","sk-sk":"Slovak","zh-tw":"Chinese - Taiwan"},captionLanguageStrings:{ar:"Arabic",da:"Danish",de:"German",en:"English",es:"Spanish",fi:"Finnish","fr-ca":"French - Canada",fr:"French - France",hi:"Hindi",it:"Italian",ja:"Japanese",ko:"Korean",nb:"Norwegian (Bokmål)",nl:"Dutch",pl:"Polish",pt:"Portuguese - Brazil",ru:"Russian",sv:"Swedish","zh-Hans":"Chinese (Simplified)","zh-Hant":"Chinese (Traditional)",cs:"Czech","pt-pt":"Portuguese - Portugal",tr:"Turkish",vi:"Vietnamese",th:"Thai",he:"Hebrew",cy:"Welsh",uk:"Ukrainian",el:"Greek",hu:"Hungarian",ro:"Romanian",sk:"Slovak"},captionsBannerSpinnerText:"Starting captions...",transferPageTransferorText:"Transferring...",transferPageTransferTargetText:"Connecting...",transferPageUnknownTransferorDisplayName:"Unknown",transferPageUnknownTransferTargetDisplayName:"Unknown",transferPageNoticeString:"You are being transferred",participantCouldNotBeReachedTitle:"Target participant is currently not available",participantCouldNotBeReachedMoreDetails:"Please contact participant when they are available",permissionToReachTargetParticipantNotAllowedTitle:"Permission to reach target participant is not allowed",permissionToReachTargetParticipantNotAllowedMoreDetails:"Please check that the target participant is in the same tenant",unableToResolveTenantTitle:"Unable to resolve tenant id for the target participant",unableToResolveTenantMoreDetails:"Please check the participant id is entered correctly",participantIdIsMalformedTitle:"Participant id is not in the correct format",participantIdIsMalformedMoreDetails:"Please check that the participant id is in the correct format",moreButtonGalleryControlLabel:"View",moreButtonGalleryPositionToggleLabel:"Move gallery to top",moreButtonGallerySpeakerLayoutLabel:"Speaker",moreButtonGalleryFloatingLocalLayoutLabel:"Dynamic",moreButtonGalleryDefaultLayoutLabel:"Gallery view",moreButtonGalleryFocusedContentLayoutLabel:"Focus on content",moreButtonLargeGalleryDefaultLayoutLabel:"Large Gallery",capabilityChangedNotification:{turnVideoOn:{lostDueToMeetingOption:"Your camera has been disabled. You can no longer share video.",grantedDueToMeetingOption:"Your camera has been enabled. Turn it on if you'd like to share video."},unmuteMic:{lostDueToMeetingOption:"Your mic has been disabled. You can no longer unmute.",grantedDueToMeetingOption:"Your mic has been enabled. Unmute if you'd like to speak."},shareScreen:{lostDueToRoleChangeToAttendee:"Your role has been changed. Some actions, like sharing content, won't be available to you.",grantedDueToRoleChangeToPresenter:"You're a presenter. You can share content and facilitate the meeting."}},surveyTitle:"Help us improve",starSurveyHelperText:"How was the quality of the call?",starSurveyOneStarText:"The quality was bad.",starSurveyTwoStarText:"The quality was poor.",starSurveyThreeStarText:"The quality was good.",starSurveyFourStarText:"The quality was great.",starSurveyFiveStarText:"The quality was excellent.",surveyConfirmButtonLabel:"Send Feedback",starRatingAriaLabel:"Select {0} of {1} stars",surveySkipButtonLabel:"Skip",tagsSurveyQuestion:"What could have been better?",tagsSurveyTextFieldDefaultText:"Other, please specify",tagsSurveyHelperText:"Check any issues you experienced",surveyTextboxDefaultText:"Other, please specify",endOfSurveyText:"Thank you for your feedback!",surveyIssues:{overallRating:{callCannotJoin:"I could not join call",callCannotInvite:"I could not invite others into the call",hadToRejoin:"I had to rejoin the call",callEndedUnexpectedly:"Call ended for me unexpectedly",otherIssues:"I was having other issues with the call"},audioRating:{noLocalAudio:"The other side could not hear any sound",noRemoteAudio:"I could not hear any sound",echo:"I heard echos on the call",audioNoise:"I heard noise on the call",lowVolume:"Volume was low",audioStoppedUnexpectedly:"Audio stopped unexpectedly",distortedSpeech:"Audio was distorted",audioInterruption:"Audio was interrupted",otherIssues:"I was having other audio issues in this call"},videoRating:{noVideoReceived:"I could not see any video",noVideoSent:"Others could not see me",lowQuality:"Video quality was low",freezes:"Video frozen",stoppedUnexpectedly:"Video stopped unexpectedly",darkVideoReceived:"I can only see dark screens when others turn on their camera",audioVideoOutOfSync:"Audio and Video was out of sync",otherIssues:"I was having other video issues in this call"},screenshareRating:{noContentLocal:"Other people could not see my screenshare",noContentRemote:"I could not see other people's screenshare",cannotPresent:"I could not present my screen",lowQuality:"Screen share quality was low",freezes:"Screen share frozen",stoppedUnexpectedly:"Screen share stopped unexpectedly",largeDelay:"Screen share has a large delay",otherIssues:"I was having other screen share issues in this call"}},SurveyIssuesHeadingStrings:{overallRating:"Overall",audioRating:"Audio",videoRating:"Video",screenshareRating:"Presenting"},spotlightPrompt:{startSpotlightHeading:"Spotlight for everyone?",startSpotlightText:"You'll highlight this video for everyone in the meeting.",startSpotlightOnSelfText:"You'll highlight your video for everyone in the meeting.",startSpotlightConfirmButtonLabel:"Spotlight for everyone",startSpotlightCancelButtonLabel:"Cancel",stopSpotlightHeading:"Stop spotlighting this video?",stopSpotlightOnSelfHeading:"Exit spotlight?",stopSpotlightText:"This video will no longer be highlighted for everyone in the meeting.",stopSpotlightOnSelfText:"Your video will no longer be highlighted for everyone in the meeting.",stopSpotlightConfirmButtonLabel:"Stop spotlighting",stopSpotlightOnSelfConfirmButtonLabel:"Exit spotlight",stopSpotlightCancelButtonLabel:"Cancel"},exitSpotlightButtonLabel:"Exit spotlight",exitSpotlightButtonTooltip:"Exit spotlight"};var chat$k={chatListHeader:"In this chat",uploadFile:"Upload File"};var callWithChat$k={chatButtonLabel:"Chat",chatButtonNewMessageNotificationLabel:"New Message",chatButtonTooltipClosedWithMessageCount:"Show chat ({unreadMessagesCount} unread)",chatButtonTooltipClose:"Hide chat",chatButtonTooltipOpen:"Show chat",chatPaneTitle:"Chat",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied",dismissSidePaneButtonLabel:"Close",moreDrawerAudioDeviceMenuTitle:"Audio Device",moreDrawerButtonLabel:"More options",moreDrawerButtonTooltip:"More options",moreDrawerMicrophoneMenuTitle:"Microphone",moreDrawerSpeakerMenuTitle:"Speaker",moreDrawerCaptionsMenuTitle:"Live captions",moreDrawerSpokenLanguageMenuTitle:"Spoken language",moreDrawerCaptionLanguageMenuTitle:"Caption language",moreDrawerGalleryOptionsMenuTitle:"Gallery options",peopleButtonLabel:"People",selectedPeopleButtonLabel:"People Button Selected",peopleButtonTooltipOpen:"Show participants",peopleButtonTooltipClose:"Hide participants",peoplePaneSubTitle:"In this call",peoplePaneTitle:"People",pictureInPictureTileAriaLabel:"Video Feeds. Click to return to call screen.",removeMenuLabel:"Remove",openDialpadButtonLabel:"Dial phone number",returnToCallButtonAriaDescription:"Return to Call",returnToCallButtonAriaLabel:"Back",peoplePaneAddPeopleButtonLabel:"Add People",dialpadStartCallButtonLabel:"Call",dialpadModalTitle:"Dial Phone Number",dialpadModalAriaLabel:"Dialpad",dialpadCloseModalButtonAriaLabel:"Close dialpad",openDtmfDialpadLabel:"Show dialpad",dtmfDialpadPlaceholderText:"Enter number"};var en_US = {call:call$k,chat:chat$k,callWithChat:callWithChat$k};
|
23659
|
+
var call$k={cameraLabel:"Camera",noCamerasLabel:"No cameras found",cameraPermissionDenied:"Your browser is blocking access to your camera",cameraTurnedOff:"Your camera is turned off",chatButtonLabel:"Chat",close:"Close",complianceBannerNowOnlyRecording:"You are now only recording this meeting.",complianceBannerNowOnlyTranscription:"You are now only transcribing this meeting.",complianceBannerRecordingAndTranscriptionSaved:"Recording and transcription are being saved.",complianceBannerRecordingAndTranscriptionStarted:"Recording and transcription have started.",complianceBannerRecordingAndTranscriptionStopped:"Recording and transcription have stopped.",complianceBannerRecordingSaving:"Recording is being saved.",complianceBannerRecordingStarted:"Recording has started.",complianceBannerRecordingStopped:"Recording has stopped.",complianceBannerTranscriptionStarted:"Transcription has started.",complianceBannerTranscriptionConsent:"By joining, you are giving consent for this meeting to be transcribed.",complianceBannerTranscriptionSaving:"Transcription is being saved.",complianceBannerTranscriptionStopped:"Transcription has stopped.",configurationPageTitle:"Start a call",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied",defaultPlaceHolder:"Select an option",dismissSidePaneButtonLabel:"Close",videoEffectsPaneTitle:"Effects",videoEffectsPaneBackgroundSelectionTitle:"Background",configurationPageVideoEffectsButtonLabel:"Effects",unableToStartVideoEffect:"Unable to apply video effect.",blurBackgroundEffectButtonLabel:"Blur",blurBackgroundTooltip:"Blur Background",removeBackgroundEffectButtonLabel:"None",removeBackgroundTooltip:"Remove Background",cameraOffBackgroundEffectWarningText:"Your camera is off. Turn on camera to see video effect.",failedToJoinCallDueToNoNetworkMoreDetails:"Call was disconnected due to a network issue. Check your connection and join again.",failedToJoinCallDueToNoNetworkTitle:"Call disconnected",failedToJoinTeamsMeetingReasonAccessDeniedMoreDetails:"You were not granted entry in the call. If this was a mistake, re-join the call.",failedToJoinTeamsMeetingReasonAccessDeniedTitle:"Dismissed from lobby",learnMore:"Learn more",leavingCallTitle:"Leaving...",leftCallMoreDetails:"If this was a mistake, re-join the call.",leftCallTitle:"You left the call",lobbyScreenConnectingToCallTitle:"Joining call",lobbyScreenWaitingToBeAdmittedTitle:"Waiting to be admitted",microphonePermissionDenied:"Your browser is blocking access to your microphone",microphoneToggleInLobbyNotAllowed:"Cannot mute or unmute while in lobby.",mutedMessage:"You're muted",networkReconnectMoreDetails:"Looks like something went wrong. We're trying to get back into the call.",networkReconnectTitle:"Hold on",notInvitedToRoomDetails:"You are not able to join this room because you do not have an invite.",notInvitedToRoomTitle:"Not invited to room",peopleButtonLabel:"People",selectedPeopleButtonLabel:"People Button Selected",peoplePaneTitle:"People",peoplePaneMoreButtonAriaLabel:"More",peopleButtonTooltipOpen:"Show participants",peopleButtonTooltipClose:"Hide participants",peoplePaneSubTitle:"In this call {numberOfPeople}",privacyPolicy:"Privacy policy",rejoinCallButtonLabel:"Re-join call",removedFromCallMoreDetails:"Another participant removed you from the call.",removedFromCallTitle:"You were removed",removeMenuLabel:"Remove",startSpotlightParticipantListMenuLabel:"Spotlight for everyone",addSpotlightParticipantListMenuLabel:"Add spotlight",stopSpotlightParticipantListMenuLabel:"Stop spotlighting",stopSpotlightOnSelfParticipantListMenuLabel:"Exit spotlight",spotlightLimitReachedParticipantListMenuTitle:"Spotlight limit reached",stopAllSpotlightMenuLabel:"Stop all spotlights",returnToCallButtonAriaDescription:"Return to Call",returnToCallButtonAriaLabel:"Back",roomNotFoundDetails:"The room ID provided could not be found.",roomNotFoundTitle:"Room not found",roomNotValidDetails:"This room is not valid at this current time.",roomNotValidTitle:"Room not valid",inviteToRoomRemovedDetails:"Your invite to join this room was removed.",inviteToRoomRemovedTitle:"Invite to room removed",soundLabel:"Sound",noMicrophonesLabel:"No microphones found",noSpeakersLabel:"No speakers found",startCallButtonLabel:"Start call",openDialpadButtonLabel:"Dial phone number",peoplePaneAddPeopleButtonLabel:"Add People",dialpadStartCallButtonLabel:"Call",dialpadModalTitle:"Dial Phone Number",dialpadModalAriaLabel:"Dialpad",dialpadCloseModalButtonAriaLabel:"Close dialpad",moreButtonCallingLabel:"More",resumeCallButtonLabel:"Resume",resumingCallButtonLabel:"Resuming...",resumeCallButtonAriaLabel:"Resume call",resumingCallButtonAriaLabel:"Resume call",holdScreenLabel:"You're on hold",openDtmfDialpadLabel:"Show dialpad",dtmfDialpadPlaceholderText:"Enter number",outboundCallingNoticeString:"Calling...",participantJoinedNoticeString:"{displayName} joined",twoParticipantJoinedNoticeString:"{displayName1} and {displayName2} have joined",threeParticipantJoinedNoticeString:"{displayName1}, {displayName2} and {displayName3} have joined",participantLeftNoticeString:"{displayName} left",twoParticipantLeftNoticeString:"{displayName1} and {displayName2} have left",threeParticipantLeftNoticeString:"{displayName1}, {displayName2} and {displayName3} have left",unnamedParticipantString:"unnamed participant",manyUnnamedParticipantsJoined:"unnamed participant and {numOfParticipants} other participants joined",manyUnnamedParticipantsLeft:"unnamed participant and {numOfParticipants} other participants left",manyParticipantsJoined:"{displayName1}, {displayName2}, {displayName3} and {numOfParticipants} other participants joined",manyParticipantsLeft:"{displayName1}, {displayName2}, {displayName3} and {numOfParticipants} other participants left",liveCaptionsLabel:"Live captions",captionsSettingsLabel:"Caption settings",startCaptionsButtonOnLabel:"Turn on captions",startCaptionsButtonOffLabel:"Turn off captions",startCaptionsButtonTooltipOnContent:"Turn off captions",startCaptionsButtonTooltipOffContent:"Turn on captions",captionsSettingsModalTitle:"Captions Settings",captionsSettingsSpokenLanguageDropdownLabel:"Spoken language",captionsSettingsCaptionLanguageDropdownLabel:"Captions language",captionsSettingsSpokenLanguageDropdownInfoText:"Language that everyone on this call is speaking.",captionsSettingsCaptionLanguageDropdownInfoText:"Captions will appear in this langugage.",captionsSettingsConfirmButtonLabel:"Confirm",captionsSettingsCancelButtonLabel:"Cancel",captionsSettingsModalAriaLabel:"Captions Setting Modal",captionsSettingsCloseModalButtonAriaLabel:"Close Captions Setting",captionsBannerMoreButtonCallingLabel:"More",captionsBannerMoreButtonTooltip:"More options",dismissModalAriaLabel:"Local and remote picture and picture, press enter to return to call",callRejectedTitle:"The call could not be completed",callRejectedMoreDetails:"The person you are trying to reach is unavailable. Please try again later.",callTimeoutTitle:"The call could not be completed",callTimeoutDetails:"The person you are trying to reach is unavailable. Please try again later.",callTimeoutBotTitle:"The call could not be completed",callTimeoutBotDetails:"The service that you are trying to reach is unavailable. Please try again later.",dtmfDialerButtonLabel:"Dialpad",dtmfDialerButtonTooltipOn:"Show dialpad",dtmfDialerButtonTooltipOff:"Hide dialpad",dtmfDialerMoreButtonLabelOn:"Show dialpad",dtmfDialerMoreButtonLabelOff:"Hide dialpad",spokenLanguageStrings:{"ar-ae":"Arabic - U.A.E.","ar-sa":"Arabic - Saudi Arabia","da-dk":"Danish","de-de":"German - Germany","en-au":"English - Australia","en-ca":"English - Canada","en-gb":"English - United Kingdom","en-in":"English - India","en-nz":"English - New Zealand","en-us":"English - United States","es-es":"Spanish - Spain (Modern Sort)","es-mx":"Spanish - Mexico","fi-fi":"Finnish","fr-ca":"French - Canada","fr-fr":"French - France","hi-in":"Hindi","it-it":"Italian - Italy","ja-jp":"Japanese","ko-kr":"Korean","nb-no":"Norwegian (Bokmål)","nl-be":"Dutch - Belgium","nl-nl":"Dutch - Netherlands","pl-pl":"Polish","pt-br":"Portuguese - Brazil","ru-ru":"Russian","sv-se":"Swedish","zh-cn":"Chinese - People's Republic of China","zh-hk":"Chinese - Hong Kong SAR","cs-cz":"Czech","pt-pt":"Portuguese - Portugal","tr-tr":"Turkish","vi-vn":"Vietnamese","th-th":"Thai","he-il":"Hebrew","cy-gb":"Welsh","uk-ua":"Ukrainian","el-gr":"Greek","hu-hu":"Hungarian","ro-ro":"Romanian","sk-sk":"Slovak","zh-tw":"Chinese - Taiwan"},captionLanguageStrings:{ar:"Arabic",da:"Danish",de:"German",en:"English",es:"Spanish",fi:"Finnish","fr-ca":"French - Canada",fr:"French - France",hi:"Hindi",it:"Italian",ja:"Japanese",ko:"Korean",nb:"Norwegian (Bokmål)",nl:"Dutch",pl:"Polish",pt:"Portuguese - Brazil",ru:"Russian",sv:"Swedish","zh-Hans":"Chinese (Simplified)","zh-Hant":"Chinese (Traditional)",cs:"Czech","pt-pt":"Portuguese - Portugal",tr:"Turkish",vi:"Vietnamese",th:"Thai",he:"Hebrew",cy:"Welsh",uk:"Ukrainian",el:"Greek",hu:"Hungarian",ro:"Romanian",sk:"Slovak"},captionsBannerSpinnerText:"Starting captions...",transferPageTransferorText:"Transferring...",transferPageTransferTargetText:"Connecting...",transferPageUnknownTransferorDisplayName:"Unknown",transferPageUnknownTransferTargetDisplayName:"Unknown",transferPageNoticeString:"You are being transferred",participantCouldNotBeReachedTitle:"Target participant is currently not available",participantCouldNotBeReachedMoreDetails:"Please contact participant when they are available",permissionToReachTargetParticipantNotAllowedTitle:"Permission to reach target participant is not allowed",permissionToReachTargetParticipantNotAllowedMoreDetails:"Please check that the target participant is in the same tenant",unableToResolveTenantTitle:"Unable to resolve tenant id for the target participant",unableToResolveTenantMoreDetails:"Please check the participant id is entered correctly",participantIdIsMalformedTitle:"Participant id is not in the correct format",participantIdIsMalformedMoreDetails:"Please check that the participant id is in the correct format",moreButtonGalleryControlLabel:"View",moreButtonGalleryPositionToggleLabel:"Move gallery to top",moreButtonGallerySpeakerLayoutLabel:"Speaker",moreButtonGalleryFloatingLocalLayoutLabel:"Dynamic",moreButtonGalleryDefaultLayoutLabel:"Gallery view",moreButtonGalleryFocusedContentLayoutLabel:"Focus on content",moreButtonLargeGalleryDefaultLayoutLabel:"Large Gallery",capabilityChangedNotification:{turnVideoOn:{lostDueToMeetingOption:"Your camera has been disabled. You can no longer share video.",grantedDueToMeetingOption:"Your camera has been enabled. Turn it on if you'd like to share video."},unmuteMic:{lostDueToMeetingOption:"Your mic has been disabled. You can no longer unmute.",grantedDueToMeetingOption:"Your mic has been enabled. Unmute if you'd like to speak."},shareScreen:{lostDueToRoleChangeToAttendee:"Your role has been changed. Some actions, like sharing content, won't be available to you.",grantedDueToRoleChangeToPresenter:"You're a presenter. You can share content and facilitate the meeting."}},surveyTitle:"Help us improve",starSurveyHelperText:"How was the quality of the call?",starSurveyOneStarText:"The quality was bad.",starSurveyTwoStarText:"The quality was poor.",starSurveyThreeStarText:"The quality was good.",starSurveyFourStarText:"The quality was great.",starSurveyFiveStarText:"The quality was excellent.",surveyConfirmButtonLabel:"Send Feedback",starRatingAriaLabel:"Select {0} of {1} stars",surveySkipButtonLabel:"Skip",tagsSurveyQuestion:"What could have been better?",tagsSurveyTextFieldDefaultText:"Other, please specify",tagsSurveyHelperText:"Check any issues you experienced",surveyTextboxDefaultText:"Other, please specify",endOfSurveyText:"Thank you for your feedback!",surveyIssues:{overallRating:{callCannotJoin:"I could not join call",callCannotInvite:"I could not invite others into the call",hadToRejoin:"I had to rejoin the call",callEndedUnexpectedly:"Call ended for me unexpectedly",otherIssues:"I was having other issues with the call"},audioRating:{noLocalAudio:"The other side could not hear any sound",noRemoteAudio:"I could not hear any sound",echo:"I heard echos on the call",audioNoise:"I heard noise on the call",lowVolume:"Volume was low",audioStoppedUnexpectedly:"Audio stopped unexpectedly",distortedSpeech:"Audio was distorted",audioInterruption:"Audio was interrupted",otherIssues:"I was having other audio issues in this call"},videoRating:{noVideoReceived:"I could not see any video",noVideoSent:"Others could not see me",lowQuality:"Video quality was low",freezes:"Video frozen",stoppedUnexpectedly:"Video stopped unexpectedly",darkVideoReceived:"I can only see dark screens when others turn on their camera",audioVideoOutOfSync:"Audio and Video was out of sync",otherIssues:"I was having other video issues in this call"},screenshareRating:{noContentLocal:"Other people could not see my screenshare",noContentRemote:"I could not see other people's screenshare",cannotPresent:"I could not present my screen",lowQuality:"Screen share quality was low",freezes:"Screen share frozen",stoppedUnexpectedly:"Screen share stopped unexpectedly",largeDelay:"Screen share has a large delay",otherIssues:"I was having other screen share issues in this call"}},SurveyIssuesHeadingStrings:{overallRating:"Overall",audioRating:"Audio",videoRating:"Video",screenshareRating:"Presenting"},spotlightPrompt:{startSpotlightHeading:"Spotlight for everyone?",startSpotlightText:"You'll highlight this video for everyone in the meeting.",startSpotlightOnSelfText:"You'll highlight your video for everyone in the meeting.",startSpotlightConfirmButtonLabel:"Spotlight for everyone",startSpotlightCancelButtonLabel:"Cancel",stopSpotlightHeading:"Stop spotlighting this video?",stopSpotlightOnSelfHeading:"Exit spotlight?",stopSpotlightText:"This video will no longer be highlighted for everyone in the meeting.",stopSpotlightOnSelfText:"Your video will no longer be highlighted for everyone in the meeting.",stopSpotlightConfirmButtonLabel:"Stop spotlighting",stopSpotlightOnSelfConfirmButtonLabel:"Exit spotlight",stopSpotlightCancelButtonLabel:"Cancel"},exitSpotlightButtonLabel:"Exit spotlight",exitSpotlightButtonTooltip:"Exit spotlight"};var chat$k={chatListHeader:"In this chat",uploadFile:"Upload File"};var callWithChat$k={chatButtonLabel:"Chat",chatButtonNewMessageNotificationLabel:"New Message",chatButtonTooltipClosedWithMessageCount:"Show chat ({unreadMessagesCount} unread)",chatButtonTooltipClose:"Hide chat",chatButtonTooltipOpen:"Show chat",chatPaneTitle:"Chat",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied",dismissSidePaneButtonLabel:"Close",moreDrawerAudioDeviceMenuTitle:"Audio Device",moreDrawerButtonLabel:"More options",moreDrawerButtonTooltip:"More options",moreDrawerMicrophoneMenuTitle:"Microphone",moreDrawerSpeakerMenuTitle:"Speaker",moreDrawerCaptionsMenuTitle:"Live captions",moreDrawerSpokenLanguageMenuTitle:"Spoken language",moreDrawerCaptionLanguageMenuTitle:"Caption language",moreDrawerGalleryOptionsMenuTitle:"Gallery options",peopleButtonLabel:"People",selectedPeopleButtonLabel:"People Button Selected",peopleButtonTooltipOpen:"Show participants",peopleButtonTooltipClose:"Hide participants",peoplePaneSubTitle:"In this call",peoplePaneTitle:"People",pictureInPictureTileAriaLabel:"Video Feeds. Click to return to call screen.",removeMenuLabel:"Remove",openDialpadButtonLabel:"Dial phone number",returnToCallButtonAriaDescription:"Return to Call",returnToCallButtonAriaLabel:"Back",peoplePaneAddPeopleButtonLabel:"Add People",dialpadStartCallButtonLabel:"Call",dialpadModalTitle:"Dial Phone Number",dialpadModalAriaLabel:"Dialpad",dialpadCloseModalButtonAriaLabel:"Close dialpad",openDtmfDialpadLabel:"Show dialpad",dtmfDialpadPlaceholderText:"Enter number"};var en_US = {call:call$k,chat:chat$k,callWithChat:callWithChat$k};
|
23650
23660
|
|
23651
23661
|
// Copyright (c) Microsoft Corporation.
|
23652
23662
|
// Licensed under the MIT License.
|
@@ -26139,6 +26149,10 @@ const createCompositeHandlers = memoizeOne((adapter) => {
|
|
26139
26149
|
yield adapter.stopSpotlight(userIds);
|
26140
26150
|
}),
|
26141
26151
|
/* @conditional-compile-remove(spotlight) */
|
26152
|
+
onStopAllSpotlight: () => __awaiter$j(void 0, void 0, void 0, function* () {
|
26153
|
+
yield adapter.stopAllSpotlight();
|
26154
|
+
}),
|
26155
|
+
/* @conditional-compile-remove(spotlight) */
|
26142
26156
|
onStartLocalSpotlight: () => __awaiter$j(void 0, void 0, void 0, function* () {
|
26143
26157
|
yield adapter.startSpotlight();
|
26144
26158
|
}),
|
@@ -27875,7 +27889,7 @@ const DtmfDialpadButton = (props) => {
|
|
27875
27889
|
* @private
|
27876
27890
|
*/
|
27877
27891
|
const ExitSpotlightButton = (props) => {
|
27878
|
-
return (React.createElement(ControlBarButton, Object.assign({ "data-ui-id": 'call-composite-exit-spotlight-button', labelKey: 'exitSpotlightButtonLabelKey', showLabel: props.displayType !== 'compact', onRenderIcon: () => React.createElement(_HighContrastAwareIcon, { iconName: '
|
27892
|
+
return (React.createElement(ControlBarButton, Object.assign({ "data-ui-id": 'call-composite-exit-spotlight-button', labelKey: 'exitSpotlightButtonLabelKey', showLabel: props.displayType !== 'compact', onRenderIcon: () => React.createElement(_HighContrastAwareIcon, { iconName: 'ControlButtonExitSpotlight' }), onClick: props.onClick }, props)));
|
27879
27893
|
};
|
27880
27894
|
|
27881
27895
|
// Copyright (c) Microsoft Corporation.
|
@@ -28814,7 +28828,14 @@ const mobilePaneControlBarStyle = { root: { height: '3rem' } };
|
|
28814
28828
|
* @private
|
28815
28829
|
*/
|
28816
28830
|
const mobilePaneBackButtonStyles = {
|
28817
|
-
root: {
|
28831
|
+
root: {
|
28832
|
+
border: 'none',
|
28833
|
+
minWidth: '2.5rem',
|
28834
|
+
maxWidth: '2.875rem',
|
28835
|
+
height: '100%',
|
28836
|
+
background: 'none',
|
28837
|
+
padding: '0 1rem'
|
28838
|
+
},
|
28818
28839
|
rootChecked: { background: 'none' },
|
28819
28840
|
rootCheckedHovered: { background: 'none' }
|
28820
28841
|
};
|
@@ -28945,7 +28966,11 @@ const PeopleAndChatHeader = (props) => {
|
|
28945
28966
|
React.createElement(react.Stack, { horizontal: true, styles: availableSpaceStyles },
|
28946
28967
|
React.createElement(react.Stack.Item, { grow: true }, onChatButtonClicked && (React.createElement(react.DefaultButton, { onClick: onChatButtonClicked, styles: mobilePaneButtonStylesThemed, checked: activeTab === 'chat', "aria-selected": activeTab === 'chat', role: 'tab', disabled: props.disableChatButton }, strings.chatButtonLabel))),
|
28947
28968
|
React.createElement(react.Stack.Item, { grow: true }, onPeopleButtonClicked && (React.createElement(react.DefaultButton, { onClick: onPeopleButtonClicked, styles: mobilePaneButtonStylesThemed, checked: activeTab === 'people', "aria-selected": activeTab === 'people', role: 'tab', disabled: props.disablePeopleButton }, strings.peopleButtonLabel)))))),
|
28948
|
-
React.createElement(react.DefaultButton, {
|
28969
|
+
props.onHeaderMenuClick ? (React.createElement(react.DefaultButton, { ariaLabel: strings.peoplePaneMoreButtonAriaLabel, styles: react.concatStyleSets(mobilePaneBackButtonStyles, {
|
28970
|
+
icon: { display: 'flex', alignItems: 'center' }
|
28971
|
+
}), iconProps: { iconName: 'PeoplePaneMoreButton' }, onClick: props.onHeaderMenuClick })) : (
|
28972
|
+
/* Hidden icon to take the same space as the actual back button on the left. */
|
28973
|
+
React.createElement(react.DefaultButton, { styles: mobilePaneHiddenIconStyles, onRenderIcon: () => React.createElement(CallWithChatCompositeIcon, { iconName: "ChevronLeft" }) }))));
|
28949
28974
|
};
|
28950
28975
|
|
28951
28976
|
// Copyright (c) Microsoft Corporation.
|
@@ -28978,13 +29003,14 @@ const SidePane = (props) => {
|
|
28978
29003
|
var _a;
|
28979
29004
|
return (React.createElement(PeopleAndChatHeader, { onClose: overrideSidePaneId === 'chat' ? (_a = props.onChatButtonClicked) !== null && _a !== void 0 ? _a : noop : closePane, activeTab: (sidePaneRenderer === null || sidePaneRenderer === void 0 ? void 0 : sidePaneRenderer.id) === 'people' ? 'people' : 'chat',
|
28980
29005
|
// legacy arguments to be removed in breaking change:
|
28981
|
-
disablePeopleButton: props.disablePeopleButton, disableChatButton: props.disableChatButton, onPeopleButtonClicked: (sidePaneRenderer === null || sidePaneRenderer === void 0 ? void 0 : sidePaneRenderer.id) === 'people' ? noop : props.onPeopleButtonClicked, onChatButtonClicked: overrideSidePaneId === 'chat' ? noop : props.onChatButtonClicked }));
|
29006
|
+
disablePeopleButton: props.disablePeopleButton, disableChatButton: props.disableChatButton, onPeopleButtonClicked: (sidePaneRenderer === null || sidePaneRenderer === void 0 ? void 0 : sidePaneRenderer.id) === 'people' ? noop : props.onPeopleButtonClicked, onChatButtonClicked: overrideSidePaneId === 'chat' ? noop : props.onChatButtonClicked, onHeaderMenuClick: props.onHeaderMenuClick }));
|
28982
29007
|
}, [
|
28983
29008
|
overrideSidePaneId,
|
28984
29009
|
props.onChatButtonClicked,
|
28985
29010
|
props.onPeopleButtonClicked,
|
28986
29011
|
props.disablePeopleButton,
|
28987
29012
|
props.disableChatButton,
|
29013
|
+
props.onHeaderMenuClick,
|
28988
29014
|
sidePaneRenderer === null || sidePaneRenderer === void 0 ? void 0 : sidePaneRenderer.id,
|
28989
29015
|
closePane
|
28990
29016
|
]);
|
@@ -29019,6 +29045,7 @@ const EmptyElement = () => React.createElement(React.Fragment, null);
|
|
29019
29045
|
* @private
|
29020
29046
|
*/
|
29021
29047
|
const SidePaneHeader = (props) => {
|
29048
|
+
var _a;
|
29022
29049
|
const theme = useTheme();
|
29023
29050
|
const sidePaneCloseButtonStyles = React.useMemo(() => ({
|
29024
29051
|
root: {
|
@@ -29035,7 +29062,11 @@ const SidePaneHeader = (props) => {
|
|
29035
29062
|
return React.createElement(SidePaneMobileHeader, Object.assign({}, props));
|
29036
29063
|
}
|
29037
29064
|
return (React.createElement(react.Stack, { horizontal: true, horizontalAlign: "space-between", styles: sidePaneHeaderContainerStyles, verticalAlign: "center" },
|
29038
|
-
React.createElement(react.Stack.Item
|
29065
|
+
React.createElement(react.Stack.Item /* @conditional-compile-remove(spotlight) */, { grow: true, role: "heading", styles: sidePaneHeaderStyles }, props.headingText),
|
29066
|
+
/* @conditional-compile-remove(spotlight) */ ((_a = props.menuProps) === null || _a === void 0 ? void 0 : _a.items) && props.menuProps.items.length > 0 && (React.createElement(react.Stack.Item, null,
|
29067
|
+
React.createElement(react.CommandBarButton, { ariaLabel: props.moreSidePaneButtonAriaLabel, styles: react.concatStyleSets(sidePaneCloseButtonStyles, {
|
29068
|
+
icon: { display: 'flex', alignItems: 'center' }
|
29069
|
+
}), iconProps: { iconName: 'PeoplePaneMoreButton' }, menuProps: props.menuProps, onRenderMenuIcon: () => null }))),
|
29039
29070
|
React.createElement(react.Stack.Item, null,
|
29040
29071
|
React.createElement(react.CommandBarButton, { ariaLabel: props.dismissSidePaneButtonAriaLabel, styles: sidePaneCloseButtonStyles, iconProps: { iconName: 'cancel' }, onClick: props.onClose }))));
|
29041
29072
|
};
|
@@ -29528,6 +29559,8 @@ const usePeoplePane = (props) => {
|
|
29528
29559
|
/* @conditional-compile-remove(spotlight) */
|
29529
29560
|
onStopRemoteSpotlight,
|
29530
29561
|
/* @conditional-compile-remove(spotlight) */
|
29562
|
+
onStopAllSpotlight,
|
29563
|
+
/* @conditional-compile-remove(spotlight) */
|
29531
29564
|
maxParticipantsToSpotlight } = props;
|
29532
29565
|
const closePane = React.useCallback(() => {
|
29533
29566
|
var _a;
|
@@ -29535,7 +29568,29 @@ const usePeoplePane = (props) => {
|
|
29535
29568
|
(_a = peopleButtonRef === null || peopleButtonRef === void 0 ? void 0 : peopleButtonRef.current) === null || _a === void 0 ? void 0 : _a.focus();
|
29536
29569
|
}, [peopleButtonRef, updateSidePaneRenderer]);
|
29537
29570
|
const localeStrings = useLocale().strings.call;
|
29538
|
-
|
29571
|
+
/* @conditional-compile-remove(spotlight) */
|
29572
|
+
const sidePaneHeaderMenuProps = React.useMemo(() => {
|
29573
|
+
const menuItems = [];
|
29574
|
+
if (onStopAllSpotlight && spotlightedParticipantUserIds && spotlightedParticipantUserIds.length > 0) {
|
29575
|
+
menuItems.push({
|
29576
|
+
key: 'stopAllSpotlightKey',
|
29577
|
+
text: localeStrings.stopAllSpotlightMenuLabel,
|
29578
|
+
iconProps: { iconName: 'StopAllSpotlightMenuButton', styles: { root: { lineHeight: 0 } } },
|
29579
|
+
onClick: () => {
|
29580
|
+
onStopAllSpotlight();
|
29581
|
+
},
|
29582
|
+
ariaLabel: localeStrings.stopAllSpotlightMenuLabel
|
29583
|
+
});
|
29584
|
+
}
|
29585
|
+
return {
|
29586
|
+
items: menuItems
|
29587
|
+
};
|
29588
|
+
}, [onStopAllSpotlight, spotlightedParticipantUserIds, localeStrings.stopAllSpotlightMenuLabel]);
|
29589
|
+
const onRenderHeader = React.useCallback(() => (React.createElement(SidePaneHeader, { onClose: closePane, headingText: localeStrings.peoplePaneTitle, dismissSidePaneButtonAriaLabel: localeStrings.dismissSidePaneButtonLabel, mobileView: mobileView !== null && mobileView !== void 0 ? mobileView : false,
|
29590
|
+
/* @conditional-compile-remove(spotlight) */
|
29591
|
+
moreSidePaneButtonAriaLabel: localeStrings.peoplePaneMoreButtonAriaLabel,
|
29592
|
+
/* @conditional-compile-remove(spotlight) */
|
29593
|
+
menuProps: sidePaneHeaderMenuProps })), [mobileView, closePane, localeStrings, /* @conditional-compile-remove(spotlight) */ sidePaneHeaderMenuProps]);
|
29539
29594
|
/* @conditional-compile-remove(spotlight) */
|
29540
29595
|
const onFetchParticipantMenuItemsForCallComposite = React.useCallback((participantId, myUserId, defaultMenuItems) => {
|
29541
29596
|
const _defaultMenuItems = defaultMenuItems !== null && defaultMenuItems !== void 0 ? defaultMenuItems : [];
|
@@ -30455,7 +30510,7 @@ const getStopRemoteSpotlightWithPromptCallback = (onStopSpotlight, setIsPromptOp
|
|
30455
30510
|
* @private
|
30456
30511
|
*/
|
30457
30512
|
const CallArrangement = (props) => {
|
30458
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
30513
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
30459
30514
|
const containerClassName = React.useMemo(() => {
|
30460
30515
|
return props.mobileView ? containerStyleMobile : containerStyleDesktop;
|
30461
30516
|
}, [props.mobileView]);
|
@@ -30504,21 +30559,31 @@ const CallArrangement = (props) => {
|
|
30504
30559
|
const { onStartLocalSpotlightWithPrompt, onStopLocalSpotlightWithPrompt } = useLocalSpotlightCallbacksWithPrompt(onStartLocalSpotlight, onStopLocalSpotlight, setIsPromptOpen, setPromptProps);
|
30505
30560
|
/* @conditional-compile-remove(spotlight) */
|
30506
30561
|
const { onStartRemoteSpotlightWithPrompt, onStopRemoteSpotlightWithPrompt } = useRemoteSpotlightCallbacksWithPrompt(onStartRemoteSpotlight, onStopRemoteSpotlight, setIsPromptOpen, setPromptProps);
|
30507
|
-
|
30508
|
-
|
30509
|
-
|
30510
|
-
|
30511
|
-
|
30512
|
-
|
30513
|
-
? undefined
|
30514
|
-
: onStopLocalSpotlightWithPrompt,
|
30515
|
-
|
30516
|
-
? undefined
|
30517
|
-
:
|
30518
|
-
|
30519
|
-
|
30520
|
-
|
30521
|
-
/* @conditional-compile-remove(spotlight) */
|
30562
|
+
/* @conditional-compile-remove(spotlight) */
|
30563
|
+
const canSpotlight = (_c = (_b = adapter.getState().call) === null || _b === void 0 ? void 0 : _b.capabilitiesFeature) === null || _c === void 0 ? void 0 : _c.capabilities.spotlightParticipant.isPresent;
|
30564
|
+
const spotlightPeoplePaneProps = React.useMemo(() => {
|
30565
|
+
/* @conditional-compile-remove(spotlight) */
|
30566
|
+
return {
|
30567
|
+
spotlightedParticipantUserIds: spotlightedParticipants,
|
30568
|
+
onStartLocalSpotlight: hideSpotlightButtons ? undefined : onStartLocalSpotlightWithPrompt,
|
30569
|
+
onStopLocalSpotlight: hideSpotlightButtons ? undefined : onStopLocalSpotlightWithPrompt,
|
30570
|
+
onStartRemoteSpotlight: hideSpotlightButtons ? undefined : onStartRemoteSpotlightWithPrompt,
|
30571
|
+
onStopRemoteSpotlight: hideSpotlightButtons ? undefined : onStopRemoteSpotlightWithPrompt,
|
30572
|
+
onStopAllSpotlight: hideSpotlightButtons || !canSpotlight ? undefined : () => adapter.stopAllSpotlight(),
|
30573
|
+
maxParticipantsToSpotlight
|
30574
|
+
};
|
30575
|
+
}, [
|
30576
|
+
/* @conditional-compile-remove(spotlight) */ adapter,
|
30577
|
+
/* @conditional-compile-remove(spotlight) */ hideSpotlightButtons,
|
30578
|
+
/* @conditional-compile-remove(spotlight) */ maxParticipantsToSpotlight,
|
30579
|
+
/* @conditional-compile-remove(spotlight) */ onStartLocalSpotlightWithPrompt,
|
30580
|
+
/* @conditional-compile-remove(spotlight) */ onStartRemoteSpotlightWithPrompt,
|
30581
|
+
/* @conditional-compile-remove(spotlight) */ onStopLocalSpotlightWithPrompt,
|
30582
|
+
/* @conditional-compile-remove(spotlight) */ onStopRemoteSpotlightWithPrompt,
|
30583
|
+
/* @conditional-compile-remove(spotlight) */ spotlightedParticipants,
|
30584
|
+
/* @conditional-compile-remove(spotlight) */ canSpotlight
|
30585
|
+
]);
|
30586
|
+
const { isPeoplePaneOpen, openPeoplePane, closePeoplePane } = usePeoplePane(Object.assign(Object.assign({}, peoplePaneProps), spotlightPeoplePaneProps));
|
30522
30587
|
const togglePeoplePane = React.useCallback(() => {
|
30523
30588
|
if (isPeoplePaneOpen) {
|
30524
30589
|
closePeoplePane();
|
@@ -30572,7 +30637,7 @@ const CallArrangement = (props) => {
|
|
30572
30637
|
}, [togglePeoplePane]);
|
30573
30638
|
const drawerContainerStylesValue = React.useMemo(() => drawerContainerStyles(DRAWER_Z_INDEX), []);
|
30574
30639
|
/* @conditional-compile-remove(rooms) */
|
30575
|
-
const role = (
|
30640
|
+
const role = (_d = adapter.getState().call) === null || _d === void 0 ? void 0 : _d.role;
|
30576
30641
|
let canUnmute = true;
|
30577
30642
|
/* @conditional-compile-remove(rooms) */
|
30578
30643
|
canUnmute = role !== 'Consumer' ? true : false;
|
@@ -30602,15 +30667,51 @@ const CallArrangement = (props) => {
|
|
30602
30667
|
/* @conditional-compile-remove(capabilities) */
|
30603
30668
|
// Filter out shareScreen capability notifications if on mobile
|
30604
30669
|
const filteredCapabilitesChangedNotifications = props.mobileView
|
30605
|
-
? (
|
30606
|
-
: (
|
30670
|
+
? (_e = props.capabilitiesChangedNotificationBarProps) === null || _e === void 0 ? void 0 : _e.capabilitiesChangedNotifications.filter((notification) => notification.capabilityName !== 'shareScreen')
|
30671
|
+
: (_f = props.capabilitiesChangedNotificationBarProps) === null || _f === void 0 ? void 0 : _f.capabilitiesChangedNotifications;
|
30672
|
+
/* @conditional-compile-remove(spotlight) */
|
30673
|
+
const onHeaderMenuClick = React.useMemo(() => {
|
30674
|
+
if (!props.mobileView) {
|
30675
|
+
return undefined;
|
30676
|
+
}
|
30677
|
+
const headerMenuItems = [];
|
30678
|
+
if (isPeoplePaneOpen) {
|
30679
|
+
if (spotlightedParticipants && spotlightedParticipants.length > 0 && !hideSpotlightButtons && canSpotlight) {
|
30680
|
+
headerMenuItems.push({
|
30681
|
+
itemKey: 'stopAllSpotlightKey',
|
30682
|
+
text: locale.strings.call.stopAllSpotlightMenuLabel,
|
30683
|
+
iconProps: {
|
30684
|
+
iconName: 'StopAllSpotlightMenuButton',
|
30685
|
+
styles: { root: { lineHeight: 0 } }
|
30686
|
+
},
|
30687
|
+
onItemClick: () => {
|
30688
|
+
adapter.stopAllSpotlight();
|
30689
|
+
setDrawerMenuItems([]);
|
30690
|
+
}
|
30691
|
+
});
|
30692
|
+
}
|
30693
|
+
}
|
30694
|
+
return headerMenuItems.length > 0
|
30695
|
+
? () => {
|
30696
|
+
setDrawerMenuItems(headerMenuItems);
|
30697
|
+
}
|
30698
|
+
: undefined;
|
30699
|
+
}, [
|
30700
|
+
props.mobileView,
|
30701
|
+
isPeoplePaneOpen,
|
30702
|
+
spotlightedParticipants,
|
30703
|
+
hideSpotlightButtons,
|
30704
|
+
canSpotlight,
|
30705
|
+
locale.strings.call.stopAllSpotlightMenuLabel,
|
30706
|
+
adapter
|
30707
|
+
]);
|
30607
30708
|
return (React.createElement("div", { ref: containerRef, className: react.mergeStyles(containerDivStyles), id: props.id },
|
30608
30709
|
React.createElement(react.Stack, { verticalFill: true, horizontalAlign: "stretch", className: containerClassName, "data-ui-id": props.dataUiId },
|
30609
30710
|
React.createElement(react.Stack, { reversed: true, horizontal: verticalControlBar, grow: true, styles: callArrangementContainerStyles(verticalControlBar) },
|
30610
|
-
((
|
30711
|
+
((_g = props.callControlProps) === null || _g === void 0 ? void 0 : _g.options) !== false && !isMobileWithActivePane && (React.createElement(react.Stack, { verticalAlign: 'center', className: react.mergeStyles({
|
30611
30712
|
zIndex: CONTROL_BAR_Z_INDEX,
|
30612
30713
|
padding: verticalControlBar ? '0.25rem' : 'unset'
|
30613
|
-
}) }, isLegacyCallControlEnabled((
|
30714
|
+
}) }, isLegacyCallControlEnabled((_h = props.callControlProps) === null || _h === void 0 ? void 0 : _h.options) ? (React.createElement(CallControls, Object.assign({}, props.callControlProps, { containerWidth: containerWidth, containerHeight: containerHeight, isMobile: props.mobileView,
|
30614
30715
|
/* @conditional-compile-remove(one-to-n-calling) */
|
30615
30716
|
peopleButtonChecked: isPeoplePaneOpen,
|
30616
30717
|
/* @conditional-compile-remove(one-to-n-calling) */
|
@@ -30635,7 +30736,7 @@ const CallArrangement = (props) => {
|
|
30635
30736
|
dtmfDialerPresent: props.dtmfDialerPresent, peopleButtonRef: peopleButtonRef, cameraButtonRef: cameraButtonRef,
|
30636
30737
|
/* @conditional-compile-remove(spotlight) */
|
30637
30738
|
onStopLocalSpotlight: localParticipant.spotlight ? onStopLocalSpotlight : undefined }))))),
|
30638
|
-
((
|
30739
|
+
((_j = props.callControlProps) === null || _j === void 0 ? void 0 : _j.options) !== false && showDrawer && (React.createElement(react.Stack, { styles: drawerContainerStylesValue },
|
30639
30740
|
React.createElement(PreparedMoreDrawer, { callControls: props.callControlProps.options, onLightDismiss: closeDrawer, onPeopleButtonClicked: onMoreDrawerPeopleClicked,
|
30640
30741
|
/* @conditional-compile-remove(PSTN-calls) */ /* @conditional-compile-remove(one-to-n-calling) */
|
30641
30742
|
disableButtonsForHoldScreen: isInLocalHold,
|
@@ -30671,7 +30772,9 @@ const CallArrangement = (props) => {
|
|
30671
30772
|
maxWidth: isVideoPaneOpen ? `${VIDEO_EFFECTS_SIDE_PANE_WIDTH_REM}rem` : undefined, minWidth: isVideoPaneOpen ? `${VIDEO_EFFECTS_SIDE_PANE_WIDTH_REM}rem` : undefined, updateSidePaneRenderer: props.updateSidePaneRenderer, onPeopleButtonClicked: props.mobileView && !shouldShowPeopleTabHeaderButton(props.callControlProps.options)
|
30672
30773
|
? undefined
|
30673
30774
|
: togglePeoplePane, disablePeopleButton: typeof props.callControlProps.options !== 'boolean' &&
|
30674
|
-
isDisabled$4((
|
30775
|
+
isDisabled$4((_k = props.callControlProps.options) === null || _k === void 0 ? void 0 : _k.participantsButton), onChatButtonClicked: (_l = props.mobileChatTabHeader) === null || _l === void 0 ? void 0 : _l.onClick, disableChatButton: (_m = props.mobileChatTabHeader) === null || _m === void 0 ? void 0 : _m.disabled,
|
30776
|
+
/* @conditional-compile-remove(spotlight) */
|
30777
|
+
onHeaderMenuClick: onHeaderMenuClick }),
|
30675
30778
|
props.mobileView && (React.createElement(ModalLocalAndRemotePIP, { modalLayerHostId: props.modalLayerHostId, hidden: !isSidePaneOpen, styles: pipStyles, strings: modalStrings, minDragPosition: minMaxDragPosition.minDragPosition, maxDragPosition: minMaxDragPosition.maxDragPosition, onDismissSidePane: () => {
|
30676
30779
|
closePeoplePane();
|
30677
30780
|
if (props.onCloseChatPane) {
|
@@ -34348,6 +34451,8 @@ class AzureCommunicationCallAdapter {
|
|
34348
34451
|
this.startSpotlight.bind(this);
|
34349
34452
|
/* @conditional-compile-remove(spotlight) */
|
34350
34453
|
this.stopSpotlight.bind(this);
|
34454
|
+
/* @conditional-compile-remove(spotlight) */
|
34455
|
+
this.stopAllSpotlight.bind(this);
|
34351
34456
|
}
|
34352
34457
|
dispose() {
|
34353
34458
|
this.resetDiagnosticsForwarder();
|
@@ -34821,6 +34926,12 @@ class AzureCommunicationCallAdapter {
|
|
34821
34926
|
this.handlers.onStopSpotlight(userIds);
|
34822
34927
|
});
|
34823
34928
|
}
|
34929
|
+
/* @conditional-compile-remove(spotlight) */
|
34930
|
+
stopAllSpotlight() {
|
34931
|
+
return __awaiter$5(this, void 0, void 0, function* () {
|
34932
|
+
this.handlers.onStopAllSpotlight();
|
34933
|
+
});
|
34934
|
+
}
|
34824
34935
|
getState() {
|
34825
34936
|
return this.context.getState();
|
34826
34937
|
}
|
@@ -35585,6 +35696,12 @@ class CallWithChatBackedCallAdapter {
|
|
35585
35696
|
return this.callWithChatAdapter.stopSpotlight(userIds);
|
35586
35697
|
});
|
35587
35698
|
}
|
35699
|
+
/* @conditional-compile-remove(spotlight) */
|
35700
|
+
stopAllSpotlight() {
|
35701
|
+
return __awaiter$4(this, void 0, void 0, function* () {
|
35702
|
+
return this.callWithChatAdapter.stopAllSpotlight();
|
35703
|
+
});
|
35704
|
+
}
|
35588
35705
|
}
|
35589
35706
|
function callAdapterStateFromCallWithChatAdapterState(callWithChatAdapterState) {
|
35590
35707
|
return {
|
@@ -36739,6 +36856,12 @@ class AzureCommunicationCallWithChatAdapter {
|
|
36739
36856
|
return this.callAdapter.stopSpotlight(userIds);
|
36740
36857
|
});
|
36741
36858
|
}
|
36859
|
+
/* @conditional-compile-remove(spotlight) */
|
36860
|
+
stopAllSpotlight() {
|
36861
|
+
return __awaiter$2(this, void 0, void 0, function* () {
|
36862
|
+
return this.callAdapter.stopAllSpotlight();
|
36863
|
+
});
|
36864
|
+
}
|
36742
36865
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
36743
36866
|
on(event, listener) {
|
36744
36867
|
switch (event) {
|