@syncfusion/ej2-dropdowns 24.2.9 → 25.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/CHANGELOG.md +27 -150
  2. package/dist/ej2-dropdowns.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js +2 -2
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +2014 -514
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +2030 -513
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +2 -2
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +13 -13
  13. package/src/auto-complete/auto-complete-model.d.ts +3 -1
  14. package/src/auto-complete/auto-complete.d.ts +2 -0
  15. package/src/auto-complete/auto-complete.js +51 -6
  16. package/src/combo-box/combo-box-model.d.ts +10 -1
  17. package/src/combo-box/combo-box.d.ts +10 -2
  18. package/src/combo-box/combo-box.js +55 -23
  19. package/src/common/interface.d.ts +32 -0
  20. package/src/common/virtual-scroll.d.ts +1 -3
  21. package/src/common/virtual-scroll.js +157 -27
  22. package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
  23. package/src/drop-down-base/drop-down-base.d.ts +64 -5
  24. package/src/drop-down-base/drop-down-base.js +241 -24
  25. package/src/drop-down-list/drop-down-list-model.d.ts +10 -1
  26. package/src/drop-down-list/drop-down-list.d.ts +16 -50
  27. package/src/drop-down-list/drop-down-list.js +150 -196
  28. package/src/drop-down-tree/drop-down-tree-model.d.ts +16 -12
  29. package/src/drop-down-tree/drop-down-tree.d.ts +13 -3
  30. package/src/drop-down-tree/drop-down-tree.js +55 -49
  31. package/src/global.js +1 -1
  32. package/src/list-box/list-box.js +9 -4
  33. package/src/mention/mention.d.ts +2 -0
  34. package/src/mention/mention.js +16 -8
  35. package/src/multi-select/checkbox-selection.d.ts +2 -0
  36. package/src/multi-select/checkbox-selection.js +16 -3
  37. package/src/multi-select/float-label.d.ts +5 -5
  38. package/src/multi-select/index.d.ts +1 -0
  39. package/src/multi-select/index.js +1 -0
  40. package/src/multi-select/interface.d.ts +1 -0
  41. package/src/multi-select/multi-select-model.d.ts +17 -2
  42. package/src/multi-select/multi-select.d.ts +35 -4
  43. package/src/multi-select/multi-select.js +1282 -174
  44. package/styles/auto-complete/_bds-definition.scss +2 -0
  45. package/styles/bootstrap-dark.css +7 -1
  46. package/styles/bootstrap.css +7 -1
  47. package/styles/bootstrap4.css +2 -1
  48. package/styles/bootstrap5-dark.css +2 -1
  49. package/styles/bootstrap5.css +2 -1
  50. package/styles/combo-box/_bds-definition.scss +2 -0
  51. package/styles/drop-down-base/_bds-definition.scss +134 -0
  52. package/styles/drop-down-list/_bds-definition.scss +134 -0
  53. package/styles/drop-down-list/icons/_bds.scss +14 -0
  54. package/styles/drop-down-tree/_bds-definition.scss +61 -0
  55. package/styles/drop-down-tree/icons/_bds.scss +11 -0
  56. package/styles/fabric-dark.css +3 -1
  57. package/styles/fabric.css +3 -1
  58. package/styles/fluent-dark.css +7 -1
  59. package/styles/fluent.css +7 -1
  60. package/styles/highcontrast-light.css +3 -1
  61. package/styles/highcontrast.css +3 -1
  62. package/styles/list-box/_bds-definition.scss +136 -0
  63. package/styles/list-box/icons/_bds.scss +25 -0
  64. package/styles/material-dark.css +11 -1
  65. package/styles/material.css +11 -1
  66. package/styles/material3-dark.css +2 -1
  67. package/styles/material3.css +2 -1
  68. package/styles/mention/_bds-definition.scss +1 -0
  69. package/styles/multi-select/_bds-definition.scss +235 -0
  70. package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
  71. package/styles/multi-select/_bootstrap-definition.scss +4 -0
  72. package/styles/multi-select/_fluent-definition.scss +5 -0
  73. package/styles/multi-select/_layout.scss +8 -1
  74. package/styles/multi-select/_material-dark-definition.scss +11 -0
  75. package/styles/multi-select/_material-definition.scss +11 -0
  76. package/styles/multi-select/bootstrap-dark.css +7 -1
  77. package/styles/multi-select/bootstrap.css +7 -1
  78. package/styles/multi-select/bootstrap4.css +2 -1
  79. package/styles/multi-select/bootstrap5-dark.css +2 -1
  80. package/styles/multi-select/bootstrap5.css +2 -1
  81. package/styles/multi-select/fabric-dark.css +3 -1
  82. package/styles/multi-select/fabric.css +3 -1
  83. package/styles/multi-select/fluent-dark.css +7 -1
  84. package/styles/multi-select/fluent.css +7 -1
  85. package/styles/multi-select/highcontrast-light.css +3 -1
  86. package/styles/multi-select/highcontrast.css +3 -1
  87. package/styles/multi-select/icons/_bds.scss +26 -0
  88. package/styles/multi-select/material-dark.css +11 -1
  89. package/styles/multi-select/material.css +11 -1
  90. package/styles/multi-select/material3-dark.css +2 -1
  91. package/styles/multi-select/material3.css +2 -1
  92. package/styles/multi-select/tailwind-dark.css +2 -1
  93. package/styles/multi-select/tailwind.css +2 -1
  94. package/styles/tailwind-dark.css +2 -1
  95. package/styles/tailwind.css +2 -1
