@progress/kendo-angular-dropdowns 22.1.0-develop.8 → 23.0.0-develop.1

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.
Files changed (33) hide show
  1. package/autocomplete/autocomplete.component.d.ts +11 -11
  2. package/comboboxes/combobox-column/column-cell-template.directive.d.ts +4 -4
  3. package/comboboxes/combobox-column/column-header-template.directive.d.ts +4 -4
  4. package/comboboxes/combobox-column/combobox-column.component.d.ts +3 -3
  5. package/comboboxes/combobox.component.d.ts +17 -16
  6. package/comboboxes/multicolumncombobox.component.d.ts +1 -1
  7. package/common/filtering/filter-settings.d.ts +5 -5
  8. package/common/filtering/filter.directive.d.ts +2 -2
  9. package/common/localization/custom-messages.component.d.ts +1 -1
  10. package/common/models/fillmode.d.ts +1 -1
  11. package/common/models/size.d.ts +1 -1
  12. package/common/models/virtualization-settings.d.ts +4 -4
  13. package/common/templates/custom-item-template.directive.d.ts +1 -1
  14. package/common/templates/fixed-group-template.directive.d.ts +5 -5
  15. package/common/templates/footer-template.directive.d.ts +6 -6
  16. package/common/templates/group-tag-template.directive.d.ts +1 -1
  17. package/common/templates/group-template.directive.d.ts +5 -5
  18. package/common/templates/header-template.directive.d.ts +6 -6
  19. package/common/templates/item-template.directive.d.ts +4 -4
  20. package/common/templates/no-data-template.directive.d.ts +6 -6
  21. package/common/templates/tag-template.directive.d.ts +1 -1
  22. package/common/templates/value-template.directive.d.ts +2 -2
  23. package/dropdownlist/dropdownlist.component.d.ts +16 -18
  24. package/dropdowntrees/checked-state/checkable-settings.d.ts +1 -1
  25. package/dropdowntrees/dropdowntree.component.d.ts +17 -16
  26. package/dropdowntrees/multiselecttree.component.d.ts +3 -3
  27. package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
  28. package/fesm2022/progress-kendo-angular-dropdowns.mjs +333 -352
  29. package/multiselect/multiselect.component.d.ts +9 -9
  30. package/multiselect/summary-tag.directive.d.ts +1 -1
  31. package/package-metadata.mjs +2 -2
  32. package/package.json +11 -11
  33. 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]({% slug overview_autocomplete %}).
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]({% slug grouping_autocomplete %}#toc-sticky-header)).
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](slug:formssupport_autocomplete#toc-managing-the-autocomplete-disabled-state-in-reactive-forms).
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]({% slug disableditems_autocomplete %})).
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]({% slug filtering_autocomplete %}) functionality.
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]({% slug virtualization_autocomplete %}) functionality.
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 'medium'
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 'medium'
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 'solid'
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](slug:events_autocomplete)).
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](slug:events_autocomplete)).
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>`]({% slug api_dropdowns_comboboxcolumncomponent %}) tag.
11
- * [See example]({% slug templates_multicolumncombobox %}).
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`)&mdash;The current data item. Also available as the implicit context variable.
15
- * - `let-column="column"` ([`ColumnComponent`]({% slug api_dropdowns_comboboxcolumncomponent %}))&mdash;The current column configuration object.
15
+ * - `let-column="column"` ([`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent))&mdash;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
- * <kendo-multicolumncombobox>
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>`]({% slug api_dropdowns_comboboxcolumncomponent %}) tag.
11
- * [See example]({% slug templates_multicolumncombobox %}).
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`]({% slug api_dropdowns_comboboxcolumncomponent %}) is available as the implicit context variable.
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
- * <kendo-multicolumncombobox>
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]({% slug columns_multicolumncombobox %}).
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
- * <kendo-multicolumncombobox ...>
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`]({% slug api_dropdowns_comboboxcolumncomponent %}#toc-hidden) property, the behavior of media is overridden.
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]({% slug overview_combobox %}).
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]({% slug grouping_autocomplete %}#toc-sticky-header)).
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]({% slug custom_values_combobox %})).
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]({% slug valuebinding_combobox %}#toc-primitive-values-from-object-fields))
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](slug:formssupport_combobox#toc-managing-the-combobox-disabled-state-in-reactive-forms) and [MultiColumnComboBox Forms Support](slug:formssupport_multicolumncombobox#toc-managing-the-multicolumncombobox-disabled-state-in-reactive-forms).
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]({% slug disableditems_combobox %})). Determines whether the item is disabled.
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]({% slug filtering_combobox %}) functionality.
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]({% slug virtualization_combobox %}) functionality.
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` (default)
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` (default)
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` (default)
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&mdash;
343
344
  * when the component is blurred or the value is cleared through the **Clear** button
344
- * ([see example](slug:events_combobox)).
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](slug:events_combobox)).
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](slug:events_combobox)).
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]({% slug overview_multicolumncombobox %}).
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](slug:filtering_autocomplete#automatic-filtering)
11
- * * [ComboBox](slug:filtering_combobox#automatic-filtering)
12
- * * [MultiColumnComboBox](slug:filtering_multicolumncombobox#automatic-filtering)
13
- * * [DropDownList](slug:filtering_ddl#automatic-filtering)
14
- * * [MultiSelect](slug:filtering_multiselect#automatic-filtering)
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]({% slug api_kendo-data-query_groupby %}).
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]({% slug api_dropdowns_dropdownfiltersettings %}) object is provided to this input, the directive will use the default interface settings.
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]({% slug rtl_dropdowns %}#toc-messages)).
10
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/globalization#messages)).
11
11
  *
12
12
  * @example
13
13
  * ```html
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible fillMode options of the dropdowns.
7
7
  */
