devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
32 lines (31 loc) • 940 B
JavaScript
/**
* DevExtreme (cjs/__internal/ui/drop_down_editor/m_utils.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
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;