@progress/kendo-angular-dropdowns
Version:
A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree
21 lines (20 loc) • 950 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from './preventable-event';
/**
* Arguments for the `removeTag` event. The `removeTag` event fires when a tag is about
* to the removed. If you cancel the event, the removal is prevented.
*/
export declare class RemoveTagEvent extends PreventableEvent {
/**
* The data item or an array of data items that will be removed.
*/
readonly dataItem: any;
/**
* Constructs the event arguments for the `remove` event.
* @param dataItem - The data item or an array of data items that will be removed.
*/
constructor(dataItem: any);
}