File tree Expand file tree Collapse file tree
communication-react/stable-review
src/composites/CallWithChatComposite Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -738,7 +738,6 @@ export interface CallWithChatCompositeProps extends BaseCompositeProps<CallWithC
738738 // (undocumented)
739739 adapter: CallWithChatAdapter ;
740740 fluentTheme? : PartialTheme | Theme ;
741- // @beta
742741 formFactor? : ' desktop' | ' mobile' ;
743742 joinInvitationURL? : string ;
744743 options? : CallWithChatCompositeOptions ;
@@ -2130,10 +2129,6 @@ export const SendBox: (props: SendBoxProps) => JSX.Element;
21302129export interface SendBoxProps {
21312130 autoFocus? : ' sendBoxTextField' ;
21322131 disabled? : boolean ;
2133- // @beta
2134- onCancelFileUpload? : (fileId : string ) => void ;
2135- // @beta
2136- onRenderFileUploads? : () => JSX .Element ;
21372132 onRenderIcon? : (isHover : boolean ) => JSX .Element ;
21382133 onRenderSystemMessage? : (systemMessage : string | undefined ) => React_2 .ReactElement ;
21392134 onSendMessage? : (content : string ) => Promise <void >;
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ export interface SendBoxProps {
160160 * When undefined nothing has focus on render
161161 */
162162 autoFocus ?: 'sendBoxTextField' ;
163+ /* @conditional -compile-remove(file-sharing) */
163164 /**
164165 * Optional callback to render uploaded files in the SendBox. The sendbox will expand
165166 * veritcally to accomodate the uploaded files. File uploads will
@@ -174,6 +175,7 @@ export interface SendBoxProps {
174175 * @beta
175176 */
176177 activeFileUploads ?: ActiveFileUpload [ ] ;
178+ /* @conditional -compile-remove(file-sharing) */
177179 /**
178180 * Optional callback to remove the file upload before sending by clicking on
179181 * cancel icon.
Original file line number Diff line number Diff line change @@ -897,10 +897,6 @@ export const SendBox: (props: SendBoxProps) => JSX.Element;
897897export interface SendBoxProps {
898898 autoFocus? : ' sendBoxTextField' ;
899899 disabled? : boolean ;
900- // @beta
901- onCancelFileUpload? : (fileId : string ) => void ;
902- // @beta
903- onRenderFileUploads? : () => JSX .Element ;
904900 onRenderIcon? : (isHover : boolean ) => JSX .Element ;
905901 onRenderSystemMessage? : (systemMessage : string | undefined ) => React_2 .ReactElement ;
906902 onSendMessage? : (content : string ) => Promise <void >;
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ export interface CallWithChatCompositeProps extends BaseCompositeProps<CallWithC
4848 * Optimizes the composite form factor for either desktop or mobile.
4949 * @remarks `mobile` is currently only optimized for Portrait mode on mobile devices and does not support landscape.
5050 * @defaultValue 'desktop'
51- * @beta
5251 */
5352 formFactor ?: 'desktop' | 'mobile' ;
5453 /**
Original file line number Diff line number Diff line change @@ -537,7 +537,6 @@ export interface CallWithChatCompositeProps extends BaseCompositeProps<CallWithC
537537 // (undocumented)
538538 adapter: CallWithChatAdapter ;
539539 fluentTheme? : PartialTheme | Theme ;
540- // @beta
541540 formFactor? : ' desktop' | ' mobile' ;
542541 joinInvitationURL? : string ;
543542 options? : CallWithChatCompositeOptions ;
You can’t perform that action at this time.
0 commit comments