@azure/communication-react 1.7.1-alpha-202308170011 → 1.7.1-alpha-202308172328

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.
Files changed (128) hide show
  1. package/dist/communication-react.d.ts +115 -8
  2. package/dist/dist-cjs/communication-react/index.js +688 -117
  3. package/dist/dist-cjs/communication-react/index.js.map +1 -1
  4. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
  5. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
  6. package/dist/dist-esm/calling-component-bindings/src/baseSelectors.d.ts +5 -0
  7. package/dist/dist-esm/calling-component-bindings/src/baseSelectors.js +8 -0
  8. package/dist/dist-esm/calling-component-bindings/src/baseSelectors.js.map +1 -1
  9. package/dist/dist-esm/calling-component-bindings/src/callControlSelectors.d.ts +15 -0
  10. package/dist/dist-esm/calling-component-bindings/src/callControlSelectors.js +16 -1
  11. package/dist/dist-esm/calling-component-bindings/src/callControlSelectors.js.map +1 -1
  12. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.d.ts +3 -0
  13. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js +28 -6
  14. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js.map +1 -1
  15. package/dist/dist-esm/calling-component-bindings/src/handlers/createTeamsCallHandlers.js.map +1 -1
  16. package/dist/dist-esm/calling-component-bindings/src/hooks/usePropsFor.js +13 -1
  17. package/dist/dist-esm/calling-component-bindings/src/hooks/usePropsFor.js.map +1 -1
  18. package/dist/dist-esm/calling-component-bindings/src/participantListSelector.js +8 -1
  19. package/dist/dist-esm/calling-component-bindings/src/participantListSelector.js.map +1 -1
  20. package/dist/dist-esm/calling-component-bindings/src/utils/participantListSelectorUtils.d.ts +2 -2
  21. package/dist/dist-esm/calling-component-bindings/src/utils/participantListSelectorUtils.js +4 -10
  22. package/dist/dist-esm/calling-component-bindings/src/utils/participantListSelectorUtils.js.map +1 -1
  23. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.d.ts +3 -2
  24. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js +22 -7
  25. package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js.map +1 -1
  26. package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.js +14 -4
  27. package/dist/dist-esm/calling-component-bindings/src/videoGallerySelector.js.map +1 -1
  28. package/dist/dist-esm/calling-stateful-client/src/CallClientState.d.ts +11 -4
  29. package/dist/dist-esm/calling-stateful-client/src/CallClientState.js +0 -1
  30. package/dist/dist-esm/calling-stateful-client/src/CallClientState.js.map +1 -1
  31. package/dist/dist-esm/calling-stateful-client/src/CallContext.js +13 -3
  32. package/dist/dist-esm/calling-stateful-client/src/CallContext.js.map +1 -1
  33. package/dist/dist-esm/calling-stateful-client/src/Converter.d.ts +6 -0
  34. package/dist/dist-esm/calling-stateful-client/src/Converter.js +9 -0
  35. package/dist/dist-esm/calling-stateful-client/src/Converter.js.map +1 -1
  36. package/dist/dist-esm/calling-stateful-client/src/index-public.d.ts +1 -0
  37. package/dist/dist-esm/calling-stateful-client/src/index-public.js.map +1 -1
  38. package/dist/dist-esm/communication-react/src/index.d.ts +2 -0
  39. package/dist/dist-esm/communication-react/src/index.js +2 -0
  40. package/dist/dist-esm/communication-react/src/index.js.map +1 -1
  41. package/dist/dist-esm/react-components/src/components/ParticipantList.js +45 -13
  42. package/dist/dist-esm/react-components/src/components/ParticipantList.js.map +1 -1
  43. package/dist/dist-esm/react-components/src/components/VideoGallery/DefaultLayout.js +10 -2
  44. package/dist/dist-esm/react-components/src/components/VideoGallery/DefaultLayout.js.map +1 -1
  45. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js +2 -1
  46. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js.map +1 -1
  47. package/dist/dist-esm/react-components/src/components/VideoGallery/SpeakerVideoLayout.d.ts +28 -0
  48. package/dist/dist-esm/react-components/src/components/VideoGallery/SpeakerVideoLayout.js +145 -0
  49. package/dist/dist-esm/react-components/src/components/VideoGallery/SpeakerVideoLayout.js.map +1 -0
  50. package/dist/dist-esm/react-components/src/components/VideoGallery/utils/videoGalleryLayoutUtils.d.ts +2 -0
  51. package/dist/dist-esm/react-components/src/components/VideoGallery/utils/videoGalleryLayoutUtils.js +19 -2
  52. package/dist/dist-esm/react-components/src/components/VideoGallery/utils/videoGalleryLayoutUtils.js.map +1 -1
  53. package/dist/dist-esm/react-components/src/components/VideoGallery.d.ts +1 -1
  54. package/dist/dist-esm/react-components/src/components/VideoGallery.js +14 -5
  55. package/dist/dist-esm/react-components/src/components/VideoGallery.js.map +1 -1
  56. package/dist/dist-esm/react-components/src/components/VideoTile.js +2 -2
  57. package/dist/dist-esm/react-components/src/components/VideoTile.js.map +1 -1
  58. package/dist/dist-esm/react-components/src/gallery/dominantSpeaker.d.ts +7 -0
  59. package/dist/dist-esm/react-components/src/gallery/dominantSpeaker.js +5 -1
  60. package/dist/dist-esm/react-components/src/gallery/dominantSpeaker.js.map +1 -1
  61. package/dist/dist-esm/react-components/src/theming/icons.d.ts +2 -0
  62. package/dist/dist-esm/react-components/src/theming/icons.js +5 -1
  63. package/dist/dist-esm/react-components/src/theming/icons.js.map +1 -1
  64. package/dist/dist-esm/react-components/src/types/ParticipantListParticipant.d.ts +1 -1
  65. package/dist/dist-esm/react-components/src/types/ParticipantListParticipant.js.map +1 -1
  66. package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.d.ts +10 -0
  67. package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js +5 -3
  68. package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js.map +1 -1
  69. package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.d.ts +12 -0
  70. package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.js.map +1 -1
  71. package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.d.ts +2 -0
  72. package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +20 -0
  73. package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js.map +1 -1
  74. package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.d.ts +12 -0
  75. package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.js.map +1 -1
  76. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.d.ts +3 -0
  77. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js +5 -1
  78. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js.map +1 -1
  79. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallControls.js +29 -0
  80. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallControls.js.map +1 -1
  81. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/LocalAndRemotePIP.d.ts +2 -0
  82. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/LocalAndRemotePIP.js +6 -2
  83. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/LocalAndRemotePIP.js.map +1 -1
  84. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/MediaGallery.d.ts +2 -0
  85. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/MediaGallery.js +21 -11
  86. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/MediaGallery.js.map +1 -1
  87. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/buttons/RaiseHand.d.ts +12 -0
  88. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/buttons/RaiseHand.js +26 -0
  89. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/buttons/RaiseHand.js.map +1 -0
  90. package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js +19 -4
  91. package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js.map +1 -1
  92. package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/CallPage.d.ts +2 -0
  93. package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/CallPage.js +13 -3
  94. package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/CallPage.js.map +1 -1
  95. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/baseSelectors.d.ts +5 -0
  96. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/baseSelectors.js +5 -0
  97. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/baseSelectors.js.map +1 -1
  98. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/localAndRemotePIPSelector.d.ts +3 -1
  99. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/localAndRemotePIPSelector.js +12 -2
  100. package/dist/dist-esm/react-composites/src/composites/CallComposite/selectors/localAndRemotePIPSelector.js.map +1 -1
  101. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/CallWithChatComposite.d.ts +10 -0
  102. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/CallWithChatComposite.js +6 -2
  103. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/CallWithChatComposite.js.map +1 -1
  104. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.d.ts +4 -0
  105. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js +18 -0
  106. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js.map +1 -1
  107. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.d.ts +12 -0
  108. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatAdapter.js.map +1 -1
  109. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.d.ts +2 -0
  110. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.js +4 -0
  111. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/CallWithChatBackedCallAdapter.js.map +1 -1
  112. package/dist/dist-esm/react-composites/src/composites/ChatComposite/ChatScreen.js +11 -5
  113. package/dist/dist-esm/react-composites/src/composites/ChatComposite/ChatScreen.js.map +1 -1
  114. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/CommonCallControlBar.d.ts +3 -0
  115. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/CommonCallControlBar.js +13 -1
  116. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/CommonCallControlBar.js.map +1 -1
  117. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/DesktopMoreButton.d.ts +3 -0
  118. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/DesktopMoreButton.js +56 -0
  119. package/dist/dist-esm/react-composites/src/composites/common/ControlBar/DesktopMoreButton.js.map +1 -1
  120. package/dist/dist-esm/react-composites/src/composites/common/Drawer/MoreDrawer.js +25 -0
  121. package/dist/dist-esm/react-composites/src/composites/common/Drawer/MoreDrawer.js.map +1 -1
  122. package/dist/dist-esm/react-composites/src/composites/common/icons.d.ts +16 -2
  123. package/dist/dist-esm/react-composites/src/composites/common/icons.js +11 -1
  124. package/dist/dist-esm/react-composites/src/composites/common/icons.js.map +1 -1
  125. package/dist/dist-esm/react-composites/src/composites/common/types/CommonCallControlOptions.d.ts +7 -0
  126. package/dist/dist-esm/react-composites/src/composites/common/types/CommonCallControlOptions.js.map +1 -1
  127. package/dist/dist-esm/react-composites/src/composites/localization/locales/en-US/strings.json +4 -1
  128. package/package.json +8 -8
