devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
29 lines (28 loc) • 851 B
JavaScript
/**
* DevExtreme (cjs/ui/drop_down_editor/utils.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
exports.getSizeValue = exports.getElementWidth = void 0;
var _size = require("../../core/utils/size");
var _window = require("../../core/utils/window");
const getElementWidth = function($element) {
if ((0, _window.hasWindow)()) {
return (0, _size.getOuterWidth)($element)
}
};
exports.getElementWidth = getElementWidth;
const getSizeValue = function(size) {
if (null === size) {
size = void 0
}
if ("function" === typeof size) {
size = size()
}
return size
};
exports.getSizeValue = getSizeValue;