UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

29 lines (28 loc) 847 B
/** * DevExtreme (cjs/ui/drop_down_editor/utils.js) * Version: 22.1.9 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.getSizeValue = exports.getElementWidth = void 0; var _size = require("../../core/utils/size"); var _window = require("../../core/utils/window"); var getElementWidth = function($element) { if ((0, _window.hasWindow)()) { return (0, _size.getOuterWidth)($element) } }; exports.getElementWidth = getElementWidth; var getSizeValue = function(size) { if (null === size) { size = void 0 } if ("function" === typeof size) { size = size() } return size }; exports.getSizeValue = getSizeValue;