@@ -85,7 +85,6 @@ import { PersonaSize } from '@fluentui/react';
85
85
  import { PhoneNumberIdentifier } from '@azure/communication-common';
86
86
  import { PhoneNumberKind } from '@azure/communication-common';
87
87
  import { PropertyChangedEvent } from '@azure/communication-calling';
88
- import { RaisedHand as RaisedHand_2 } from '@azure/communication-calling';
89
88
  import { default as React_2 } from 'react';
90
89
  import type { RemoteParticipant } from '@azure/communication-calling';
91
90
  import { RemoteParticipantState as RemoteParticipantState_2 } from '@azure/communication-calling';
@@ -745,6 +744,18 @@ export declare interface CallAdapterCallOperations {
745
744
  * @public
746
745
  */
747
746
  startScreenShare(): Promise<void>;
747
+ /**
748
+ * Raise hand for current user
749
+ *
750
+ * @public
751
+ */
752
+ raiseHand(): Promise<void>;
753
+ /**
754
+ * lower hand for current user
755
+ *
756
+ * @public
757
+ */
758
+ lowerHand(): Promise<void>;
748
759
  /**
749
760
  * Stop sharing the screen
750
761
  *
@@ -1354,6 +1365,10 @@ export declare type CallCompositeIcons = {
1354
1365
  ControlButtonParticipants?: JSX.Element;
1355
1366
  ControlButtonScreenShareStart?: JSX.Element;
1356
1367
  ControlButtonScreenShareStop?: JSX.Element;
1368
+ ControlButtonRaiseHand?: JSX.Element;
1369
+ ControlButtonLowerHand?: JSX.Element;
1370
+ RaiseHandContextualMenuItem?: JSX.Element;
1371
+ LowerHandContextualMenuItem?: JSX.Element;
1357
1372
  ErrorBarCallCameraAccessDenied?: JSX.Element;
1358
1373
  ErrorBarCallCameraAlreadyInUse?: JSX.Element;
1359
1374
  ErrorBarCallLocalVideoFreeze?: JSX.Element;
@@ -1396,6 +1411,10 @@ export declare type CallCompositeIcons = {
1396
1411
  BlurVideoBackground?: JSX.Element;
1397
1412
  RemoveVideoBackgroundEffect?: JSX.Element;
1398
1413
  GalleryOptions?: JSX.Element;
1414
+ SpeakerGalleryLayout?: JSX.Element;
1415
+ FloatingLocalVideoGalleryLayout?: JSX.Element;
1416
+ DefaultGalleryLayout?: JSX.Element;
1417
+ OverflowGalleryTop?: JSX.Element;
1399
1418
  };
1400
1419
 
1401
1420
  /**
@@ -1476,6 +1495,15 @@ export declare type CallCompositeOptions = {
1476
1495
  * @remarks if 'false' the local video tile will not be rendered.
1477
1496
  */
1478
1497
  localVideoTile?: boolean | LocalVideoTileOptions;
1498
+ /**
1499
+ * Options for controlling the starting layout of the composite's video gallery
1500
+ */
1501
+ galleryOptions?: {
1502
+ /**
1503
+ * Layout for the gallery when the call starts
1504
+ */
1505
+ layout?: VideoGalleryLayout;
1506
+ };
1479
1507
  };
