@progress/kendo-angular-dropdowns 22.1.0-develop.9 → 23.0.0-develop.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/autocomplete/autocomplete.component.d.ts +11 -17
- package/comboboxes/combobox-column/column-cell-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/column-header-template.directive.d.ts +4 -4
- package/comboboxes/combobox-column/combobox-column.component.d.ts +3 -3
- package/comboboxes/combobox.component.d.ts +14 -36
- package/comboboxes/multicolumncombobox.component.d.ts +1 -1
- package/common/filtering/filter-settings.d.ts +5 -5
- package/common/filtering/filter.directive.d.ts +2 -2
- package/common/localization/custom-messages.component.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/models/virtualization-settings.d.ts +4 -4
- package/common/templates/custom-item-template.directive.d.ts +1 -1
- package/common/templates/fixed-group-template.directive.d.ts +5 -5
- package/common/templates/footer-template.directive.d.ts +6 -6
- package/common/templates/group-tag-template.directive.d.ts +1 -1
- package/common/templates/group-template.directive.d.ts +5 -5
- package/common/templates/header-template.directive.d.ts +6 -6
- package/common/templates/item-template.directive.d.ts +4 -4
- package/common/templates/no-data-template.directive.d.ts +6 -6
- package/common/templates/tag-template.directive.d.ts +1 -1
- package/common/templates/value-template.directive.d.ts +2 -2
- package/dropdownlist/dropdownlist.component.d.ts +15 -40
- package/dropdowntrees/checked-state/checkable-settings.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +14 -36
- package/dropdowntrees/multiselecttree.component.d.ts +5 -11
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +347 -453
- package/index.d.ts +4 -0
- package/multiselect/multiselect.component.d.ts +9 -15
- package/multiselect/summary-tag.directive.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -40,7 +40,7 @@ import * as i0 from "@angular/core";
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const DROPDOWNLIST_VALUE_ACCESSOR: any;
|
|
42
42
|
/**
|
|
43
|
-
* Represents the Kendo UI for Angular [DropDownList](
|
|
43
|
+
* Represents the Kendo UI for Angular [DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist) component.
|
|
44
44
|
*
|
|
45
45
|
* @example
|
|
46
46
|
* ```html
|
|
@@ -117,7 +117,7 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
117
117
|
get ariaLive(): string;
|
|
118
118
|
/**
|
|
119
119
|
* Shows or hides the current group sticky header when using grouped data.
|
|
120
|
-
* The sticky header displays by default. [see example.](
|
|
120
|
+
* The sticky header displays by default. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)
|
|
121
121
|
*/
|
|
122
122
|
showStickyHeader: boolean;
|
|
123
123
|
/**
|
|
@@ -222,11 +222,11 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
222
222
|
*/
|
|
223
223
|
defaultItem: any;
|
|
224
224
|
/**
|
|
225
|
-
* Sets the disabled state of the component. To disable the component in reactive forms, see [Forms Support](
|
|
225
|
+
* Sets the disabled state of the component. To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/forms#managing-the-dropdownlist-disabled-state-in-reactive-forms).
|
|
226
226
|
*/
|
|
227
227
|
disabled: boolean;
|
|
228
228
|
/**
|
|
229
|
-
* Defines a Boolean function executed for each data item in the component. Determines whether the item is disabled. [See examples.](
|
|
229
|
+
* Defines a Boolean function executed for each data item in the component. Determines whether the item is disabled. [See examples.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/disabled-items)
|
|
230
230
|
*/
|
|
231
231
|
set itemDisabled(fn: ItemDisabledFn);
|
|
232
232
|
/**
|
|
@@ -236,11 +236,11 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
236
236
|
*/
|
|
237
237
|
readonly: boolean;
|
|
238
238
|
/**
|
|
239
|
-
* Enables the [filtering](
|
|
239
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/filtering) functionality of the `DropDownListComponent`.
|
|
240
240
|
*/
|
|
241
241
|
filterable: boolean;
|
|
242
242
|
/**
|
|
243
|
-
* Enables the [virtualization](
|
|
243
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/virtualization) functionality.
|
|
244
244
|
*/
|
|
245
245
|
set virtual(settings: boolean | VirtualizationSettings);
|
|
246
246
|
get virtual(): VirtualizationSettings;
|
|
@@ -254,7 +254,7 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
254
254
|
delay: number;
|
|
255
255
|
/**
|
|
256
256
|
* Specifies the type of the selected value. If set to `true`, the selected value must be a primitive value.
|
|
257
|
-
* * [More information and example.](
|
|
257
|
+
* * [More information and example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/value-binding#primitive-values-from-object-fields)
|
|
258
258
|
*/
|
|
259
259
|
set valuePrimitive(isPrimitive: boolean);
|
|
260
260
|
get valuePrimitive(): boolean;
|
|
@@ -268,42 +268,17 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
268
268
|
set tabIndex(tabIndex: number);
|
|
269
269
|
get tabIndex(): number;
|
|
270
270
|
/**
|
|
271
|
-
* Sets the size of the component.
|
|
272
|
-
*
|
|
273
|
-
* The possible values are:
|
|
274
|
-
* * `small`
|
|
275
|
-
* * `medium` (default)
|
|
276
|
-
* * `large`
|
|
277
|
-
* * `none`
|
|
278
|
-
*
|
|
279
|
-
* @default 'medium'
|
|
271
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
280
272
|
*/
|
|
281
273
|
set size(size: DropDownSize);
|
|
282
274
|
get size(): DropDownSize;
|
|
283
275
|
/**
|
|
284
|
-
* Sets the border radius of the component.
|
|
285
|
-
*
|
|
286
|
-
* The possible values are:
|
|
287
|
-
* * `small`
|
|
288
|
-
* * `medium` (default)
|
|
289
|
-
* * `large`
|
|
290
|
-
* * `full`
|
|
291
|
-
* * `none`
|
|
292
|
-
*
|
|
293
|
-
* @default 'medium'
|
|
276
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
294
277
|
*/
|
|
295
278
|
set rounded(rounded: DropDownRounded);
|
|
296
279
|
get rounded(): DropDownRounded;
|
|
297
280
|
/**
|
|
298
|
-
* Sets the fillMode of the component.
|
|
299
|
-
*
|
|
300
|
-
* The possible values are:
|
|
301
|
-
* * `flat`
|
|
302
|
-
* * `solid` (default)
|
|
303
|
-
* * `outline`
|
|
304
|
-
* * `none`
|
|
305
|
-
*
|
|
306
|
-
* @default 'solid'
|
|
281
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
307
282
|
*/
|
|
308
283
|
set fillMode(fillMode: DropDownFillMode);
|
|
309
284
|
get fillMode(): DropDownFillMode;
|
|
@@ -313,19 +288,19 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
313
288
|
*/
|
|
314
289
|
leftRightArrowsNavigation: boolean;
|
|
315
290
|
/**
|
|
316
|
-
* Fires each time the value changes. [See example.](
|
|
291
|
+
* Fires each time the value changes. [See example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
317
292
|
*/
|
|
318
293
|
valueChange: EventEmitter<any>;
|
|
319
294
|
/**
|
|
320
|
-
** Fires each time the user types in the input field. You can filter the source based on the filtration value. When the value is programmatically changed, the `valueChange` event is not triggered. [See example.](
|
|
295
|
+
** Fires each time the user types in the input field. You can filter the source based on the filtration value. When the value is programmatically changed, the `valueChange` event is not triggered. [See example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
321
296
|
*/
|
|
322
297
|
filterChange: EventEmitter<any>;
|
|
323
298
|
/**
|
|
324
|
-
* Fires each time the item selection changes. [see example.](
|
|
299
|
+
* Fires each time the item selection changes. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/events).
|
|
325
300
|
*/
|
|
326
301
|
selectionChange: EventEmitter<any>;
|
|
327
302
|
/**
|
|
328
|
-
* Fires each time the popup is about to open. This event is preventable. If you cancel it, the popup remains closed. [see example.](
|
|
303
|
+
* Fires each time the popup is about to open. This event is preventable. If you cancel it, the popup remains closed. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/open-state#preventing-opening-and-closing)
|
|
329
304
|
*/
|
|
330
305
|
open: EventEmitter<PreventableEvent>;
|
|
331
306
|
/**
|
|
@@ -333,7 +308,7 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
333
308
|
*/
|
|
334
309
|
opened: EventEmitter<any>;
|
|
335
310
|
/**
|
|
336
|
-
* Fires each time the popup is about to close. This event is preventable. If you cancel it, the popup remains open. [see example.](
|
|
311
|
+
* Fires each time the popup is about to close. This event is preventable. If you cancel it, the popup remains open. [see example.](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/open-state#preventing-opening-and-closing)
|
|
337
312
|
*/
|
|
338
313
|
close: EventEmitter<PreventableEvent>;
|
|
339
314
|
/**
|
|
@@ -6,7 +6,7 @@ export interface MultiSelectTreeCheckableSettings {
|
|
|
6
6
|
/**
|
|
7
7
|
* When `true`, child nodes are checked automatically.
|
|
8
8
|
*
|
|
9
|
-
* > When you enable this property, use it with [`loadOnDemand`](
|
|
9
|
+
* > When you enable this property, use it with [`loadOnDemand`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselecttreecomponent#loadondemand) set to 'false' ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/checkable-settings)). Otherwise, after expanding a checked node and loading its inner items, the value selected in the widget and the checked items in the drop-down will not be in sync. This scenario is not supported.
|
|
10
10
|
*/
|
|
11
11
|
checkChildren?: boolean;
|
|
12
12
|
/**
|
|
@@ -28,7 +28,7 @@ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
|
28
28
|
import { AdaptiveRendererComponent } from '../common/adaptive-renderer.component';
|
|
29
29
|
import * as i0 from "@angular/core";
|
|
30
30
|
/**
|
|
31
|
-
* Represents the [Kendo UI DropDownTree component for Angular](
|
|
31
|
+
* Represents the [Kendo UI DropDownTree component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree).
|
|
32
32
|
* @example
|
|
33
33
|
* ```html
|
|
34
34
|
* <kendo-dropdowntree [data]="data" textField="text" valueField="value"></kendo-dropdowntree>
|
|
@@ -113,7 +113,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
113
113
|
private filterInput;
|
|
114
114
|
/**
|
|
115
115
|
* Fires each time the popup is about to open
|
|
116
|
-
* ([see example](
|
|
116
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
117
117
|
* This event is preventable. If you cancel it, the popup will remain closed.
|
|
118
118
|
*/
|
|
119
119
|
open: EventEmitter<PreventableEvent>;
|
|
@@ -123,7 +123,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
123
123
|
opened: EventEmitter<any>;
|
|
124
124
|
/**
|
|
125
125
|
* Fires each time the popup is about to close
|
|
126
|
-
* ([see example](
|
|
126
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
127
127
|
* This event is preventable. If you cancel it, the popup will remain open.
|
|
128
128
|
*/
|
|
129
129
|
close: EventEmitter<PreventableEvent>;
|
|
@@ -149,7 +149,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
149
149
|
onBlur: EventEmitter<any>;
|
|
150
150
|
/**
|
|
151
151
|
* Fires each time the value is changed
|
|
152
|
-
* ([see example](
|
|
152
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/events)).
|
|
153
153
|
*/
|
|
154
154
|
valueChange: EventEmitter<any>;
|
|
155
155
|
/**
|
|
@@ -182,7 +182,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
182
182
|
get value(): any;
|
|
183
183
|
/**
|
|
184
184
|
* The fields of the data item that provide the text content of the nodes inside the
|
|
185
|
-
* DropDownTree ([see example](
|
|
185
|
+
* DropDownTree ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/data-binding)). If the `textField`
|
|
186
186
|
* input is set to an array, each hierarchical level uses the field that corresponds
|
|
187
187
|
* to the same index in the array, or the last item in the array.
|
|
188
188
|
*
|
|
@@ -191,7 +191,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
191
191
|
textField: string | string[];
|
|
192
192
|
/**
|
|
193
193
|
* The fields of the data item that provide the value of the nodes inside the
|
|
194
|
-
* DropDownTree ([see example](
|
|
194
|
+
* DropDownTree ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/data-binding)). If the `valueField`
|
|
195
195
|
* input is set to an array, each hierarchical level uses the field that corresponds
|
|
196
196
|
* to the same index in the array, or the last item in the array.
|
|
197
197
|
*
|
|
@@ -245,7 +245,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
245
245
|
get listHeight(): number;
|
|
246
246
|
private _listHeight;
|
|
247
247
|
/**
|
|
248
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
248
|
+
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/forms#managing-the-dropdowntree-disabled-state-in-reactive-forms).
|
|
249
249
|
*/
|
|
250
250
|
disabled: boolean;
|
|
251
251
|
/**
|
|
@@ -256,7 +256,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
256
256
|
readonly: boolean;
|
|
257
257
|
/**
|
|
258
258
|
* Specifies the type of the selected value
|
|
259
|
-
* ([more information and example](
|
|
259
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/value-binding#primitive-values)).
|
|
260
260
|
* If set to `true`, the selected value has to be of a primitive value.
|
|
261
261
|
*/
|
|
262
262
|
valuePrimitive: boolean;
|
|
@@ -266,39 +266,17 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
266
266
|
set tabindex(value: number);
|
|
267
267
|
get tabindex(): number;
|
|
268
268
|
/**
|
|
269
|
-
* Sets the size of the component.
|
|
270
|
-
*
|
|
271
|
-
* The possible values are:
|
|
272
|
-
* * `small`
|
|
273
|
-
* * `medium` (default)
|
|
274
|
-
* * `large`
|
|
275
|
-
* * `none`
|
|
276
|
-
*
|
|
269
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
277
270
|
*/
|
|
278
271
|
set size(size: DropDownSize);
|
|
279
272
|
get size(): DropDownSize;
|
|
280
273
|
/**
|
|
281
|
-
* Sets the border radius of the component.
|
|
282
|
-
*
|
|
283
|
-
* The possible values are:
|
|
284
|
-
* * `small`
|
|
285
|
-
* * `medium` (default)
|
|
286
|
-
* * `large`
|
|
287
|
-
* * `full`
|
|
288
|
-
* * `none`
|
|
289
|
-
*
|
|
274
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
290
275
|
*/
|
|
291
276
|
set rounded(rounded: DropDownRounded);
|
|
292
277
|
get rounded(): DropDownRounded;
|
|
293
278
|
/**
|
|
294
|
-
* Sets the fillMode of the component.
|
|
295
|
-
*
|
|
296
|
-
* The possible values are:
|
|
297
|
-
* * `flat`
|
|
298
|
-
* * `solid` (default)
|
|
299
|
-
* * `outline`
|
|
300
|
-
* * `none`
|
|
301
|
-
*
|
|
279
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
302
280
|
*/
|
|
303
281
|
set fillMode(fillMode: DropDownFillMode);
|
|
304
282
|
get fillMode(): DropDownFillMode;
|
|
@@ -322,8 +300,8 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
322
300
|
loadOnDemand: boolean;
|
|
323
301
|
/**
|
|
324
302
|
* Renders the built-in input element for filtering the DropDownTree.
|
|
325
|
-
* If set to `true`, the component emits the `filterChange` event, which can be used to [filter the DropDownTree manually](
|
|
326
|
-
* A built-in filtering implementation is available to use with the [`kendoDropDownTreeHierarchyBinding`](
|
|
303
|
+
* If set to `true`, the component emits the `filterChange` event, which can be used to [filter the DropDownTree manually](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/filtering#manual-filtering).
|
|
304
|
+
* A built-in filtering implementation is available to use with the [`kendoDropDownTreeHierarchyBinding`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdowntreehierarchybindingdirective) and [`kendoDropDownTreeFlatBinding`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdowntreeflatbindingdirective) directives.
|
|
327
305
|
*/
|
|
328
306
|
filterable: boolean;
|
|
329
307
|
/**
|
|
@@ -541,7 +519,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
541
519
|
reset(): void;
|
|
542
520
|
/**
|
|
543
521
|
* Toggles the visibility of the popup or actionSheet.
|
|
544
|
-
* ([see example](
|
|
522
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/open-state)).
|
|
545
523
|
* If you use the `toggle` method to open or close the popup or actionSheet, the `open` and `close` events will not be fired.
|
|
546
524
|
*
|
|
547
525
|
* @param open - The state of the popup.
|
|
@@ -33,7 +33,7 @@ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
|
33
33
|
import { AdaptiveRendererComponent } from '../common/adaptive-renderer.component';
|
|
34
34
|
import * as i0 from "@angular/core";
|
|
35
35
|
/**
|
|
36
|
-
* Represents the Kendo UI for Angular [MultiSelectTree](
|
|
36
|
+
* Represents the Kendo UI for Angular [MultiSelectTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree) component.
|
|
37
37
|
*
|
|
38
38
|
* The `MultiSelectTree` lets you select multiple items from hierarchical data in a tree structure.
|
|
39
39
|
* It provides built-in filtering, checkboxes, and adaptive rendering for mobile devices.
|
|
@@ -186,23 +186,17 @@ export declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnCh
|
|
|
186
186
|
set tabindex(value: number);
|
|
187
187
|
get tabindex(): number;
|
|
188
188
|
/**
|
|
189
|
-
* Sets the visual size of the component.
|
|
190
|
-
*
|
|
191
|
-
* @default 'medium'
|
|
189
|
+
* Sets the visual size of the component. The default value is set by the Kendo theme.
|
|
192
190
|
*/
|
|
193
191
|
set size(size: DropDownSize);
|
|
194
192
|
get size(): DropDownSize;
|
|
195
193
|
/**
|
|
196
|
-
* Sets the border radius style of the component.
|
|
197
|
-
*
|
|
198
|
-
* @default 'medium'
|
|
194
|
+
* Sets the border radius style of the component. The default value is set by the Kendo theme.
|
|
199
195
|
*/
|
|
200
196
|
set rounded(rounded: DropDownRounded);
|
|
201
197
|
get rounded(): DropDownRounded;
|
|
202
198
|
/**
|
|
203
|
-
* Sets the fill style for the component background and borders.
|
|
204
|
-
*
|
|
205
|
-
* @default 'solid'
|
|
199
|
+
* Sets the fill style for the component background and borders. The default value is set by the Kendo theme.
|
|
206
200
|
*/
|
|
207
201
|
set fillMode(fillMode: DropDownFillMode);
|
|
208
202
|
get fillMode(): DropDownFillMode;
|
|
@@ -368,7 +362,7 @@ export declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnCh
|
|
|
368
362
|
*/
|
|
369
363
|
onBlur: EventEmitter<any>;
|
|
370
364
|
/**
|
|
371
|
-
* Fires when the popup is about to open. ([See example](
|
|
365
|
+
* Fires when the popup is about to open. ([See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/open-state)).
|
|
372
366
|
* This event is preventable. When cancelled, the popup remains closed.
|
|
373
367
|
*/
|
|
374
368
|
open: EventEmitter<PreventableEvent>;
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
/**
|
|
9
9
|
* Configures the MultiSelectTree to show one single summary tag for all selected data items.
|
|
10
10
|
* When a number is set, the summary tag is shown after the corresponding number of data items are selected (see examples).
|
|
11
|
-
* See [more information and examples](
|
|
11
|
+
* See [more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselecttreesummarytagdirective).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|