@azure/communication-react 1.5.1-alpha-202303020021 → 1.5.1-alpha-202303030153

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.
@@ -161,7 +161,7 @@ const _toCommunicationIdentifier = (id) => {
161
161
  // Copyright (c) Microsoft Corporation.
162
162
  // Licensed under the MIT license.
163
163
  // GENERATED FILE. DO NOT EDIT MANUALLY.
164
- var telemetryVersion = '1.5.1-alpha-202303020021';
164
+ var telemetryVersion = '1.5.1-alpha-202303030153';
165
165
 
166
166
  // Copyright (c) Microsoft Corporation.
167
167
  /**
@@ -10886,6 +10886,17 @@ const FloatingLocalVideoLayout = (props) => {
10886
10886
  * Currently the Calling JS SDK supports up to 4 remote video streams
10887
10887
  */
10888
10888
  const DEFAULT_MAX_REMOTE_VIDEO_STREAMS = 4;
10889
+ /**
10890
+ * @private
10891
+ * Styles to disable the selectivity of a text in video gallery
10892
+ */
10893
+ const unselectable = {
10894
+ '-webkit-user-select': 'none',
10895
+ '-webkit-touch-callout': 'none',
10896
+ '-moz-user-select': 'none',
10897
+ '-ms-user-select': 'none',
10898
+ 'user-select': 'none'
10899
+ };
10889
10900
  /**
10890
10901
  * @private
10891
10902
  * Default remote video tile menu options
@@ -11101,7 +11112,7 @@ const VideoGallery = (props) => {
11101
11112
  return (React__default['default'].createElement("div", {
11102
11113
  /* @conditional-compile-remove(pinned-participants) */
11103
11114
  // We don't assign an drawer menu host id to the VideoGallery when a drawerMenuHostId is assigned from props
11104
- id: drawerMenuHostIdFromProp ? undefined : drawerMenuHostId, "data-ui-id": ids.videoGallery, ref: containerRef, className: react.mergeStyles(videoGalleryOuterDivStyle, styles === null || styles === void 0 ? void 0 : styles.root) },
11115
+ id: drawerMenuHostIdFromProp ? undefined : drawerMenuHostId, "data-ui-id": ids.videoGallery, ref: containerRef, className: react.mergeStyles(videoGalleryOuterDivStyle, styles === null || styles === void 0 ? void 0 : styles.root, unselectable) },
11105
11116
  videoGalleryLayout,
11106
11117
  /* @conditional-compile-remove(pinned-participants) */
11107
11118
  React__default['default'].createElement(Announcer, { announcementString: announcementString, ariaLive: "polite" })));