1480
1508
 
1481
1509
  /**
@@ -2033,6 +2061,18 @@ export declare interface CallCompositeStrings {
2033
2061
  * Label for the toggle to move the overflow gallery to the top
2034
2062
  */
2035
2063
  moreButtonGalleryPositionToggleLabel?: string;
2064
+ /**
2065
+ * Label for the selection of the speaker layout
2066
+ */
2067
+ moreButtonGallerySpeakerLayoutLabel?: string;
2068
+ /**
2069
+ * Label for the selection of the default (Gallery) layout
2070
+ */
2071
+ moreButtonGalleryDefaultLayoutLabel?: string;
2072
+ /**
2073
+ * Label for the selection of the floatingLocalVideo (Dynamic) layout
2074
+ */
2075
+ moreButtonGalleryFloatingLocalLayoutLabel?: string;
2036
2076
  }
2037
2077
 
2038
2078
  /**
@@ -2470,6 +2510,18 @@ export declare interface CallWithChatAdapterManagement {
2470
2510
  * @public
2471
2511
  */
2472
2512
  stopScreenShare(): Promise<void>;
2513
+ /**
2514
+ * Raise hand for local user.
2515
+ *
2516
+ * @public
2517
+ */
2518
+ raiseHand(): Promise<void>;
2519
+ /**
2520
+ * Lower hand for local user.
2521
+ *
2522
+ * @public
2523
+ */
2524
+ lowerHand(): Promise<void>;
2473
2525
  /**
2474
2526
  * Create the html view for a stream.
2475
2527
  *
@@ -3003,6 +3055,15 @@ export declare type CallWithChatCompositeOptions = {
3003
3055
  * if this is not supplied, the composite will not show a unsupported browser page.
3004
3056
  */
