@progress/kendo-angular-dropdowns
Version:
A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree
40 lines (39 loc) • 1.91 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 { MultiSelectTreeComponent } from '../multiselecttree.component';
import * as i0 from "@angular/core";
/**
* Configures the MultiSelectTree to show one single summary tag for all selected data items.
* When a number is set, the summary tag is shown after the corresponding number of data items are selected (see examples).
* See [more information and examples]({% slug api_dropdowns_multiselecttreesummarytagdirective %}).
*
* @example
* ```html
* <kendo-multiselecttree kendoMultiSelectTreeSummaryTag [data]="data"></kendo-multiselecttree>
* ```
*
* @example
* ```html
* <kendo-multiselecttree [kendoMultiSelectTreeSummaryTag]="2" [data]="data"></kendo-multiselecttree>
* ```
*
* @remarks
* Applied to: {@link MultiSelectTreeComponent}.
*/
export declare class MultiSelectTreeSummaryTagDirective implements OnChanges {
private multiSelectTreeComponent;
/**
* Sets the number of data items that need to be selected before the summary tag appears.
*
* @default 0
*/
showAfter: number | string;
constructor(multiSelectTreeComponent: MultiSelectTreeComponent);
ngOnChanges(changes: any): void;
private createTagMapper;
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectTreeSummaryTagDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<MultiSelectTreeSummaryTagDirective, "[kendoMultiSelectTreeSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectTreeSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
}