@azure/communication-react 1.8.1-alpha-202309280013 → 1.8.1-alpha-202309290012
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 +18 -8
- 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-composites/src/composites/CallComposite/pages/ConfigurationPage.js +2 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/ConfigurationPage.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.d.ts +4 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.js +10 -3
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/LocalDeviceSettings.styles.js +4 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/LocalDeviceSettings.styles.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/NoticePage.styles.js +2 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/NoticePage.styles.js.map +1 -1
- package/package.json +8 -8
@@ -176,7 +176,7 @@ const _isValidIdentifier = (identifier) => {
|
|
176
176
|
// Copyright (c) Microsoft Corporation.
|
177
177
|
// Licensed under the MIT License.
|
178
178
|
// GENERATED FILE. DO NOT EDIT MANUALLY.
|
179
|
-
var telemetryVersion = '1.8.1-alpha-
|
179
|
+
var telemetryVersion = '1.8.1-alpha-202309290012';
|
180
180
|
|
181
181
|
// Copyright (c) Microsoft Corporation.
|
182
182
|
/**
|
@@ -27239,7 +27239,7 @@ const dropDownStyles = (theme) => ({
|
|
27239
27239
|
dropdownItem: {
|
27240
27240
|
fontSize: '0.875rem',
|
27241
27241
|
height: '2.5rem',
|
27242
|
-
background: theme.palette.
|
27242
|
+
background: theme.palette.white
|
27243
27243
|
},
|
27244
27244
|
dropdown: {
|
27245
27245
|
height: '2.5rem',
|
@@ -27251,7 +27251,9 @@ const dropDownStyles = (theme) => ({
|
|
27251
27251
|
title: {
|
27252
27252
|
fontSize: '0.875rem',
|
27253
27253
|
height: '2.5rem',
|
27254
|
-
lineHeight: '2.3125rem'
|
27254
|
+
lineHeight: '2.3125rem',
|
27255
|
+
borderRadius: '0.25rem',
|
27256
|
+
border: `1px solid ${theme.palette.neutralQuaternaryAlt}`
|
27255
27257
|
},
|
27256
27258
|
label: {
|
27257
27259
|
fontWeight: 600,
|
@@ -27327,12 +27329,12 @@ const configurationStackTokensDesktop = {
|
|
27327
27329
|
* @private
|
27328
27330
|
*/
|
27329
27331
|
const configurationStackTokensMobile = {
|
27330
|
-
childrenGap: '
|
27332
|
+
childrenGap: '1.5rem'
|
27331
27333
|
};
|
27332
27334
|
const configurationContainerStyle = {
|
27333
27335
|
height: '100%',
|
27334
27336
|
width: '100%',
|
27335
|
-
padding: '
|
27337
|
+
padding: '2rem 1rem 2rem 1rem'
|
27336
27338
|
};
|
27337
27339
|
/**
|
27338
27340
|
* @private
|
@@ -27411,7 +27413,14 @@ const startCallButtonContainerStyleMobile = {
|
|
27411
27413
|
*/
|
27412
27414
|
const startCallButtonStyleMobile = react.mergeStyles({
|
27413
27415
|
width: '100%',
|
27414
|
-
maxWidth: 'unset'
|
27416
|
+
maxWidth: 'unset',
|
27417
|
+
borderRadius: '0.25rem'
|
27418
|
+
});
|
27419
|
+
/**
|
27420
|
+
* @private
|
27421
|
+
*/
|
27422
|
+
const startCallButtonStyleDesktop = react.mergeStyles({
|
27423
|
+
borderRadius: '0.25rem'
|
27415
27424
|
});
|
27416
27425
|
/** @private */
|
27417
27426
|
const cameraAndVideoEffectsContainerStyleDesktop = {
|
@@ -28184,7 +28193,7 @@ const ConfigurationPage = (props) => {
|
|
28184
28193
|
/* @conditional-compile-remove(video-background-effects) */
|
28185
28194
|
onClickVideoEffects: toggleVideoEffectsPane })))),
|
28186
28195
|
React__default["default"].createElement(react.Stack, { styles: mobileWithPreview ? startCallButtonContainerStyleMobile : startCallButtonContainerStyleDesktop },
|
28187
|
-
React__default["default"].createElement(StartCallButton, { className: mobileWithPreview ? startCallButtonStyleMobile :
|
28196
|
+
React__default["default"].createElement(StartCallButton, { className: mobileWithPreview ? startCallButtonStyleMobile : startCallButtonStyleDesktop, onClick: startCall, disabled: disableStartCallButton })))),
|
28188
28197
|
React__default["default"].createElement(react.Panel
|
28189
28198
|
/* @conditional-compile-remove(video-background-effects) */
|
28190
28199
|
, {
|
@@ -28231,7 +28240,8 @@ const containerItemGap = {
|
|
28231
28240
|
*/
|
28232
28241
|
const rejoinCallButtonContainerStyles = {
|
28233
28242
|
root: {
|
28234
|
-
paddingTop: '1.125rem'
|
28243
|
+
paddingTop: '1.125rem',
|
28244
|
+
borderRadius: '0.25rem'
|
28235
28245
|
}
|
28236
28246
|
};
|
28237
28247
|
/**
|