package/CHANGELOG.md CHANGED
@@ -2,163 +2,40 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### ComboBox
6
-
7
- #### Bug Fixes
8
-
9
- - `#I557826` - Fixed an issue where preselected values in ComboBox were not working properly when Virtualization is enabled.
10
-
11
- ## 24.2.8 (2024-02-27)
12
-
13
- ### Mention
14
-
15
- #### Bug Fixes
16
-
17
- - `#I539496` - Fixed an issue where the mentioned value was not being updated to the target element when using mouse interaction.
18
-
19
- ## 24.2.7 (2024-02-20)
20
-
21
- ### Mention
22
-
23
- #### Bug Fixes
24
-
25
- -`#I556815`- Fixed an issue where console error that occurred when using `iframe` along with mention.
26
-
27
5
  ### MultiSelect
28
6
 
29
7
  #### Bug Fixes
30
8
 
31
- - `#I553564` - Fixed an issue where the Change Event was triggering multiple times when unCheck all items.
32
-
33
- ## 24.2.6 (2024-02-15)
9
+ - `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
34
10
 
35
- ### ListBox
36
-
37
- - `#I548014` - Issue with "Reduce the time taken to move records in a dual listbox when using moveTo/moveFrom toolbar click" has been resolved.
38
-
39
- ### Mention
40
-
41
- #### Bug Fixes
11
+ - `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
42
12
 
43
- -`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
13
+ - `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
44
14
 
45
- - `#F186429` - Fixed an issue where the mention popup was not aligned properly when the mention target was set as `iframe`.
46
-
47
- ## 24.2.5 (2024-02-13)
48
-
49
- ### DropdownList
50
-
51
- #### Bug Fixes
52
-
53
- - `#F49655` - Fixed an issue where assigning null to a value, text and index property resulting in errors.
54
-
55
- - `#I546769` - Fixed an issue where the `isInteracted` property return false after selecting a value using focus out.
56
-
57
- ## 24.2.4 (2024-02-06)
58
-
59
- ### ListBox
60
-
61
- -`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
62
-
63
- ### DropdownList
64
-
65
- #### Bug Fixes
66
-
67
- - `#I545534` - Fixed an issue where the Popup Element was not being destroyed when rendering inside the In-place editor.
68
-
69
- ### MultiSelect
70
-
71
- #### Bug Fixes
72
-
73
- - `#I534853` - Fixed an issue where a console exception occurred when typing a custom value in the input field.
74
-
75
- ## 24.1.47 (2024-01-23)
76
-
77
- ### ListBox
78
-
79
- #### Bug Fixes
80
-
81
- - `#I514409` - Issue with "Filtering focus not removed in listbox while clearing and click anywhere" has been resolved.
15
+ ## 25.1.35 (2024-03-15)
82
16
 
