@grafana/ui
Version:
Grafana Components Library
16 lines (12 loc) • 399 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
;
const DEFAULT_MIN_WIDTH = 8;
function pickComboboxLayout(width, minWidth = DEFAULT_MIN_WIDTH, maxWidth) {
if (width === "auto") {
return { width: "auto", minWidth, maxWidth };
}
return { width };
}
exports.pickComboboxLayout = pickComboboxLayout;
//# sourceMappingURL=pickComboboxLayout.cjs.map