@@ -415,7 +415,6 @@ export interface CallAdapterCallOperations {
415
415
leaveCall(forEveryone?: boolean): Promise<void>;
416
416
lowerHand(): Promise<void>;
417
417
mute(): Promise<void>;
418
- // @beta
419
418
onReactionClick(reaction: Reaction_2): Promise<void>;
420
419
raiseHand(): Promise<void>;
421
420
removeParticipant(userId: string): Promise<void>;
@@ -1035,7 +1034,6 @@ export interface CallState {
1035
1034
isMuted: boolean;
1036
1035
isScreenSharingOn: boolean;
1037
1036
kind: CallKind;
1038
- // @beta
1039
1037
localParticipantReaction?: ReactionState;
1040
1038
localRecording: LocalRecordingCallFeatureState;
1041
1039
localVideoStreams: LocalVideoStreamState[];
@@ -1101,7 +1099,6 @@ export interface CallWithChatAdapterManagement {
1101
1099
loadPreviousChatMessages(messagesToLoad: number): Promise<boolean>;
1102
1100
lowerHand(): Promise<void>;
1103
1101
mute(): Promise<void>;
1104
- // @beta
1105
1102
onReactionClick(reaction: Reaction_2): Promise<void>;
1106
1103
queryCameras(): Promise<VideoDeviceInfo[]>;
1107
1104
queryMicrophones(): Promise<AudioDeviceInfo[]>;
@@ -1284,7 +1281,6 @@ export interface CallWithChatClientState {
1284
1281
latestCallErrors: AdapterErrors;
1285
1282
latestChatErrors: AdapterErrors;
1286
1283
onResolveVideoEffectDependency?: () => Promise<VideoBackgroundEffectsDependency>;
1287
- // @beta
1288
1284
reactions?: ReactionResources;
1289
1285
selectedVideoBackgroundEffect?: VideoBackgroundEffect;
1290
1286
userId: CommunicationIdentifierKind;
@@ -2017,7 +2013,7 @@ export interface CommonCallingHandlers {
2017
2013
onLowerHand: () => Promise<void>;
2018
2014
// (undocumented)
2019
2015
onRaiseHand: () => Promise<void>;
2020
- // @beta (undocumented)
2016
+ // (undocumented)
2021
2017
onReactionClick: (reaction: Reaction_2) => Promise<void>;
2022
2018
// (undocumented)
2023
2019
onRemoveParticipant(userId: string): Promise<void>;
@@ -2202,7 +2198,6 @@ export interface ComponentStrings {
2202
2198
ParticipantList: ParticipantListStrings;
2203
2199
participantsButton: ParticipantsButtonStrings;
2204
2200
raiseHandButton: RaiseHandButtonStrings;
2205
- // @beta
2206
2201
reactionButton: ReactionButtonStrings;
2207
2202
richTextSendBox: RichTextSendBoxStrings;
2208
2203
screenShareButton: ScreenShareButtonStrings;
@@ -3769,20 +3764,20 @@ export interface RaiseHandCallFeature {
3769
3764
raisedHands: RaisedHandState[];
3770
3765
}
3771
3766
3772
- // @beta
3767
+ // @public
3773
3768
export type Reaction = {
3774
3769
reactionType: string;
3775
3770
receivedOn: Date;
3776
3771
};
3777
3772
3778
- // @beta
3773
+ // @public
3779
3774
export interface ReactionButtonProps extends ControlBarButtonProps {
3780
3775
onReactionClick: (reaction: string) => Promise<void>;
3781
3776
reactionResources: ReactionResources;
3782
3777
strings?: Partial<ReactionButtonStrings>;
3783
3778
}
3784
3779
3785
- // @beta
3780
+ // @public
3786
3781
export interface ReactionButtonStrings {
3787
3782
applauseReactionTooltipContent?: string;
3788
3783
ariaLabel: string;
@@ -3795,7 +3790,7 @@ export interface ReactionButtonStrings {
3795
3790
tooltipDisabledContent?: string;
3796
3791
}
3797
3792
3798
- // @beta
3793
+ // @public
3799
3794
export interface ReactionResources {
3800
3795
applauseReaction?: ReactionSprite;
3801
3796
heartReaction?: ReactionSprite;
@@ -3804,14 +3799,14 @@ export interface ReactionResources {
3804
3799
surprisedReaction?: ReactionSprite;
3805
3800
}
3806
3801
3807
- // @beta
3802
+ // @public
3808
3803
export type ReactionSprite = {
3809
3804
url: string;
3810
3805
frameCount: number;
3811
3806
size?: number;
3812
3807
};
3813
3808
3814
- // @beta
3809
+ // @public
3815
3810
export type ReactionState = {
3816
3811
reactionMessage: ReactionMessage;
3817
3812
receivedOn: Date;
@@ -3841,7 +3836,6 @@ export interface RemoteParticipantState {
3841
3836
isMuted: boolean;
3842
3837
isSpeaking: boolean;
3843
3838
raisedHand?: RaisedHandState;
3844
- // @beta
3845
3839
reactionState?: ReactionState;
3846
3840
role?: ParticipantRole;
3847
3841
spotlight?: SpotlightState;
@@ -4535,7 +4529,6 @@ export type VideoGalleryLayout = 'default' | 'floatingLocalVideo' | 'speaker' |
4535
4529
// @public
4536
4530
export interface VideoGalleryLocalParticipant extends VideoGalleryParticipant {
4537
4531
raisedHand?: RaisedHand;
4538
- // @beta
4539
4532
reaction?: Reaction;
4540
4533
}
4541
4534
@@ -4577,7 +4570,6 @@ export interface VideoGalleryProps {
4577
4570
onUnpinParticipant?: (userId: string) => void;
4578
4571
overflowGalleryPosition?: OverflowGalleryPosition;
4579
4572
pinnedParticipants?: string[];
4580
- // @beta
4581
4573
reactionResources?: ReactionResources;
4582
4574
remoteParticipants?: VideoGalleryRemoteParticipant[];
4583
4575
remoteVideoTileMenu?: false | VideoTileContextualMenuProps | VideoTileDrawerMenuProps;
@@ -4593,7 +4585,6 @@ export interface VideoGalleryProps {
4593
4585
export interface VideoGalleryRemoteParticipant extends VideoGalleryParticipant {
4594
4586
isSpeaking?: boolean;
4595
4587
raisedHand?: RaisedHand;
4596
- // @beta
4597
4588
reaction?: Reaction;
4598
4589
screenShareStream?: VideoGalleryStream;
4599
4590
// @beta
@@ -4699,13 +4690,11 @@ export interface VideoTileProps {
4699
4690
noVideoAvailableAriaLabel?: string;
4700
4691
onLongTouch?: () => void;
4701
4692
onRenderPlaceholder?: OnRenderAvatarCallback;
4702
- // @beta
4703
4693
overlay?: JSX.Element | null;
4704
4694
participantState?: ParticipantState;
4705
4695
personaMaxSize?: number;
4706
4696
personaMinSize?: number;
4707
4697
raisedHand?: RaisedHand;
4708
- // @beta
4709
4698
reactionResources?: ReactionResources;
4710
4699
renderElement?: JSX.Element | null;
4711
4700
showLabel?: boolean;
0 commit comments