@playkit-js/transcript 3.4.5-canary.0-0a89afb → 3.4.5-canary.0-fbefdcd

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playkit-js/transcript",
3
- "version": "3.4.5-canary.0-0a89afb",
3
+ "version": "3.4.5-canary.0-fbefdcd",
4
4
  "main": "dist/playkit-transcript.js",
5
5
  "license": "AGPL-3.0",
6
6
  "private": false,
@@ -58,7 +58,7 @@
58
58
  color: $tone-4-color;
59
59
  }
60
60
 
61
- &:hover :not(.popover-menu-item-disabled) {
61
+ &:hover:not(.popover-menu-item-disabled) {
62
62
  background-color: $tone-6-color;
63
63
  border-radius: $roundness-1;
64
64
  cursor: pointer;
@@ -107,7 +107,10 @@ class PopoverMenu extends Component<PopoverMenuProps, PopoverMenuState> {
107
107
 
108
108
  const popoverMenuContent = (
109
109
  <div className={styles.popoverContainer}>
110
- <A11yWrapper onClick={() => this.togglePopover(true)}>
110
+ <A11yWrapper onClick={(e) => {
111
+ e.stopPropagation();
112
+ this.togglePopover(true);
113
+ }}>
111
114
  <div
112
115
  aria-label={this.props.moreOptionsLabel!}
113
116
  tabIndex={0}