@progress/kendo-angular-treeview
Version: 
Kendo UI TreeView for Angular
37 lines (36 loc) • 818 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
 */
export const hasChildren = () => false;
/**
 * @hidden
 */
export const isChecked = () => 'none';
/**
 * @hidden
 */
export const isDisabled = () => false;
/**
 * @hidden
 */
export const hasCheckbox = () => true;
/**
 * @hidden
 */
export const isExpanded = () => true;
/**
 * @hidden
 */
export const isSelected = () => false;
/**
 * @hidden
 */
export const isVisible = () => true;
/**
 * @hidden
 */
export const trackBy = (_, item) => item;