83
17
  ### ComboBox
84
18
 
85
19
  #### Bug Fixes
86
20
 
87
- - `#I531844` - Fixed issue where custom value could not be added to combobox when dataSource is empty.
88
-
89
- - `#F49952` - Fixed an issue where the combobox change event was not being triggered when clear the value using backspace.
90
-
91
- ## 24.1.46 (2024-01-17)
92
-
93
- ### MultiSelect
94
-
95
- #### Bug Fixes
96
-
97
- - `#I535771` - Fixed issue where Z-index was not being added to the popup element when initially opening the popup.
98
-
99
- ## 24.1.45 (2024-01-09)
100
-
101
- ### Mention
102
-
103
- #### Bug Fixes
104
-
105
- - `#I534515` - Fixed an issue where unable to add image caption in `RTE` using the Mention integration.
106
-
107
- - `#I530749` - Now, the Change event triggers properly with the mention list in Rich Text Editor.
108
-
109
- ## 24.1.44 (2024-01-03)
110
-
111
- ### DropDownTree
112
-
113
- #### Bug Fixes
114
-
115
- - `#I536388` - The issue with the `selectAll` method in the Dropdown Tree component has been resolved.
21
+ - `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
116
22
 
117
- ### DropdownList
118
-
119
- #### Bug Fixes
120
-
121
- - `#F49252` - Fixed the issue where the dropdown list width was not the same as the dropdown control.
122
-
123
- - `#I531994` - Fixed the issue where pressing the space key after focusing on a dropdown list would cause an unexpected page scroll.
124
-
125
- ### Mention
23
+ ### Dropdown Tree
126
24
 
127
25
  #### Bug Fixes
128
26
 
129
- - `#I530713` - Fixed issue where users were unable to access the popup after pressing Shift + Enter.
27
+ - `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
130
28
 
131
- - `#I8411` - Fixed an issue where list values were displayed immediately after typing instead of waiting the minimum length was reached.
29
+ #### New Features
132
30
 
133
- ## 24.1.43 (2023-12-27)
31
+ - `#I322379`,`#I521440` - The Dropdown Tree component has been updated to render the popup in the DOM dynamically, significantly improving performance. If you need the popup to render during the initial load, you can set the 'destroyPopupOnHide' property to 'false'.
134
32
 
135
33
  ### ListBox
136
34
 
137
35
  #### Bug Fixes
138
36
 
139
- - `#I520132` - Issue with "The listbox value was not updated properly while filtering the data source when we place within form" has been resolved.
140
37
  - `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
141
38
 
142
- ### DropdownList
143
-
144
- #### Bug Fixes
145
-
146
- - `#I523994` - Resolved the issue where the NVDA Reader was not reading the list item when filtering is enabled.
147
-
148
- ### AutoComplete
149
-
150
- #### Bug Fixes
151
-
152
- - `#I528524` - Fixed an issue where the Change Event was not triggered when pressing the enter key after preventing the Popup from opening.
153
-
154
- ## 24.1.41 (2023-12-18)
155
-
156
- ### DropDownTree
157
-
158
- #### Bug Fixes
159
-
160
- - `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
161
-
162
39
  ### ListBox
163
40
 
164
41
  #### Bug Fixes
@@ -277,7 +154,7 @@
277
154
 
278
155
  - `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
279
156
 
280
- ### DropDownTree
157
+ ### Dropdown Tree
281
158
 
282
159
  #### Bug Fixes
283
160
 
@@ -293,7 +170,7 @@
293
170
 
294
171
  ## 19.3.53 (2021-11-12)
295
172
 
296
- ### DropDownTree
173
+ ### Dropdown Tree
297
174
 
298
175
  #### Bug Fixes
299
176
 
@@ -301,7 +178,7 @@
301
178
 
302
179
  ## 19.3.48 (2021-11-02)
303
180
 
304
- ### DropDownTree
181
+ ### Dropdown Tree
305
182
 
306
183
  #### Bug Fixes
307
184
 
