@azure/communication-react 1.5.1-alpha-202302250014 → 1.5.1-alpha-202303010017

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 (42) hide show
  1. package/dist/communication-react.d.ts +12 -0
  2. package/dist/dist-cjs/communication-react/index.js +521 -216
  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/communication-react/src/index.d.ts +1 -0
  7. package/dist/dist-esm/communication-react/src/index.js.map +1 -1
  8. package/dist/dist-esm/react-components/src/components/ResponsiveVerticalGallery.d.ts +29 -0
  9. package/dist/dist-esm/react-components/src/components/ResponsiveVerticalGallery.js +77 -0
  10. package/dist/dist-esm/react-components/src/components/ResponsiveVerticalGallery.js.map +1 -0
  11. package/dist/dist-esm/react-components/src/components/VerticalGallery.d.ts +50 -0
  12. package/dist/dist-esm/react-components/src/components/VerticalGallery.js +85 -0
  13. package/dist/dist-esm/react-components/src/components/VerticalGallery.js.map +1 -0
  14. package/dist/dist-esm/react-components/src/components/VideoGallery/DefaultLayout.js +19 -13
  15. package/dist/dist-esm/react-components/src/components/VideoGallery/DefaultLayout.js.map +1 -1
  16. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideo.d.ts +10 -3
  17. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideo.js +6 -8
  18. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideo.js.map +1 -1
  19. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js +32 -16
  20. package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js.map +1 -1
  21. package/dist/dist-esm/react-components/src/components/VideoGallery/Layout.d.ts +6 -0
  22. package/dist/dist-esm/react-components/src/components/VideoGallery/Layout.js.map +1 -1
  23. package/dist/dist-esm/react-components/src/components/VideoGallery/{VideoGalleryResponsiveHorizontalGallery.d.ts → OverflowGallery.d.ts} +5 -3
  24. package/dist/dist-esm/react-components/src/components/VideoGallery/OverflowGallery.js +46 -0
  25. package/dist/dist-esm/react-components/src/components/VideoGallery/OverflowGallery.js.map +1 -0
  26. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/FloatingLocalVideo.styles.d.ts +20 -3
  27. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/FloatingLocalVideo.styles.js +11 -6
  28. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/FloatingLocalVideo.styles.js.map +1 -1
  29. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/VideoGalleryResponsiveVerticalGallery.styles.d.ts +38 -0
  30. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/VideoGalleryResponsiveVerticalGallery.styles.js +44 -0
  31. package/dist/dist-esm/react-components/src/components/VideoGallery/styles/VideoGalleryResponsiveVerticalGallery.styles.js.map +1 -0
  32. package/dist/dist-esm/react-components/src/components/VideoGallery.d.ts +11 -0
  33. package/dist/dist-esm/react-components/src/components/VideoGallery.js +7 -3
  34. package/dist/dist-esm/react-components/src/components/VideoGallery.js.map +1 -1
  35. package/dist/dist-esm/react-components/src/components/index.d.ts +1 -0
  36. package/dist/dist-esm/react-components/src/components/index.js.map +1 -1
  37. package/dist/dist-esm/react-components/src/components/styles/VerticalGallery.styles.d.ts +32 -0
  38. package/dist/dist-esm/react-components/src/components/styles/VerticalGallery.styles.js +63 -0
  39. package/dist/dist-esm/react-components/src/components/styles/VerticalGallery.styles.js.map +1 -0
  40. package/package.json +8 -8
  41. package/dist/dist-esm/react-components/src/components/VideoGallery/VideoGalleryResponsiveHorizontalGallery.js +0 -19
  42. package/dist/dist-esm/react-components/src/components/VideoGallery/VideoGalleryResponsiveHorizontalGallery.js.map +0 -1
@@ -6596,6 +6596,13 @@ export declare interface OptionsDevice {
6596
6596
  name: string;
6597
6597
  }
6598
6598
 
6599
+ /**
6600
+ * Different modes and positions of the overflow gallery in the VideoGallery
6601
+ *
6602
+ * @beta
6603
+ */
6604
+ export declare type OverflowGalleryLayout = 'HorizontalBottom' | 'VerticalRight';
6605
+
6599
6606
  /**
6600
6607
  * A system message notifying that a participant was added to the chat thread.
6601
6608
  *
@@ -8344,6 +8351,11 @@ export declare interface VideoGalleryProps {
8344
8351
  * @defaultValue \{ kind: 'contextual' \}
8345
8352
  */
8346
8353
  remoteVideoTileMenuOptions?: false | VideoTileContextualMenuProps | VideoTileDrawerMenuProps;
8354
+ /**
8355
+ * Determines the layout of the overflowGallery inside the VideoGallery.
8356
+ * @defaultValue 'HorizontalBottom'
8357
+ */
8358
+ overflowGalleryLayout?: OverflowGalleryLayout;
8347
8359
  }
8348
8360
 
8349
8361
  /**