@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.14 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Defines the mandatory properties of the `kendoDropDownFilter` directive
* so that `kendoDropDownFilter` can be used with any of the DropDowns components
* which implement the `FilterableDropDownComponentBase` class.
*
* @hidden
*/
export class FilterableComponent {
/**
* Sets the data of the component.
*/
data;
/**
* Explicitly enables the emitting of the `filterChange` event.
*/
filterable;
/**
* Hooks to the `filter` event.
*/
filterChange;
/**
* Reads the data from the components with complex data.
*/
textField;
/**
* Reads the data from the components with complex data which use `valueField` instead of
* `textField`—for example, the AutoComplete.
*/
valueField;
}