@syncfusion/ej2-dropdowns 24.2.9 → 25.1.35

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 (92) hide show
  1. package/CHANGELOG.md +23 -158
  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 +1996 -513
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +2012 -512
  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.js +8 -2
  36. package/src/multi-select/float-label.d.ts +5 -5
  37. package/src/multi-select/index.d.ts +1 -0
  38. package/src/multi-select/index.js +1 -0
  39. package/src/multi-select/interface.d.ts +1 -0
  40. package/src/multi-select/multi-select-model.d.ts +17 -2
  41. package/src/multi-select/multi-select.d.ts +34 -4
  42. package/src/multi-select/multi-select.js +1271 -173
  43. package/styles/auto-complete/_bds-definition.scss +2 -0
  44. package/styles/bootstrap-dark.css +7 -1
  45. package/styles/bootstrap.css +7 -1
  46. package/styles/bootstrap4.css +2 -1
  47. package/styles/bootstrap5-dark.css +2 -1
  48. package/styles/bootstrap5.css +2 -1
  49. package/styles/combo-box/_bds-definition.scss +2 -0
  50. package/styles/drop-down-base/_bds-definition.scss +134 -0
  51. package/styles/drop-down-list/_bds-definition.scss +134 -0
  52. package/styles/drop-down-list/icons/_bds.scss +14 -0
  53. package/styles/drop-down-tree/_bds-definition.scss +61 -0
  54. package/styles/drop-down-tree/icons/_bds.scss +11 -0
  55. package/styles/fabric-dark.css +3 -1
  56. package/styles/fabric.css +3 -1
  57. package/styles/fluent-dark.css +7 -1
  58. package/styles/fluent.css +7 -1
  59. package/styles/highcontrast-light.css +3 -1
  60. package/styles/highcontrast.css +3 -1
  61. package/styles/list-box/_bds-definition.scss +136 -0
  62. package/styles/list-box/icons/_bds.scss +25 -0
  63. package/styles/material-dark.css +2 -1
  64. package/styles/material.css +2 -1
  65. package/styles/material3-dark.css +2 -1
  66. package/styles/material3.css +2 -1
  67. package/styles/mention/_bds-definition.scss +1 -0
  68. package/styles/multi-select/_bds-definition.scss +235 -0
  69. package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
  70. package/styles/multi-select/_bootstrap-definition.scss +4 -0
  71. package/styles/multi-select/_fluent-definition.scss +5 -0
  72. package/styles/multi-select/_layout.scss +8 -1
  73. package/styles/multi-select/bootstrap-dark.css +7 -1
  74. package/styles/multi-select/bootstrap.css +7 -1
  75. package/styles/multi-select/bootstrap4.css +2 -1
  76. package/styles/multi-select/bootstrap5-dark.css +2 -1
  77. package/styles/multi-select/bootstrap5.css +2 -1
  78. package/styles/multi-select/fabric-dark.css +3 -1
  79. package/styles/multi-select/fabric.css +3 -1
  80. package/styles/multi-select/fluent-dark.css +7 -1
  81. package/styles/multi-select/fluent.css +7 -1
  82. package/styles/multi-select/highcontrast-light.css +3 -1
  83. package/styles/multi-select/highcontrast.css +3 -1
  84. package/styles/multi-select/icons/_bds.scss +26 -0
  85. package/styles/multi-select/material-dark.css +2 -1
  86. package/styles/multi-select/material.css +2 -1
  87. package/styles/multi-select/material3-dark.css +2 -1
  88. package/styles/multi-select/material3.css +2 -1
  89. package/styles/multi-select/tailwind-dark.css +2 -1
  90. package/styles/multi-select/tailwind.css +2 -1
  91. package/styles/tailwind-dark.css +2 -1
  92. package/styles/tailwind.css +2 -1
package/CHANGELOG.md CHANGED
@@ -6,159 +6,24 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
- - `#I557826` - Fixed an issue where preselected values in ComboBox were not working properly when Virtualization is enabled.
9
+ - `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
10
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
- ### MultiSelect
11
+ ### Dropdown Tree
28
12
 
29
13
  #### Bug Fixes
30
14
 
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)
34
-
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
42
-
43
- -`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
44
-
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
15
+ - `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
50
16
 
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.
82
-
83
- ### ComboBox
84
-
85
- #### Bug Fixes
86
-
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.
116
-
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
126
-
127
- #### Bug Fixes
128
-
129
- - `#I530713` - Fixed issue where users were unable to access the popup after pressing Shift + Enter.
130
-
131
- - `#I8411` - Fixed an issue where list values were displayed immediately after typing instead of waiting the minimum length was reached.
17
+ #### New Features
132
18
 
133
- ## 24.1.43 (2023-12-27)
19
+ - `#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
20
 
135
21
  ### ListBox
136
22
 
137
23
  #### Bug Fixes
138
24
 
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
25
  - `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
