@azure/communication-react 1.3.2-alpha-202207010015.0 → 1.3.2-alpha-202207060015.0

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.
@@ -191,7 +191,7 @@ const fromFlatCommunicationIdentifier = (id) => {
191
191
  // Copyright (c) Microsoft Corporation.
192
192
  // Licensed under the MIT license.
193
193
  // GENERATED FILE. DO NOT EDIT MANUALLY.
194
- var telemetryVersion = '1.3.2-alpha-202207010015.0';
194
+ var telemetryVersion = '1.3.2-alpha-202207060015.0';
195
195
 
196
196
  // Copyright (c) Microsoft Corporation.
197
197
  /**
@@ -4384,7 +4384,7 @@ const ParticipantItem = (props) => {
4384
4384
  setItemHovered(true);
4385
4385
  setMenuHidden(false);
4386
4386
  onClick === null || onClick === void 0 ? void 0 : onClick(props);
4387
- } },
4387
+ }, tabIndex: 0 },
4388
4388
  React__default['default'].createElement(react.Stack, { horizontal: true, className: react.mergeStyles({ width: `calc(100% - ${menuButtonContainerStyle.width})`, alignItems: 'center' }) },
4389
4389
  avatar,
4390
4390
  me && React__default['default'].createElement(react.Text, { className: meTextStyle }, isMeText),
@@ -11022,7 +11022,7 @@ class ProxyCallAgent {
11022
11022
  * 3. Use `callAgent.incomingCalls` and filter an incoming call ID to get a declarative incoming call object
11023
11023
  */
11024
11024
  case 'incomingCalls': {
11025
- return this._declarativeIncomingCalls;
11025
+ return Array.from(this._declarativeIncomingCalls.values());
11026
11026
  }
11027
11027
  default:
11028
11028
  return Reflect.get(target, prop);
@@ -13357,7 +13357,8 @@ const chatContainer = react.mergeStyles({
13357
13357
  const chatArea = react.mergeStyles({
13358
13358
  height: '100%',
13359
13359
  width: '100%',
13360
- overflow: 'auto'
13360
+ overflow: 'auto',
13361
+ position: 'relative' // Ensure that the absolute children components are positioned relative to the chat area
13361
13362
  });
13362
13363
  /**
13363
13364
  * @private
@@ -17551,7 +17552,7 @@ const TabHeader = (props) => {
17551
17552
  }, [theme, haveMultipleTabs]);
17552
17553
  const strings = useCallWithChatCompositeStrings();
17553
17554
  return (React__default['default'].createElement(react.Stack, { horizontal: true, grow: true, styles: mobilePaneControlBarStyle },
17554
- React__default['default'].createElement(react.DefaultButton, { ariaLabel: strings.returnToCallButtonAriaLabel, ariaDescription: strings.returnToCallButtonAriaDescription, onClick: props.onClose, styles: mobilePaneBackButtonStyles, onRenderIcon: () => React__default['default'].createElement(CallWithChatCompositeIcon, { iconName: "ChevronLeft" }) }),
17555
+ React__default['default'].createElement(react.DefaultButton, { ariaLabel: strings.returnToCallButtonAriaLabel, ariaDescription: strings.returnToCallButtonAriaDescription, onClick: props.onClose, styles: mobilePaneBackButtonStyles, onRenderIcon: () => React__default['default'].createElement(CallWithChatCompositeIcon, { iconName: "ChevronLeft" }), autoFocus: true }),
17555
17556
  React__default['default'].createElement(react.Stack.Item, { grow: true }, props.onChatButtonClicked && (React__default['default'].createElement(react.DefaultButton, { onClick: props.onChatButtonClicked, styles: mobilePaneButtonStylesThemed, checked: props.activeTab === 'chat', role: 'tab' }, strings.chatButtonLabel))),
17556
17557
  React__default['default'].createElement(react.Stack.Item, { grow: true }, props.onPeopleButtonClicked && (React__default['default'].createElement(react.DefaultButton, { onClick: props.onPeopleButtonClicked, styles: mobilePaneButtonStylesThemed, checked: props.activeTab === 'people', role: 'tab' }, strings.peopleButtonLabel))),
17557
17558
  React__default['default'].createElement(react.DefaultButton, { styles: mobilePaneHiddenIconStyles, onRenderIcon: () => React__default['default'].createElement(CallWithChatCompositeIcon, { iconName: "ChevronLeft" }) })));