@syncfusion/ej2-angular-dropdowns 25.2.5-ngcc → 25.2.6-ngcc

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/CHANGELOG.md CHANGED
@@ -2,8 +2,19 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### MultiSelect
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I577257` - Fixed issue with incorrect binding of value property to MultiSelect.
10
+
11
+ ## 25.2.5 (2024-05-21)
12
+
5
13
  ### DropDownTree
6
14
 
15
+ #### Bug Fixes
16
+
17
+ - `#I589141` - The Dropdown Tree component now includes tab focus support for the "Select All" checkbox element. With this enhancement, pressing the Tab key will move the focus to the "Select All" checkbox, and pressing Shift+Tab will move the focus back to the "Select All" checkbox during backward navigation.
7
18
  - `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
8
19
 
9
20
  ### MultiSelect
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-dropdowns.umd.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -40,10 +40,21 @@ var __metadata = (this && this.__metadata) || function (k, v) {
40
40
  var inputs = ['actionFailureTemplate', 'allowFiltering', 'allowObjectBinding', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
41
41
  var outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
42
42
  var twoWays = ['value'];
43
-
44
- exports.DropDownListComponent = DropDownListComponent_1 = (function (_super) {
43
+ /**
44
+ * The DropDownList component contains a list of predefined values, from which the user can choose a single value.
45
+ * ```html
46
+ * <ejs-dropdownlist></ejs-dropdownlist>
47
+ * ```
48
+ */
49
+ exports.DropDownListComponent = DropDownListComponent_1 = /** @class */ (function (_super) {
45
50
  __extends(DropDownListComponent, _super);
46
-
51
+ /**
52
+ * @param {?} ngEle
53
+ * @param {?} srenderer
54
+ * @param {?} viewContainerRef
55
+ * @param {?} injector
56
+ * @param {?} cdr
57
+ */
47
58
  function DropDownListComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
48
59
  var _this = _super.call(this) || this;
49
60
  _this.ngEle = ngEle;
@@ -68,31 +79,51 @@ exports.DropDownListComponent = DropDownListComponent_1 = (function (_super) {
68
79
  _this.formCompContext = new ej2AngularBase.ComponentBase();
69
80
  return _this;
70
81
  }
71
-
82
+ /**
83
+ * @param {?} registerFunction
84
+ * @return {?}
85
+ */
72
86
  DropDownListComponent.prototype.registerOnChange = function (registerFunction) {
73
87
  };
74
-
88
+ /**
89
+ * @param {?} registerFunction
90
+ * @return {?}
91
+ */
75
92
  DropDownListComponent.prototype.registerOnTouched = function (registerFunction) {
76
93
  };
77
-
94
+ /**
95
+ * @param {?} value
96
+ * @return {?}
97
+ */
78
98
  DropDownListComponent.prototype.writeValue = function (value) {
79
99
  };
80
-
100
+ /**
101
+ * @param {?} disabled
102
+ * @return {?}
103
+ */
81
104
  DropDownListComponent.prototype.setDisabledState = function (disabled) {
82
105
  };
83
-
106
+ /**
107
+ * @return {?}
108
+ */
84
109
  DropDownListComponent.prototype.ngOnInit = function () {
85
110
  this.formCompContext.ngOnInit(this);
86
111
  };
87
-
112
+ /**
113
+ * @return {?}
114
+ */
88
115
  DropDownListComponent.prototype.ngAfterViewInit = function () {
89
116
  this.formContext.ngAfterViewInit(this);
90
117
  };
91
-
118
+ /**
119
+ * @return {?}
120
+ */
92
121
  DropDownListComponent.prototype.ngOnDestroy = function () {
93
122
  this.formCompContext.ngOnDestroy(this);
94
123
  };
95
-
124
+ /**
125
+ * @return {?}
126
+ */
96
127
  DropDownListComponent.prototype.ngAfterContentChecked = function () {
97
128
  this.formCompContext.ngAfterContentChecked(this);
98
129
  };
@@ -115,7 +146,9 @@ exports.DropDownListComponent.decorators = [
115
146
  queries: {}
116
147
  },] },
117
148
  ];
118
-
149
+ /**
150
+ * @nocollapse
151
+ */
119
152
  exports.DropDownListComponent.ctorParameters = function () { return [
120
153
  { type: core.ElementRef, },
121
154
  { type: core.Renderer2, },
@@ -169,8 +202,10 @@ exports.DropDownListComponent = DropDownListComponent_1 = __decorate([
169
202
  core.ChangeDetectorRef])
170
203
  ], exports.DropDownListComponent);
171
204
  var DropDownListComponent_1;
172
-
173
- var DropDownListModule = (function () {
205
+ /**
206
+ * NgModule definition for the DropDownList component.
207
+ */
208
+ var DropDownListModule = /** @class */ (function () {
174
209
  function DropDownListModule() {
175
210
  }
176
211
  return DropDownListModule;
@@ -186,11 +221,15 @@ DropDownListModule.decorators = [
186
221
  ]
187
222
  },] },
188
223
  ];
189
-
224
+ /**
225
+ * @nocollapse
226
+ */
190
227
  DropDownListModule.ctorParameters = function () { return []; };
191
228
  var VirtualScrollService = { provide: 'DropDownsVirtualScroll', useValue: ej2Dropdowns.VirtualScroll };
192
-
193
- var DropDownListAllModule = (function () {
229
+ /**
230
+ * NgModule definition for the DropDownList component with providers.
231
+ */
232
+ var DropDownListAllModule = /** @class */ (function () {
194
233
  function DropDownListAllModule() {
195
234
  }
196
235
  return DropDownListAllModule;
@@ -206,7 +245,9 @@ DropDownListAllModule.decorators = [
206
245
  ]
207
246
  },] },
208
247
  ];
209
-
248
+ /**
249
+ * @nocollapse
250
+ */
210
251
  DropDownListAllModule.ctorParameters = function () { return []; };
211
252
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
212
253
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -225,10 +266,21 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
225
266
  var inputs$1 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'allowObjectBinding', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'sortOrder', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
226
267
  var outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
227
268
  var twoWays$1 = ['value'];
228
-
229
- exports.ComboBoxComponent = ComboBoxComponent_1 = (function (_super) {
269
+ /**
270
+ * The ComboBox component allows the user to type a value or choose an option from the list of predefined options.
271
+ * ```html
272
+ * <ejs-combobox></ejs-combobox>
273
+ * ```
274
+ */
275
+ exports.ComboBoxComponent = ComboBoxComponent_1 = /** @class */ (function (_super) {
230
276
  __extends(ComboBoxComponent, _super);
231
-
277
+ /**
278
+ * @param {?} ngEle
279
+ * @param {?} srenderer
280
+ * @param {?} viewContainerRef
281
+ * @param {?} injector
282
+ * @param {?} cdr
283
+ */
232
284
  function ComboBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
233
285
  var _this = _super.call(this) || this;
234
286
  _this.ngEle = ngEle;
@@ -253,31 +305,51 @@ exports.ComboBoxComponent = ComboBoxComponent_1 = (function (_super) {
253
305
  _this.formCompContext = new ej2AngularBase.ComponentBase();
254
306
  return _this;
255
307
  }
256
-
308
+ /**
309
+ * @param {?} registerFunction
310
+ * @return {?}
311
+ */
257
312
  ComboBoxComponent.prototype.registerOnChange = function (registerFunction) {
258
313
  };
259
-
314
+ /**
315
+ * @param {?} registerFunction
316
+ * @return {?}
317
+ */
260
318
  ComboBoxComponent.prototype.registerOnTouched = function (registerFunction) {
261
319
  };
262
-
320
+ /**
321
+ * @param {?} value
322
+ * @return {?}
323
+ */
263
324
  ComboBoxComponent.prototype.writeValue = function (value) {
264
325
  };
265
-
326
+ /**
327
+ * @param {?} disabled
328
+ * @return {?}
329
+ */
266
330
  ComboBoxComponent.prototype.setDisabledState = function (disabled) {
267
331
  };
268
-
332
+ /**
333
+ * @return {?}
334
+ */
269
335
  ComboBoxComponent.prototype.ngOnInit = function () {
270
336
  this.formCompContext.ngOnInit(this);
271
337
  };
272
-
338
+ /**
339
+ * @return {?}
340
+ */
273
341
  ComboBoxComponent.prototype.ngAfterViewInit = function () {
274
342
  this.formContext.ngAfterViewInit(this);
275
343
  };
276
-
344
+ /**
345
+ * @return {?}
346
+ */
277
347
  ComboBoxComponent.prototype.ngOnDestroy = function () {
278
348
  this.formCompContext.ngOnDestroy(this);
279
349
  };
280
-
350
+ /**
351
+ * @return {?}
352
+ */
281
353
  ComboBoxComponent.prototype.ngAfterContentChecked = function () {
282
354
  this.formCompContext.ngAfterContentChecked(this);
283
355
  };
@@ -300,7 +372,9 @@ exports.ComboBoxComponent.decorators = [
300
372
  queries: {}
301
373
  },] },
302
374
  ];
303
-
375
+ /**
376
+ * @nocollapse
377
+ */
304
378
  exports.ComboBoxComponent.ctorParameters = function () { return [
305
379
  { type: core.ElementRef, },
306
380
  { type: core.Renderer2, },
@@ -349,8 +423,10 @@ exports.ComboBoxComponent = ComboBoxComponent_1 = __decorate$1([
349
423
  core.ChangeDetectorRef])
350
424
  ], exports.ComboBoxComponent);
351
425
  var ComboBoxComponent_1;
352
-
353
- var ComboBoxModule = (function () {
426
+ /**
427
+ * NgModule definition for the ComboBox component.
428
+ */
429
+ var ComboBoxModule = /** @class */ (function () {
354
430
  function ComboBoxModule() {
355
431
  }
356
432
  return ComboBoxModule;
@@ -366,10 +442,14 @@ ComboBoxModule.decorators = [
366
442
  ]
367
443
  },] },
368
444
  ];
369
-
445
+ /**
446
+ * @nocollapse
447
+ */
370
448
  ComboBoxModule.ctorParameters = function () { return []; };
371
-
372
- var ComboBoxAllModule = (function () {
449
+ /**
450
+ * NgModule definition for the ComboBox component with providers.
451
+ */
452
+ var ComboBoxAllModule = /** @class */ (function () {
373
453
  function ComboBoxAllModule() {
374
454
  }
375
455
  return ComboBoxAllModule;
@@ -383,7 +463,9 @@ ComboBoxAllModule.decorators = [
383
463
  providers: []
384
464
  },] },
385
465
  ];
386
-
466
+ /**
467
+ * @nocollapse
468
+ */
387
469
  ComboBoxAllModule.ctorParameters = function () { return []; };
388
470
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
389
471
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -402,10 +484,21 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
402
484
  var inputs$2 = ['actionFailureTemplate', 'allowCustom', 'allowFiltering', 'allowObjectBinding', 'autofill', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'highlight', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'index', 'itemTemplate', 'locale', 'minLength', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'showClearButton', 'showPopupButton', 'sortOrder', 'suggestionCount', 'text', 'value', 'valueTemplate', 'width', 'zIndex'];
403
485
  var outputs$2 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
404
486
  var twoWays$2 = ['value'];
405
-
406
- exports.AutoCompleteComponent = AutoCompleteComponent_1 = (function (_super) {
487
+ /**
488
+ * The AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one.
489
+ * ```html
490
+ * <ejs-autocomplete></ejs-autocomplete>
491
+ * ```
492
+ */
493
+ exports.AutoCompleteComponent = AutoCompleteComponent_1 = /** @class */ (function (_super) {
407
494
  __extends(AutoCompleteComponent, _super);
408
-
495
+ /**
496
+ * @param {?} ngEle
497
+ * @param {?} srenderer
498
+ * @param {?} viewContainerRef
499
+ * @param {?} injector
500
+ * @param {?} cdr
501
+ */
409
502
  function AutoCompleteComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
410
503
  var _this = _super.call(this) || this;
411
504
  _this.ngEle = ngEle;
@@ -430,31 +523,51 @@ exports.AutoCompleteComponent = AutoCompleteComponent_1 = (function (_super) {
430
523
  _this.formCompContext = new ej2AngularBase.ComponentBase();
431
524
  return _this;
432
525
  }
433
-
526
+ /**
527
+ * @param {?} registerFunction
528
+ * @return {?}
529
+ */
434
530
  AutoCompleteComponent.prototype.registerOnChange = function (registerFunction) {
435
531
  };
436
-
532
+ /**
533
+ * @param {?} registerFunction
534
+ * @return {?}
535
+ */
437
536
  AutoCompleteComponent.prototype.registerOnTouched = function (registerFunction) {
438
537
  };
439
-
538
+ /**
539
+ * @param {?} value
540
+ * @return {?}
541
+ */
440
542
  AutoCompleteComponent.prototype.writeValue = function (value) {
441
543
  };
442
-
544
+ /**
545
+ * @param {?} disabled
546
+ * @return {?}
547
+ */
443
548
  AutoCompleteComponent.prototype.setDisabledState = function (disabled) {
444
549
  };
445
-
550
+ /**
551
+ * @return {?}
552
+ */
446
553
  AutoCompleteComponent.prototype.ngOnInit = function () {
447
554
  this.formCompContext.ngOnInit(this);
448
555
  };
449
-
556
+ /**
557
+ * @return {?}
558
+ */
450
559
  AutoCompleteComponent.prototype.ngAfterViewInit = function () {
451
560
  this.formContext.ngAfterViewInit(this);
452
561
  };
453
-
562
+ /**
563
+ * @return {?}
564
+ */
454
565
  AutoCompleteComponent.prototype.ngOnDestroy = function () {
455
566
  this.formCompContext.ngOnDestroy(this);
456
567
  };
457
-
568
+ /**
569
+ * @return {?}
570
+ */
458
571
  AutoCompleteComponent.prototype.ngAfterContentChecked = function () {
459
572
  this.formCompContext.ngAfterContentChecked(this);
460
573
  };
@@ -477,7 +590,9 @@ exports.AutoCompleteComponent.decorators = [
477
590
  queries: {}
478
591
  },] },
479
592
  ];
480
-
593
+ /**
594
+ * @nocollapse
595
+ */
481
596
  exports.AutoCompleteComponent.ctorParameters = function () { return [
482
597
  { type: core.ElementRef, },
483
598
  { type: core.Renderer2, },
@@ -526,8 +641,10 @@ exports.AutoCompleteComponent = AutoCompleteComponent_1 = __decorate$2([
526
641
  core.ChangeDetectorRef])
527
642
  ], exports.AutoCompleteComponent);
528
643
  var AutoCompleteComponent_1;
529
-
530
- var AutoCompleteModule = (function () {
644
+ /**
645
+ * NgModule definition for the AutoComplete component.
646
+ */
647
+ var AutoCompleteModule = /** @class */ (function () {
531
648
  function AutoCompleteModule() {
532
649
  }
533
650
  return AutoCompleteModule;
@@ -543,10 +660,14 @@ AutoCompleteModule.decorators = [
543
660
  ]
544
661
  },] },
545
662
  ];
546
-
663
+ /**
664
+ * @nocollapse
665
+ */
547
666
  AutoCompleteModule.ctorParameters = function () { return []; };
548
-
549
- var AutoCompleteAllModule = (function () {
667
+ /**
668
+ * NgModule definition for the AutoComplete component with providers.
669
+ */
670
+ var AutoCompleteAllModule = /** @class */ (function () {
550
671
  function AutoCompleteAllModule() {
551
672
  }
552
673
  return AutoCompleteAllModule;
@@ -560,7 +681,9 @@ AutoCompleteAllModule.decorators = [
560
681
  providers: []
561
682
  },] },
562
683
  ];
563
-
684
+ /**
685
+ * @nocollapse
686
+ */
564
687
  AutoCompleteAllModule.ctorParameters = function () { return []; };
565
688
  var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
566
689
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -579,10 +702,21 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
579
702
  var inputs$3 = ['actionFailureTemplate', 'addTagOnBlur', 'allowCustomValue', 'allowFiltering', 'allowObjectBinding', 'changeOnBlur', 'closePopupOnSelect', 'cssClass', 'dataSource', 'delimiterChar', 'enableGroupCheckBox', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableSelectionOrder', 'enableVirtualization', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'groupTemplate', 'headerTemplate', 'hideSelectedItem', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'maximumSelectionLength', 'mode', 'noRecordsTemplate', 'openOnClick', 'placeholder', 'popupHeight', 'popupWidth', 'query', 'readonly', 'selectAllText', 'showClearButton', 'showDropDownIcon', 'showSelectAll', 'sortOrder', 'text', 'unSelectAllText', 'value', 'valueTemplate', 'width', 'zIndex'];
580
703
  var outputs$3 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'beforeSelectAll', 'blur', 'change', 'chipSelection', 'close', 'created', 'customValueSelection', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'removed', 'removing', 'select', 'selectedAll', 'tagging', 'valueChange'];
581
704
  var twoWays$3 = ['value'];
582
-
583
- exports.MultiSelectComponent = MultiSelectComponent_1 = (function (_super) {
705
+ /**
706
+ * The MultiSelect allows the user to pick a values from the predefined list of values.
707
+ * ```html
708
+ * <ejs-multiselect></ejs-multiselect>
709
+ * ```
710
+ */
711
+ exports.MultiSelectComponent = MultiSelectComponent_1 = /** @class */ (function (_super) {
584
712
  __extends(MultiSelectComponent, _super);
585
-
713
+ /**
714
+ * @param {?} ngEle
715
+ * @param {?} srenderer
716
+ * @param {?} viewContainerRef
717
+ * @param {?} injector
718
+ * @param {?} cdr
719
+ */
586
720
  function MultiSelectComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
587
721
  var _this = _super.call(this) || this;
588
722
  _this.ngEle = ngEle;
@@ -614,31 +748,51 @@ exports.MultiSelectComponent = MultiSelectComponent_1 = (function (_super) {
614
748
  _this.formCompContext = new ej2AngularBase.ComponentBase();
615
749
  return _this;
616
750
  }
617
-
751
+ /**
752
+ * @param {?} registerFunction
753
+ * @return {?}
754
+ */
618
755
  MultiSelectComponent.prototype.registerOnChange = function (registerFunction) {
619
756
  };
620
-
757
+ /**
758
+ * @param {?} registerFunction
759
+ * @return {?}
760
+ */
621
761
  MultiSelectComponent.prototype.registerOnTouched = function (registerFunction) {
622
762
  };
623
-
763
+ /**
764
+ * @param {?} value
765
+ * @return {?}
766
+ */
624
767
  MultiSelectComponent.prototype.writeValue = function (value) {
625
768
  };
626
-
769
+ /**
770
+ * @param {?} disabled
771
+ * @return {?}
772
+ */
627
773
  MultiSelectComponent.prototype.setDisabledState = function (disabled) {
628
774
  };
629
-
775
+ /**
776
+ * @return {?}
777
+ */
630
778
  MultiSelectComponent.prototype.ngOnInit = function () {
631
779
  this.formCompContext.ngOnInit(this);
632
780
  };
633
-
781
+ /**
782
+ * @return {?}
783
+ */
634
784
  MultiSelectComponent.prototype.ngAfterViewInit = function () {
635
785
  this.formContext.ngAfterViewInit(this);
636
786
  };
637
-
787
+ /**
788
+ * @return {?}
789
+ */
638
790
  MultiSelectComponent.prototype.ngOnDestroy = function () {
639
791
  this.formCompContext.ngOnDestroy(this);
640
792
  };
641
-
793
+ /**
794
+ * @return {?}
795
+ */
642
796
  MultiSelectComponent.prototype.ngAfterContentChecked = function () {
643
797
  this.formCompContext.ngAfterContentChecked(this);
644
798
  };
@@ -661,7 +815,9 @@ exports.MultiSelectComponent.decorators = [
661
815
  queries: {}
662
816
  },] },
663
817
  ];
664
-
818
+ /**
819
+ * @nocollapse
820
+ */
665
821
  exports.MultiSelectComponent.ctorParameters = function () { return [
666
822
  { type: core.ElementRef, },
667
823
  { type: core.Renderer2, },
@@ -715,8 +871,10 @@ exports.MultiSelectComponent = MultiSelectComponent_1 = __decorate$3([
715
871
  core.ChangeDetectorRef])
716
872
  ], exports.MultiSelectComponent);
717
873
  var MultiSelectComponent_1;
718
-
719
- var MultiSelectModule = (function () {
874
+ /**
875
+ * NgModule definition for the MultiSelect component.
876
+ */
877
+ var MultiSelectModule = /** @class */ (function () {
720
878
  function MultiSelectModule() {
721
879
  }
722
880
  return MultiSelectModule;
@@ -732,11 +890,15 @@ MultiSelectModule.decorators = [
732
890
  ]
733
891
  },] },
734
892
  ];
735
-
893
+ /**
894
+ * @nocollapse
895
+ */
736
896
  MultiSelectModule.ctorParameters = function () { return []; };
737
897
  var CheckBoxSelectionService = { provide: 'DropDownsCheckBoxSelection', useValue: ej2Dropdowns.CheckBoxSelection };
738
-
739
- var MultiSelectAllModule = (function () {
898
+ /**
899
+ * NgModule definition for the MultiSelect component with providers.
900
+ */
901
+ var MultiSelectAllModule = /** @class */ (function () {
740
902
  function MultiSelectAllModule() {
741
903
  }
742
904
  return MultiSelectAllModule;
@@ -752,7 +914,9 @@ MultiSelectAllModule.decorators = [
752
914
  ]
753
915
  },] },
754
916
  ];
755
-
917
+ /**
918
+ * @nocollapse
919
+ */
756
920
  MultiSelectAllModule.ctorParameters = function () { return []; };
757
921
  var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
758
922
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -771,10 +935,21 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
771
935
  var inputs$4 = ['actionFailureTemplate', 'allowDragAndDrop', 'allowFiltering', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'groupTemplate', 'height', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'maximumSelectionLength', 'noRecordsTemplate', 'query', 'scope', 'selectionSettings', 'sortOrder', 'toolbarSettings', 'value', 'zIndex'];
772
936
  var outputs$4 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeDrop', 'beforeItemRender', 'change', 'created', 'dataBound', 'destroyed', 'drag', 'dragStart', 'drop', 'filtering', 'select', 'valueChange'];
773
937
  var twoWays$4 = ['value'];
774
-
775
- exports.ListBoxComponent = ListBoxComponent_1 = (function (_super) {
938
+ /**
939
+ * The ListBox allows the user to select values from the predefined list of values.
940
+ * ```html
941
+ * <ejs-listbox [dataSource]='data'></ejs-listbox>
942
+ * ```
943
+ */
944
+ exports.ListBoxComponent = ListBoxComponent_1 = /** @class */ (function (_super) {
776
945
  __extends(ListBoxComponent, _super);
777
-
946
+ /**
947
+ * @param {?} ngEle
948
+ * @param {?} srenderer
949
+ * @param {?} viewContainerRef
950
+ * @param {?} injector
951
+ * @param {?} cdr
952
+ */
778
953
  function ListBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
779
954
  var _this = _super.call(this) || this;
780
955
  _this.ngEle = ngEle;
@@ -798,31 +973,51 @@ exports.ListBoxComponent = ListBoxComponent_1 = (function (_super) {
798
973
  _this.formCompContext = new ej2AngularBase.ComponentBase();
799
974
  return _this;
800
975
  }
801
-
976
+ /**
977
+ * @param {?} registerFunction
978
+ * @return {?}
979
+ */
802
980
  ListBoxComponent.prototype.registerOnChange = function (registerFunction) {
803
981
  };
804
-
982
+ /**
983
+ * @param {?} registerFunction
984
+ * @return {?}
985
+ */
805
986
  ListBoxComponent.prototype.registerOnTouched = function (registerFunction) {
806
987
  };
807
-
988
+ /**
989
+ * @param {?} value
990
+ * @return {?}
991
+ */
808
992
  ListBoxComponent.prototype.writeValue = function (value) {
809
993
  };
810
-
994
+ /**
995
+ * @param {?} disabled
996
+ * @return {?}
997
+ */
811
998
  ListBoxComponent.prototype.setDisabledState = function (disabled) {
812
999
  };
813
-
1000
+ /**
1001
+ * @return {?}
1002
+ */
814
1003
  ListBoxComponent.prototype.ngOnInit = function () {
815
1004
  this.formCompContext.ngOnInit(this);
816
1005
  };
817
-
1006
+ /**
1007
+ * @return {?}
1008
+ */
818
1009
  ListBoxComponent.prototype.ngAfterViewInit = function () {
819
1010
  this.formContext.ngAfterViewInit(this);
820
1011
  };
821
-
1012
+ /**
1013
+ * @return {?}
1014
+ */
822
1015
  ListBoxComponent.prototype.ngOnDestroy = function () {
823
1016
  this.formCompContext.ngOnDestroy(this);
824
1017
  };
825
-
1018
+ /**
1019
+ * @return {?}
1020
+ */
826
1021
  ListBoxComponent.prototype.ngAfterContentChecked = function () {
827
1022
  this.formCompContext.ngAfterContentChecked(this);
828
1023
  };
@@ -845,7 +1040,9 @@ exports.ListBoxComponent.decorators = [
845
1040
  queries: {}
846
1041
  },] },
847
1042
  ];
848
-
1043
+ /**
1044
+ * @nocollapse
1045
+ */
849
1046
  exports.ListBoxComponent.ctorParameters = function () { return [
850
1047
  { type: core.ElementRef, },
851
1048
  { type: core.Renderer2, },
@@ -874,8 +1071,10 @@ exports.ListBoxComponent = ListBoxComponent_1 = __decorate$4([
874
1071
  core.ChangeDetectorRef])
875
1072
  ], exports.ListBoxComponent);
876
1073
  var ListBoxComponent_1;
877
-
878
- var ListBoxModule = (function () {
1074
+ /**
1075
+ * NgModule definition for the ListBox component.
1076
+ */
1077
+ var ListBoxModule = /** @class */ (function () {
879
1078
  function ListBoxModule() {
880
1079
  }
881
1080
  return ListBoxModule;
@@ -891,10 +1090,14 @@ ListBoxModule.decorators = [
891
1090
  ]
892
1091
  },] },
893
1092
  ];
894
-
1093
+ /**
1094
+ * @nocollapse
1095
+ */
895
1096
  ListBoxModule.ctorParameters = function () { return []; };
896
-
897
- var ListBoxAllModule = (function () {
1097
+ /**
1098
+ * NgModule definition for the ListBox component with providers.
1099
+ */
1100
+ var ListBoxAllModule = /** @class */ (function () {
898
1101
  function ListBoxAllModule() {
899
1102
  }
900
1103
  return ListBoxAllModule;
@@ -908,7 +1111,9 @@ ListBoxAllModule.decorators = [
908
1111
  providers: []
909
1112
  },] },
910
1113
  ];
911
-
1114
+ /**
1115
+ * @nocollapse
1116
+ */
912
1117
  ListBoxAllModule.ctorParameters = function () { return []; };
913
1118
  var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
914
1119
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -927,10 +1132,21 @@ var __metadata$5 = (this && this.__metadata) || function (k, v) {
927
1132
  var inputs$5 = ['actionFailureTemplate', 'allowFiltering', 'allowMultiSelection', 'changeOnBlur', 'cssClass', 'customTemplate', 'delimiterChar', 'destroyPopupOnHide', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'fields', 'filterBarPlaceholder', 'filterType', 'floatLabelType', 'footerTemplate', 'headerTemplate', 'htmlAttributes', 'ignoreAccent', 'ignoreCase', 'itemTemplate', 'locale', 'mode', 'noRecordsTemplate', 'placeholder', 'popupHeight', 'popupWidth', 'readonly', 'selectAllText', 'showCheckBox', 'showClearButton', 'showDropDownIcon', 'showSelectAll', 'sortOrder', 'text', 'treeSettings', 'unSelectAllText', 'value', 'width', 'wrapText', 'zIndex'];
928
1133
  var outputs$5 = ['actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'keyPress', 'open', 'select', 'valueChange'];
929
1134
  var twoWays$5 = ['value'];
930
-
931
- exports.DropDownTreeComponent = DropDownTreeComponent_1 = (function (_super) {
1135
+ /**
1136
+ * The DropDownTree component contains a list of predefined values from which you can choose a single or multiple values.
1137
+ * ```html
1138
+ * <ejs-dropdowntree></ejs-dropdowntree>
1139
+ * ```
1140
+ */
1141
+ exports.DropDownTreeComponent = DropDownTreeComponent_1 = /** @class */ (function (_super) {
932
1142
  __extends(DropDownTreeComponent, _super);
933
-
1143
+ /**
1144
+ * @param {?} ngEle
1145
+ * @param {?} srenderer
1146
+ * @param {?} viewContainerRef
1147
+ * @param {?} injector
1148
+ * @param {?} cdr
1149
+ */
934
1150
  function DropDownTreeComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
935
1151
  var _this = _super.call(this) || this;
936
1152
  _this.ngEle = ngEle;
@@ -948,31 +1164,51 @@ exports.DropDownTreeComponent = DropDownTreeComponent_1 = (function (_super) {
948
1164
  _this.formCompContext = new ej2AngularBase.ComponentBase();
949
1165
  return _this;
950
1166
  }
951
-
1167
+ /**
1168
+ * @param {?} registerFunction
1169
+ * @return {?}
1170
+ */
952
1171
  DropDownTreeComponent.prototype.registerOnChange = function (registerFunction) {
953
1172
  };
954
-
1173
+ /**
1174
+ * @param {?} registerFunction
1175
+ * @return {?}
1176
+ */
955
1177
  DropDownTreeComponent.prototype.registerOnTouched = function (registerFunction) {
956
1178
  };
957
-
1179
+ /**
1180
+ * @param {?} value
1181
+ * @return {?}
1182
+ */
958
1183
  DropDownTreeComponent.prototype.writeValue = function (value) {
959
1184
  };
960
-
1185
+ /**
1186
+ * @param {?} disabled
1187
+ * @return {?}
1188
+ */
961
1189
  DropDownTreeComponent.prototype.setDisabledState = function (disabled) {
962
1190
  };
963
-
1191
+ /**
1192
+ * @return {?}
1193
+ */
964
1194
  DropDownTreeComponent.prototype.ngOnInit = function () {
965
1195
  this.formCompContext.ngOnInit(this);
966
1196
  };
967
-
1197
+ /**
1198
+ * @return {?}
1199
+ */
968
1200
  DropDownTreeComponent.prototype.ngAfterViewInit = function () {
969
1201
  this.formContext.ngAfterViewInit(this);
970
1202
  };
971
-
1203
+ /**
1204
+ * @return {?}
1205
+ */
972
1206
  DropDownTreeComponent.prototype.ngOnDestroy = function () {
973
1207
  this.formCompContext.ngOnDestroy(this);
974
1208
  };
975
-
1209
+ /**
1210
+ * @return {?}
1211
+ */
976
1212
  DropDownTreeComponent.prototype.ngAfterContentChecked = function () {
977
1213
  this.formCompContext.ngAfterContentChecked(this);
978
1214
  };
@@ -995,7 +1231,9 @@ exports.DropDownTreeComponent.decorators = [
995
1231
  queries: {}
996
1232
  },] },
997
1233
  ];
998
-
1234
+ /**
1235
+ * @nocollapse
1236
+ */
999
1237
  exports.DropDownTreeComponent.ctorParameters = function () { return [
1000
1238
  { type: core.ElementRef, },
1001
1239
  { type: core.Renderer2, },
@@ -1039,8 +1277,10 @@ exports.DropDownTreeComponent = DropDownTreeComponent_1 = __decorate$5([
1039
1277
  core.ChangeDetectorRef])
1040
1278
  ], exports.DropDownTreeComponent);
1041
1279
  var DropDownTreeComponent_1;
1042
-
1043
- var DropDownTreeModule = (function () {
1280
+ /**
1281
+ * NgModule definition for the DropDownTree component.
1282
+ */
1283
+ var DropDownTreeModule = /** @class */ (function () {
1044
1284
  function DropDownTreeModule() {
1045
1285
  }
1046
1286
  return DropDownTreeModule;
@@ -1056,10 +1296,14 @@ DropDownTreeModule.decorators = [
1056
1296
  ]
1057
1297
  },] },
1058
1298
  ];
1059
-
1299
+ /**
1300
+ * @nocollapse
1301
+ */
1060
1302
  DropDownTreeModule.ctorParameters = function () { return []; };
1061
-
1062
- var DropDownTreeAllModule = (function () {
1303
+ /**
1304
+ * NgModule definition for the DropDownTree component with providers.
1305
+ */
1306
+ var DropDownTreeAllModule = /** @class */ (function () {
1063
1307
  function DropDownTreeAllModule() {
1064
1308
  }
1065
1309
  return DropDownTreeAllModule;
@@ -1073,7 +1317,9 @@ DropDownTreeAllModule.decorators = [
1073
1317
  providers: []
1074
1318
  },] },
1075
1319
  ];
1076
-
1320
+ /**
1321
+ * @nocollapse
1322
+ */
1077
1323
  DropDownTreeAllModule.ctorParameters = function () { return []; };
1078
1324
  var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
1079
1325
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -1092,10 +1338,20 @@ var __metadata$6 = (this && this.__metadata) || function (k, v) {
1092
1338
  var inputs$6 = ['allowSpaces', 'cssClass', 'dataSource', 'displayTemplate', 'fields', 'filterType', 'highlight', 'ignoreCase', 'itemTemplate', 'locale', 'mentionChar', 'minLength', 'noRecordsTemplate', 'popupHeight', 'popupWidth', 'query', 'showMentionChar', 'sortOrder', 'spinnerTemplate', 'suffixText', 'suggestionCount', 'target'];
1093
1339
  var outputs$6 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'change', 'closed', 'created', 'destroyed', 'filtering', 'opened', 'select'];
1094
1340
  var twoWays$6 = [''];
1095
-
1096
- exports.MentionComponent = (function (_super) {
1341
+ /**
1342
+ * The Mention component contains a list of predefined values, from which the user can choose a single value.
1343
+ * ```html
1344
+ * <ejs-mention></ejs-mention>
1345
+ * ```
1346
+ */
1347
+ exports.MentionComponent = /** @class */ (function (_super) {
1097
1348
  __extends(MentionComponent, _super);
1098
-
1349
+ /**
1350
+ * @param {?} ngEle
1351
+ * @param {?} srenderer
1352
+ * @param {?} viewContainerRef
1353
+ * @param {?} injector
1354
+ */
1099
1355
  function MentionComponent(ngEle, srenderer, viewContainerRef, injector) {
1100
1356
  var _this = _super.call(this) || this;
1101
1357
  _this.ngEle = ngEle;
@@ -1110,19 +1366,27 @@ exports.MentionComponent = (function (_super) {
1110
1366
  _this.containerContext = new ej2AngularBase.ComponentBase();
1111
1367
  return _this;
1112
1368
  }
1113
-
1369
+ /**
1370
+ * @return {?}
1371
+ */
1114
1372
  MentionComponent.prototype.ngOnInit = function () {
1115
1373
  this.containerContext.ngOnInit(this);
1116
1374
  };
1117
-
1375
+ /**
1376
+ * @return {?}
1377
+ */
1118
1378
  MentionComponent.prototype.ngAfterViewInit = function () {
1119
1379
  this.containerContext.ngAfterViewInit(this);
1120
1380
  };
1121
-
1381
+ /**
1382
+ * @return {?}
1383
+ */
1122
1384
  MentionComponent.prototype.ngOnDestroy = function () {
1123
1385
  this.containerContext.ngOnDestroy(this);
1124
1386
  };
1125
-
1387
+ /**
1388
+ * @return {?}
1389
+ */
1126
1390
  MentionComponent.prototype.ngAfterContentChecked = function () {
1127
1391
  this.containerContext.ngAfterContentChecked(this);
1128
1392
  };
@@ -1138,7 +1402,9 @@ exports.MentionComponent.decorators = [
1138
1402
  queries: {}
1139
1403
  },] },
1140
1404
  ];
1141
-
1405
+ /**
1406
+ * @nocollapse
1407
+ */
1142
1408
  exports.MentionComponent.ctorParameters = function () { return [
1143
1409
  { type: core.ElementRef, },
1144
1410
  { type: core.Renderer2, },
@@ -1174,8 +1440,10 @@ exports.MentionComponent = __decorate$6([
1174
1440
  core.ViewContainerRef,
1175
1441
  core.Injector])
1176
1442
  ], exports.MentionComponent);
1177
-
1178
- var MentionModule = (function () {
1443
+ /**
1444
+ * NgModule definition for the Mention component.
1445
+ */
1446
+ var MentionModule = /** @class */ (function () {
1179
1447
  function MentionModule() {
1180
1448
  }
1181
1449
  return MentionModule;
@@ -1191,10 +1459,14 @@ MentionModule.decorators = [
1191
1459
  ]
1192
1460
  },] },
1193
1461
  ];
1194
-
1462
+ /**
1463
+ * @nocollapse
1464
+ */
1195
1465
  MentionModule.ctorParameters = function () { return []; };
1196
-
1197
- var MentionAllModule = (function () {
1466
+ /**
1467
+ * NgModule definition for the Mention component with providers.
1468
+ */
1469
+ var MentionAllModule = /** @class */ (function () {
1198
1470
  function MentionAllModule() {
1199
1471
  }
1200
1472
  return MentionAllModule;
@@ -1208,7 +1480,9 @@ MentionAllModule.decorators = [
1208
1480
  providers: []
1209
1481
  },] },
1210
1482
  ];
1211
-
1483
+ /**
1484
+ * @nocollapse
1485
+ */
1212
1486
  MentionAllModule.ctorParameters = function () { return []; };
1213
1487
 
1214
1488
  exports.DropDownListModule = DropDownListModule;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-dropdowns.umd.min.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-dropdowns@*",
3
- "_id": "@syncfusion/ej2-angular-dropdowns@25.2.4",
3
+ "_id": "@syncfusion/ej2-angular-dropdowns@25.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-SQ2IGQtryhcSBq/K0661o+81tMos1pBMes1w7MCh1tfvrHgR5FJuOxuzjLDZsFXn7E0JJavAfsQtf15Lc1/3dg==",
5
+ "_integrity": "sha512-N24nJBjA2VV/zuXSlayIwu1/dLsgB2IJdimB3Oz2j/vfS7GXjM/51V3RFkOveawOxLhb6zmEfqO8E5aKI2+t3A==",
6
6
  "_location": "/@syncfusion/ej2-angular-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-25.2.4.tgz",
23
- "_shasum": "6811e1343bc8bd5fa27fa63c1c2c931a01775201",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-25.2.5.tgz",
23
+ "_shasum": "af0b7142f961e3e46981f22543ccfa70ad672565",
24
24
  "_spec": "@syncfusion/ej2-angular-dropdowns@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~25.2.4",
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
35
  "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-dropdowns": "25.2.5"
36
+ "@syncfusion/ej2-dropdowns": "25.2.6"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Essential JS 2 DropDown Components for Angular",
@@ -63,5 +63,5 @@
63
63
  "schematics": "./schematics/collection.json",
64
64
  "sideEffects": false,
65
65
  "typings": "ej2-angular-dropdowns.d.ts",
66
- "version": "25.2.5-ngcc"
66
+ "version": "25.2.6-ngcc"
67
67
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
2
- export declare const pkgVer = "^25.2.4";
2
+ export declare const pkgVer = "^25.2.5";
3
3
  export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule";
4
- export declare const themeVer = "~25.2.4";
4
+ export declare const themeVer = "~25.2.5";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-dropdowns';
4
- exports.pkgVer = '^25.2.5';
4
+ exports.pkgVer = '^25.2.6';
5
5
  exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
6
- exports.themeVer = '~25.2.5';
6
+ exports.themeVer = '~25.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-dropdowns';
2
- export const pkgVer = '^25.2.5';
2
+ export const pkgVer = '^25.2.6';
3
3
  export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
4
- export const themeVer = '~25.2.5';
4
+ export const themeVer = '~25.2.6';