UNPKG

@progress/kendo-angular-dropdowns

Version:

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

31 lines (30 loc) 1.55 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, FlatDataBindingDirective } from '@progress/kendo-angular-treeview'; import * as i0 from "@angular/core"; /** * A directive which encapsulates the retrieval of the child nodes when flat data is provided. */ export declare class DropDownTreeFlatBindingDirective extends FlatDataBindingDirective implements OnChanges { private dropDownTree; /** * The nodes which will be displayed by the DropDownTree. */ set nodes(nodes: any[]); get nodes(): any[]; /** * Represents the unique field which identifies a node. */ idField: string; /** * @hidden */ set filter(term: string); constructor(dropDownTree: DataBoundComponent); ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration<DropDownTreeFlatBindingDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreeFlatBindingDirective, "[kendoDropDownTreeFlatBinding]", never, { "nodes": { "alias": "kendoDropDownTreeFlatBinding"; "required": false; }; "idField": { "alias": "valueField"; "required": false; }; }, {}, never, never, true, never>; }