@progress/kendo-angular-dropdowns 22.1.0-develop.9 → 23.0.0-develop.2
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 -11
- 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 +17 -16
- 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 +16 -18
- package/dropdowntrees/checked-state/checkable-settings.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +17 -16
- package/dropdowntrees/multiselecttree.component.d.ts +3 -3
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +333 -352
- package/multiselect/multiselect.component.d.ts +9 -9
- 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 AUTOCOMPLETE_VALUE_ACCESSOR: any;
|
|
42
42
|
/**
|
|
43
|
-
* Represents the [Kendo UI AutoComplete component for Angular](
|
|
43
|
+
* Represents the [Kendo UI AutoComplete component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete).
|
|
44
44
|
*
|
|
45
45
|
* @example
|
|
46
46
|
* ```html
|
|
@@ -136,7 +136,7 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
136
136
|
highlightFirst: boolean;
|
|
137
137
|
/**
|
|
138
138
|
* Shows or hides the current group sticky header when using grouped data.
|
|
139
|
-
* By default, the sticky header is displayed ([see example](
|
|
139
|
+
* By default, the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
140
140
|
*
|
|
141
141
|
* @default true
|
|
142
142
|
*/
|
|
@@ -238,14 +238,14 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
238
238
|
*/
|
|
239
239
|
suggest: boolean;
|
|
240
240
|
/**
|
|
241
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
241
|
+
* 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/autocomplete/forms#managing-the-autocomplete-disabled-state-in-reactive-forms).
|
|
242
242
|
*
|
|
243
243
|
* @default false
|
|
244
244
|
*/
|
|
245
245
|
disabled: boolean;
|
|
246
246
|
/**
|
|
247
247
|
* Defines a Boolean function that is executed for each data item in the component
|
|
248
|
-
* ([see examples](
|
|
248
|
+
* ([see examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/disabled-items)).
|
|
249
249
|
* Determines whether the item will be disabled.
|
|
250
250
|
*/
|
|
251
251
|
set itemDisabled(fn: ItemDisabledFn);
|
|
@@ -267,14 +267,14 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
267
267
|
set tabIndex(tabIndex: number);
|
|
268
268
|
get tabIndex(): number;
|
|
269
269
|
/**
|
|
270
|
-
* Enables the [filtering](
|
|
270
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/filtering) functionality.
|
|
271
271
|
* If set to `true`, the component emits the `filterChange` event.
|
|
272
272
|
*
|
|
273
273
|
* @default false
|
|
274
274
|
*/
|
|
275
275
|
filterable: boolean;
|
|
276
276
|
/**
|
|
277
|
-
* Enables the [virtualization](
|
|
277
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/virtualization) functionality.
|
|
278
278
|
*
|
|
279
279
|
* @default false
|
|
280
280
|
*/
|
|
@@ -283,21 +283,21 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
283
283
|
/**
|
|
284
284
|
* Sets the size of the component.
|
|
285
285
|
*
|
|
286
|
-
* @default
|
|
286
|
+
* @default undefined
|
|
287
287
|
*/
|
|
288
288
|
set size(size: DropDownSize);
|
|
289
289
|
get size(): DropDownSize;
|
|
290
290
|
/**
|
|
291
291
|
* Sets the border radius of the component.
|
|
292
292
|
*
|
|
293
|
-
* @default
|
|
293
|
+
* @default undefined
|
|
294
294
|
*/
|
|
295
295
|
set rounded(rounded: DropDownRounded);
|
|
296
296
|
get rounded(): DropDownRounded;
|
|
297
297
|
/**
|
|
298
298
|
* Sets the fillMode of the component.
|
|
299
299
|
*
|
|
300
|
-
* @default
|
|
300
|
+
* @default undefined
|
|
301
301
|
*/
|
|
302
302
|
set fillMode(fillMode: DropDownFillMode);
|
|
303
303
|
get fillMode(): DropDownFillMode;
|
|
@@ -310,7 +310,7 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
310
310
|
/**
|
|
311
311
|
* Fires each time the value changes—
|
|
312
312
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
313
|
-
* ([see example](
|
|
313
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/events).
|
|
314
314
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
315
315
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
316
316
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -319,7 +319,7 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
319
319
|
/**
|
|
320
320
|
* Fires each time the user types in the input field.
|
|
321
321
|
* You can filter the source based on the passed filtration value
|
|
322
|
-
* ([see example](
|
|
322
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/events)).
|
|
323
323
|
*/
|
|
324
324
|
filterChange: EventEmitter<string>;
|
|
325
325
|
/**
|
|
@@ -7,12 +7,12 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Renders the column cell content of the MultiColumnComboBox component.
|
|
9
9
|
*
|
|
10
|
-
* To define a column cell template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnCellTemplate` directive inside the [`<kendo-combobox-column>`](
|
|
11
|
-
* [See example](
|
|
10
|
+
* To define a column cell template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnCellTemplate` directive inside the [`<kendo-combobox-column>`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) tag.
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates).
|
|
12
12
|
*
|
|
13
13
|
* The context variables are:
|
|
14
14
|
* - `let-dataItem="dataItem"` (`any`)—The current data item. Also available as the implicit context variable.
|
|
15
|
-
* - `let-column="column"` ([`ColumnComponent`](
|
|
15
|
+
* - `let-column="column"` ([`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent))—The current column configuration object.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
18
|
* ```html
|
|
@@ -22,7 +22,7 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
* {{ dataItem[column.field] }}
|
|
23
23
|
* </ng-template>
|
|
24
24
|
* </kendo-combobox-column>
|
|
25
|
-
*
|
|
25
|
+
* </kendo-multicolumncombobox>
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
28
|
export declare class ColumnCellTemplateDirective {
|
|
@@ -7,10 +7,10 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Renders the column header content of the MultiColumnComboBox component.
|
|
9
9
|
*
|
|
10
|
-
* To define a column header template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnHeaderTemplate` directive inside the [`<kendo-combobox-column>`](
|
|
11
|
-
* [See example](
|
|
10
|
+
* To define a column header template, nest an `<ng-template>` tag with the `kendoMultiColumnComboBoxColumnHeaderTemplate` directive inside the [`<kendo-combobox-column>`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) tag.
|
|
11
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates).
|
|
12
12
|
*
|
|
13
|
-
* The current [`column`](
|
|
13
|
+
* The current [`column`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) is available as the implicit context variable.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* ```html
|
|
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
|
|
|
20
20
|
* {{ column.title }}
|
|
21
21
|
* </ng-template>
|
|
22
22
|
* </kendo-combobox-column>
|
|
23
|
-
*
|
|
23
|
+
* </kendo-multicolumncombobox>
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
export declare class ColumnHeaderTemplateDirective {
|
|
@@ -9,13 +9,13 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* Represents the column definition for the MultiColumnComboBox component.
|
|
10
10
|
*
|
|
11
11
|
* Use this component to define columns inside the MultiColumnComboBox.
|
|
12
|
-
* [See example](
|
|
12
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/columns).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
|
16
16
|
* <kendo-multicolumncombobox ...>
|
|
17
17
|
* <kendo-combobox-column field="name" title="Name" width="200"></kendo-combobox-column>
|
|
18
|
-
*
|
|
18
|
+
* </kendo-multicolumncombobox>
|
|
19
19
|
* ```
|
|
20
20
|
*/
|
|
21
21
|
export declare class ComboBoxColumnComponent {
|
|
@@ -79,7 +79,7 @@ export declare class ComboBoxColumnComponent {
|
|
|
79
79
|
[key: string]: any;
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
82
|
-
* Sets the condition that needs to be satisfied for a column to remain visible. If you set the [`hidden`](
|
|
82
|
+
* Sets the condition that needs to be satisfied for a column to remain visible. If you set the [`hidden`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent#hidden) property, the behavior of media is overridden.
|
|
83
83
|
*/
|
|
84
84
|
media: string;
|
|
85
85
|
/**
|
|
@@ -41,7 +41,7 @@ import * as i0 from "@angular/core";
|
|
|
41
41
|
*/
|
|
42
42
|
export declare const COMBOBOX_VALUE_ACCESSOR: any;
|
|
43
43
|
/**
|
|
44
|
-
* Represents the [Kendo UI ComboBox component for Angular](
|
|
44
|
+
* Represents the [Kendo UI ComboBox component for Angular](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox).
|
|
45
45
|
* @example
|
|
46
46
|
* ```html
|
|
47
47
|
* <kendo-combobox [data]="listItems"> </kendo-combobox>
|
|
@@ -121,7 +121,7 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
121
121
|
selected: any[];
|
|
122
122
|
/**
|
|
123
123
|
* Shows or hides the current group sticky header when using grouped data.
|
|
124
|
-
* By default the sticky header is displayed ([see example](
|
|
124
|
+
* By default the sticky header is displayed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/grouping#sticky-header)).
|
|
125
125
|
* @default true
|
|
126
126
|
*/
|
|
127
127
|
showStickyHeader: boolean;
|
|
@@ -131,7 +131,7 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
131
131
|
focusableId: string;
|
|
132
132
|
/**
|
|
133
133
|
* Specifies whether the ComboBox allows user-defined values that are not present in the dataset
|
|
134
|
-
* ([more information and examples](
|
|
134
|
+
* ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/custom-values)).
|
|
135
135
|
* Defaults to `false`.
|
|
136
136
|
*
|
|
137
137
|
* The feature is not available when using adaptive mode.
|
|
@@ -166,7 +166,7 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
166
166
|
valueField: string;
|
|
167
167
|
/**
|
|
168
168
|
* Specifies the type of the selected value. If set to `true`, the selected value must be a primitive type.
|
|
169
|
-
* ([more information and example](
|
|
169
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/value-binding#primitive-values-from-object-fields))
|
|
170
170
|
*/
|
|
171
171
|
set valuePrimitive(isPrimitive: boolean);
|
|
172
172
|
get valuePrimitive(): boolean;
|
|
@@ -270,11 +270,11 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
270
270
|
*/
|
|
271
271
|
clearButton: boolean;
|
|
272
272
|
/**
|
|
273
|
-
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the articles on [ComboBox Forms Support](
|
|
273
|
+
* Sets the disabled state of the component. To learn how to disable the component in reactive forms, refer to the articles on [ComboBox Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/forms#managing-the-combobox-disabled-state-in-reactive-forms) and [MultiColumnComboBox Forms Support](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/forms#managing-the-multicolumncombobox-disabled-state-in-reactive-forms).
|
|
274
274
|
*/
|
|
275
275
|
disabled: boolean;
|
|
276
276
|
/**
|
|
277
|
-
* Defines a Boolean function that is executed for each data item in the component ([see examples](
|
|
277
|
+
* Defines a Boolean function that is executed for each data item in the component ([see examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/disabled-items)). Determines whether the item is disabled.
|
|
278
278
|
*/
|
|
279
279
|
set itemDisabled(fn: ItemDisabledFn);
|
|
280
280
|
/**
|
|
@@ -292,12 +292,12 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
292
292
|
set tabIndex(tabIndex: number);
|
|
293
293
|
get tabIndex(): number;
|
|
294
294
|
/**
|
|
295
|
-
* Enables the [filtering](
|
|
295
|
+
* Enables the [filtering](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/filtering) functionality.
|
|
296
296
|
* If set to `true`, the component emits the `filterChange` event.
|
|
297
297
|
*/
|
|
298
298
|
filterable: boolean;
|
|
299
299
|
/**
|
|
300
|
-
* Enables the [virtualization](
|
|
300
|
+
* Enables the [virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/virtualization) functionality.
|
|
301
301
|
*/
|
|
302
302
|
set virtual(settings: boolean | VirtualizationSettings);
|
|
303
303
|
get virtual(): VirtualizationSettings;
|
|
@@ -306,10 +306,10 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
306
306
|
*
|
|
307
307
|
* The possible values are:
|
|
308
308
|
* * `small`
|
|
309
|
-
* * `medium`
|
|
309
|
+
* * `medium`
|
|
310
310
|
* * `large`
|
|
311
|
-
* * `none`
|
|
312
311
|
*
|
|
312
|
+
* @default undefined
|
|
313
313
|
*/
|
|
314
314
|
set size(size: DropDownSize);
|
|
315
315
|
get size(): DropDownSize;
|
|
@@ -318,11 +318,12 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
318
318
|
*
|
|
319
319
|
* The possible values are:
|
|
320
320
|
* * `small`
|
|
321
|
-
* * `medium`
|
|
321
|
+
* * `medium`
|
|
322
322
|
* * `large`
|
|
323
323
|
* * `full`
|
|
324
324
|
* * `none`
|
|
325
325
|
*
|
|
326
|
+
* @default undefined
|
|
326
327
|
*/
|
|
327
328
|
set rounded(rounded: DropDownRounded);
|
|
328
329
|
get rounded(): DropDownRounded;
|
|
@@ -331,28 +332,28 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
331
332
|
*
|
|
332
333
|
* The possible values are:
|
|
333
334
|
* * `flat`
|
|
334
|
-
* * `solid`
|
|
335
|
+
* * `solid`
|
|
335
336
|
* * `outline`
|
|
336
|
-
* * `none`
|
|
337
337
|
*
|
|
338
|
+
* @default undefined
|
|
338
339
|
*/
|
|
339
340
|
set fillMode(fillMode: DropDownFillMode);
|
|
340
341
|
get fillMode(): DropDownFillMode;
|
|
341
342
|
/**
|
|
342
343
|
* Fires each time the value is changed—
|
|
343
344
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
344
|
-
* ([see example](
|
|
345
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
345
346
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
346
347
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
347
348
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
348
349
|
*/
|
|
349
350
|
valueChange: EventEmitter<any>;
|
|
350
351
|
/**
|
|
351
|
-
* Fires each time an item selection is changed ([see example](
|
|
352
|
+
* Fires each time an item selection is changed ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
352
353
|
*/
|
|
353
354
|
selectionChange: EventEmitter<any>;
|
|
354
355
|
/**
|
|
355
|
-
* Fires each time the user types in the input field. You can filter the source based on the passed filtration value ([see example](
|
|
356
|
+
* Fires each time the user types in the input field. You can filter the source based on the passed filtration value ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/events)).
|
|
356
357
|
*/
|
|
357
358
|
filterChange: EventEmitter<any>;
|
|
358
359
|
/**
|
|
@@ -18,7 +18,7 @@ import * as i0 from "@angular/core";
|
|
|
18
18
|
* Represents the Kendo UI MultiColumnComboBox component for Angular.
|
|
19
19
|
*
|
|
20
20
|
* Use the `MultiColumnComboBoxComponent` to show a dropdown list with multiple columns.
|
|
21
|
-
* [See example](
|
|
21
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox).
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
* ```html
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
*
|
|
8
8
|
* For more information, refer to the articles on using the built-in
|
|
9
9
|
* `kendoDropDownFilter` directive with each DropDowns component:
|
|
10
|
-
* * [AutoComplete](
|
|
11
|
-
* * [ComboBox](
|
|
12
|
-
* * [MultiColumnComboBox](
|
|
13
|
-
* * [DropDownList](
|
|
14
|
-
* * [MultiSelect](
|
|
10
|
+
* * [AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/filtering#automatic-filtering)
|
|
11
|
+
* * [ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/filtering#automatic-filtering)
|
|
12
|
+
* * [MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/filtering#automatic-filtering)
|
|
13
|
+
* * [DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/filtering#automatic-filtering)
|
|
14
|
+
* * [MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/filtering#automatic-filtering)
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
17
|
* ```ts
|
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
/**
|
|
10
10
|
* Implements an event handler for the `filterChange` event of a DropDowns component
|
|
11
11
|
* which performs simple data filtering.
|
|
12
|
-
* Currently, the built-in filtering does not work with [grouped data](
|
|
12
|
+
* Currently, the built-in filtering does not work with [grouped data](https://www.telerik.com/kendo-angular-ui/components/data-query/api/groupby).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```ts
|
|
@@ -40,7 +40,7 @@ export declare class FilterDirective implements OnInit, OnDestroy {
|
|
|
40
40
|
get data(): any[];
|
|
41
41
|
/**
|
|
42
42
|
* The configuration object which sets the behavior of the `kendoDropDownFilter` directive.
|
|
43
|
-
* If no [DropDownFilterSettings](
|
|
43
|
+
* If no [DropDownFilterSettings](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/dropdownfiltersettings) object is provided to this input, the directive will use the default interface settings.
|
|
44
44
|
*/
|
|
45
45
|
rawSettings: DropDownFilterSettings | string;
|
|
46
46
|
/**
|
|
@@ -7,7 +7,7 @@ import { Messages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Custom component messages override default component messages
|
|
10
|
-
* ([see example](
|
|
10
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/globalization#messages)).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```html
|
package/common/models/size.d.ts
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Used for configuring virtual scrolling:
|
|
7
|
-
* * [AutoComplete virtualization](
|
|
8
|
-
* * [ComboBox virtualization](
|
|
9
|
-
* * [DropDownList virtualization](
|
|
10
|
-
* * [MultiSelect virtualization](
|
|
7
|
+
* * [AutoComplete virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/virtualization)
|
|
8
|
+
* * [ComboBox virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/virtualization)
|
|
9
|
+
* * [DropDownList virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/virtualization)
|
|
10
|
+
* * [MultiSelect virtualization](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/virtualization)
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```ts
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the content of the custom list item in the MultiSelect
|
|
9
|
-
* ([see example](
|
|
9
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#rendering-custom-item-content)).
|
|
10
10
|
* The template context is set to the current component.
|
|
11
11
|
* To get a reference to the current text that is typed by the
|
|
12
12
|
* user, use the `let-customItem` directive.
|
|
@@ -9,11 +9,11 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* with the `kendo<ComponentName>FixedGroupTemplate` directive inside the component tag. The template context is
|
|
10
10
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
11
11
|
*
|
|
12
|
-
* - [Using `FixedGroupTemplate` with the AutoComplete](
|
|
13
|
-
* - [Using `FixedGroupTemplate` with the ComboBox](
|
|
14
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox](
|
|
15
|
-
* - [Using `FixedGroupTemplate` with the DropDownList](
|
|
16
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect](
|
|
12
|
+
* - [Using `FixedGroupTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#fixed-group-header-template)
|
|
13
|
+
* - [Using `FixedGroupTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#fixed-group-header-template)
|
|
14
|
+
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#fixed-group-header-template)
|
|
15
|
+
* - [Using `FixedGroupTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#fixed-group-header-template)
|
|
16
|
+
* - [Using `FixedGroupTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#fixed-group-header-template)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -8,12 +8,12 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the footer content of the list. To define the footer template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendo<ComponentName>FooterTemplate` directive inside the component tag.
|
|
10
10
|
*
|
|
11
|
-
* - [Using `FooterTemplate` with the AutoComplete](
|
|
12
|
-
* - [Using `FooterTemplate` with the ComboBox](
|
|
13
|
-
* - [Using `FooterTemplate` with the MultiColumnComboBox](
|
|
14
|
-
* - [Using `FooterTemplate` with the DropDownList](
|
|
15
|
-
* - [Using `FooterTemplate` with the DropDownTree](
|
|
16
|
-
* - [Using `FooterTemplate` with the MultiSelect](
|
|
11
|
+
* - [Using `FooterTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#footer-template)
|
|
12
|
+
* - [Using `FooterTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#footer-template)
|
|
13
|
+
* - [Using `FooterTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#footer-template)
|
|
14
|
+
* - [Using `FooterTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#footer-template)
|
|
15
|
+
* - [Using `FooterTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#footer-template)
|
|
16
|
+
* - [Using `FooterTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#footer-template)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the grouped tag values in the MultiSelect
|
|
9
|
-
* ([see example](
|
|
9
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode)).
|
|
10
10
|
* The template context is set to the current component.
|
|
11
11
|
* To get a reference to the current grouped
|
|
12
12
|
* data items collection, use the `let-dataItems` directive.
|
|
@@ -9,11 +9,11 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* with the `kendo<ComponentName>GroupTemplate` directive inside the component tag. The template context is
|
|
10
10
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
11
11
|
*
|
|
12
|
-
* - [Using `GroupTemplate` with the AutoComplete](
|
|
13
|
-
* - [Using `GroupTemplate` with the ComboBox](
|
|
14
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox](
|
|
15
|
-
* - [Using `GroupTemplate` with the DropDownList](
|
|
16
|
-
* - [Using `GroupTemplate` with the MultiSelect](
|
|
12
|
+
* - [Using `GroupTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#group-header-template)
|
|
13
|
+
* - [Using `GroupTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#group-header-template)
|
|
14
|
+
* - [Using `GroupTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#group-header-template)
|
|
15
|
+
* - [Using `GroupTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#group-header-template)
|
|
16
|
+
* - [Using `GroupTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#group-header-template)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -8,12 +8,12 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the header content of the list. To define the header template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendo<ComponentName>HeaderTemplate` directive inside the component tag.
|
|
10
10
|
*
|
|
11
|
-
* - [Using `HeaderTemplate` with the AutoComplete](
|
|
12
|
-
* - [Using `HeaderTemplate` with the ComboBox](
|
|
13
|
-
* - [Using `HeaderTemplate` with the MultiColumnComboBox](
|
|
14
|
-
* - [Using `HeaderTemplate` with the DropDownList](
|
|
15
|
-
* - [Using `HeaderTemplate` with the DropDownTree](
|
|
16
|
-
* - [Using `HeaderTemplate` with the MultiSelect](
|
|
11
|
+
* - [Using `HeaderTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#header-template)
|
|
12
|
+
* - [Using `HeaderTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#header-template)
|
|
13
|
+
* - [Using `HeaderTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#header-template)
|
|
14
|
+
* - [Using `HeaderTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#header-template)
|
|
15
|
+
* - [Using `HeaderTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#header-template)
|
|
16
|
+
* - [Using `HeaderTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#header-template)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -9,10 +9,10 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
* with the `kendo<ComponentName>ItemTemplate` directive inside the component tag. The template context is
|
|
10
10
|
* set to the current component. To get a reference to the current data item, use the `let-dataItem` directive.
|
|
11
11
|
*
|
|
12
|
-
* - [Using `ItemTemplate` with the AutoComplete](
|
|
13
|
-
* - [Using `ItemTemplate` with the ComboBox](
|
|
14
|
-
* - [Using `ItemTemplate` with the DropDownList](
|
|
15
|
-
* - [Using `ItemTemplate` with the MultiSelect](
|
|
12
|
+
* - [Using `ItemTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#item-template)
|
|
13
|
+
* - [Using `ItemTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#item-template)
|
|
14
|
+
* - [Using `ItemTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#item-template)
|
|
15
|
+
* - [Using `ItemTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#item-template)
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
18
|
* ```ts
|
|
@@ -8,12 +8,12 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders content when no data is available. To define the no-data template, nest a `<ng-template>` tag
|
|
9
9
|
* with the `kendo<ComponentName>NoDataTemplate` directive inside the component tag.
|
|
10
10
|
*
|
|
11
|
-
* - [Using `NoDataTemplate` with the AutoComplete](
|
|
12
|
-
* - [Using `NoDataTemplate` with the ComboBox](
|
|
13
|
-
* - [Using `NoDataTemplate` with the MultiColumnComboBox](
|
|
14
|
-
* - [Using `NoDataTemplate` with the DropDownList](
|
|
15
|
-
* - [Using `NoDataTemplate` with the DropDownTree](
|
|
16
|
-
* - [Using `NoDataTemplate` with the MultiSelect](
|
|
11
|
+
* - [Using `NoDataTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#no-data-template)
|
|
12
|
+
* - [Using `NoDataTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#no-data-template)
|
|
13
|
+
* - [Using `NoDataTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#no-data-template)
|
|
14
|
+
* - [Using `NoDataTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#no-data-template)
|
|
15
|
+
* - [Using `NoDataTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#no-data-template)
|
|
16
|
+
* - [Using `NoDataTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#no-data-template)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the selected tag value of the MultiSelect
|
|
9
|
-
* ([see example](
|
|
9
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#tag-template)).
|
|
10
10
|
* The template context is set to the current component.
|
|
11
11
|
* To get a reference to the current data item, use the `let-dataItem` directive.
|
|
12
12
|
*
|
|
@@ -13,8 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
*
|
|
14
14
|
* > The `ValueTemplate` directive can only be used with the DropDownList and DropDownTree components.
|
|
15
15
|
*
|
|
16
|
-
* - [Using `ValueTemplate` with the DropDownList](
|
|
17
|
-
* - [Using `ValueTemplate` with the DropDownTree](
|
|
16
|
+
* - [Using `ValueTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#value-template)
|
|
17
|
+
* - [Using `ValueTemplate` with the DropDownTree](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdowntree/templates#value-template)
|
|
18
18
|
*
|
|
19
19
|
* @example
|
|
20
20
|
* ```ts
|