3005
3057
  onEnvironmentInfoTroubleshootingClick?: () => void;
3058
+ /**
3059
+ * Options for controlling the starting layout of the composite's video gallery
3060
+ */
3061
+ galleryOptions?: {
3062
+ /**
3063
+ * Layout for the gallery when the call starts
3064
+ */
3065
+ layout?: VideoGalleryLayout;
3066
+ };
3006
3067
  };
3007
3068
 
3008
3069
  /**
@@ -4260,6 +4321,13 @@ export declare type CommonCallControlOptions = {
4260
4321
  * @defaultValue true
4261
4322
  */
4262
4323
  moreButton?: boolean;
4324
+ /**
4325
+ * Show, Hide or Disable the screen share button during a call.
4326
+ * @defaultValue true
4327
+ */
4328
+ raiseHandButton?: boolean | {
4329
+ disabled: boolean;
4330
+ };
4263
4331
  /**
4264
4332
  * Inject custom buttons in the call controls.
4265
4333
  *
@@ -4297,6 +4365,9 @@ export declare interface CommonCallingHandlers {
4297
4365
  onStopScreenShare: () => Promise<void>;
4298
4366
  onToggleScreenShare: () => Promise<void>;
4299
4367
  onHangUp: (forEveryone?: boolean) => Promise<void>;
4368
+ onRaiseHand: () => Promise<void>;
4369
+ onLowerHand: () => Promise<void>;
4370
+ onToggleRaiseHand: () => Promise<void>;
4300
4371
  onToggleHold: () => Promise<void>;
4301
4372
  onAddParticipant(participant: CommunicationUserIdentifier): Promise<void>;
4302
4373
  onAddParticipant(participant: PhoneNumberIdentifier, options: AddPhoneNumberOptions): Promise<void>;
@@ -5376,6 +5447,8 @@ export declare const DEFAULT_COMPONENT_ICONS: {
5376
5447
  ControlButtonScreenShareStop: JSX.Element;
5377
5448
  ControlButtonRaiseHand: JSX.Element;
5378
5449
  ControlButtonLowerHand: JSX.Element;
5450
+ RaiseHandContextualMenuItem: JSX.Element;
5451
+ LowerHandContextualMenuItem: JSX.Element;
5379
5452
  CancelFileUpload: JSX.Element;
5380
5453
  DownloadFile: JSX.Element;
5381
5454
  DataLossPreventionProhibited: JSX.Element;
@@ -5477,6 +5550,10 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
5477
5550
  ControlButtonParticipants: JSX.Element;
5478
5551
  ControlButtonScreenShareStart: JSX.Element;
5479
5552
  ControlButtonScreenShareStop: JSX.Element;
5553
+ ControlButtonRaiseHand: JSX.Element;
5554
+ ControlButtonLowerHand: JSX.Element;
5555
+ RaiseHandContextualMenuItem: JSX.Element;
5556
+ LowerHandContextualMenuItem: JSX.Element;
5480
5557
  ErrorBarCallCameraAccessDenied: JSX.Element;
5481
5558
  ErrorBarCallCameraAlreadyInUse: JSX.Element;
5482
5559
  ErrorBarCallLocalVideoFreeze: JSX.Element;
@@ -5517,6 +5594,10 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
5517
5594
  BlurVideoBackground?: JSX.Element | undefined;
5518
5595
  RemoveVideoBackgroundEffect?: JSX.Element | undefined;
5519
5596
  GalleryOptions?: JSX.Element | undefined;
5597
+ SpeakerGalleryLayout?: JSX.Element | undefined;
5598
+ FloatingLocalVideoGalleryLayout?: JSX.Element | undefined;
5599
+ DefaultGalleryLayout?: JSX.Element | undefined;
5600
+ OverflowGalleryTop?: JSX.Element | undefined;
5520
5601
  ChevronLeft?: JSX.Element | undefined;
5521
5602
  ControlBarChatButtonActive?: JSX.Element | undefined;
5522
5603
  ControlBarChatButtonInactive?: JSX.Element | undefined;
@@ -5528,8 +5609,6 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
5528
5609
  MoreDrawerSpeakers?: JSX.Element | undefined;
5529
5610
  ChatMessageOptions: JSX.Element;
5530
5611
  ControlButtonParticipantsContextualMenuItem: JSX.Element;
5531
- ControlButtonRaiseHand: JSX.Element;
5532
- ControlButtonLowerHand: JSX.Element;
5533
5612
  CancelFileUpload: JSX.Element;
5534
5613
  DownloadFile: JSX.Element;
5535
5614
  DataLossPreventionProhibited: JSX.Element;
@@ -8184,9 +8263,27 @@ export declare type Profile = {
8184
8263
  * @public
8185
8264
  */
