UNPKG

@yandex/ui

Version:

Yandex UI components

25 lines (24 loc) 803 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.applyMinWidth = void 0; /** * Модификатор, устанавливающий минимальную ширину попапа относительно якоря. */ exports.applyMinWidth = { name: 'applyMinWidth', enabled: true, fn: applyMinWidthFn, effect: applyMinWidthEffect, phase: 'beforeWrite', requires: ['computeStyles'], }; function applyMinWidthFn(_a) { var state = _a.state; state.styles.popper.minWidth = state.rects.reference.width + "px"; } function applyMinWidthEffect(_a) { var state = _a.state; if (state.elements.reference instanceof HTMLElement) { state.elements.popper.style.minWidth = state.elements.reference.offsetWidth + "px"; } }