@progress/kendo-angular-dropdowns 16.4.0-develop.5 → 16.4.0-develop.7
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 +2 -2
- package/comboboxes/combobox.component.d.ts +3 -3
- 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/group-template.directive.d.ts +5 -5
- package/dropdownlist/dropdownlist.component.d.ts +3 -3
- package/dropdowntrees/dropdowntree.component.d.ts +1 -1
- package/dropdowntrees/multiselecttree.component.d.ts +1 -1
- package/esm2020/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2020/comboboxes/combobox.component.mjs +3 -3
- package/esm2020/common/templates/custom-item-template.directive.mjs +1 -1
- package/esm2020/common/templates/fixed-group-template.directive.mjs +5 -5
- package/esm2020/common/templates/group-template.directive.mjs +5 -5
- package/esm2020/dropdownlist/dropdownlist.component.mjs +3 -3
- package/esm2020/dropdowntrees/dropdowntree.component.mjs +1 -1
- package/esm2020/dropdowntrees/multiselecttree.component.mjs +1 -1
- package/esm2020/multiselect/multiselect.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-dropdowns.mjs +24 -24
- package/fesm2020/progress-kendo-angular-dropdowns.mjs +24 -24
- package/multiselect/multiselect.component.d.ts +1 -1
- package/package.json +8 -8
- package/schematics/ngAdd/index.js +2 -2
|
@@ -298,7 +298,7 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
298
298
|
/**
|
|
299
299
|
* Fires each time the value is changed—
|
|
300
300
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
301
|
-
* ([see example](
|
|
301
|
+
* ([see example](slug:events_autocomplete)).
|
|
302
302
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
303
303
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
304
304
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -307,7 +307,7 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
307
307
|
/**
|
|
308
308
|
* Fires each time the user types in the input field.
|
|
309
309
|
* You can filter the source based on the passed filtration value
|
|
310
|
-
* ([see example](
|
|
310
|
+
* ([see example](slug:events_autocomplete)).
|
|
311
311
|
*/
|
|
312
312
|
filterChange: EventEmitter<string>;
|
|
313
313
|
/**
|
|
@@ -359,7 +359,7 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
359
359
|
/**
|
|
360
360
|
* Fires each time the value is changed—
|
|
361
361
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
362
|
-
* ([see example](
|
|
362
|
+
* ([see example](slug:events_combobox)).
|
|
363
363
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
364
364
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
365
365
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -367,13 +367,13 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
367
367
|
valueChange: EventEmitter<any>;
|
|
368
368
|
/**
|
|
369
369
|
* Fires each time an item selection is changed
|
|
370
|
-
* ([see example](
|
|
370
|
+
* ([see example](slug:events_combobox)).
|
|
371
371
|
*/
|
|
372
372
|
selectionChange: EventEmitter<any>;
|
|
373
373
|
/**
|
|
374
374
|
* Fires each time the user types in the input field.
|
|
375
375
|
* You can filter the source based on the passed filtration value
|
|
376
|
-
* ([see example](
|
|
376
|
+
* ([see example](slug:events_combobox)).
|
|
377
377
|
*/
|
|
378
378
|
filterChange: EventEmitter<any>;
|
|
379
379
|
/**
|
|
@@ -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](slug:templates_multiselect#toc-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-template)
|
|
13
|
-
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-template)
|
|
14
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-template)
|
|
15
|
-
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-template)
|
|
16
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-template)
|
|
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)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -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-template)
|
|
13
|
-
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-template)
|
|
14
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-template)
|
|
15
|
-
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-template)
|
|
16
|
-
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-template)
|
|
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)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -311,12 +311,12 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
311
311
|
*/
|
|
312
312
|
leftRightArrowsNavigation: boolean;
|
|
313
313
|
/**
|
|
314
|
-
* Fires each time the value is changed ([see example](
|
|
314
|
+
* Fires each time the value is changed ([see example](slug:events_ddl)).
|
|
315
315
|
*/
|
|
316
316
|
valueChange: EventEmitter<any>;
|
|
317
317
|
/**
|
|
318
318
|
* Fires each time the user types in the input field
|
|
319
|
-
* ([see example](
|
|
319
|
+
* ([see example](slug:events_ddl)).
|
|
320
320
|
* You can filter the source based on the passed filtration value.
|
|
321
321
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
322
322
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
@@ -325,7 +325,7 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
325
325
|
filterChange: EventEmitter<any>;
|
|
326
326
|
/**
|
|
327
327
|
* Fires each time the item selection is changed
|
|
328
|
-
* ([see example](
|
|
328
|
+
* ([see example](slug:events_ddl)).
|
|
329
329
|
*/
|
|
330
330
|
selectionChange: EventEmitter<any>;
|
|
331
331
|
/**
|
|
@@ -138,7 +138,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
138
138
|
onBlur: EventEmitter<any>;
|
|
139
139
|
/**
|
|
140
140
|
* Fires each time the value is changed
|
|
141
|
-
* ([see example](
|
|
141
|
+
* ([see example](slug:events_ddt)).
|
|
142
142
|
*/
|
|
143
143
|
valueChange: EventEmitter<any>;
|
|
144
144
|
/**
|
|
@@ -384,7 +384,7 @@ export declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnCh
|
|
|
384
384
|
nodeCollapse: EventEmitter<TreeItem>;
|
|
385
385
|
/**
|
|
386
386
|
* Fires each time the value is changed
|
|
387
|
-
* ([see example](
|
|
387
|
+
* ([see example](slug:events_multiselecttree)).
|
|
388
388
|
*/
|
|
389
389
|
valueChange: EventEmitter<any>;
|
|
390
390
|
/**
|
|
@@ -157,7 +157,7 @@ export class AutoCompleteComponent {
|
|
|
157
157
|
/**
|
|
158
158
|
* Fires each time the value is changed—
|
|
159
159
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
160
|
-
* ([see example](
|
|
160
|
+
* ([see example](slug:events_autocomplete)).
|
|
161
161
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
162
162
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
163
163
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -166,7 +166,7 @@ export class AutoCompleteComponent {
|
|
|
166
166
|
/**
|
|
167
167
|
* Fires each time the user types in the input field.
|
|
168
168
|
* You can filter the source based on the passed filtration value
|
|
169
|
-
* ([see example](
|
|
169
|
+
* ([see example](slug:events_autocomplete)).
|
|
170
170
|
*/
|
|
171
171
|
this.filterChange = new EventEmitter();
|
|
172
172
|
/**
|
|
@@ -214,7 +214,7 @@ export class ComboBoxComponent extends MultiTabStop {
|
|
|
214
214
|
/**
|
|
215
215
|
* Fires each time the value is changed—
|
|
216
216
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
217
|
-
* ([see example](
|
|
217
|
+
* ([see example](slug:events_combobox)).
|
|
218
218
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
219
219
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
220
220
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -222,13 +222,13 @@ export class ComboBoxComponent extends MultiTabStop {
|
|
|
222
222
|
this.valueChange = new EventEmitter();
|
|
223
223
|
/**
|
|
224
224
|
* Fires each time an item selection is changed
|
|
225
|
-
* ([see example](
|
|
225
|
+
* ([see example](slug:events_combobox)).
|
|
226
226
|
*/
|
|
227
227
|
this.selectionChange = new EventEmitter();
|
|
228
228
|
/**
|
|
229
229
|
* Fires each time the user types in the input field.
|
|
230
230
|
* You can filter the source based on the passed filtration value
|
|
231
|
-
* ([see example](
|
|
231
|
+
* ([see example](slug:events_combobox)).
|
|
232
232
|
*/
|
|
233
233
|
this.filterChange = new EventEmitter();
|
|
234
234
|
/**
|
|
@@ -6,7 +6,7 @@ import { Directive, 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](slug:templates_multiselect#toc-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-template)
|
|
13
|
-
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-template)
|
|
14
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-template)
|
|
15
|
-
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-template)
|
|
16
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-template)
|
|
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)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -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-template)
|
|
13
|
-
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-template)
|
|
14
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-template)
|
|
15
|
-
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-template)
|
|
16
|
-
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-template)
|
|
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)
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
* ```ts
|
|
@@ -161,12 +161,12 @@ export class DropDownListComponent {
|
|
|
161
161
|
*/
|
|
162
162
|
this.leftRightArrowsNavigation = true;
|
|
163
163
|
/**
|
|
164
|
-
* Fires each time the value is changed ([see example](
|
|
164
|
+
* Fires each time the value is changed ([see example](slug:events_ddl)).
|
|
165
165
|
*/
|
|
166
166
|
this.valueChange = new EventEmitter();
|
|
167
167
|
/**
|
|
168
168
|
* Fires each time the user types in the input field
|
|
169
|
-
* ([see example](
|
|
169
|
+
* ([see example](slug:events_ddl)).
|
|
170
170
|
* You can filter the source based on the passed filtration value.
|
|
171
171
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
172
172
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
@@ -175,7 +175,7 @@ export class DropDownListComponent {
|
|
|
175
175
|
this.filterChange = new EventEmitter();
|
|
176
176
|
/**
|
|
177
177
|
* Fires each time the item selection is changed
|
|
178
|
-
* ([see example](
|
|
178
|
+
* ([see example](slug:events_ddl)).
|
|
179
179
|
*/
|
|
180
180
|
this.selectionChange = new EventEmitter();
|
|
181
181
|
/**
|
|
@@ -118,7 +118,7 @@ export class DropDownTreeComponent {
|
|
|
118
118
|
this.onBlur = new EventEmitter();
|
|
119
119
|
/**
|
|
120
120
|
* Fires each time the value is changed
|
|
121
|
-
* ([see example](
|
|
121
|
+
* ([see example](slug:events_ddt)).
|
|
122
122
|
*/
|
|
123
123
|
this.valueChange = new EventEmitter();
|
|
124
124
|
/**
|
|
@@ -220,7 +220,7 @@ export class MultiSelectTreeComponent {
|
|
|
220
220
|
this.nodeCollapse = new EventEmitter();
|
|
221
221
|
/**
|
|
222
222
|
* Fires each time the value is changed
|
|
223
|
-
* ([see example](
|
|
223
|
+
* ([see example](slug:events_multiselecttree)).
|
|
224
224
|
*/
|
|
225
225
|
this.valueChange = new EventEmitter();
|
|
226
226
|
/**
|
|
@@ -242,7 +242,7 @@ export class MultiSelectComponent {
|
|
|
242
242
|
/**
|
|
243
243
|
* Fires each time the value is changed—
|
|
244
244
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
245
|
-
* ([see example](
|
|
245
|
+
* ([see example](slug:events_multiselect)).
|
|
246
246
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
247
247
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
248
248
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dropdowns',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.4.0-develop.
|
|
12
|
+
publishDate: 1720507400,
|
|
13
|
+
version: '16.4.0-develop.7',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -38,8 +38,8 @@ const packageMetadata = {
|
|
|
38
38
|
name: '@progress/kendo-angular-dropdowns',
|
|
39
39
|
productName: 'Kendo UI for Angular',
|
|
40
40
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
41
|
-
publishDate:
|
|
42
|
-
version: '16.4.0-develop.
|
|
41
|
+
publishDate: 1720507400,
|
|
42
|
+
version: '16.4.0-develop.7',
|
|
43
43
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
44
44
|
};
|
|
45
45
|
|
|
@@ -955,11 +955,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
955
955
|
* with the `kendo<ComponentName>GroupTemplate` directive inside the component tag. The template context is
|
|
956
956
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
957
957
|
*
|
|
958
|
-
* - [Using `GroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-group-template)
|
|
959
|
-
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-template)
|
|
960
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-template)
|
|
961
|
-
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-template)
|
|
962
|
-
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-template)
|
|
958
|
+
* - [Using `GroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-group-header-template)
|
|
959
|
+
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-header-template)
|
|
960
|
+
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-header-template)
|
|
961
|
+
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-header-template)
|
|
962
|
+
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-header-template)
|
|
963
963
|
*
|
|
964
964
|
* @example
|
|
965
965
|
* ```ts
|
|
@@ -1003,11 +1003,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1003
1003
|
* with the `kendo<ComponentName>FixedGroupTemplate` directive inside the component tag. The template context is
|
|
1004
1004
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
1005
1005
|
*
|
|
1006
|
-
* - [Using `FixedGroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-fixed-group-template)
|
|
1007
|
-
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-template)
|
|
1008
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-template)
|
|
1009
|
-
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-template)
|
|
1010
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-template)
|
|
1006
|
+
* - [Using `FixedGroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-fixed-group-header-template)
|
|
1007
|
+
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-header-template)
|
|
1008
|
+
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-header-template)
|
|
1009
|
+
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-header-template)
|
|
1010
|
+
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-header-template)
|
|
1011
1011
|
*
|
|
1012
1012
|
* @example
|
|
1013
1013
|
* ```ts
|
|
@@ -3107,7 +3107,7 @@ class AutoCompleteComponent {
|
|
|
3107
3107
|
/**
|
|
3108
3108
|
* Fires each time the value is changed—
|
|
3109
3109
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
3110
|
-
* ([see example](
|
|
3110
|
+
* ([see example](slug:events_autocomplete)).
|
|
3111
3111
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
3112
3112
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
3113
3113
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -3116,7 +3116,7 @@ class AutoCompleteComponent {
|
|
|
3116
3116
|
/**
|
|
3117
3117
|
* Fires each time the user types in the input field.
|
|
3118
3118
|
* You can filter the source based on the passed filtration value
|
|
3119
|
-
* ([see example](
|
|
3119
|
+
* ([see example](slug:events_autocomplete)).
|
|
3120
3120
|
*/
|
|
3121
3121
|
this.filterChange = new EventEmitter();
|
|
3122
3122
|
/**
|
|
@@ -4766,7 +4766,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
4766
4766
|
/**
|
|
4767
4767
|
* Fires each time the value is changed—
|
|
4768
4768
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
4769
|
-
* ([see example](
|
|
4769
|
+
* ([see example](slug:events_combobox)).
|
|
4770
4770
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
4771
4771
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
4772
4772
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -4774,13 +4774,13 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
4774
4774
|
this.valueChange = new EventEmitter();
|
|
4775
4775
|
/**
|
|
4776
4776
|
* Fires each time an item selection is changed
|
|
4777
|
-
* ([see example](
|
|
4777
|
+
* ([see example](slug:events_combobox)).
|
|
4778
4778
|
*/
|
|
4779
4779
|
this.selectionChange = new EventEmitter();
|
|
4780
4780
|
/**
|
|
4781
4781
|
* Fires each time the user types in the input field.
|
|
4782
4782
|
* You can filter the source based on the passed filtration value
|
|
4783
|
-
* ([see example](
|
|
4783
|
+
* ([see example](slug:events_combobox)).
|
|
4784
4784
|
*/
|
|
4785
4785
|
this.filterChange = new EventEmitter();
|
|
4786
4786
|
/**
|
|
@@ -6794,12 +6794,12 @@ class DropDownListComponent {
|
|
|
6794
6794
|
*/
|
|
6795
6795
|
this.leftRightArrowsNavigation = true;
|
|
6796
6796
|
/**
|
|
6797
|
-
* Fires each time the value is changed ([see example](
|
|
6797
|
+
* Fires each time the value is changed ([see example](slug:events_ddl)).
|
|
6798
6798
|
*/
|
|
6799
6799
|
this.valueChange = new EventEmitter();
|
|
6800
6800
|
/**
|
|
6801
6801
|
* Fires each time the user types in the input field
|
|
6802
|
-
* ([see example](
|
|
6802
|
+
* ([see example](slug:events_ddl)).
|
|
6803
6803
|
* You can filter the source based on the passed filtration value.
|
|
6804
6804
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
6805
6805
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
@@ -6808,7 +6808,7 @@ class DropDownListComponent {
|
|
|
6808
6808
|
this.filterChange = new EventEmitter();
|
|
6809
6809
|
/**
|
|
6810
6810
|
* Fires each time the item selection is changed
|
|
6811
|
-
* ([see example](
|
|
6811
|
+
* ([see example](slug:events_ddl)).
|
|
6812
6812
|
*/
|
|
6813
6813
|
this.selectionChange = new EventEmitter();
|
|
6814
6814
|
/**
|
|
@@ -8601,7 +8601,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8601
8601
|
|
|
8602
8602
|
/**
|
|
8603
8603
|
* Renders the content of the custom list item in the MultiSelect
|
|
8604
|
-
* ([see example](
|
|
8604
|
+
* ([see example](slug:templates_multiselect#toc-rendering-custom-item-content)).
|
|
8605
8605
|
* The template context is set to the current component.
|
|
8606
8606
|
* To get a reference to the current text that is typed by the
|
|
8607
8607
|
* user, use the `let-customItem` directive.
|
|
@@ -9188,7 +9188,7 @@ class MultiSelectComponent {
|
|
|
9188
9188
|
/**
|
|
9189
9189
|
* Fires each time the value is changed—
|
|
9190
9190
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
9191
|
-
* ([see example](
|
|
9191
|
+
* ([see example](slug:events_multiselect)).
|
|
9192
9192
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
9193
9193
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
9194
9194
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -12252,7 +12252,7 @@ class DropDownTreeComponent {
|
|
|
12252
12252
|
this.onBlur = new EventEmitter();
|
|
12253
12253
|
/**
|
|
12254
12254
|
* Fires each time the value is changed
|
|
12255
|
-
* ([see example](
|
|
12255
|
+
* ([see example](slug:events_ddt)).
|
|
12256
12256
|
*/
|
|
12257
12257
|
this.valueChange = new EventEmitter();
|
|
12258
12258
|
/**
|
|
@@ -14575,7 +14575,7 @@ class MultiSelectTreeComponent {
|
|
|
14575
14575
|
this.nodeCollapse = new EventEmitter();
|
|
14576
14576
|
/**
|
|
14577
14577
|
* Fires each time the value is changed
|
|
14578
|
-
* ([see example](
|
|
14578
|
+
* ([see example](slug:events_multiselecttree)).
|
|
14579
14579
|
*/
|
|
14580
14580
|
this.valueChange = new EventEmitter();
|
|
14581
14581
|
/**
|
|
@@ -38,8 +38,8 @@ const packageMetadata = {
|
|
|
38
38
|
name: '@progress/kendo-angular-dropdowns',
|
|
39
39
|
productName: 'Kendo UI for Angular',
|
|
40
40
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
41
|
-
publishDate:
|
|
42
|
-
version: '16.4.0-develop.
|
|
41
|
+
publishDate: 1720507400,
|
|
42
|
+
version: '16.4.0-develop.7',
|
|
43
43
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
44
44
|
};
|
|
45
45
|
|
|
@@ -953,11 +953,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
953
953
|
* with the `kendo<ComponentName>GroupTemplate` directive inside the component tag. The template context is
|
|
954
954
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
955
955
|
*
|
|
956
|
-
* - [Using `GroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-group-template)
|
|
957
|
-
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-template)
|
|
958
|
-
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-template)
|
|
959
|
-
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-template)
|
|
960
|
-
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-template)
|
|
956
|
+
* - [Using `GroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-group-header-template)
|
|
957
|
+
* - [Using `GroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-group-header-template)
|
|
958
|
+
* - [Using `GroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-group-header-template)
|
|
959
|
+
* - [Using `GroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-group-header-template)
|
|
960
|
+
* - [Using `GroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-group-header-template)
|
|
961
961
|
*
|
|
962
962
|
* @example
|
|
963
963
|
* ```ts
|
|
@@ -1001,11 +1001,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1001
1001
|
* with the `kendo<ComponentName>FixedGroupTemplate` directive inside the component tag. The template context is
|
|
1002
1002
|
* set to the current component. To get a reference to the current data item, use the `let-groupName` directive.
|
|
1003
1003
|
*
|
|
1004
|
-
* - [Using `FixedGroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-fixed-group-template)
|
|
1005
|
-
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-template)
|
|
1006
|
-
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-template)
|
|
1007
|
-
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-template)
|
|
1008
|
-
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-template)
|
|
1004
|
+
* - [Using `FixedGroupTemplate` with the AutoComplete]({% slug templates_autocomplete %}#toc-fixed-group-header-template)
|
|
1005
|
+
* - [Using `FixedGroupTemplate` with the ComboBox]({% slug templates_combobox %}#toc-fixed-group-header-template)
|
|
1006
|
+
* - [Using `FixedGroupTemplate` with the MultiColumnComboBox]({% slug templates_multicolumncombobox %}#toc-fixed-group-header-template)
|
|
1007
|
+
* - [Using `FixedGroupTemplate` with the DropDownList]({% slug templates_ddl %}#toc-fixed-group-header-template)
|
|
1008
|
+
* - [Using `FixedGroupTemplate` with the MultiSelect]({% slug templates_multiselect %}#toc-fixed-group-header-template)
|
|
1009
1009
|
*
|
|
1010
1010
|
* @example
|
|
1011
1011
|
* ```ts
|
|
@@ -3104,7 +3104,7 @@ class AutoCompleteComponent {
|
|
|
3104
3104
|
/**
|
|
3105
3105
|
* Fires each time the value is changed—
|
|
3106
3106
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
3107
|
-
* ([see example](
|
|
3107
|
+
* ([see example](slug:events_autocomplete)).
|
|
3108
3108
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
3109
3109
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
3110
3110
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -3113,7 +3113,7 @@ class AutoCompleteComponent {
|
|
|
3113
3113
|
/**
|
|
3114
3114
|
* Fires each time the user types in the input field.
|
|
3115
3115
|
* You can filter the source based on the passed filtration value
|
|
3116
|
-
* ([see example](
|
|
3116
|
+
* ([see example](slug:events_autocomplete)).
|
|
3117
3117
|
*/
|
|
3118
3118
|
this.filterChange = new EventEmitter();
|
|
3119
3119
|
/**
|
|
@@ -4757,7 +4757,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
4757
4757
|
/**
|
|
4758
4758
|
* Fires each time the value is changed—
|
|
4759
4759
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
4760
|
-
* ([see example](
|
|
4760
|
+
* ([see example](slug:events_combobox)).
|
|
4761
4761
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
4762
4762
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
4763
4763
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -4765,13 +4765,13 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
4765
4765
|
this.valueChange = new EventEmitter();
|
|
4766
4766
|
/**
|
|
4767
4767
|
* Fires each time an item selection is changed
|
|
4768
|
-
* ([see example](
|
|
4768
|
+
* ([see example](slug:events_combobox)).
|
|
4769
4769
|
*/
|
|
4770
4770
|
this.selectionChange = new EventEmitter();
|
|
4771
4771
|
/**
|
|
4772
4772
|
* Fires each time the user types in the input field.
|
|
4773
4773
|
* You can filter the source based on the passed filtration value
|
|
4774
|
-
* ([see example](
|
|
4774
|
+
* ([see example](slug:events_combobox)).
|
|
4775
4775
|
*/
|
|
4776
4776
|
this.filterChange = new EventEmitter();
|
|
4777
4777
|
/**
|
|
@@ -6779,12 +6779,12 @@ class DropDownListComponent {
|
|
|
6779
6779
|
*/
|
|
6780
6780
|
this.leftRightArrowsNavigation = true;
|
|
6781
6781
|
/**
|
|
6782
|
-
* Fires each time the value is changed ([see example](
|
|
6782
|
+
* Fires each time the value is changed ([see example](slug:events_ddl)).
|
|
6783
6783
|
*/
|
|
6784
6784
|
this.valueChange = new EventEmitter();
|
|
6785
6785
|
/**
|
|
6786
6786
|
* Fires each time the user types in the input field
|
|
6787
|
-
* ([see example](
|
|
6787
|
+
* ([see example](slug:events_ddl)).
|
|
6788
6788
|
* You can filter the source based on the passed filtration value.
|
|
6789
6789
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
6790
6790
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
@@ -6793,7 +6793,7 @@ class DropDownListComponent {
|
|
|
6793
6793
|
this.filterChange = new EventEmitter();
|
|
6794
6794
|
/**
|
|
6795
6795
|
* Fires each time the item selection is changed
|
|
6796
|
-
* ([see example](
|
|
6796
|
+
* ([see example](slug:events_ddl)).
|
|
6797
6797
|
*/
|
|
6798
6798
|
this.selectionChange = new EventEmitter();
|
|
6799
6799
|
/**
|
|
@@ -8579,7 +8579,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
8579
8579
|
|
|
8580
8580
|
/**
|
|
8581
8581
|
* Renders the content of the custom list item in the MultiSelect
|
|
8582
|
-
* ([see example](
|
|
8582
|
+
* ([see example](slug:templates_multiselect#toc-rendering-custom-item-content)).
|
|
8583
8583
|
* The template context is set to the current component.
|
|
8584
8584
|
* To get a reference to the current text that is typed by the
|
|
8585
8585
|
* user, use the `let-customItem` directive.
|
|
@@ -9166,7 +9166,7 @@ class MultiSelectComponent {
|
|
|
9166
9166
|
/**
|
|
9167
9167
|
* Fires each time the value is changed—
|
|
9168
9168
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
9169
|
-
* ([see example](
|
|
9169
|
+
* ([see example](slug:events_multiselect)).
|
|
9170
9170
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
9171
9171
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
9172
9172
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
@@ -12222,7 +12222,7 @@ class DropDownTreeComponent {
|
|
|
12222
12222
|
this.onBlur = new EventEmitter();
|
|
12223
12223
|
/**
|
|
12224
12224
|
* Fires each time the value is changed
|
|
12225
|
-
* ([see example](
|
|
12225
|
+
* ([see example](slug:events_ddt)).
|
|
12226
12226
|
*/
|
|
12227
12227
|
this.valueChange = new EventEmitter();
|
|
12228
12228
|
/**
|
|
@@ -14538,7 +14538,7 @@ class MultiSelectTreeComponent {
|
|
|
14538
14538
|
this.nodeCollapse = new EventEmitter();
|
|
14539
14539
|
/**
|
|
14540
14540
|
* Fires each time the value is changed
|
|
14541
|
-
* ([see example](
|
|
14541
|
+
* ([see example](slug:events_multiselecttree)).
|
|
14542
14542
|
*/
|
|
14543
14543
|
this.valueChange = new EventEmitter();
|
|
14544
14544
|
/**
|
|
@@ -420,7 +420,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
420
420
|
/**
|
|
421
421
|
* Fires each time the value is changed—
|
|
422
422
|
* when the component is blurred or the value is cleared through the **Clear** button
|
|
423
|
-
* ([see example](
|
|
423
|
+
* ([see example](slug:events_multiselect)).
|
|
424
424
|
* When the value of the component is programmatically changed to `ngModel` or `formControl`
|
|
425
425
|
* through its API or form binding, the `valueChange` event is not triggered because it
|
|
426
426
|
* might cause a mix-up with the built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "16.4.0-develop.
|
|
3
|
+
"version": "16.4.0-develop.7",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"@angular/forms": "15 - 18",
|
|
26
26
|
"@angular/platform-browser": "15 - 18",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "16.4.0-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "16.4.0-develop.
|
|
30
|
-
"@progress/kendo-angular-navigation": "16.4.0-develop.
|
|
31
|
-
"@progress/kendo-angular-popup": "16.4.0-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "16.4.0-develop.
|
|
33
|
-
"@progress/kendo-angular-treeview": "16.4.0-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "16.4.0-develop.7",
|
|
29
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.7",
|
|
30
|
+
"@progress/kendo-angular-navigation": "16.4.0-develop.7",
|
|
31
|
+
"@progress/kendo-angular-popup": "16.4.0-develop.7",
|
|
32
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.7",
|
|
33
|
+
"@progress/kendo-angular-treeview": "16.4.0-develop.7",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "16.4.0-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "16.4.0-develop.7",
|
|
39
39
|
"@progress/kendo-common": "^0.2.1"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
6
6
|
// peers of the treeview
|
|
7
|
-
'@progress/kendo-angular-inputs': '16.4.0-develop.
|
|
7
|
+
'@progress/kendo-angular-inputs': '16.4.0-develop.7',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '16.4.0-develop.
|
|
9
|
+
'@progress/kendo-angular-intl': '16.4.0-develop.7',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0'
|