8
- export type DropDownFillMode = 'solid' | 'flat' | 'outline' | 'none';
8
+ export type DropDownFillMode = 'solid' | 'flat' | 'outline';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Represents the possible size options of the dropdowns.
7
7
  */
8
- export type DropDownSize = 'small' | 'medium' | 'large' | 'none';
8
+ export type DropDownSize = 'small' | 'medium' | 'large';
@@ -4,10 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
6
  * Used for configuring virtual scrolling:
7
- * * [AutoComplete virtualization]({% slug virtualization_autocomplete %})
8
- * * [ComboBox virtualization]({% slug virtualization_combobox %})
9
- * * [DropDownList virtualization]({% slug virtualization_ddl %})
10
- * * [MultiSelect virtualization]({% slug virtualization_multiselect %})
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](slug:templates_multiselect#toc-rendering-custom-item-content)).
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]({% slug templates_autocomplete %}#toc-fixed-group-header-template)
13
- * - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-header-template)
14
- * - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-header-template)
15
- * - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-header-template)
16
- * - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-header-template)
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]({% slug templates_autocomplete %}#toc-footer-template)
12
- * - [Using `FooterTemplate` with the ComboBox]({% slug templates_combobox %}#toc-footer-template)
13
- * - [Using `FooterTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-footer-template)
14
- * - [Using `FooterTemplate` with the DropDownList]({% slug templates_ddl %}#toc-footer-template)
15
- * - [Using `FooterTemplate` with the DropDownTree]({% slug templates_ddt %}#toc-footer-template)
16
- * - [Using `FooterTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-footer-template)
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]({% slug summarytagmode_multiselect %})).
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]({% slug templates_autocomplete %}#toc-group-header-template)
13
- * - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-header-template)
14
- * - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-header-template)
15
- * - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-header-template)
16
- * - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-header-template)
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]({% slug templates_autocomplete %}#toc-header-template)
12
- * - [Using `HeaderTemplate` with the ComboBox]({% slug templates_combobox %}#toc-header-template)
13
- * - [Using `HeaderTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-header-template)
14
- * - [Using `HeaderTemplate` with the DropDownList]({% slug templates_ddl %}#toc-header-template)
15
- * - [Using `HeaderTemplate` with the DropDownTree]({% slug templates_ddt %}#toc-header-template)
16
- * - [Using `HeaderTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-header-template)
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]({% slug templates_autocomplete %}#toc-item-template)
13
- * - [Using `ItemTemplate` with the ComboBox]({% slug templates_combobox %}#toc-item-template)
14
- * - [Using `ItemTemplate` with the DropDownList]({% slug templates_ddl %}#toc-item-template)
15
- * - [Using `ItemTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-item-template)
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]({% slug templates_autocomplete %}#toc-no-data-template)
12
- * - [Using `NoDataTemplate` with the ComboBox]({% slug templates_combobox %}#toc-no-data-template)
13
- * - [Using `NoDataTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-no-data-template)
14
- * - [Using `NoDataTemplate` with the DropDownList]({% slug templates_ddl %}#toc-no-data-template)
15
- * - [Using `NoDataTemplate` with the DropDownTree]({% slug templates_ddt %}#toc-no-data-template)
16
- * - [Using `NoDataTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-no-data-template)
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]({% slug templates_multiselect %}#toc-tag-template)).
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]({% slug templates_ddl %}#toc-value-template)
17
- * - [Using `ValueTemplate` with the DropDownTree]({% slug templates_ddt %}#toc-value-template)
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