@@ -309,7 +186,7 @@
309
186
 
310
187
  ## 19.3.47 (2021-10-26)
311
188
 
312
- ### DropDownTree
189
+ ### Dropdown Tree
313
190
 
314
191
  #### Bug Fixes
315
192
 
@@ -317,7 +194,7 @@
317
194
 
318
195
  ## 19.3.46 (2021-10-19)
319
196
 
320
- ### DropDownTree
197
+ ### Dropdown Tree
321
198
 
322
199
  #### Bug Fixes
323
200
 
@@ -335,7 +212,7 @@
335
212
 
336
213
  ## 19.3.44 (2021-10-05)
337
214
 
338
- ### DropDownTree
215
+ ### Dropdown Tree
339
216
 
340
217
  #### New Features
341
218
 
@@ -375,7 +252,7 @@
375
252
 
376
253
  - `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
377
254
 
378
- ### DropDownTree
255
+ ### Dropdown Tree
379
256
 
380
257
  #### Bug Fixes
381
258
 
@@ -389,7 +266,7 @@
389
266
 
390
267
  - `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
391
268
 
392
- ### DropDownTree
269
+ ### Dropdown Tree
393
270
 
394
271
  #### Bug Fixes
395
272
 
@@ -419,7 +296,7 @@
419
296
 
420
297
  - `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
421
298
 
422
- ### DropDownTree
299
+ ### Dropdown Tree
423
300
 
424
301
  #### Bug Fixes
425
302
 
@@ -478,7 +355,7 @@
478
355
 
479
356
  ## 19.1.54 (2021-03-30)
480
357
 
481
- ### DropDownTree
358
+ ### Dropdown Tree
482
359
 
483
360
  #### Bug Fixes
484
361
 
@@ -502,7 +379,7 @@
502
379
 
503
380
  ## 18.4.43 (2021-02-16)
504
381
 
505
- ### DropDownTree
382
+ ### Dropdown Tree
506
383
 
507
384
  #### Bug Fixes
508
385
 
@@ -589,7 +466,7 @@
589
466
 
590
467
  ## 18.3.42 (2020-10-20)
591
468
 
592
- ### DropDownTree
469
+ ### Dropdown Tree
593
470
 
594
471
  #### Bug Fixes
595
472
 
@@ -627,7 +504,7 @@
627
504
 
628
505
  ## 18.2.54 (2020-08-18)
629
506
 
630
- ### DropDownTree
507
+ ### Dropdown Tree
631
508
 
632
509
  #### Breaking Changes
633
510
 
@@ -647,7 +524,7 @@
647
524
 
648
525
  - `#285392` - Enable / disable list items based on unique value support provided.
649
526
 
650
- ### DropDownTree
527
+ ### Dropdown Tree
651
528
 
652
529
  #### Bug Fixes
653
530
 
@@ -699,7 +576,7 @@
699
576
 
700
577
  -`#273796` - Now, e-outline class is added to the filter input
701
578
 
702
- ### DropDownTree
579
+ ### Dropdown Tree
703
580
 
704
581
  #### Bug Fixes
705
582
 
@@ -721,7 +598,7 @@
721
598
 
722
599
  - `#273796` - Now, filtering works properly when paste the value in the input element.
723
600
 
724
- ### DropDownTree
601
+ ### Dropdown Tree
725
602
 
726
603
  #### Bug Fixes
727
604
 
@@ -761,7 +638,7 @@
761
638
 
762
639
  ## 18.1.46 (2020-04-28)
763
640
 
764
- ### DropDownTree
641
+ ### Dropdown Tree
765
642
 
766
643
  #### Bug Fixes
767
644
 
@@ -791,7 +668,7 @@
791
668
  The newly added `Dropdown Tree` component in dropdowns package requires `Navigations` dependency, so now it is mandatory to include the `ej2-navigations.umd.min.js` in `system.js` configuration if you are using the system.js module loader.
792
669
  Update the system.js configuration while going with this version and above.
793
670
 
794
- ### DropDownTree
671
+ ### Dropdown Tree
795
672
 
796
673
  The Dropdown Tree control allows you to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values. The available key features are
797
674