@azure/communication-react 1.5.1-alpha-202302132135 → 1.5.1-alpha-202302150014
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.
- package/dist/dist-cjs/communication-react/index.js +8 -10
- package/dist/dist-cjs/communication-react/index.js.map +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js +3 -3
- package/dist/dist-esm/react-components/src/components/VideoGallery/FloatingLocalVideoLayout.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/VideoTile.js +4 -6
- package/dist/dist-esm/react-components/src/components/VideoTile.js.map +1 -1
- package/package.json +8 -8
@@ -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-
|
164
|
+
var telemetryVersion = '1.5.1-alpha-202302150014';
|
165
165
|
|
166
166
|
// Copyright (c) Microsoft Corporation.
|
167
167
|
/**
|
@@ -8660,18 +8660,16 @@ const VideoTile = (props) => {
|
|
8660
8660
|
const canShowContextMenuButton = isHovered || isFocused;
|
8661
8661
|
return (React__default['default'].createElement(react.Stack, Object.assign({ "data-ui-id": ids.videoTile, className: react.mergeStyles(rootStyles, {
|
8662
8662
|
background: theme.palette.neutralLighter,
|
8663
|
-
borderRadius: theme.effects.roundedCorner4
|
8664
|
-
// To ensure that the video tile is focusable when there is a floating video tile
|
8665
|
-
zIndex: 1
|
8663
|
+
borderRadius: theme.effects.roundedCorner4
|
8666
8664
|
}, isSpeaking && {
|
8667
|
-
'&::
|
8665
|
+
'&::after': {
|
8668
8666
|
content: `''`,
|
8669
8667
|
position: 'absolute',
|
8670
|
-
zIndex: 1,
|
8671
8668
|
border: `0.25rem solid ${theme.palette.themePrimary}`,
|
8672
8669
|
borderRadius: theme.effects.roundedCorner4,
|
8673
8670
|
width: '100%',
|
8674
|
-
height: '100%'
|
8671
|
+
height: '100%',
|
8672
|
+
pointerEvents: 'none'
|
8675
8673
|
}
|
8676
8674
|
}, styles === null || styles === void 0 ? void 0 : styles.root) }, longPressHandlersTrampoline),
|
8677
8675
|
React__default['default'].createElement("div", Object.assign({ ref: videoTileRef, style: { width: '100%', height: '100%' } }, hoverHandlers, { "data-is-focusable": true }),
|
@@ -10400,11 +10398,11 @@ const FloatingLocalVideoLayout = (props) => {
|
|
10400
10398
|
return (React__default['default'].createElement(VideoGalleryResponsiveHorizontalGallery, { isNarrow: isNarrow, shouldFloatLocalVideo: true, horizontalGalleryElements: horizontalGalleryTiles, styles: styles === null || styles === void 0 ? void 0 : styles.horizontalGallery }));
|
10401
10399
|
}, [isNarrow, horizontalGalleryTiles, styles === null || styles === void 0 ? void 0 : styles.horizontalGallery]);
|
10402
10400
|
return (React__default['default'].createElement(react.Stack, { styles: rootLayoutStyle },
|
10401
|
+
wrappedLocalVideoComponent,
|
10402
|
+
React__default['default'].createElement(react.LayerHost, { id: layerHostId, className: react.mergeStyles(layerHostStyle) }),
|
10403
10403
|
React__default['default'].createElement(react.Stack, { horizontal: false, styles: innerLayoutStyle, tokens: videoGalleryLayoutGap },
|
10404
10404
|
screenShareComponent ? (screenShareComponent) : (React__default['default'].createElement(GridLayout, { key: "grid-layout", styles: styles === null || styles === void 0 ? void 0 : styles.gridLayout }, gridTiles)),
|
10405
|
-
horizontalGallery)
|
10406
|
-
wrappedLocalVideoComponent,
|
10407
|
-
React__default['default'].createElement(react.LayerHost, { id: layerHostId, className: react.mergeStyles(layerHostStyle) })));
|
10405
|
+
horizontalGallery)));
|
10408
10406
|
};
|
10409
10407
|
|
10410
10408
|
// Copyright (c) Microsoft Corporation.
|