@azure/communication-react 1.11.1-alpha-202401110013 → 1.11.1-alpha-202401130013
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 +95 -0
- package/dist/dist-cjs/communication-react/index.js +183 -25
- 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/baseSelectors.d.ts +5 -0
- package/dist/dist-esm/calling-component-bindings/src/baseSelectors.js +8 -0
- package/dist/dist-esm/calling-component-bindings/src/baseSelectors.js.map +1 -1
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.d.ts +2 -0
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js +17 -1
- package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js.map +1 -1
- package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.d.ts +2 -0
- package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js +3 -0
- package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js.map +1 -1
- package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.d.ts +1 -0
- package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.js +15 -3
- package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/CallClientState.d.ts +31 -0
- package/dist/dist-esm/calling-stateful-client/src/CallClientState.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/CallContext.d.ts +3 -0
- package/dist/dist-esm/calling-stateful-client/src/CallContext.js +21 -0
- package/dist/dist-esm/calling-stateful-client/src/CallContext.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/CallSubscriber.d.ts +1 -0
- package/dist/dist-esm/calling-stateful-client/src/CallSubscriber.js +6 -0
- package/dist/dist-esm/calling-stateful-client/src/CallSubscriber.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/Converter.js +3 -1
- package/dist/dist-esm/calling-stateful-client/src/Converter.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/SpotlightSubscriber.d.ts +16 -0
- package/dist/dist-esm/calling-stateful-client/src/SpotlightSubscriber.js +27 -0
- package/dist/dist-esm/calling-stateful-client/src/SpotlightSubscriber.js.map +1 -0
- package/dist/dist-esm/calling-stateful-client/src/index-public.d.ts +1 -0
- package/dist/dist-esm/calling-stateful-client/src/index-public.js.map +1 -1
- package/dist/dist-esm/communication-react/src/index.d.ts +1 -1
- package/dist/dist-esm/communication-react/src/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/Dialpad/Dialpad.js +9 -8
- package/dist/dist-esm/react-components/src/components/Dialpad/Dialpad.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/ReactionButton.d.ts +39 -0
- package/dist/dist-esm/react-components/src/components/ReactionButton.js +65 -0
- package/dist/dist-esm/react-components/src/components/ReactionButton.js.map +1 -0
- package/dist/dist-esm/react-components/src/components/index.d.ts +2 -0
- package/dist/dist-esm/react-components/src/components/index.js +2 -0
- package/dist/dist-esm/react-components/src/components/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/styles/Dialpad.styles.js +36 -12
- package/dist/dist-esm/react-components/src/components/styles/Dialpad.styles.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/styles/ReactionButton.styles.d.ts +14 -0
- package/dist/dist-esm/react-components/src/components/styles/ReactionButton.styles.js +44 -0
- package/dist/dist-esm/react-components/src/components/styles/ReactionButton.styles.js.map +1 -0
- package/dist/dist-esm/react-components/src/localization/LocalizationProvider.d.ts +3 -0
- package/dist/dist-esm/react-components/src/localization/LocalizationProvider.js.map +1 -1
- package/dist/dist-esm/react-components/src/localization/locales/en-US/strings.json +5 -0
- package/dist/dist-esm/react-components/src/theming/icons.d.ts +1 -0
- package/dist/dist-esm/react-components/src/theming/icons.js +4 -0
- package/dist/dist-esm/react-components/src/theming/icons.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.d.ts +2 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +12 -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 +12 -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/hooks/useHandlers.js +8 -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 +2 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js +12 -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 +12 -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 +2 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.js +12 -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/icons.d.ts +2 -0
- package/dist/dist-esm/react-composites/src/composites/common/icons.js.map +1 -1
- package/package.json +1 -1
@@ -170,7 +170,7 @@ function getDefaultExportFromCjs (x) {
|
|
170
170
|
// Copyright (c) Microsoft Corporation.
|
171
171
|
// Licensed under the MIT License.
|
172
172
|
// GENERATED FILE. DO NOT EDIT MANUALLY.
|
173
|
-
var telemetryVersion = '1.11.1-alpha-
|
173
|
+
var telemetryVersion = '1.11.1-alpha-202401130013';
|
174
174
|
|
175
175
|
|
176
176
|
var telemetryVersion$1 = /*@__PURE__*/getDefaultExportFromCjs(telemetryVersion);
|
@@ -406,6 +406,14 @@ const getLocalParticipantRaisedHand$1 = (state, props) => {
|
|
406
406
|
var _a, _b;
|
407
407
|
return (_b = (_a = state.calls[props.callId]) === null || _a === void 0 ? void 0 : _a.raiseHand) === null || _b === void 0 ? void 0 : _b.localParticipantRaisedHand;
|
408
408
|
};
|
409
|
+
/* @conditional-compile-remove(spotlight) */
|
410
|
+
/**
|
411
|
+
* @private
|
412
|
+
*/
|
413
|
+
const getSpotlightedParticipants = (state, props) => {
|
414
|
+
var _a, _b;
|
415
|
+
return (_b = (_a = state.calls[props.callId]) === null || _a === void 0 ? void 0 : _a.spotlight) === null || _b === void 0 ? void 0 : _b.spotlightedParticipants;
|
416
|
+
};
|
409
417
|
/* @conditional-compile-remove(reaction) */
|
410
418
|
/**
|
411
419
|
* @private
|
@@ -1114,6 +1122,16 @@ const createDefaultCommonCallingHandlers = memoizeOne((callClient, deviceManager
|
|
1114
1122
|
});
|
1115
1123
|
/* @conditional-compile-remove(end-of-call-survey) */
|
1116
1124
|
const onSubmitSurvey = (survey) => __awaiter$M(void 0, void 0, void 0, function* () { return yield (call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.CallSurvey).submitSurvey(survey)); });
|
1125
|
+
/* @conditional-compile-remove(spotlight) */
|
1126
|
+
const onStartSpotlight = (userId) => __awaiter$M(void 0, void 0, void 0, function* () {
|
1127
|
+
const participant = _toCommunicationIdentifier(userId);
|
1128
|
+
yield (call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.Spotlight).startSpotlight([participant]));
|
1129
|
+
});
|
1130
|
+
/* @conditional-compile-remove(spotlight) */
|
1131
|
+
const onStopSpotlight = (userId) => __awaiter$M(void 0, void 0, void 0, function* () {
|
1132
|
+
const participant = _toCommunicationIdentifier(userId);
|
1133
|
+
yield (call === null || call === void 0 ? void 0 : call.feature(communicationCalling.Features.Spotlight).stopSpotlight([participant]));
|
1134
|
+
});
|
1117
1135
|
return {
|
1118
1136
|
onHangUp,
|
1119
1137
|
/* @conditional-compile-remove(PSTN-calls) */
|
@@ -1161,7 +1179,11 @@ const createDefaultCommonCallingHandlers = memoizeOne((callClient, deviceManager
|
|
1161
1179
|
/* @conditional-compile-remove(close-captions) */
|
1162
1180
|
onSetSpokenLanguage,
|
1163
1181
|
/* @conditional-compile-remove(end-of-call-survey) */
|
1164
|
-
onSubmitSurvey
|
1182
|
+
onSubmitSurvey,
|
1183
|
+
/* @conditional-compile-remove(spotlight) */
|
1184
|
+
onStartSpotlight,
|
1185
|
+
/* @conditional-compile-remove(spotlight) */
|
1186
|
+
onStopSpotlight
|
1165
1187
|
};
|
1166
1188
|
});
|
1167
1189
|
|
@@ -1688,7 +1710,9 @@ function convertSdkParticipantToDeclarativeParticipant(participant) {
|
|
1688
1710
|
/* @conditional-compile-remove(raise-hand) */
|
1689
1711
|
raisedHand: undefined,
|
1690
1712
|
/* @conditional-compile-remove(hide-attendee-name) */
|
1691
|
-
role: participant.role
|
1713
|
+
role: participant.role,
|
1714
|
+
/* @conditional-compile-remove(spotlight) */
|
1715
|
+
spotlighted: undefined
|
1692
1716
|
};
|
1693
1717
|
}
|
1694
1718
|
/**
|
@@ -2170,6 +2194,27 @@ let CallContext$2 = class CallContext {
|
|
2170
2194
|
}
|
2171
2195
|
});
|
2172
2196
|
}
|
2197
|
+
/* @conditional-compile-remove(spotlight) */
|
2198
|
+
setSpotlight(callId, spotlightedParticipants) {
|
2199
|
+
this.modifyState((draft) => {
|
2200
|
+
const call = draft.calls[this._callIdHistory.latestCallId(callId)];
|
2201
|
+
if (call) {
|
2202
|
+
call.spotlight = { spotlightedParticipants };
|
2203
|
+
}
|
2204
|
+
});
|
2205
|
+
}
|
2206
|
+
/* @conditional-compile-remove(spotlight) */
|
2207
|
+
setParticipantSpotlighted(callId, spotlightedParticipant) {
|
2208
|
+
this.modifyState((draft) => {
|
2209
|
+
const call = draft.calls[this._callIdHistory.latestCallId(callId)];
|
2210
|
+
if (call) {
|
2211
|
+
const participant = call.remoteParticipants[toFlatCommunicationIdentifier(spotlightedParticipant.identifier)];
|
2212
|
+
if (participant) {
|
2213
|
+
participant.spotlighted = { spotlightedOrderPosition: spotlightedParticipant.order };
|
2214
|
+
}
|
2215
|
+
}
|
2216
|
+
});
|
2217
|
+
}
|
2173
2218
|
setCallScreenShareParticipant(callId, participantKey) {
|
2174
2219
|
this.modifyState((draft) => {
|
2175
2220
|
const call = draft.calls[this._callIdHistory.latestCallId(callId)];
|
@@ -3752,6 +3797,33 @@ class ReactionSubscriber {
|
|
3752
3797
|
}
|
3753
3798
|
}
|
3754
3799
|
|
3800
|
+
// Copyright (c) Microsoft Corporation.
|
3801
|
+
// Licensed under the MIT License.
|
3802
|
+
/* @conditional-compile-remove(spotlight) */
|
3803
|
+
/**
|
3804
|
+
* @private
|
3805
|
+
*/
|
3806
|
+
class SpotlightSubscriber {
|
3807
|
+
constructor(callIdRef, context, spotlight) {
|
3808
|
+
this.subscribe = () => {
|
3809
|
+
this._spotlightFeature.on('spotlightChanged', this.spotlightChanged);
|
3810
|
+
};
|
3811
|
+
this.unsubscribe = () => {
|
3812
|
+
this._spotlightFeature.off('spotlightChanged', this.spotlightChanged);
|
3813
|
+
};
|
3814
|
+
this.spotlightChanged = () => {
|
3815
|
+
this._context.setSpotlight(this._callIdRef.callId, this._spotlightFeature.getSpotlightedParticipants());
|
3816
|
+
for (const addedParticipant of this._spotlightFeature.getSpotlightedParticipants()) {
|
3817
|
+
this._context.setParticipantSpotlighted(this._callIdRef.callId, addedParticipant);
|
3818
|
+
}
|
3819
|
+
};
|
3820
|
+
this._callIdRef = callIdRef;
|
3821
|
+
this._context = context;
|
3822
|
+
this._spotlightFeature = spotlight;
|
3823
|
+
this.subscribe();
|
3824
|
+
}
|
3825
|
+
}
|
3826
|
+
|
3755
3827
|
// Copyright (c) Microsoft Corporation.
|
3756
3828
|
// Licensed under the MIT License.
|
3757
3829
|
/**
|
@@ -3823,6 +3895,8 @@ class CallSubscriber {
|
|
3823
3895
|
this._capabilitiesSubscriber.unsubscribe();
|
3824
3896
|
/* @conditional-compile-remove(reaction) */
|
3825
3897
|
(_c = this._reactionSubscriber) === null || _c === void 0 ? void 0 : _c.unsubscribe();
|
3898
|
+
/* @conditional-compile-remove(spotlight) */
|
3899
|
+
this._spotlightSubscriber.unsubscribe();
|
3826
3900
|
};
|
3827
3901
|
this.stateChanged = () => {
|
3828
3902
|
this._context.setCallState(this._callIdRef.callId, this._call.state);
|
@@ -3923,6 +3997,8 @@ class CallSubscriber {
|
|
3923
3997
|
this._localVideoStreamVideoEffectsSubscribers = new Map();
|
3924
3998
|
/* @conditional-compile-remove(capabilities) */
|
3925
3999
|
this._capabilitiesSubscriber = new CapabilitiesSubscriber(this._callIdRef, this._context, this._call.feature(communicationCalling.Features.Capabilities));
|
4000
|
+
/* @conditional-compile-remove(spotlight) */
|
4001
|
+
this._spotlightSubscriber = new SpotlightSubscriber(this._callIdRef, this._context, this._call.feature(communicationCalling.Features.Spotlight));
|
3926
4002
|
this.subscribe();
|
3927
4003
|
}
|
3928
4004
|
addParticipantListener(participant) {
|
@@ -5194,7 +5270,7 @@ const typingIndicatorStringStyle = react.mergeStyles({
|
|
5194
5270
|
wordBreak: 'break-word'
|
5195
5271
|
});
|
5196
5272
|
|
5197
|
-
var participantItem$k={isMeText:"(you)",menuTitle:"More Options",removeButtonLabel:"Remove",sharingIconLabel:"Sharing",mutedIconLabel:"Muted",displayNamePlaceholder:"Unnamed participant",participantStateRinging:"Calling...",participantStateHold:"On hold"};var ParticipantList$l={overflowParticipantCount:"+{overflowCount} more"};var typingIndicator$k={singleUser:"{user} is typing ...",multipleUsers:"{users} are typing ...",multipleUsersAbbreviateOne:"{users} and 1 other are typing ...",multipleUsersAbbreviateMany:"{users} and {numOthers} others are typing ...",delimiter:", "};var sendBox$k={placeholderText:"Enter a message",textTooLong:"Your message length is over the maximum limit.",sendButtonAriaLabel:"Send message",fileUploadsPendingError:"Uploading... Please wait.",removeFile:"Remove file",uploading:"Uploading",uploadCompleted:"Upload completed"};var mentionPopover$k={mentionPopoverHeader:"Suggestions"};var imageGallery$k={downloadButtonLabel:"Download",dismissButtonAriaLabel:"Close"};var messageStatusIndicator$k={deliveredAriaLabel:"Message sent",deliveredTooltipText:"Sent",seenAriaLabel:"Message seen by others",seenTooltipText:"Seen",readByTooltipText:"Read by {messageThreadReadCount} of {remoteParticipantsCount}",sendingAriaLabel:"Message sending",sendingTooltipText:"Sending",failedToSendAriaLabel:"Message failed to send",failedToSendTooltipText:"Failed to send"};var endCallButton$k={label:"Leave",tooltipContent:"Leave call"};var cameraButton$k={onLabel:"Camera",offLabel:"Camera",tooltipDisabledContent:"Camera is disabled",tooltipOnContent:"Turn off camera",tooltipOffContent:"Turn on camera",tooltipVideoLoadingContent:"Video is loading",cameraMenuTitle:"Camera",cameraMenuTooltip:"Choose camera",cameraButtonSplitRoleDescription:"Split button",onSplitButtonAriaLabel:"Turn off camera and camera options",offSplitButtonAriaLabel:"Turn on camera and camera options",cameraActionTurnedOnAnnouncement:"Your camera has been turned on",cameraActionTurnedOffAnnouncement:"Your camera has been turned off",onSplitButtonPrimaryActionCamera:"Turn off camera",offSplitButtonPrimaryActionCamera:"Turn on camera",cameraPrimaryActionSplitButtonTitle:"Use camera",videoEffectsMenuItemTitle:"Effects"};var microphoneButton$k={onLabel:"Mic",offLabel:"Mic",tooltipDisabledContent:"Microphone is disabled",tooltipOnContent:"Mute microphone",tooltipOffContent:"Unmute microphone",microphoneMenuTitle:"Microphone",microphoneMenuTooltip:"Choose microphone",speakerMenuTitle:"Speaker",speakerMenuTooltip:"Choose speaker",microphoneButtonSplitRoleDescription:"Split button",onSplitButtonAriaLabel:"Mute microphone and audio options",offSplitButtonAriaLabel:"Unmute microphone and audio options",microphoneActionTurnedOnAnnouncement:"Your microphone has been turned on",microphoneActionTurnedOffAnnouncement:"Your microphone has been turned off",offSplitButtonMicrophonePrimaryAction:"Unmute microphone",onSplitButtonMicrophonePrimaryAction:"Mute microphone",microphonePrimaryActionSplitButtonTitle:"Use microphone"};var devicesButton$k={label:"Devices",tooltipContent:"Manage devices",cameraMenuTitle:"Camera",cameraMenuTooltip:"Choose camera",audioDeviceMenuTitle:"Audio Device",audioDeviceMenuTooltip:"Choose audio device",microphoneMenuTitle:"Microphone",microphoneMenuTooltip:"Choose microphone",speakerMenuTitle:"Speaker",speakerMenuTooltip:"Choose speaker"};var participantsButton$k={label:"People",tooltipContent:"Show participants",menuHeader:"In this call",participantsListButtonLabel:"{numParticipants} people",muteAllButtonLabel:"Mute all",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied"};var screenShareButton$k={onLabel:"Stop presenting",offLabel:"Present",tooltipDisabledContent:"Presenting is disabled",tooltipOnContent:"Presenting your screen",tooltipOffContent:"Present your screen"};var raiseHandButton$k={offLabel:"Raise",onLabel:"Lower",tooltipDisabledContent:"Raise Hand action is disabled",tooltipOnContent:"Lower Hand",tooltipOffContent:"Raise Hand"};var messageThread$k={yesterday:"Yesterday",sunday:"Sunday",monday:"Monday",tuesday:"Tuesday",wednesday:"Wednesday",thursday:"Thursday",friday:"Friday",saturday:"Saturday",participantJoined:"joined the chat.",participantLeft:"left the chat.",editMessage:"Edit",removeMessage:"Delete",resendMessage:"Try sending again",failToSendTag:"Failed to send",editedTag:"Edited",liveAuthorIntro:"{author} says",messageContentAriaText:"{author} said {message}",messageContentMineAriaText:"You said {message}",editBoxTextLimit:"Your message is over the limit of {limitNumber} characters",editBoxPlaceholderText:"Edit your message",newMessagesIndicator:"New messages",noDisplayNameSub:"No name",editBoxCancelButton:"Cancel",editBoxSubmitButton:"Done",messageReadCount:"Read by {messageReadByCount} of {remoteParticipantsCount}",actionMenuMoreOptions:"More Options",downloadFile:"Download file",blockedWarningText:"This message was deleted due to organizational policy.",blockedWarningLinkText:"Details",fileCardGroupMessage:"The message has {fileCount} attachment",messageDeletedAnnouncementAriaLabel:"The message is deleted"};var errorBar$k={unableToReachChatService:"You are offline",accessDenied:"Unable to access chat services - please check the user credentials provided",userNotInChatThread:"You are no longer in this chat thread",sendMessageNotInChatThread:"Failed to send message because you are no longer in this chat thread",sendMessageGeneric:"Failed to send message",callingNetworkFailure:"Troubling connecting call - you seem to be offline",startVideoGeneric:"Failed to start video",stopVideoGeneric:"Failed to stop video",muteGeneric:"Failed to mute microphone",unmuteGeneric:"Failed to unmute microphone",speakingWhileMuted:"Your microphone is muted",startScreenShareGeneric:"There was an issue starting screen share.",stopScreenShareGeneric:"Failed to stop screen sharing",callNetworkQualityLow:"Network quality is low.",callNoSpeakerFound:"No speakers or headphones found. Connect an audio device to hear the call.",callNoMicrophoneFound:"No microphones found. Connect an audio input device.",callMicrophoneAccessDenied:"Unable to access microphone. Click the lock in the address bar to grant permission to this webpage.",callMicrophoneAccessDeniedSafari:"Unable to access microphone. Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",callMicrophoneMutedBySystem:"You are muted by your system.",callMicrophoneUnmutedBySystem:"Your microphone recovered and you were unmuted by your system.",callMacOsMicrophoneAccessDenied:"Unable to access microphone. Grant microphone permission in your macOS privacy settings.",callLocalVideoFreeze:"Network bandwidth is poor. Your video may appear paused for others on the call.",callCameraAccessDenied:"Unable to access camera. Click the lock in the address bar to grant permission to this webpage.",callCameraAccessDeniedSafari:"Unable to access camera. Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",callCameraAlreadyInUse:"Unable to access camera. It may already be in use by another application.",callVideoStoppedBySystem:"Your video has been stopped by your system.",callVideoRecoveredBySystem:"Your video has resumed.",callMacOsCameraAccessDenied:"MacOS is blocking access to your camera. Update your privacy settings to allow this browser to access your camera.",callMacOsScreenShareAccessDenied:"MacOS is blocking screen sharing. Update your privacy settings to allow this browser to record your screen.",dismissButtonAriaLabel:"Close",failedToJoinCallGeneric:"Failed to join call.",failedToJoinCallInvalidMeetingLink:"Unable to join Meeting. Invalid Link.",cameraFrozenForRemoteParticipants:"Users in the call are having issues seeing your video. Please check your devices and network.",unableToStartVideoEffect:"Unable to apply video effect."};var videoGallery$k={screenIsBeingSharedMessage:"You are sharing your screen",screenShareLoadingMessage:"Loading {participant}'s screen",localVideoLabel:"You",localVideoCameraSwitcherLabel:"Switch camera",localVideoMovementLabel:"Movable Local Video Tile",localVideoSelectedDescription:"{cameraName} selected",displayNamePlaceholder:"Unnamed participant",fitRemoteParticipantToFrame:"Fit to frame",fillRemoteParticipantFrame:"Fill frame",pinParticipantForMe:"Pin for me",pinParticipantForMeLimitReached:"Pin (limit reached)",unpinParticipantForMe:"Unpin",pinParticipantMenuItemAriaLabel:"Pin {participantName}",unpinParticipantMenuItemAriaLabel:"Unpin {participantName}",pinnedParticipantAnnouncementAriaLabel:"Pinned {participantName}",unpinnedParticipantAnnouncementAriaLabel:"Unpinned {participantName}"};var dialpad$k={placeholderText:"Enter phone number",deleteButtonAriaLabel:"Delete"};var holdButton$k={onLabel:"Resume",offLabel:"Hold",tooltipOnContent:"Resume call",tooltipOffContent:"Hold call"};var videoTile$k={participantStateRinging:"Calling...",participantStateHold:"On hold"};var CameraAndMicrophoneSitePermissionsRequest$k={primaryText:"Allow {appName} to use your camera and microphone",secondaryText:"This is so participants can see and hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera and microphone",ariaLabel:"Allow camera and microphone access"};var CameraSitePermissionsRequest$k={primaryText:"Allow {appName} to use your camera",secondaryText:"This is so participants can see you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera",ariaLabel:"Allow camera access"};var MicrophoneSitePermissionsRequest$k={primaryText:"Allow {appName} to use your microphone",secondaryText:"This is so participants can hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without microphone",ariaLabel:"Allow microphone access"};var CameraAndMicrophoneSitePermissionsCheck$k={primaryText:"Checking for camera and microphone access",secondaryText:"Allow access if prompted. This is so participants can see and hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera and microphone",ariaLabel:"Checking for camera and microphone access. Allow access if prompted."};var CameraSitePermissionsCheck$k={primaryText:"Checking for camera access",secondaryText:"Allow access if prompted. This is so participants can see you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera",ariaLabel:"Checking for camera access. Allow access if prompted."};var MicrophoneSitePermissionsCheck$k={primaryText:"Checking for microphone access",secondaryText:"Allow access if prompted. This is so participants can hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without microphone",ariaLabel:"Checking for microphone access. Allow access if prompted."};var CameraAndMicrophoneSitePermissionsDenied$k={primaryText:"Unable to access camera and microphone",secondaryText:"Click the lock icon in the address bar to grant microphone permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without camera and microphone",linkText:"Need help? Get troubleshooting help"};var CameraAndMicrophoneSitePermissionsDeniedSafari$k={primaryText:"Unable to access camera and microphone",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without camera and microphone",linkText:"Need help? Get troubleshooting help"};var CameraSitePermissionsDenied$k={primaryText:"Unable to access camera",secondaryText:"Click the lock icon in the address bar to grant camera permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without camera",linkText:"Need help? Get troubleshooting help"};var MicrophoneSitePermissionsDenied$k={primaryText:"Unable to access microphone",secondaryText:"Click the lock icon in the address bar to grant microphone permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without microphone",linkText:"Need help? Get troubleshooting help"};var CameraSitePermissionsDeniedSafari$k={primaryText:"Unable to access camera",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without camera",linkText:"Need help? Get troubleshooting help"};var MicrophoneSitePermissionsDeniedSafari$k={primaryText:"Unable to access microphone",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without microphone",linkText:"Need help? Get troubleshooting help"};var UnsupportedBrowser$l={primaryText:"Browser not supported",secondaryText:"Please join this call using a compatible browser.",moreHelpLinkText:"See compatibility requirements"};var UnsupportedBrowserVersion$l={primaryText:"Browser update needed",secondaryText:"To ensure the best call possible, please update your browser and then try joining the call again.",moreHelpLinkText:"See compatibility requirements",continueAnywayButtonText:"Start call without updating"};var UnsupportedOperatingSystem$l={primaryText:"Operating system not supported",secondaryText:"Please join this call using a device with a compatible operating system.",moreHelpLinkText:"See compatibility requirements"};var BrowserPermissionDenied$k={primaryText:"Can't use your camera or microphone",secondaryText:"Your browser might not have access to your camera or microphone. To fix this, open System Preferences.",primaryButtonText:"Try again",linkText:"Need help? Get troubleshooting help"};var BrowserPermissionDeniedIOS$k={primaryText:"Allow microphone access to continue",secondaryText:"So other participants can hear you.",primaryButtonText:"Try again",imageAltText:"Microphone and camera device permission location for iOS",linkText:"Need help? Get troubleshooting help",step1Text:"Go to the Settings app",step2Text:"Scroll down to settings for this browser",step3Text:"Turn on Microphone (Camera optional)",step4Text:"Try joining the call again",step1DigitText:"1",step2DigitText:"2",step3DigitText:"3",step4DigitText:"4"};var verticalGallery$k={leftNavButtonAriaLabel:"previous page",rightNavButtonAriaLabel:"next page"};var AttendeeRole$k="Attendee";var en_US$1 = {participantItem:participantItem$k,ParticipantList:ParticipantList$l,typingIndicator:typingIndicator$k,sendBox:sendBox$k,mentionPopover:mentionPopover$k,imageGallery:imageGallery$k,messageStatusIndicator:messageStatusIndicator$k,endCallButton:endCallButton$k,cameraButton:cameraButton$k,microphoneButton:microphoneButton$k,devicesButton:devicesButton$k,participantsButton:participantsButton$k,screenShareButton:screenShareButton$k,raiseHandButton:raiseHandButton$k,messageThread:messageThread$k,errorBar:errorBar$k,videoGallery:videoGallery$k,dialpad:dialpad$k,holdButton:holdButton$k,videoTile:videoTile$k,CameraAndMicrophoneSitePermissionsRequest:CameraAndMicrophoneSitePermissionsRequest$k,CameraSitePermissionsRequest:CameraSitePermissionsRequest$k,MicrophoneSitePermissionsRequest:MicrophoneSitePermissionsRequest$k,CameraAndMicrophoneSitePermissionsCheck:CameraAndMicrophoneSitePermissionsCheck$k,CameraSitePermissionsCheck:CameraSitePermissionsCheck$k,MicrophoneSitePermissionsCheck:MicrophoneSitePermissionsCheck$k,CameraAndMicrophoneSitePermissionsDenied:CameraAndMicrophoneSitePermissionsDenied$k,CameraAndMicrophoneSitePermissionsDeniedSafari:CameraAndMicrophoneSitePermissionsDeniedSafari$k,CameraSitePermissionsDenied:CameraSitePermissionsDenied$k,MicrophoneSitePermissionsDenied:MicrophoneSitePermissionsDenied$k,CameraSitePermissionsDeniedSafari:CameraSitePermissionsDeniedSafari$k,MicrophoneSitePermissionsDeniedSafari:MicrophoneSitePermissionsDeniedSafari$k,UnsupportedBrowser:UnsupportedBrowser$l,UnsupportedBrowserVersion:UnsupportedBrowserVersion$l,UnsupportedOperatingSystem:UnsupportedOperatingSystem$l,BrowserPermissionDenied:BrowserPermissionDenied$k,BrowserPermissionDeniedIOS:BrowserPermissionDeniedIOS$k,verticalGallery:verticalGallery$k,AttendeeRole:AttendeeRole$k};
|
5273
|
+
var participantItem$k={isMeText:"(you)",menuTitle:"More Options",removeButtonLabel:"Remove",sharingIconLabel:"Sharing",mutedIconLabel:"Muted",displayNamePlaceholder:"Unnamed participant",participantStateRinging:"Calling...",participantStateHold:"On hold"};var ParticipantList$l={overflowParticipantCount:"+{overflowCount} more"};var typingIndicator$k={singleUser:"{user} is typing ...",multipleUsers:"{users} are typing ...",multipleUsersAbbreviateOne:"{users} and 1 other are typing ...",multipleUsersAbbreviateMany:"{users} and {numOthers} others are typing ...",delimiter:", "};var sendBox$k={placeholderText:"Enter a message",textTooLong:"Your message length is over the maximum limit.",sendButtonAriaLabel:"Send message",fileUploadsPendingError:"Uploading... Please wait.",removeFile:"Remove file",uploading:"Uploading",uploadCompleted:"Upload completed"};var mentionPopover$k={mentionPopoverHeader:"Suggestions"};var imageGallery$k={downloadButtonLabel:"Download",dismissButtonAriaLabel:"Close"};var messageStatusIndicator$k={deliveredAriaLabel:"Message sent",deliveredTooltipText:"Sent",seenAriaLabel:"Message seen by others",seenTooltipText:"Seen",readByTooltipText:"Read by {messageThreadReadCount} of {remoteParticipantsCount}",sendingAriaLabel:"Message sending",sendingTooltipText:"Sending",failedToSendAriaLabel:"Message failed to send",failedToSendTooltipText:"Failed to send"};var endCallButton$k={label:"Leave",tooltipContent:"Leave call"};var cameraButton$k={onLabel:"Camera",offLabel:"Camera",tooltipDisabledContent:"Camera is disabled",tooltipOnContent:"Turn off camera",tooltipOffContent:"Turn on camera",tooltipVideoLoadingContent:"Video is loading",cameraMenuTitle:"Camera",cameraMenuTooltip:"Choose camera",cameraButtonSplitRoleDescription:"Split button",onSplitButtonAriaLabel:"Turn off camera and camera options",offSplitButtonAriaLabel:"Turn on camera and camera options",cameraActionTurnedOnAnnouncement:"Your camera has been turned on",cameraActionTurnedOffAnnouncement:"Your camera has been turned off",onSplitButtonPrimaryActionCamera:"Turn off camera",offSplitButtonPrimaryActionCamera:"Turn on camera",cameraPrimaryActionSplitButtonTitle:"Use camera",videoEffectsMenuItemTitle:"Effects"};var microphoneButton$k={onLabel:"Mic",offLabel:"Mic",tooltipDisabledContent:"Microphone is disabled",tooltipOnContent:"Mute microphone",tooltipOffContent:"Unmute microphone",microphoneMenuTitle:"Microphone",microphoneMenuTooltip:"Choose microphone",speakerMenuTitle:"Speaker",speakerMenuTooltip:"Choose speaker",microphoneButtonSplitRoleDescription:"Split button",onSplitButtonAriaLabel:"Mute microphone and audio options",offSplitButtonAriaLabel:"Unmute microphone and audio options",microphoneActionTurnedOnAnnouncement:"Your microphone has been turned on",microphoneActionTurnedOffAnnouncement:"Your microphone has been turned off",offSplitButtonMicrophonePrimaryAction:"Unmute microphone",onSplitButtonMicrophonePrimaryAction:"Mute microphone",microphonePrimaryActionSplitButtonTitle:"Use microphone"};var devicesButton$k={label:"Devices",tooltipContent:"Manage devices",cameraMenuTitle:"Camera",cameraMenuTooltip:"Choose camera",audioDeviceMenuTitle:"Audio Device",audioDeviceMenuTooltip:"Choose audio device",microphoneMenuTitle:"Microphone",microphoneMenuTooltip:"Choose microphone",speakerMenuTitle:"Speaker",speakerMenuTooltip:"Choose speaker"};var participantsButton$k={label:"People",tooltipContent:"Show participants",menuHeader:"In this call",participantsListButtonLabel:"{numParticipants} people",muteAllButtonLabel:"Mute all",copyInviteLinkButtonLabel:"Copy invite link",copyInviteLinkActionedAriaLabel:"Invite link copied"};var screenShareButton$k={onLabel:"Stop presenting",offLabel:"Present",tooltipDisabledContent:"Presenting is disabled",tooltipOnContent:"Presenting your screen",tooltipOffContent:"Present your screen"};var raiseHandButton$k={offLabel:"Raise",onLabel:"Lower",tooltipDisabledContent:"Raise Hand action is disabled",tooltipOnContent:"Lower Hand",tooltipOffContent:"Raise Hand"};var reactionButton={label:"React",tooltipDisabledContent:"Reaction action is disabled",tooltipContent:"Send a reaction"};var messageThread$k={yesterday:"Yesterday",sunday:"Sunday",monday:"Monday",tuesday:"Tuesday",wednesday:"Wednesday",thursday:"Thursday",friday:"Friday",saturday:"Saturday",participantJoined:"joined the chat.",participantLeft:"left the chat.",editMessage:"Edit",removeMessage:"Delete",resendMessage:"Try sending again",failToSendTag:"Failed to send",editedTag:"Edited",liveAuthorIntro:"{author} says",messageContentAriaText:"{author} said {message}",messageContentMineAriaText:"You said {message}",editBoxTextLimit:"Your message is over the limit of {limitNumber} characters",editBoxPlaceholderText:"Edit your message",newMessagesIndicator:"New messages",noDisplayNameSub:"No name",editBoxCancelButton:"Cancel",editBoxSubmitButton:"Done",messageReadCount:"Read by {messageReadByCount} of {remoteParticipantsCount}",actionMenuMoreOptions:"More Options",downloadFile:"Download file",blockedWarningText:"This message was deleted due to organizational policy.",blockedWarningLinkText:"Details",fileCardGroupMessage:"The message has {fileCount} attachment",messageDeletedAnnouncementAriaLabel:"The message is deleted"};var errorBar$k={unableToReachChatService:"You are offline",accessDenied:"Unable to access chat services - please check the user credentials provided",userNotInChatThread:"You are no longer in this chat thread",sendMessageNotInChatThread:"Failed to send message because you are no longer in this chat thread",sendMessageGeneric:"Failed to send message",callingNetworkFailure:"Troubling connecting call - you seem to be offline",startVideoGeneric:"Failed to start video",stopVideoGeneric:"Failed to stop video",muteGeneric:"Failed to mute microphone",unmuteGeneric:"Failed to unmute microphone",speakingWhileMuted:"Your microphone is muted",startScreenShareGeneric:"There was an issue starting screen share.",stopScreenShareGeneric:"Failed to stop screen sharing",callNetworkQualityLow:"Network quality is low.",callNoSpeakerFound:"No speakers or headphones found. Connect an audio device to hear the call.",callNoMicrophoneFound:"No microphones found. Connect an audio input device.",callMicrophoneAccessDenied:"Unable to access microphone. Click the lock in the address bar to grant permission to this webpage.",callMicrophoneAccessDeniedSafari:"Unable to access microphone. Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",callMicrophoneMutedBySystem:"You are muted by your system.",callMicrophoneUnmutedBySystem:"Your microphone recovered and you were unmuted by your system.",callMacOsMicrophoneAccessDenied:"Unable to access microphone. Grant microphone permission in your macOS privacy settings.",callLocalVideoFreeze:"Network bandwidth is poor. Your video may appear paused for others on the call.",callCameraAccessDenied:"Unable to access camera. Click the lock in the address bar to grant permission to this webpage.",callCameraAccessDeniedSafari:"Unable to access camera. Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",callCameraAlreadyInUse:"Unable to access camera. It may already be in use by another application.",callVideoStoppedBySystem:"Your video has been stopped by your system.",callVideoRecoveredBySystem:"Your video has resumed.",callMacOsCameraAccessDenied:"MacOS is blocking access to your camera. Update your privacy settings to allow this browser to access your camera.",callMacOsScreenShareAccessDenied:"MacOS is blocking screen sharing. Update your privacy settings to allow this browser to record your screen.",dismissButtonAriaLabel:"Close",failedToJoinCallGeneric:"Failed to join call.",failedToJoinCallInvalidMeetingLink:"Unable to join Meeting. Invalid Link.",cameraFrozenForRemoteParticipants:"Users in the call are having issues seeing your video. Please check your devices and network.",unableToStartVideoEffect:"Unable to apply video effect."};var videoGallery$k={screenIsBeingSharedMessage:"You are sharing your screen",screenShareLoadingMessage:"Loading {participant}'s screen",localVideoLabel:"You",localVideoCameraSwitcherLabel:"Switch camera",localVideoMovementLabel:"Movable Local Video Tile",localVideoSelectedDescription:"{cameraName} selected",displayNamePlaceholder:"Unnamed participant",fitRemoteParticipantToFrame:"Fit to frame",fillRemoteParticipantFrame:"Fill frame",pinParticipantForMe:"Pin for me",pinParticipantForMeLimitReached:"Pin (limit reached)",unpinParticipantForMe:"Unpin",pinParticipantMenuItemAriaLabel:"Pin {participantName}",unpinParticipantMenuItemAriaLabel:"Unpin {participantName}",pinnedParticipantAnnouncementAriaLabel:"Pinned {participantName}",unpinnedParticipantAnnouncementAriaLabel:"Unpinned {participantName}"};var dialpad$k={placeholderText:"Enter phone number",deleteButtonAriaLabel:"Delete"};var holdButton$k={onLabel:"Resume",offLabel:"Hold",tooltipOnContent:"Resume call",tooltipOffContent:"Hold call"};var videoTile$k={participantStateRinging:"Calling...",participantStateHold:"On hold"};var CameraAndMicrophoneSitePermissionsRequest$k={primaryText:"Allow {appName} to use your camera and microphone",secondaryText:"This is so participants can see and hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera and microphone",ariaLabel:"Allow camera and microphone access"};var CameraSitePermissionsRequest$k={primaryText:"Allow {appName} to use your camera",secondaryText:"This is so participants can see you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera",ariaLabel:"Allow camera access"};var MicrophoneSitePermissionsRequest$k={primaryText:"Allow {appName} to use your microphone",secondaryText:"This is so participants can hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without microphone",ariaLabel:"Allow microphone access"};var CameraAndMicrophoneSitePermissionsCheck$k={primaryText:"Checking for camera and microphone access",secondaryText:"Allow access if prompted. This is so participants can see and hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera and microphone",ariaLabel:"Checking for camera and microphone access. Allow access if prompted."};var CameraSitePermissionsCheck$k={primaryText:"Checking for camera access",secondaryText:"Allow access if prompted. This is so participants can see you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without camera",ariaLabel:"Checking for camera access. Allow access if prompted."};var MicrophoneSitePermissionsCheck$k={primaryText:"Checking for microphone access",secondaryText:"Allow access if prompted. This is so participants can hear you.",linkText:"Need help? Get troubleshooting help",primaryButtonText:"Continue without microphone",ariaLabel:"Checking for microphone access. Allow access if prompted."};var CameraAndMicrophoneSitePermissionsDenied$k={primaryText:"Unable to access camera and microphone",secondaryText:"Click the lock icon in the address bar to grant microphone permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without camera and microphone",linkText:"Need help? Get troubleshooting help"};var CameraAndMicrophoneSitePermissionsDeniedSafari$k={primaryText:"Unable to access camera and microphone",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without camera and microphone",linkText:"Need help? Get troubleshooting help"};var CameraSitePermissionsDenied$k={primaryText:"Unable to access camera",secondaryText:"Click the lock icon in the address bar to grant camera permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without camera",linkText:"Need help? Get troubleshooting help"};var MicrophoneSitePermissionsDenied$k={primaryText:"Unable to access microphone",secondaryText:"Click the lock icon in the address bar to grant microphone permissions to this webpage. A page refresh may be required.",primaryButtonText:"Continue without microphone",linkText:"Need help? Get troubleshooting help"};var CameraSitePermissionsDeniedSafari$k={primaryText:"Unable to access camera",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without camera",linkText:"Need help? Get troubleshooting help"};var MicrophoneSitePermissionsDeniedSafari$k={primaryText:"Unable to access microphone",secondaryText:"Refresh the page to allow permissions, or check this browser’s settings and verify permissions are enabled for this website.",primaryButtonText:"Continue without microphone",linkText:"Need help? Get troubleshooting help"};var UnsupportedBrowser$l={primaryText:"Browser not supported",secondaryText:"Please join this call using a compatible browser.",moreHelpLinkText:"See compatibility requirements"};var UnsupportedBrowserVersion$l={primaryText:"Browser update needed",secondaryText:"To ensure the best call possible, please update your browser and then try joining the call again.",moreHelpLinkText:"See compatibility requirements",continueAnywayButtonText:"Start call without updating"};var UnsupportedOperatingSystem$l={primaryText:"Operating system not supported",secondaryText:"Please join this call using a device with a compatible operating system.",moreHelpLinkText:"See compatibility requirements"};var BrowserPermissionDenied$k={primaryText:"Can't use your camera or microphone",secondaryText:"Your browser might not have access to your camera or microphone. To fix this, open System Preferences.",primaryButtonText:"Try again",linkText:"Need help? Get troubleshooting help"};var BrowserPermissionDeniedIOS$k={primaryText:"Allow microphone access to continue",secondaryText:"So other participants can hear you.",primaryButtonText:"Try again",imageAltText:"Microphone and camera device permission location for iOS",linkText:"Need help? Get troubleshooting help",step1Text:"Go to the Settings app",step2Text:"Scroll down to settings for this browser",step3Text:"Turn on Microphone (Camera optional)",step4Text:"Try joining the call again",step1DigitText:"1",step2DigitText:"2",step3DigitText:"3",step4DigitText:"4"};var verticalGallery$k={leftNavButtonAriaLabel:"previous page",rightNavButtonAriaLabel:"next page"};var AttendeeRole$k="Attendee";var en_US$1 = {participantItem:participantItem$k,ParticipantList:ParticipantList$l,typingIndicator:typingIndicator$k,sendBox:sendBox$k,mentionPopover:mentionPopover$k,imageGallery:imageGallery$k,messageStatusIndicator:messageStatusIndicator$k,endCallButton:endCallButton$k,cameraButton:cameraButton$k,microphoneButton:microphoneButton$k,devicesButton:devicesButton$k,participantsButton:participantsButton$k,screenShareButton:screenShareButton$k,raiseHandButton:raiseHandButton$k,reactionButton:reactionButton,messageThread:messageThread$k,errorBar:errorBar$k,videoGallery:videoGallery$k,dialpad:dialpad$k,holdButton:holdButton$k,videoTile:videoTile$k,CameraAndMicrophoneSitePermissionsRequest:CameraAndMicrophoneSitePermissionsRequest$k,CameraSitePermissionsRequest:CameraSitePermissionsRequest$k,MicrophoneSitePermissionsRequest:MicrophoneSitePermissionsRequest$k,CameraAndMicrophoneSitePermissionsCheck:CameraAndMicrophoneSitePermissionsCheck$k,CameraSitePermissionsCheck:CameraSitePermissionsCheck$k,MicrophoneSitePermissionsCheck:MicrophoneSitePermissionsCheck$k,CameraAndMicrophoneSitePermissionsDenied:CameraAndMicrophoneSitePermissionsDenied$k,CameraAndMicrophoneSitePermissionsDeniedSafari:CameraAndMicrophoneSitePermissionsDeniedSafari$k,CameraSitePermissionsDenied:CameraSitePermissionsDenied$k,MicrophoneSitePermissionsDenied:MicrophoneSitePermissionsDenied$k,CameraSitePermissionsDeniedSafari:CameraSitePermissionsDeniedSafari$k,MicrophoneSitePermissionsDeniedSafari:MicrophoneSitePermissionsDeniedSafari$k,UnsupportedBrowser:UnsupportedBrowser$l,UnsupportedBrowserVersion:UnsupportedBrowserVersion$l,UnsupportedOperatingSystem:UnsupportedOperatingSystem$l,BrowserPermissionDenied:BrowserPermissionDenied$k,BrowserPermissionDeniedIOS:BrowserPermissionDeniedIOS$k,verticalGallery:verticalGallery$k,AttendeeRole:AttendeeRole$k};
|
5198
5274
|
|
5199
5275
|
// Copyright (c) Microsoft Corporation.
|
5200
5276
|
// Licensed under the MIT License.
|
@@ -6253,6 +6329,8 @@ const DEFAULT_COMPONENT_ICONS = {
|
|
6253
6329
|
RaiseHandContextualMenuItem: React.createElement(reactIcons.HandRight20Regular, null),
|
6254
6330
|
/* @conditional-compile-remove(raise-hand) */
|
6255
6331
|
LowerHandContextualMenuItem: React.createElement(reactIcons.HandRightOff20Regular, null),
|
6332
|
+
/* @conditional-compile-remove(reaction) */
|
6333
|
+
ReactionButtonIcon: React.createElement(reactIcons.Emoji20Regular, null),
|
6256
6334
|
/* @conditional-compile-remove(file-sharing) */
|
6257
6335
|
CancelFileUpload: React.createElement(reactIcons.Dismiss16Regular, null),
|
6258
6336
|
/* @conditional-compile-remove(file-sharing) */
|
@@ -17688,7 +17766,8 @@ const containerStyles$3 = (theme) => {
|
|
17688
17766
|
maxWidth: '16rem',
|
17689
17767
|
textAlign: 'center',
|
17690
17768
|
background: `${theme.palette.white}`,
|
17691
|
-
borderRadius: '0.75rem'
|
17769
|
+
borderRadius: '0.75rem',
|
17770
|
+
margin: 'auto'
|
17692
17771
|
};
|
17693
17772
|
};
|
17694
17773
|
/**
|
@@ -17697,10 +17776,13 @@ const containerStyles$3 = (theme) => {
|
|
17697
17776
|
const buttonStyles$1 = (theme) => ({
|
17698
17777
|
root: {
|
17699
17778
|
background: 'none',
|
17779
|
+
fontWeight: 600,
|
17780
|
+
fontSize: `${_pxToRem(20)}`,
|
17700
17781
|
border: 'none',
|
17701
17782
|
borderRadius: 0,
|
17702
|
-
width: '
|
17703
|
-
|
17783
|
+
width: '3rem',
|
17784
|
+
height: '3rem',
|
17785
|
+
padding: `${_pxToRem(16)}, ${_pxToRem(5)}, ${_pxToRem(16)}, ${_pxToRem(5)}`,
|
17704
17786
|
minWidth: 0,
|
17705
17787
|
minHeight: 0
|
17706
17788
|
}
|
@@ -17712,7 +17794,7 @@ const digitStyles = (theme) => {
|
|
17712
17794
|
return {
|
17713
17795
|
fontSize: '1.25rem',
|
17714
17796
|
fontWeight: theme.fonts.medium.fontWeight,
|
17715
|
-
color: `${theme.palette.
|
17797
|
+
color: `${theme.palette.themePrimary}`
|
17716
17798
|
};
|
17717
17799
|
};
|
17718
17800
|
/**
|
@@ -17721,24 +17803,40 @@ const digitStyles = (theme) => {
|
|
17721
17803
|
const textFieldStyles = (theme) => ({
|
17722
17804
|
field: {
|
17723
17805
|
padding: 0,
|
17724
|
-
textAlign: '
|
17725
|
-
fontSize:
|
17726
|
-
|
17806
|
+
textAlign: 'center',
|
17807
|
+
fontSize: `${_pxToRem(18)}`,
|
17808
|
+
fontWeight: 400,
|
17809
|
+
width: `${_pxToRem(192)}`,
|
17810
|
+
height: '3rem',
|
17811
|
+
borderRadius: '0.5rem',
|
17812
|
+
position: 'relative',
|
17813
|
+
overflowX: 'auto'
|
17727
17814
|
},
|
17728
17815
|
root: {
|
17729
17816
|
backgroundColor: `${theme.palette.neutralLighter}`,
|
17730
|
-
|
17731
|
-
|
17817
|
+
marginBottom: '0.625rem',
|
17818
|
+
height: '3rem',
|
17819
|
+
borderRadius: '0.5rem'
|
17732
17820
|
},
|
17733
17821
|
fieldGroup: {
|
17734
17822
|
border: 'none',
|
17735
|
-
|
17823
|
+
borderRadius: '0.5rem',
|
17824
|
+
height: '3rem',
|
17825
|
+
backgroundColor: `${theme.palette.neutralLighter}`,
|
17826
|
+
':after': {
|
17827
|
+
borderRadius: '0.5rem'
|
17828
|
+
}
|
17736
17829
|
},
|
17737
17830
|
errorMessage: {
|
17738
17831
|
color: theme.semanticColors.errorText
|
17739
17832
|
},
|
17740
17833
|
suffix: {
|
17741
|
-
padding: 0
|
17834
|
+
padding: 0,
|
17835
|
+
position: 'absolute',
|
17836
|
+
right: '0.25rem',
|
17837
|
+
top: '0.55rem',
|
17838
|
+
transform: 'scale(1.15)',
|
17839
|
+
background: 'unset'
|
17742
17840
|
}
|
17743
17841
|
});
|
17744
17842
|
/**
|
@@ -17759,10 +17857,13 @@ const letterStyles = (theme) => {
|
|
17759
17857
|
const iconButtonStyles = (theme) => {
|
17760
17858
|
return {
|
17761
17859
|
root: {
|
17762
|
-
color: `${theme.palette.black}
|
17860
|
+
color: `${theme.palette.black}`,
|
17861
|
+
padding: 0,
|
17862
|
+
background: 'transparent'
|
17763
17863
|
},
|
17764
17864
|
icon: {
|
17765
17865
|
height: 'auto',
|
17866
|
+
background: 'transparent',
|
17766
17867
|
// Needed to keep the icon vertically centered.
|
17767
17868
|
'> span': {
|
17768
17869
|
display: 'flex'
|
@@ -17981,13 +18082,15 @@ const DialpadContainer = (props) => {
|
|
17981
18082
|
var _a, _b;
|
17982
18083
|
const theme = react.useTheme();
|
17983
18084
|
const { onSendDtmfTone, onClickDialpadButton, textFieldValue, onChange, showDeleteButton = true, isMobile = false, disableDtmfPlayback, enableInputEditing } = props;
|
17984
|
-
const [plainTextValue, setPlainTextValue] = React.useState(textFieldValue !== null && textFieldValue !== void 0 ? textFieldValue : '');
|
17985
18085
|
const dtmfToneAudioContext = React.useRef(new AudioContext());
|
18086
|
+
const [plainTextValue, setPlainTextValue] = React.useState(textFieldValue !== null && textFieldValue !== void 0 ? textFieldValue : '');
|
18087
|
+
const plainTextValuePreviousRenderValue = React.useRef(plainTextValue);
|
17986
18088
|
React.useEffect(() => {
|
17987
|
-
if (
|
17988
|
-
onChange(plainTextValue);
|
18089
|
+
if (plainTextValuePreviousRenderValue.current !== plainTextValue) {
|
18090
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(plainTextValue);
|
17989
18091
|
}
|
17990
|
-
|
18092
|
+
plainTextValuePreviousRenderValue.current = plainTextValue;
|
18093
|
+
}, [plainTextValuePreviousRenderValue, plainTextValue, onChange]);
|
17991
18094
|
React.useEffect(() => {
|
17992
18095
|
setText(textFieldValue !== null && textFieldValue !== void 0 ? textFieldValue : '');
|
17993
18096
|
}, [textFieldValue]);
|
@@ -18024,7 +18127,7 @@ const DialpadContainer = (props) => {
|
|
18024
18127
|
const modifiedInput = plainTextValue.substring(0, plainTextValue.length - 1);
|
18025
18128
|
setText(modifiedInput);
|
18026
18129
|
};
|
18027
|
-
return (React.createElement(
|
18130
|
+
return (React.createElement(react.Stack, { className: react.mergeStyles(containerStyles$3(theme), (_a = props.styles) === null || _a === void 0 ? void 0 : _a.root), "data-test-id": "dialpadContainer", "data-ui-id": "dialpadContainer", horizontalAlign: 'center' },
|
18028
18131
|
React.createElement(react.TextField, { styles: react.concatStyleSets(textFieldStyles(theme), (_b = props.styles) === null || _b === void 0 ? void 0 : _b.textField), value: textFieldValue ? textFieldValue : enableInputEditing ? formatPhoneNumber(plainTextValue) : plainTextValue,
|
18029
18132
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
18030
18133
|
onChange: (e) => {
|
@@ -18040,7 +18143,7 @@ const DialpadContainer = (props) => {
|
|
18040
18143
|
return (React.createElement(React.Fragment, null, showDeleteButton && plainTextValue.length !== 0 && (React.createElement(react.IconButton, { ariaLabel: props.strings.deleteButtonAriaLabel, onClick: deleteNumbers, styles: react.concatStyleSets(iconButtonStyles(theme), (_a = props.styles) === null || _a === void 0 ? void 0 : _a.deleteIcon), iconProps: { iconName: 'DialpadBackspace' } }))));
|
18041
18144
|
} }),
|
18042
18145
|
React.createElement(react.FocusZone, null, dialPadButtonsDefault.map((rows, rowIndex) => {
|
18043
|
-
return (React.createElement(react.Stack, { horizontal: true, key: `row_${rowIndex}`, horizontalAlign: "stretch" }, rows.map((button, columnIndex) => (React.createElement(DialpadButton, { key: `button_${columnIndex}`,
|
18146
|
+
return (React.createElement(react.Stack, { horizontal: true, key: `row_${rowIndex}`, horizontalAlign: "stretch", tokens: { childrenGap: '1rem' } }, rows.map((button, columnIndex) => (React.createElement(DialpadButton, { key: `button_${columnIndex}`,
|
18044
18147
|
/* row index = 0
|
18045
18148
|
columnIndex: (0,1,2) => (0,1,2)
|
18046
18149
|
row index = 1
|
@@ -19621,6 +19724,9 @@ const memoizeLocalParticipant = memoizeOne((identifier, displayName, isMuted, is
|
|
19621
19724
|
reaction: reaction
|
19622
19725
|
});
|
19623
19726
|
});
|
19727
|
+
/* @conditional-compile-remove(spotlight) */
|
19728
|
+
/** @private */
|
19729
|
+
const memoizeSpotlightedParticipantIds = memoizeOne((spotlightedParticipants) => spotlightedParticipants === null || spotlightedParticipants === void 0 ? void 0 : spotlightedParticipants.map((p) => toFlatCommunicationIdentifier(p.identifier)));
|
19624
19730
|
|
19625
19731
|
// Copyright (c) Microsoft Corporation.
|
19626
19732
|
// Licensed under the MIT License.
|
@@ -19664,7 +19770,9 @@ const videoGallerySelector = reselect.createSelector([
|
|
19664
19770
|
/* @conditional-compile-remove(hide-attendee-name) */
|
19665
19771
|
isHideAttendeeNamesEnabled,
|
19666
19772
|
/* @conditional-compile-remove(reaction) */
|
19667
|
-
getLocalParticipantReactionState
|
19773
|
+
getLocalParticipantReactionState,
|
19774
|
+
/* @conditional-compile-remove(spotlight) */
|
19775
|
+
getSpotlightedParticipants
|
19668
19776
|
], (screenShareRemoteParticipantId, remoteParticipants, localVideoStreams, isMuted, isScreenSharingOn, displayName, identifier, dominantSpeakers,
|
19669
19777
|
/* @conditional-compile-remove(optimal-video-count) */
|
19670
19778
|
optimalVideoCount,
|
@@ -19675,7 +19783,9 @@ raisedHand,
|
|
19675
19783
|
/* @conditional-compile-remove(hide-attendee-name) */
|
19676
19784
|
isHideAttendeeNamesEnabled,
|
19677
19785
|
/* @conditional-compile-remove(reaction) */
|
19678
|
-
localParticipantReaction
|
19786
|
+
localParticipantReaction,
|
19787
|
+
/* @conditional-compile-remove(spotlight) */
|
19788
|
+
spotlightedParticipants) => {
|
19679
19789
|
const screenShareRemoteParticipant = screenShareRemoteParticipantId && remoteParticipants
|
19680
19790
|
? remoteParticipants[screenShareRemoteParticipantId]
|
19681
19791
|
: undefined;
|
@@ -19685,6 +19795,8 @@ localParticipantReaction) => {
|
|
19685
19795
|
const noRemoteParticipants = [];
|
19686
19796
|
/* @conditional-compile-remove(reaction) */
|
19687
19797
|
const localParticipantReactionState = memoizedConvertToVideoTileReaction(localParticipantReaction);
|
19798
|
+
/* @conditional-compile-remove(spotlight) */
|
19799
|
+
const spotlightedParticipantIds = memoizeSpotlightedParticipantIds(spotlightedParticipants);
|
19688
19800
|
return {
|
19689
19801
|
screenShareParticipant: screenShareRemoteParticipant
|
19690
19802
|
? convertRemoteParticipantToVideoGalleryRemoteParticipant(toFlatCommunicationIdentifier(screenShareRemoteParticipant.identifier), screenShareRemoteParticipant.isMuted, checkIsSpeaking(screenShareRemoteParticipant), screenShareRemoteParticipant.videoStreams, screenShareRemoteParticipant.state, screenShareRemoteParticipant.displayName,
|
@@ -19705,7 +19817,9 @@ localParticipantReaction) => {
|
|
19705
19817
|
role),
|
19706
19818
|
dominantSpeakers: dominantSpeakerIds,
|
19707
19819
|
/* @conditional-compile-remove(optimal-video-count) */
|
19708
|
-
maxRemoteVideoStreams: optimalVideoCount
|
19820
|
+
maxRemoteVideoStreams: optimalVideoCount,
|
19821
|
+
/* @conditional-compile-remove(spotlight) */
|
19822
|
+
spotlightedParticipants: spotlightedParticipantIds
|
19709
19823
|
};
|
19710
19824
|
});
|
19711
19825
|
const updateUserDisplayNamesTrampoline$2 = (remoteParticipants) => {
|
@@ -24677,6 +24791,14 @@ const createCompositeHandlers = memoizeOne((adapter) => ({
|
|
24677
24791
|
/* @conditional-compile-remove(end-of-call-survey) */
|
24678
24792
|
onSubmitSurvey: (survey) => __awaiter$g(void 0, void 0, void 0, function* () {
|
24679
24793
|
return yield adapter.submitSurvey(survey);
|
24794
|
+
}),
|
24795
|
+
/* @conditional-compile-remove(spotlight) */
|
24796
|
+
onStartSpotlight: (userId) => __awaiter$g(void 0, void 0, void 0, function* () {
|
24797
|
+
yield adapter.startSpotlight(userId);
|
24798
|
+
}),
|
24799
|
+
/* @conditional-compile-remove(spotlight) */
|
24800
|
+
onStopSpotlight: (userId) => __awaiter$g(void 0, void 0, void 0, function* () {
|
24801
|
+
yield adapter.stopSpotlight(userId);
|
24680
24802
|
})
|
24681
24803
|
}));
|
24682
24804
|
|
@@ -32629,6 +32751,18 @@ class AzureCommunicationCallAdapter {
|
|
32629
32751
|
return this.handlers.onSubmitSurvey(survey);
|
32630
32752
|
});
|
32631
32753
|
}
|
32754
|
+
/* @conditional-compile-remove(spotlight) */
|
32755
|
+
startSpotlight(userId) {
|
32756
|
+
return __awaiter$5(this, void 0, void 0, function* () {
|
32757
|
+
return this.handlers.onStartSpotlight(userId);
|
32758
|
+
});
|
32759
|
+
}
|
32760
|
+
/* @conditional-compile-remove(spotlight) */
|
32761
|
+
stopSpotlight(userId) {
|
32762
|
+
return __awaiter$5(this, void 0, void 0, function* () {
|
32763
|
+
return this.handlers.onStopSpotlight(userId);
|
32764
|
+
});
|
32765
|
+
}
|
32632
32766
|
getState() {
|
32633
32767
|
return this.context.getState();
|
32634
32768
|
}
|
@@ -33354,6 +33488,18 @@ class CallWithChatBackedCallAdapter {
|
|
33354
33488
|
return this.callWithChatAdapter.submitSurvey(survey);
|
33355
33489
|
});
|
33356
33490
|
}
|
33491
|
+
/* @conditional-compile-remove(spotlight) */
|
33492
|
+
startSpotlight(userId) {
|
33493
|
+
return __awaiter$4(this, void 0, void 0, function* () {
|
33494
|
+
return this.callWithChatAdapter.startSpotlight(userId);
|
33495
|
+
});
|
33496
|
+
}
|
33497
|
+
/* @conditional-compile-remove(spotlight) */
|
33498
|
+
stopSpotlight(userId) {
|
33499
|
+
return __awaiter$4(this, void 0, void 0, function* () {
|
33500
|
+
return this.callWithChatAdapter.stopSpotlight(userId);
|
33501
|
+
});
|
33502
|
+
}
|
33357
33503
|
}
|
33358
33504
|
function callAdapterStateFromCallWithChatAdapterState(callWithChatAdapterState) {
|
33359
33505
|
return {
|
@@ -34464,6 +34610,18 @@ class AzureCommunicationCallWithChatAdapter {
|
|
34464
34610
|
return this.callAdapter.submitSurvey(survey);
|
34465
34611
|
});
|
34466
34612
|
}
|
34613
|
+
/* @conditional-compile-remove(spotlight) */
|
34614
|
+
startSpotlight(userId) {
|
34615
|
+
return __awaiter$2(this, void 0, void 0, function* () {
|
34616
|
+
return this.callAdapter.startSpotlight(userId);
|
34617
|
+
});
|
34618
|
+
}
|
34619
|
+
/* @conditional-compile-remove(spotlight) */
|
34620
|
+
stopSpotlight(userId) {
|
34621
|
+
return __awaiter$2(this, void 0, void 0, function* () {
|
34622
|
+
return this.callAdapter.stopSpotlight(userId);
|
34623
|
+
});
|
34624
|
+
}
|
34467
34625
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
34468
34626
|
on(event, listener) {
|
34469
34627
|
switch (event) {
|