@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.73 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { OnChanges } from '@angular/core';
import { MultiSelectComponent } from './multiselect.component';
import * as i0 from "@angular/core";
/**
* A directive which configures the MultiSelect to show one single summary tag for all selected data items.
* When a number is provided, the summary tag is displayed after the given amount of data items are selected
* ([more information and examples]({% slug summarytagmode_multiselect %})).
*
* @example
* ```ts-no-run
* <kendo-multiselect kendoMultiSelectSummaryTag [data]="data"></kendo-multiselect>
* ```
*
* @example
* ```ts-no-run
* <kendo-multiselect [kendoMultiSelectSummaryTag]="2" [data]="data"></kendo-multiselect>
* ```
*/
export declare class SummaryTagDirective implements OnChanges {
private multiSelectComponent;
/**
* A numeric value that indicates the number of selected data items after which the summary tag will appear.
*/
showAfter: number | string;
constructor(multiSelectComponent: MultiSelectComponent);
ngOnChanges(changes: any): void;
private createTagMapper;
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryTagDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
}