@progress/kendo-angular-dropdowns
Version:
A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree
25 lines (24 loc) • 767 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
const DEFAULTS = {
pageSize: 50,
itemHeight: 28
};
/**
* @hidden
*/
export const normalizeVirtualizationSettings = (settings, defaultOverrides) => {
const defaults = Object.assign({}, DEFAULTS, defaultOverrides);
if (settings === true) {
return defaults;
}
if (!settings) {
return null;
}
return { pageSize: DEFAULTS.pageSize, ...settings };
};