devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
33 lines (32 loc) • 769 B
JavaScript
/**
* DevExtreme (esm/__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/
*/
import {
getOuterWidth
} from "../../../core/utils/size";
import {
hasWindow
} from "../../../core/utils/window";
const getElementWidth = function($element) {
if (hasWindow()) {
return getOuterWidth($element)
}
};
const getSizeValue = function(size) {
if (null === size) {
size = void 0
}
if ("function" === typeof size) {
size = size()
}
return size
};
export {
getElementWidth,
getSizeValue
};