141
26
 
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
27
  ### ListBox
163
28
 
164
29
  #### Bug Fixes
@@ -277,7 +142,7 @@
277
142
 
278
143
  - `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
279
144
 
280
- ### DropDownTree
145
+ ### Dropdown Tree
281
146
 
282
147
  #### Bug Fixes
283
148
 
@@ -293,7 +158,7 @@
293
158
 
294
159
  ## 19.3.53 (2021-11-12)
295
160
 
296
- ### DropDownTree
161
+ ### Dropdown Tree
297
162
 
298
163
  #### Bug Fixes
299
164
 
@@ -301,7 +166,7 @@
301
166
 
302
167
  ## 19.3.48 (2021-11-02)
303
168
 
304
- ### DropDownTree
169
+ ### Dropdown Tree
305
170
 
306
171
  #### Bug Fixes
307
172
 
@@ -309,7 +174,7 @@
309
174
 
310
175
  ## 19.3.47 (2021-10-26)
311
176
 
312
- ### DropDownTree
177
+ ### Dropdown Tree
313
178
 
314
179
  #### Bug Fixes
315
180
 
@@ -317,7 +182,7 @@
317
182
 
318
183
  ## 19.3.46 (2021-10-19)
319
184
 
320
- ### DropDownTree
185
+ ### Dropdown Tree
321
186
 
322
187
  #### Bug Fixes
323
188
 
@@ -335,7 +200,7 @@
335
200
 
336
201
  ## 19.3.44 (2021-10-05)
337
202
 
338
- ### DropDownTree
203
+ ### Dropdown Tree
339
204
 
340
205
  #### New Features
341
206
 
@@ -375,7 +240,7 @@
375
240
 
376
241
  - `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
377
242
 
378
- ### DropDownTree
243
+ ### Dropdown Tree
379
244
 
380
245
  #### Bug Fixes
381
246
 
@@ -389,7 +254,7 @@
389
254
 
390
255
  - `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
391
256
 
392
- ### DropDownTree
257
+ ### Dropdown Tree
393
258
 
394
259
  #### Bug Fixes
395
260
 
@@ -419,7 +284,7 @@
419
284
 
420
285
  - `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
421
286
 
422
- ### DropDownTree
287
+ ### Dropdown Tree
423
288
 
424
289
  #### Bug Fixes
425
290
 
@@ -478,7 +343,7 @@
478
343
 
479
344
  ## 19.1.54 (2021-03-30)
480
345
 
481
- ### DropDownTree
346
+ ### Dropdown Tree
482
347
 
483
348
  #### Bug Fixes
484
349
 
@@ -502,7 +367,7 @@
502
367
 
503
368
  ## 18.4.43 (2021-02-16)
504
369
 
505
- ### DropDownTree
370
+ ### Dropdown Tree
506
371
 
507
372
  #### Bug Fixes
508
373
 
@@ -589,7 +454,7 @@
589
454
 
590
455
  ## 18.3.42 (2020-10-20)
591
456
 
592
- ### DropDownTree
457
+ ### Dropdown Tree
593
458
 
594
459
  #### Bug Fixes
595
460
 
@@ -627,7 +492,7 @@
627
492
 
628
493
  ## 18.2.54 (2020-08-18)
629
494
 
630
- ### DropDownTree
495
+ ### Dropdown Tree
631
496
 
632
497
  #### Breaking Changes
633
498
 
@@ -647,7 +512,7 @@
647
512
 
648
513
  - `#285392` - Enable / disable list items based on unique value support provided.
649
514
 
650
- ### DropDownTree
515
+ ### Dropdown Tree
651
516
 
652
517
  #### Bug Fixes
653
518
 
@@ -699,7 +564,7 @@
699
564
 
700
565
  -`#273796` - Now, e-outline class is added to the filter input
701
566
 
702
- ### DropDownTree
567
+ ### Dropdown Tree
703
568
 
704
569
  #### Bug Fixes
705
570
 
@@ -721,7 +586,7 @@
721
586
 
722
587
  - `#273796` - Now, filtering works properly when paste the value in the input element.
723
588
 
724
- ### DropDownTree
589
+ ### Dropdown Tree
725
590
 
726
591
  #### Bug Fixes
727
592
 
@@ -761,7 +626,7 @@
761
626
 
762
627
  ## 18.1.46 (2020-04-28)
763
628
 
764
- ### DropDownTree
629
+ ### Dropdown Tree
765
630
 
766
631
  #### Bug Fixes
767
632
 
@@ -791,7 +656,7 @@
791
656
  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
657
  Update the system.js configuration while going with this version and above.
793
658
 
794
- ### DropDownTree
659
+ ### Dropdown Tree
795
660
 
796
661
  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
662