@progress/kendo-angular-dropdowns
Version:
A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree
16 lines (15 loc) • 701 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { isObject } from "../util";
/**
* @hidden
*/
export const normalizeCheckboxesSettings = (settings) => {
if (isObject(settings)) {
const defaultSettings = { enabled: true, checkOnClick: true };
return Object.assign({}, defaultSettings, settings);
}
return { enabled: Boolean(settings), checkOnClick: true };
};