8186
8265
  export declare type RaisedHand = {
8187
- order: number;
8266
+ raisedHandOrderPosition: number;
8267
+ };
8268
+
8269
+ /**
8270
+ * Raised hand state with order
8271
+ *
8272
+ * @public
8273
+ */
8274
+ export declare type RaisedHandState = {
8275
+ raisedHandOrderPosition: number;
8188
8276
  };
8189
8277
 
8278
+ /**
8279
+ * A button to start / stop screen sharing.
8280
+ *
8281
+ * Can be used with {@link ControlBar}.
8282
+ *
8283
+ * @public
8284
+ */
8285
+ export declare const RaiseHandButton: (props: RaiseHandButtonProps) => JSX.Element;
8286
+
8190
8287
  /**
8191
8288
  * Props for {@link RaiseHandButton}.
8192
8289
  *
@@ -8204,6 +8301,16 @@ export declare interface RaiseHandButtonProps extends ControlBarButtonProps {
8204
8301
  strings?: Partial<RaiseHandButtonStrings>;
8205
8302
  }
8206
8303
 
8304
+ /**
8305
+ * Selector type for {@link RaiseHandButton} component.
8306
+ *
8307
+ * @public
8308
+ */
8309
+ export declare type RaiseHandButtonSelector = (state: CallClientState, props: CallingBaseSelectorProps) => {
8310
+ checked?: boolean;
8311
+ disabled?: boolean;
8312
+ };
8313
+
8207
8314
  /**
8208
8315
  * Strings of {@link RaiseHandButton} that can be overridden.
8209
8316
  *
@@ -8232,11 +8339,11 @@ export declare interface RaiseHandCallFeature {
8232
8339
  /**
8233
8340
  * Proxy of {@link @azure/communication-calling#RaiseHandCallFeature.raisedHands}.
8234
8341
  */
8235
- raisedHands: RaisedHand_2[];
8342
+ raisedHands: RaisedHandState[];
8236
8343
  /**
8237
8344
  * Contains information for local participant from list {@link @azure/communication-calling#RaiseHandCallFeature.raisedHands}.
8238
8345
  */
8239
- localParticipantRaisedHand?: RaisedHand_2;
8346
+ localParticipantRaisedHand?: RaisedHandState;
8240
8347
  }
8241
8348
 
8242
8349
  /**
@@ -8309,7 +8416,7 @@ export declare interface RemoteParticipantState {
8309
8416
  /**
8310
8417
  * Proxy of {@link @azure/communication-calling#Call.RaisedHand.raisedHands}.
8311
8418
  */
8312
- raisedHand?: RaisedHand_2;
8419
+ raisedHand?: RaisedHandState;
8313
8420
  }
8314
8421
 
8315
8422
  /**
@@ -9624,7 +9731,7 @@ export declare const VideoGallery: (props: VideoGalleryProps) => JSX.Element;
9624
9731
  /**
9625
9732
  * @public
9626
9733
  */
9627
- export declare type VideoGalleryLayout = 'default' | 'floatingLocalVideo';
9734
+ export declare type VideoGalleryLayout = 'default' | 'floatingLocalVideo' | /* @conditional-compile-remove(gallery-layouts) */ 'speaker';
9628
9735
 
9629
9736
  /**
9630
9737
  * The state of the local participant in the {@link VideoGallery}.