UNPKG

@progress/kendo-angular-dropdowns

Version:

A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree

35 lines (34 loc) 1.59 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnChanges, SimpleChanges } from '@angular/core'; import { DataBoundComponent, HierarchyBindingDirective } from '@progress/kendo-angular-treeview'; import * as i0 from "@angular/core"; /** * Retrieves child nodes when the provided data is hierarchical. * * @example * ```html * <kendo-dropdowntree kendoDropDownTreeHierarchyBinding [nodes]="data" [valueField]="'id'"></kendo-dropdowntree> * ``` * * @remarks * Applied to: {@link DropDownTreeComponent}. */ export declare class DropDownTreeHierarchyBindingDirective extends HierarchyBindingDirective implements OnChanges { private dropDownTree; /** * Sets the nodes to display in the DropDownTree. */ set nodes(nodes: any[]); get nodes(): any[]; /** * @hidden */ set filter(term: string); constructor(dropDownTree: DataBoundComponent); ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration<DropDownTreeHierarchyBindingDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeHierarchyBindingDirective, "[kendoDropDownTreeHierarchyBinding]", never, { "nodes": { "alias": "kendoDropDownTreeHierarchyBinding"; "required": false; }; }, {}, never, never, true, never>; }