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