UNPKG

@progress/kendo-angular-dropdowns

Version:

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

37 lines (36 loc) 1.65 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 } from '@angular/core'; import { MultiSelectComponent } from './multiselect.component'; import * as i0 from "@angular/core"; /** * Configures the MultiSelect to show one summary tag for all selected items. * Set a number to display the summary tag after the respective number of items are selected. * [See example]({% 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; /** * Sets the number of selected items after which the summary tag appears. * * @default 0 */ 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>; }