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