@azure/communication-react 1.3.2-alpha-202207060015.0 → 1.3.2-alpha-202207070016.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-202207060015.0';
194
+ var telemetryVersion = '1.3.2-alpha-202207070016.0';
195
195
 
196
196
  // Copyright (c) Microsoft Corporation.
197
197
  /**
@@ -2646,6 +2646,8 @@ const MESSAGE_AMOUNT_OUT_FROM_EDGE_REM = 2;
2646
2646
  const MESSAGE_AVATAR_OVERLAP_REM = 0.425;
2647
2647
  const CHAT_MESSAGE_ZINDEX = 1;
2648
2648
  const AVATAR_ZINDEX = 2;
2649
+ // new message button should be on top of chat message
2650
+ const NEW_MESSAGE_BUTTON_ZINDEX = 2;
2649
2651
  /**
2650
2652
  * @private
2651
2653
  */
@@ -2682,7 +2684,7 @@ const chatStyle = {
2682
2684
  */
2683
2685
  const newMessageButtonContainerStyle = react.mergeStyles({
2684
2686
  position: 'absolute',
2685
- zIndex: 1,
2687
+ zIndex: NEW_MESSAGE_BUTTON_ZINDEX,
2686
2688
  bottom: 0,
2687
2689
  right: '1.5rem'
2688
2690
  });