@gravity-ui/navigation 1.1.2 → 1.1.3

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.
@@ -1296,7 +1296,7 @@ const POPUP_MODIFIERS = [
1296
1296
  const MultipleTooltip = ({ items, open, anchorRef, placement, }) => {
1297
1297
  const { activeIndex, hideCollapseItemTooltip } = React__default.useContext(MultipleTooltipContext);
1298
1298
  const activeItem = activeIndex === undefined ? null : items[activeIndex];
1299
- return (React__default.createElement(Popup, { open: open, anchorRef: anchorRef, placement: placement, offset: POPUP_OFFSET, contentClassName: b$o(null), modifiers: POPUP_MODIFIERS },
1299
+ return (React__default.createElement(Popup, { open: open, anchorRef: anchorRef, placement: placement, offset: POPUP_OFFSET, contentClassName: b$o(null), modifiers: POPUP_MODIFIERS, disableLayer: true },
1300
1300
  React__default.createElement("div", { className: b$o('items-container') }, items
1301
1301
  .filter(({ type = 'regular', id }) => !hideCollapseItemTooltip ||
1302
1302
  (id !== COLLAPSE_ITEM_ID && type !== 'action'))