@progress/kendo-angular-dropdowns 23.0.0-develop.5 → 23.0.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 +3 -9
- package/comboboxes/combobox.component.d.ts +3 -26
- package/dropdownlist/dropdownlist.component.d.ts +3 -26
- package/dropdowntrees/dropdowntree.component.d.ts +3 -26
- package/dropdowntrees/multiselecttree.component.d.ts +3 -9
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +37 -124
- package/multiselect/multiselect.component.d.ts +3 -9
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -281,23 +281,17 @@ export declare class AutoCompleteComponent implements ControlValueAccessor, OnDe
|
|
|
281
281
|
set virtual(settings: boolean | VirtualizationSettings);
|
|
282
282
|
get virtual(): VirtualizationSettings;
|
|
283
283
|
/**
|
|
284
|
-
* Sets the size of the component.
|
|
285
|
-
*
|
|
286
|
-
* @default undefined
|
|
284
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
287
285
|
*/
|
|
288
286
|
set size(size: DropDownSize);
|
|
289
287
|
get size(): DropDownSize;
|
|
290
288
|
/**
|
|
291
|
-
* Sets the border radius of the component.
|
|
292
|
-
*
|
|
293
|
-
* @default undefined
|
|
289
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
294
290
|
*/
|
|
295
291
|
set rounded(rounded: DropDownRounded);
|
|
296
292
|
get rounded(): DropDownRounded;
|
|
297
293
|
/**
|
|
298
|
-
* Sets the fillMode of the component.
|
|
299
|
-
*
|
|
300
|
-
* @default undefined
|
|
294
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
301
295
|
*/
|
|
302
296
|
set fillMode(fillMode: DropDownFillMode);
|
|
303
297
|
get fillMode(): DropDownFillMode;
|
|
@@ -302,40 +302,17 @@ export declare class ComboBoxComponent extends MultiTabStop implements ControlVa
|
|
|
302
302
|
set virtual(settings: boolean | VirtualizationSettings);
|
|
303
303
|
get virtual(): VirtualizationSettings;
|
|
304
304
|
/**
|
|
305
|
-
* Sets the size of the component.
|
|
306
|
-
*
|
|
307
|
-
* The possible values are:
|
|
308
|
-
* * `small`
|
|
309
|
-
* * `medium`
|
|
310
|
-
* * `large`
|
|
311
|
-
*
|
|
312
|
-
* @default undefined
|
|
305
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
313
306
|
*/
|
|
314
307
|
set size(size: DropDownSize);
|
|
315
308
|
get size(): DropDownSize;
|
|
316
309
|
/**
|
|
317
|
-
* Sets the border radius of the component.
|
|
318
|
-
*
|
|
319
|
-
* The possible values are:
|
|
320
|
-
* * `small`
|
|
321
|
-
* * `medium`
|
|
322
|
-
* * `large`
|
|
323
|
-
* * `full`
|
|
324
|
-
* * `none`
|
|
325
|
-
*
|
|
326
|
-
* @default undefined
|
|
310
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
327
311
|
*/
|
|
328
312
|
set rounded(rounded: DropDownRounded);
|
|
329
313
|
get rounded(): DropDownRounded;
|
|
330
314
|
/**
|
|
331
|
-
* Sets the fillMode of the component.
|
|
332
|
-
*
|
|
333
|
-
* The possible values are:
|
|
334
|
-
* * `flat`
|
|
335
|
-
* * `solid`
|
|
336
|
-
* * `outline`
|
|
337
|
-
*
|
|
338
|
-
* @default undefined
|
|
315
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
339
316
|
*/
|
|
340
317
|
set fillMode(fillMode: DropDownFillMode);
|
|
341
318
|
get fillMode(): DropDownFillMode;
|
|
@@ -268,40 +268,17 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
268
268
|
set tabIndex(tabIndex: number);
|
|
269
269
|
get tabIndex(): number;
|
|
270
270
|
/**
|
|
271
|
-
* Sets the size of the component.
|
|
272
|
-
*
|
|
273
|
-
* The possible values are:
|
|
274
|
-
* * `small`
|
|
275
|
-
* * `medium`
|
|
276
|
-
* * `large`
|
|
277
|
-
*
|
|
278
|
-
* @default undefined
|
|
271
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
279
272
|
*/
|
|
280
273
|
set size(size: DropDownSize);
|
|
281
274
|
get size(): DropDownSize;
|
|
282
275
|
/**
|
|
283
|
-
* Sets the border radius of the component.
|
|
284
|
-
*
|
|
285
|
-
* The possible values are:
|
|
286
|
-
* * `small`
|
|
287
|
-
* * `medium` (default)
|
|
288
|
-
* * `large`
|
|
289
|
-
* * `full`
|
|
290
|
-
* * `none`
|
|
291
|
-
*
|
|
292
|
-
* @default 'medium'
|
|
276
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
293
277
|
*/
|
|
294
278
|
set rounded(rounded: DropDownRounded);
|
|
295
279
|
get rounded(): DropDownRounded;
|
|
296
280
|
/**
|
|
297
|
-
* Sets the fillMode of the component.
|
|
298
|
-
*
|
|
299
|
-
* The possible values are:
|
|
300
|
-
* * `flat`
|
|
301
|
-
* * `solid`
|
|
302
|
-
* * `outline`
|
|
303
|
-
*
|
|
304
|
-
* @default undefined
|
|
281
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
305
282
|
*/
|
|
306
283
|
set fillMode(fillMode: DropDownFillMode);
|
|
307
284
|
get fillMode(): DropDownFillMode;
|
|
@@ -266,40 +266,17 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
266
266
|
set tabindex(value: number);
|
|
267
267
|
get tabindex(): number;
|
|
268
268
|
/**
|
|
269
|
-
* Sets the size of the component.
|
|
270
|
-
*
|
|
271
|
-
* The possible values are:
|
|
272
|
-
* * `small`
|
|
273
|
-
* * `medium`
|
|
274
|
-
* * `large`
|
|
275
|
-
*
|
|
276
|
-
* @default undefined
|
|
269
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
277
270
|
*/
|
|
278
271
|
set size(size: DropDownSize);
|
|
279
272
|
get size(): DropDownSize;
|
|
280
273
|
/**
|
|
281
|
-
* Sets the border radius of the component.
|
|
282
|
-
*
|
|
283
|
-
* The possible values are:
|
|
284
|
-
* * `small`
|
|
285
|
-
* * `medium`
|
|
286
|
-
* * `large`
|
|
287
|
-
* * `full`
|
|
288
|
-
* * `none`
|
|
289
|
-
*
|
|
290
|
-
* @default undefined
|
|
274
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
291
275
|
*/
|
|
292
276
|
set rounded(rounded: DropDownRounded);
|
|
293
277
|
get rounded(): DropDownRounded;
|
|
294
278
|
/**
|
|
295
|
-
* Sets the fillMode of the component.
|
|
296
|
-
*
|
|
297
|
-
* The possible values are:
|
|
298
|
-
* * `flat`
|
|
299
|
-
* * `solid`
|
|
300
|
-
* * `outline`
|
|
301
|
-
*
|
|
302
|
-
* @default undefined
|
|
279
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
303
280
|
*/
|
|
304
281
|
set fillMode(fillMode: DropDownFillMode);
|
|
305
282
|
get fillMode(): DropDownFillMode;
|
|
@@ -186,23 +186,17 @@ export declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnCh
|
|
|
186
186
|
set tabindex(value: number);
|
|
187
187
|
get tabindex(): number;
|
|
188
188
|
/**
|
|
189
|
-
* Sets the visual size of the component.
|
|
190
|
-
*
|
|
191
|
-
* @default undefined
|
|
189
|
+
* Sets the visual size of the component. The default value is set by the Kendo theme.
|
|
192
190
|
*/
|
|
193
191
|
set size(size: DropDownSize);
|
|
194
192
|
get size(): DropDownSize;
|
|
195
193
|
/**
|
|
196
|
-
* Sets the border radius style of the component.
|
|
197
|
-
*
|
|
198
|
-
* @default 'medium'
|
|
194
|
+
* Sets the border radius style of the component. The default value is set by the Kendo theme.
|
|
199
195
|
*/
|
|
200
196
|
set rounded(rounded: DropDownRounded);
|
|
201
197
|
get rounded(): DropDownRounded;
|
|
202
198
|
/**
|
|
203
|
-
* Sets the fill style for the component background and borders.
|
|
204
|
-
*
|
|
205
|
-
* @default 'solid'
|
|
199
|
+
* Sets the fill style for the component background and borders. The default value is set by the Kendo theme.
|
|
206
200
|
*/
|
|
207
201
|
set fillMode(fillMode: DropDownFillMode);
|
|
208
202
|
get fillMode(): DropDownFillMode;
|
|
@@ -38,7 +38,7 @@ const packageMetadata = {
|
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
40
|
publishDate: 0,
|
|
41
|
-
version: '23.0.0-develop.
|
|
41
|
+
version: '23.0.0-develop.7',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3700,9 +3700,7 @@ class AutoCompleteComponent {
|
|
|
3700
3700
|
return this._virtualSettings;
|
|
3701
3701
|
}
|
|
3702
3702
|
/**
|
|
3703
|
-
* Sets the size of the component.
|
|
3704
|
-
*
|
|
3705
|
-
* @default undefined
|
|
3703
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
3706
3704
|
*/
|
|
3707
3705
|
set size(size) {
|
|
3708
3706
|
this.renderer.removeClass(this.wrapper, getSizeClass('input', this.size));
|
|
@@ -3715,9 +3713,7 @@ class AutoCompleteComponent {
|
|
|
3715
3713
|
return this._size;
|
|
3716
3714
|
}
|
|
3717
3715
|
/**
|
|
3718
|
-
* Sets the border radius of the component.
|
|
3719
|
-
*
|
|
3720
|
-
* @default undefined
|
|
3716
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
3721
3717
|
*/
|
|
3722
3718
|
set rounded(rounded) {
|
|
3723
3719
|
this.renderer.removeClass(this.wrapper, getRoundedClass(this.rounded));
|
|
@@ -3730,9 +3726,7 @@ class AutoCompleteComponent {
|
|
|
3730
3726
|
return this._rounded;
|
|
3731
3727
|
}
|
|
3732
3728
|
/**
|
|
3733
|
-
* Sets the fillMode of the component.
|
|
3734
|
-
*
|
|
3735
|
-
* @default undefined
|
|
3729
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
3736
3730
|
*/
|
|
3737
3731
|
set fillMode(fillMode) {
|
|
3738
3732
|
this.renderer.removeClass(this.wrapper, getFillModeClass('input', this.fillMode));
|
|
@@ -5380,14 +5374,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5380
5374
|
return this._virtualSettings;
|
|
5381
5375
|
}
|
|
5382
5376
|
/**
|
|
5383
|
-
* Sets the size of the component.
|
|
5384
|
-
*
|
|
5385
|
-
* The possible values are:
|
|
5386
|
-
* * `small`
|
|
5387
|
-
* * `medium`
|
|
5388
|
-
* * `large`
|
|
5389
|
-
*
|
|
5390
|
-
* @default undefined
|
|
5377
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
5391
5378
|
*/
|
|
5392
5379
|
set size(size) {
|
|
5393
5380
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
@@ -5400,16 +5387,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5400
5387
|
return this._size;
|
|
5401
5388
|
}
|
|
5402
5389
|
/**
|
|
5403
|
-
* Sets the border radius of the component.
|
|
5404
|
-
*
|
|
5405
|
-
* The possible values are:
|
|
5406
|
-
* * `small`
|
|
5407
|
-
* * `medium`
|
|
5408
|
-
* * `large`
|
|
5409
|
-
* * `full`
|
|
5410
|
-
* * `none`
|
|
5411
|
-
*
|
|
5412
|
-
* @default undefined
|
|
5390
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
5413
5391
|
*/
|
|
5414
5392
|
set rounded(rounded) {
|
|
5415
5393
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
@@ -5422,14 +5400,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
5422
5400
|
return this._rounded;
|
|
5423
5401
|
}
|
|
5424
5402
|
/**
|
|
5425
|
-
* Sets the fillMode of the component.
|
|
5426
|
-
*
|
|
5427
|
-
* The possible values are:
|
|
5428
|
-
* * `flat`
|
|
5429
|
-
* * `solid`
|
|
5430
|
-
* * `outline`
|
|
5431
|
-
*
|
|
5432
|
-
* @default undefined
|
|
5403
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
5433
5404
|
*/
|
|
5434
5405
|
set fillMode(fillMode) {
|
|
5435
5406
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
@@ -7525,14 +7496,7 @@ class DropDownListComponent {
|
|
|
7525
7496
|
return this.tabindex;
|
|
7526
7497
|
}
|
|
7527
7498
|
/**
|
|
7528
|
-
* Sets the size of the component.
|
|
7529
|
-
*
|
|
7530
|
-
* The possible values are:
|
|
7531
|
-
* * `small`
|
|
7532
|
-
* * `medium`
|
|
7533
|
-
* * `large`
|
|
7534
|
-
*
|
|
7535
|
-
* @default undefined
|
|
7499
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
7536
7500
|
*/
|
|
7537
7501
|
set size(size) {
|
|
7538
7502
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
@@ -7545,16 +7509,7 @@ class DropDownListComponent {
|
|
|
7545
7509
|
return this._size;
|
|
7546
7510
|
}
|
|
7547
7511
|
/**
|
|
7548
|
-
* Sets the border radius of the component.
|
|
7549
|
-
*
|
|
7550
|
-
* The possible values are:
|
|
7551
|
-
* * `small`
|
|
7552
|
-
* * `medium` (default)
|
|
7553
|
-
* * `large`
|
|
7554
|
-
* * `full`
|
|
7555
|
-
* * `none`
|
|
7556
|
-
*
|
|
7557
|
-
* @default 'medium'
|
|
7512
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
7558
7513
|
*/
|
|
7559
7514
|
set rounded(rounded) {
|
|
7560
7515
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
@@ -7567,14 +7522,7 @@ class DropDownListComponent {
|
|
|
7567
7522
|
return this._rounded;
|
|
7568
7523
|
}
|
|
7569
7524
|
/**
|
|
7570
|
-
* Sets the fillMode of the component.
|
|
7571
|
-
*
|
|
7572
|
-
* The possible values are:
|
|
7573
|
-
* * `flat`
|
|
7574
|
-
* * `solid`
|
|
7575
|
-
* * `outline`
|
|
7576
|
-
*
|
|
7577
|
-
* @default undefined
|
|
7525
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
7578
7526
|
*/
|
|
7579
7527
|
set fillMode(fillMode) {
|
|
7580
7528
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
@@ -9849,9 +9797,7 @@ class MultiSelectComponent {
|
|
|
9849
9797
|
return this.tabindex;
|
|
9850
9798
|
}
|
|
9851
9799
|
/**
|
|
9852
|
-
* Sets the size of the component.
|
|
9853
|
-
*
|
|
9854
|
-
* @default undefined
|
|
9800
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
9855
9801
|
*/
|
|
9856
9802
|
set size(size) {
|
|
9857
9803
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
@@ -9864,9 +9810,7 @@ class MultiSelectComponent {
|
|
|
9864
9810
|
return this._size;
|
|
9865
9811
|
}
|
|
9866
9812
|
/**
|
|
9867
|
-
* Sets the border radius of the component.
|
|
9868
|
-
*
|
|
9869
|
-
* @default undefined
|
|
9813
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
9870
9814
|
*/
|
|
9871
9815
|
set rounded(rounded) {
|
|
9872
9816
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
@@ -9879,9 +9823,7 @@ class MultiSelectComponent {
|
|
|
9879
9823
|
return this._rounded;
|
|
9880
9824
|
}
|
|
9881
9825
|
/**
|
|
9882
|
-
* Sets the fill mode of the component.
|
|
9883
|
-
*
|
|
9884
|
-
* @default undefined
|
|
9826
|
+
* Sets the fill mode of the component. The default value is set by the Kendo theme.
|
|
9885
9827
|
*/
|
|
9886
9828
|
set fillMode(fillMode) {
|
|
9887
9829
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
@@ -13278,14 +13220,7 @@ class DropDownTreeComponent {
|
|
|
13278
13220
|
return this.disabled ? -1 : this._tabindex;
|
|
13279
13221
|
}
|
|
13280
13222
|
/**
|
|
13281
|
-
* Sets the size of the component.
|
|
13282
|
-
*
|
|
13283
|
-
* The possible values are:
|
|
13284
|
-
* * `small`
|
|
13285
|
-
* * `medium`
|
|
13286
|
-
* * `large`
|
|
13287
|
-
*
|
|
13288
|
-
* @default undefined
|
|
13223
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
13289
13224
|
*/
|
|
13290
13225
|
set size(size) {
|
|
13291
13226
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('picker', this.size));
|
|
@@ -13298,16 +13233,7 @@ class DropDownTreeComponent {
|
|
|
13298
13233
|
return this._size;
|
|
13299
13234
|
}
|
|
13300
13235
|
/**
|
|
13301
|
-
* Sets the border radius of the component.
|
|
13302
|
-
*
|
|
13303
|
-
* The possible values are:
|
|
13304
|
-
* * `small`
|
|
13305
|
-
* * `medium`
|
|
13306
|
-
* * `large`
|
|
13307
|
-
* * `full`
|
|
13308
|
-
* * `none`
|
|
13309
|
-
*
|
|
13310
|
-
* @default undefined
|
|
13236
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
13311
13237
|
*/
|
|
13312
13238
|
set rounded(rounded) {
|
|
13313
13239
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
@@ -13320,14 +13246,7 @@ class DropDownTreeComponent {
|
|
|
13320
13246
|
return this._rounded;
|
|
13321
13247
|
}
|
|
13322
13248
|
/**
|
|
13323
|
-
* Sets the fillMode of the component.
|
|
13324
|
-
*
|
|
13325
|
-
* The possible values are:
|
|
13326
|
-
* * `flat`
|
|
13327
|
-
* * `solid`
|
|
13328
|
-
* * `outline`
|
|
13329
|
-
*
|
|
13330
|
-
* @default undefined
|
|
13249
|
+
* Sets the fillMode of the component. The default value is set by the Kendo theme.
|
|
13331
13250
|
*/
|
|
13332
13251
|
set fillMode(fillMode) {
|
|
13333
13252
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('picker', this.fillMode));
|
|
@@ -15611,9 +15530,7 @@ class MultiSelectTreeComponent {
|
|
|
15611
15530
|
return this.disabled ? -1 : this._tabindex;
|
|
15612
15531
|
}
|
|
15613
15532
|
/**
|
|
15614
|
-
* Sets the visual size of the component.
|
|
15615
|
-
*
|
|
15616
|
-
* @default undefined
|
|
15533
|
+
* Sets the visual size of the component. The default value is set by the Kendo theme.
|
|
15617
15534
|
*/
|
|
15618
15535
|
set size(size) {
|
|
15619
15536
|
this.renderer.removeClass(this.wrapper.nativeElement, getSizeClass('input', this.size));
|
|
@@ -15626,9 +15543,7 @@ class MultiSelectTreeComponent {
|
|
|
15626
15543
|
return this._size;
|
|
15627
15544
|
}
|
|
15628
15545
|
/**
|
|
15629
|
-
* Sets the border radius style of the component.
|
|
15630
|
-
*
|
|
15631
|
-
* @default 'medium'
|
|
15546
|
+
* Sets the border radius style of the component. The default value is set by the Kendo theme.
|
|
15632
15547
|
*/
|
|
15633
15548
|
set rounded(rounded) {
|
|
15634
15549
|
this.renderer.removeClass(this.wrapper.nativeElement, getRoundedClass(this.rounded));
|
|
@@ -15641,9 +15556,7 @@ class MultiSelectTreeComponent {
|
|
|
15641
15556
|
return this._rounded;
|
|
15642
15557
|
}
|
|
15643
15558
|
/**
|
|
15644
|
-
* Sets the fill style for the component background and borders.
|
|
15645
|
-
*
|
|
15646
|
-
* @default 'solid'
|
|
15559
|
+
* Sets the fill style for the component background and borders. The default value is set by the Kendo theme.
|
|
15647
15560
|
*/
|
|
15648
15561
|
set fillMode(fillMode) {
|
|
15649
15562
|
this.renderer.removeClass(this.wrapper.nativeElement, getFillModeClass('input', this.fillMode));
|
|
@@ -16990,22 +16903,22 @@ class MultiSelectTreeComponent {
|
|
|
16990
16903
|
<ng-container kendoMultiSelectTreeLocalizedMessages
|
|
16991
16904
|
i18n-noDataText="kendo.multiselecttree.noDataText|The text displayed in the popup when there are no items"
|
|
16992
16905
|
noDataText="NO DATA FOUND"
|
|
16993
|
-
|
|
16906
|
+
|
|
16994
16907
|
i18n-clearTitle="kendo.multiselecttree.clearTitle|The title of the clear button"
|
|
16995
16908
|
clearTitle="clear"
|
|
16996
|
-
|
|
16909
|
+
|
|
16997
16910
|
i18n-checkAllText="kendo.multiselecttree.checkAllText|The text displayed for the check-all checkbox"
|
|
16998
16911
|
checkAllText="Check all"
|
|
16999
|
-
|
|
16912
|
+
|
|
17000
16913
|
i18n-filterInputLabel="kendo.multiselecttree.filterInputLabel|The text set as aria-label on the filter input"
|
|
17001
16914
|
filterInputLabel="Filter"
|
|
17002
|
-
|
|
16915
|
+
|
|
17003
16916
|
i18n-popupLabel="kendo.multiselecttree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
17004
16917
|
popupLabel="Options list"
|
|
17005
|
-
|
|
16918
|
+
|
|
17006
16919
|
i18n-adaptiveCloseButtonTitle="kendo.multiselecttree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
17007
16920
|
adaptiveCloseButtonTitle="Close"
|
|
17008
|
-
|
|
16921
|
+
|
|
17009
16922
|
i18n-filterInputPlaceholder="kendo.multiselecttree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
17010
16923
|
filterInputPlaceholder="Filter"
|
|
17011
16924
|
>
|
|
@@ -17064,7 +16977,7 @@ class MultiSelectTreeComponent {
|
|
|
17064
16977
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
17065
16978
|
</ng-template>
|
|
17066
16979
|
<ng-container #container></ng-container>
|
|
17067
|
-
|
|
16980
|
+
|
|
17068
16981
|
<kendo-adaptive-renderer
|
|
17069
16982
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
17070
16983
|
[title]="adaptiveTitle"
|
|
@@ -17076,7 +16989,7 @@ class MultiSelectTreeComponent {
|
|
|
17076
16989
|
[placeholder]="placeholder"
|
|
17077
16990
|
[filterable]="filterable">
|
|
17078
16991
|
</kendo-adaptive-renderer>
|
|
17079
|
-
|
|
16992
|
+
|
|
17080
16993
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
17081
16994
|
@if (filterable && !isActionSheetExpanded) {
|
|
17082
16995
|
<div
|
|
@@ -17213,7 +17126,7 @@ class MultiSelectTreeComponent {
|
|
|
17213
17126
|
</div>
|
|
17214
17127
|
}
|
|
17215
17128
|
</ng-template>
|
|
17216
|
-
|
|
17129
|
+
|
|
17217
17130
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
17218
17131
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
17219
17132
|
}
|
|
@@ -17257,22 +17170,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17257
17170
|
<ng-container kendoMultiSelectTreeLocalizedMessages
|
|
17258
17171
|
i18n-noDataText="kendo.multiselecttree.noDataText|The text displayed in the popup when there are no items"
|
|
17259
17172
|
noDataText="NO DATA FOUND"
|
|
17260
|
-
|
|
17173
|
+
|
|
17261
17174
|
i18n-clearTitle="kendo.multiselecttree.clearTitle|The title of the clear button"
|
|
17262
17175
|
clearTitle="clear"
|
|
17263
|
-
|
|
17176
|
+
|
|
17264
17177
|
i18n-checkAllText="kendo.multiselecttree.checkAllText|The text displayed for the check-all checkbox"
|
|
17265
17178
|
checkAllText="Check all"
|
|
17266
|
-
|
|
17179
|
+
|
|
17267
17180
|
i18n-filterInputLabel="kendo.multiselecttree.filterInputLabel|The text set as aria-label on the filter input"
|
|
17268
17181
|
filterInputLabel="Filter"
|
|
17269
|
-
|
|
17182
|
+
|
|
17270
17183
|
i18n-popupLabel="kendo.multiselecttree.popupLabel|The label of the popup element that contains the list of options when its role is 'region'"
|
|
17271
17184
|
popupLabel="Options list"
|
|
17272
|
-
|
|
17185
|
+
|
|
17273
17186
|
i18n-adaptiveCloseButtonTitle="kendo.multiselecttree.adaptiveCloseButtonTitle|The title of the Close button of the ActionSheet that is rendered instead of the Popup when using small screen devices in adaptive mode"
|
|
17274
17187
|
adaptiveCloseButtonTitle="Close"
|
|
17275
|
-
|
|
17188
|
+
|
|
17276
17189
|
i18n-filterInputPlaceholder="kendo.multiselecttree.filterInputPlaceholder|The text for the input's placeholder when filtering is enabled"
|
|
17277
17190
|
filterInputPlaceholder="Filter"
|
|
17278
17191
|
>
|
|
@@ -17331,7 +17244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17331
17244
|
<ng-container *ngTemplateOutlet="sharedPopupActionSheetTemplate"></ng-container>
|
|
17332
17245
|
</ng-template>
|
|
17333
17246
|
<ng-container #container></ng-container>
|
|
17334
|
-
|
|
17247
|
+
|
|
17335
17248
|
<kendo-adaptive-renderer
|
|
17336
17249
|
[sharedPopupActionSheetTemplate]="sharedPopupActionSheetTemplate"
|
|
17337
17250
|
[title]="adaptiveTitle"
|
|
@@ -17343,7 +17256,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17343
17256
|
[placeholder]="placeholder"
|
|
17344
17257
|
[filterable]="filterable">
|
|
17345
17258
|
</kendo-adaptive-renderer>
|
|
17346
|
-
|
|
17259
|
+
|
|
17347
17260
|
<ng-template #sharedPopupActionSheetTemplate>
|
|
17348
17261
|
@if (filterable && !isActionSheetExpanded) {
|
|
17349
17262
|
<div
|
|
@@ -17480,7 +17393,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17480
17393
|
</div>
|
|
17481
17394
|
}
|
|
17482
17395
|
</ng-template>
|
|
17483
|
-
|
|
17396
|
+
|
|
17484
17397
|
@if (isOpen || isAdaptiveModeEnabled) {
|
|
17485
17398
|
<kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
|
|
17486
17399
|
}
|
|
@@ -225,23 +225,17 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
225
225
|
set tabIndex(tabIndex: number);
|
|
226
226
|
get tabIndex(): number;
|
|
227
227
|
/**
|
|
228
|
-
* Sets the size of the component.
|
|
229
|
-
*
|
|
230
|
-
* @default undefined
|
|
228
|
+
* Sets the size of the component. The default value is set by the Kendo theme.
|
|
231
229
|
*/
|
|
232
230
|
set size(size: DropDownSize);
|
|
233
231
|
get size(): DropDownSize;
|
|
234
232
|
/**
|
|
235
|
-
* Sets the border radius of the component.
|
|
236
|
-
*
|
|
237
|
-
* @default undefined
|
|
233
|
+
* Sets the border radius of the component. The default value is set by the Kendo theme.
|
|
238
234
|
*/
|
|
239
235
|
set rounded(rounded: DropDownRounded);
|
|
240
236
|
get rounded(): DropDownRounded;
|
|
241
237
|
/**
|
|
242
|
-
* Sets the fill mode of the component.
|
|
243
|
-
*
|
|
244
|
-
* @default undefined
|
|
238
|
+
* Sets the fill mode of the component. The default value is set by the Kendo theme.
|
|
245
239
|
*/
|
|
246
240
|
set fillMode(fillMode: DropDownFillMode);
|
|
247
241
|
get fillMode(): DropDownFillMode;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.0-develop.
|
|
10
|
+
"publishDate": 1770380128,
|
|
11
|
+
"version": "23.0.0-develop.7",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "23.0.0-develop.
|
|
3
|
+
"version": "23.0.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",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"package": {
|
|
101
101
|
"productName": "Kendo UI for Angular",
|
|
102
102
|
"productCode": "KENDOUIANGULAR",
|
|
103
|
-
"publishDate":
|
|
103
|
+
"publishDate": 1770380128,
|
|
104
104
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
105
105
|
}
|
|
106
106
|
},
|
|
@@ -111,18 +111,18 @@
|
|
|
111
111
|
"@angular/forms": "19 - 21",
|
|
112
112
|
"@angular/platform-browser": "19 - 21",
|
|
113
113
|
"@progress/kendo-licensing": "^1.10.0",
|
|
114
|
-
"@progress/kendo-angular-common": "23.0.0-develop.
|
|
115
|
-
"@progress/kendo-angular-utils": "23.0.0-develop.
|
|
116
|
-
"@progress/kendo-angular-l10n": "23.0.0-develop.
|
|
117
|
-
"@progress/kendo-angular-navigation": "23.0.0-develop.
|
|
118
|
-
"@progress/kendo-angular-popup": "23.0.0-develop.
|
|
119
|
-
"@progress/kendo-angular-icons": "23.0.0-develop.
|
|
120
|
-
"@progress/kendo-angular-treeview": "23.0.0-develop.
|
|
114
|
+
"@progress/kendo-angular-common": "23.0.0-develop.7",
|
|
115
|
+
"@progress/kendo-angular-utils": "23.0.0-develop.7",
|
|
116
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.7",
|
|
117
|
+
"@progress/kendo-angular-navigation": "23.0.0-develop.7",
|
|
118
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.7",
|
|
119
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.7",
|
|
120
|
+
"@progress/kendo-angular-treeview": "23.0.0-develop.7",
|
|
121
121
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
122
122
|
},
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"tslib": "^2.3.1",
|
|
125
|
-
"@progress/kendo-angular-schematics": "23.0.0-develop.
|
|
125
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.7",
|
|
126
126
|
"@progress/kendo-common": "^1.0.1"
|
|
127
127
|
},
|
|
128
128
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '23.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-inputs': '23.0.0-develop.7',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '23.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-intl': '23.0.0-develop.7',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|