@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.
@@ -1323,7 +1323,7 @@ const POPUP_MODIFIERS = [
1323
1323
  const MultipleTooltip = ({ items, open, anchorRef, placement, }) => {
1324
1324
  const { activeIndex, hideCollapseItemTooltip } = React__default["default"].useContext(MultipleTooltipContext);
1325
1325
  const activeItem = activeIndex === undefined ? null : items[activeIndex];
1326
- return (React__default["default"].createElement(uikit.Popup, { open: open, anchorRef: anchorRef, placement: placement, offset: POPUP_OFFSET, contentClassName: b$o(null), modifiers: POPUP_MODIFIERS },
1326
+ return (React__default["default"].createElement(uikit.Popup, { open: open, anchorRef: anchorRef, placement: placement, offset: POPUP_OFFSET, contentClassName: b$o(null), modifiers: POPUP_MODIFIERS, disableLayer: true },
1327
1327
  React__default["default"].createElement("div", { className: b$o('items-container') }, items
1328
1328
  .filter(({ type = 'regular', id }) => !hideCollapseItemTooltip ||
1329
1329
  (id !== COLLAPSE_ITEM_ID && type !== 'action'))