@azure/communication-react 1.7.0-alpha-202308150012 → 1.7.0-alpha-202308160012
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/communication-react.d.ts +1 -0
- package/dist/dist-cjs/communication-react/index.js +13 -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/calling-component-bindings/src/participantListSelector.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.d.ts +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/adapter/AzureCommunicationCallWithChatAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/ControlBar/DesktopMoreButton.js +11 -7
- package/dist/dist-esm/react-composites/src/composites/common/ControlBar/DesktopMoreButton.js.map +1 -1
- package/package.json +8 -8
@@ -5029,6 +5029,7 @@ export declare const createAzureCommunicationCallWithChatAdapter: ({ userId, dis
|
|
5029
5029
|
* Create a {@link CallWithChatAdapter} using the provided {@link StatefulChatClient} and {@link StatefulCallClient}.
|
5030
5030
|
*
|
5031
5031
|
* Useful if you want to keep a reference to {@link StatefulChatClient} and {@link StatefulCallClient}.
|
5032
|
+
* Please note that chatThreadClient has to be created by StatefulChatClient via chatClient.getChatThreadClient(chatThreadId) API.
|
5032
5033
|
* Consider using {@link createAzureCommunicationCallWithChatAdapter} for a simpler API.
|
5033
5034
|
*
|
5034
5035
|
* @public
|
@@ -178,7 +178,7 @@ const _isValidIdentifier = (identifier) => {
|
|
178
178
|
// Copyright (c) Microsoft Corporation.
|
179
179
|
// Licensed under the MIT license.
|
180
180
|
// GENERATED FILE. DO NOT EDIT MANUALLY.
|
181
|
-
var telemetryVersion = '1.7.0-alpha-
|
181
|
+
var telemetryVersion = '1.7.0-alpha-202308160012';
|
182
182
|
|
183
183
|
// Copyright (c) Microsoft Corporation.
|
184
184
|
/**
|
@@ -23302,6 +23302,14 @@ const DesktopMoreButton = (props) => {
|
|
23302
23302
|
tooltipOffContent: localeStrings.strings.callWithChat.moreDrawerButtonTooltip
|
23303
23303
|
}), [localeStrings]);
|
23304
23304
|
const moreButtonContextualMenuItems = [];
|
23305
|
+
/* @conditional-compile-remove(close-captions) */ /* @conditional-compile-remove(gallery-layouts) */
|
23306
|
+
const menuSubIconStyleSet = {
|
23307
|
+
root: {
|
23308
|
+
height: 'unset',
|
23309
|
+
lineHeight: '100%',
|
23310
|
+
width: '1.25rem'
|
23311
|
+
}
|
23312
|
+
};
|
23305
23313
|
/*@conditional-compile-remove(PSTN-calls) */ /* @conditional-compile-remove(one-to-n-calling) */
|
23306
23314
|
moreButtonContextualMenuItems.push({
|
23307
23315
|
key: 'holdButtonKey',
|
@@ -23319,13 +23327,6 @@ const DesktopMoreButton = (props) => {
|
|
23319
23327
|
/* @conditional-compile-remove(close-captions) */
|
23320
23328
|
if (props.isCaptionsSupported) {
|
23321
23329
|
const captionsContextualMenuItems = [];
|
23322
|
-
const menuSubIconStyleSet = {
|
23323
|
-
root: {
|
23324
|
-
height: 'unset',
|
23325
|
-
lineHeight: '100%',
|
23326
|
-
width: '1.25rem'
|
23327
|
-
}
|
23328
|
-
};
|
23329
23330
|
moreButtonContextualMenuItems.push({
|
23330
23331
|
key: 'liveCaptionsKey',
|
23331
23332
|
id: 'common-call-composite-captions-button',
|
@@ -23412,6 +23413,9 @@ const DesktopMoreButton = (props) => {
|
|
23412
23413
|
itemProps: {
|
23413
23414
|
styles: buttonFlyoutIncreasedSizeStyles
|
23414
23415
|
},
|
23416
|
+
submenuIconProps: {
|
23417
|
+
styles: menuSubIconStyleSet
|
23418
|
+
},
|
23415
23419
|
text: localeStrings.strings.call.moreButtonGalleryControlLabel,
|
23416
23420
|
subMenuProps: {
|
23417
23421
|
items: [
|
@@ -30708,6 +30712,7 @@ beforeDispose) => {
|
|
30708
30712
|
* Create a {@link CallWithChatAdapter} using the provided {@link StatefulChatClient} and {@link StatefulCallClient}.
|
30709
30713
|
*
|
30710
30714
|
* Useful if you want to keep a reference to {@link StatefulChatClient} and {@link StatefulCallClient}.
|
30715
|
+
* Please note that chatThreadClient has to be created by StatefulChatClient via chatClient.getChatThreadClient(chatThreadId) API.
|
30711
30716
|
* Consider using {@link createAzureCommunicationCallWithChatAdapter} for a simpler API.
|
30712
30717
|
*
|
30713
30718
|
* @public
|