@syncfusion/ej2-dropdowns 24.2.8 → 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 (110) hide show
  1. package/CHANGELOG.md +23 -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 +2049 -528
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +2072 -533
  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 +11 -2
  17. package/src/combo-box/combo-box.d.ts +10 -2
  18. package/src/combo-box/combo-box.js +75 -16
  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 +65 -5
  24. package/src/drop-down-base/drop-down-base.js +242 -25
  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 -51
  27. package/src/drop-down-list/drop-down-list.js +180 -217
  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 +21 -9
  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 +8 -2
  45. package/styles/bootstrap.css +8 -2
  46. package/styles/bootstrap4.css +3 -2
  47. package/styles/bootstrap5-dark.css +3 -2
  48. package/styles/bootstrap5.css +3 -2
  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/_layout.scss +1 -1
  53. package/styles/drop-down-list/bootstrap-dark.css +1 -1
  54. package/styles/drop-down-list/bootstrap.css +1 -1
  55. package/styles/drop-down-list/bootstrap4.css +1 -1
  56. package/styles/drop-down-list/bootstrap5-dark.css +1 -1
  57. package/styles/drop-down-list/bootstrap5.css +1 -1
  58. package/styles/drop-down-list/fabric-dark.css +1 -1
  59. package/styles/drop-down-list/fabric.css +1 -1
  60. package/styles/drop-down-list/fluent-dark.css +1 -1
  61. package/styles/drop-down-list/fluent.css +1 -1
  62. package/styles/drop-down-list/highcontrast-light.css +1 -1
  63. package/styles/drop-down-list/highcontrast.css +1 -1
  64. package/styles/drop-down-list/icons/_bds.scss +14 -0
  65. package/styles/drop-down-list/material-dark.css +1 -1
  66. package/styles/drop-down-list/material.css +1 -1
  67. package/styles/drop-down-list/material3-dark.css +1 -1
  68. package/styles/drop-down-list/material3.css +1 -1
  69. package/styles/drop-down-list/tailwind-dark.css +1 -1
  70. package/styles/drop-down-list/tailwind.css +1 -1
  71. package/styles/drop-down-tree/_bds-definition.scss +61 -0
  72. package/styles/drop-down-tree/icons/_bds.scss +11 -0
  73. package/styles/fabric-dark.css +4 -2
  74. package/styles/fabric.css +4 -2
  75. package/styles/fluent-dark.css +8 -2
  76. package/styles/fluent.css +8 -2
  77. package/styles/highcontrast-light.css +4 -2
  78. package/styles/highcontrast.css +4 -2
  79. package/styles/list-box/_bds-definition.scss +136 -0
  80. package/styles/list-box/icons/_bds.scss +25 -0
  81. package/styles/material-dark.css +3 -2
  82. package/styles/material.css +3 -2
  83. package/styles/material3-dark.css +3 -2
  84. package/styles/material3.css +3 -2
  85. package/styles/mention/_bds-definition.scss +1 -0
  86. package/styles/multi-select/_bds-definition.scss +235 -0
  87. package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
  88. package/styles/multi-select/_bootstrap-definition.scss +4 -0
  89. package/styles/multi-select/_fluent-definition.scss +5 -0
  90. package/styles/multi-select/_layout.scss +8 -1
  91. package/styles/multi-select/bootstrap-dark.css +7 -1
  92. package/styles/multi-select/bootstrap.css +7 -1
  93. package/styles/multi-select/bootstrap4.css +2 -1
  94. package/styles/multi-select/bootstrap5-dark.css +2 -1
  95. package/styles/multi-select/bootstrap5.css +2 -1
  96. package/styles/multi-select/fabric-dark.css +3 -1
  97. package/styles/multi-select/fabric.css +3 -1
  98. package/styles/multi-select/fluent-dark.css +7 -1
  99. package/styles/multi-select/fluent.css +7 -1
  100. package/styles/multi-select/highcontrast-light.css +3 -1
  101. package/styles/multi-select/highcontrast.css +3 -1
  102. package/styles/multi-select/icons/_bds.scss +26 -0
  103. package/styles/multi-select/material-dark.css +2 -1
  104. package/styles/multi-select/material.css +2 -1
  105. package/styles/multi-select/material3-dark.css +2 -1
  106. package/styles/multi-select/material3.css +2 -1
  107. package/styles/multi-select/tailwind-dark.css +2 -1
  108. package/styles/multi-select/tailwind.css +2 -1
  109. package/styles/tailwind-dark.css +3 -2
  110. package/styles/tailwind.css +3 -2
package/CHANGELOG.md CHANGED
@@ -2,155 +2,28 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### Mention
6
-
7
- #### Bug Fixes
8
-
9
- - `#I539496` - Fixed an issue where the mentioned value was not being updated to the target element when using mouse interaction.
10
-
11
- ## 24.2.7 (2024-02-20)
12
-
13
- ### Mention
14
-
15
- #### Bug Fixes
16
-
17
- -`#I556815`- Fixed an issue where console error that occurred when using `iframe` along with mention.
18
-
19
- ### MultiSelect
20
-
21
- #### Bug Fixes
22
-
23
- - `#I553564` - Fixed an issue where the Change Event was triggering multiple times when unCheck all items.
24
-
25
- ## 24.2.6 (2024-02-15)
26
-
27
- ### ListBox
28
-
29
- - `#I548014` - Issue with "Reduce the time taken to move records in a dual listbox when using moveTo/moveFrom toolbar click" has been resolved.
30
-
31
- ### Mention
32
-
33
- #### Bug Fixes
34
-
35
- -`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
36
-
37
- - `#F186429` - Fixed an issue where the mention popup was not aligned properly when the mention target was set as `iframe`.
38
-
39
- ## 24.2.5 (2024-02-13)
40
-
41
- ### DropdownList
42
-
43
- #### Bug Fixes
44
-
45
- - `#F49655` - Fixed an issue where assigning null to a value, text and index property resulting in errors.
46
-
47
- - `#I546769` - Fixed an issue where the `isInteracted` property return false after selecting a value using focus out.
48
-
49
- ## 24.2.4 (2024-02-06)
50
-
51
- ### ListBox
52
-
53
- -`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
54
-
55
- ### DropdownList
56
-
57
- #### Bug Fixes
58
-
59
- - `#I545534` - Fixed an issue where the Popup Element was not being destroyed when rendering inside the In-place editor.
60
-
61
- ### MultiSelect
62
-
63
- #### Bug Fixes
64
-
65
- - `#I534853` - Fixed an issue where a console exception occurred when typing a custom value in the input field.
66
-
67
- ## 24.1.47 (2024-01-23)
68
-
69
- ### ListBox
70
-
71
- #### Bug Fixes
72
-
73
- - `#I514409` - Issue with "Filtering focus not removed in listbox while clearing and click anywhere" has been resolved.
74
-
75
5
  ### ComboBox
76
6
 
77
7
  #### Bug Fixes
78
8
 
79
- - `#I531844` - Fixed issue where custom value could not be added to combobox when dataSource is empty.
80
-
81
- - `#F49952` - Fixed an issue where the combobox change event was not being triggered when clear the value using backspace.
82
-
83
- ## 24.1.46 (2024-01-17)
84
-
85
- ### MultiSelect
86
-
87
- #### Bug Fixes
88
-
89
- - `#I535771` - Fixed issue where Z-index was not being added to the popup element when initially opening the popup.
9
+ - `#I560957` - Resolved issue with "Combo Box not possible to update the datasource dynamically".
90
10
 
91
- ## 24.1.45 (2024-01-09)
92
-
93
- ### Mention
94
-
95
- #### Bug Fixes
96
-
97
- - `#I534515` - Fixed an issue where unable to add image caption in `RTE` using the Mention integration.
98
-
99
- - `#I530749` - Now, the Change event triggers properly with the mention list in Rich Text Editor.
100
-
101
- ## 24.1.44 (2024-01-03)
102
-
103
- ### DropDownTree
11
+ ### Dropdown Tree
104
12
 
105
13
  #### Bug Fixes
106
14
 
107
- - `#I536388` - The issue with the `selectAll` method in the Dropdown Tree component has been resolved.
108
-
109
- ### DropdownList
110
-
111
- #### Bug Fixes
15
+ - `#I558972` - Issue with "focus from the first item when items are selected in the Dropdown Tree component" has been resolved.
112
16
 
113
- - `#F49252` - Fixed the issue where the dropdown list width was not the same as the dropdown control.
114
-
115
- - `#I531994` - Fixed the issue where pressing the space key after focusing on a dropdown list would cause an unexpected page scroll.
116
-
117
- ### Mention
118
-
119
- #### Bug Fixes
120
-
121
- - `#I530713` - Fixed issue where users were unable to access the popup after pressing Shift + Enter.
122
-
123
- - `#I8411` - Fixed an issue where list values were displayed immediately after typing instead of waiting the minimum length was reached.
17
+ #### New Features
124
18
 
125
- ## 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'.
126
20
 
127
21
  ### ListBox
128
22
 
129
23
  #### Bug Fixes
130
24
 
131
- - `#I520132` - Issue with "The listbox value was not updated properly while filtering the data source when we place within form" has been resolved.
132
25
  - `#I522090` - Issue with "Keyboard action is not working properly in the ListBox filter" has been resolved.
133
26
 
134
- ### DropdownList
135
-
136
- #### Bug Fixes
137
-
138
- - `#I523994` - Resolved the issue where the NVDA Reader was not reading the list item when filtering is enabled.
139
-
140
- ### AutoComplete
141
-
142
- #### Bug Fixes
143
-
144
- - `#I528524` - Fixed an issue where the Change Event was not triggered when pressing the enter key after preventing the Popup from opening.
145
-
146
- ## 24.1.41 (2023-12-18)
147
-
148
- ### DropDownTree
149
-
150
- #### Bug Fixes
151
-
152
- - `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
153
-
154
27
  ### ListBox
155
28
 
156
29
  #### Bug Fixes
@@ -269,7 +142,7 @@
269
142
 
270
143
  - `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
271
144
 
272
- ### DropDownTree
145
+ ### Dropdown Tree
273
146
 
274
147
  #### Bug Fixes
275
148
 
@@ -285,7 +158,7 @@
285
158
 
286
159
  ## 19.3.53 (2021-11-12)
287
160
 
288
- ### DropDownTree
161
+ ### Dropdown Tree
289
162
 
290
163
  #### Bug Fixes
291
164
 
@@ -293,7 +166,7 @@
293
166
 
294
167
  ## 19.3.48 (2021-11-02)
295
168
 
296
- ### DropDownTree
169
+ ### Dropdown Tree
297
170
 
298
171
  #### Bug Fixes
299
172
 
@@ -301,7 +174,7 @@
301
174
 
302
175
  ## 19.3.47 (2021-10-26)
303
176
 
304
- ### DropDownTree
177
+ ### Dropdown Tree
305
178
 
306
179
  #### Bug Fixes
307
180
 
@@ -309,7 +182,7 @@
309
182
 
310
183
  ## 19.3.46 (2021-10-19)
311
184
 
312
- ### DropDownTree
185
+ ### Dropdown Tree
313
186
 
314
187
  #### Bug Fixes
315
188
 
@@ -327,7 +200,7 @@
327
200
 
328
201
  ## 19.3.44 (2021-10-05)
329
202
 
330
- ### DropDownTree
203
+ ### Dropdown Tree
331
204
 
332
205
  #### New Features
333
206
 
@@ -367,7 +240,7 @@
367
240
 
368
241
  - `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
369
242
 
370
- ### DropDownTree
243
+ ### Dropdown Tree
371
244
 
372
245
  #### Bug Fixes
373
246
 
@@ -381,7 +254,7 @@
381
254
 
382
255
  - `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
383
256
 
384
- ### DropDownTree
257
+ ### Dropdown Tree
385
258
 
386
259
  #### Bug Fixes
387
260
 
@@ -411,7 +284,7 @@
411
284
 
412
285
  - `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
413
286
 
414
- ### DropDownTree
287
+ ### Dropdown Tree
415
288
 
416
289
  #### Bug Fixes
417
290
 
@@ -470,7 +343,7 @@
470
343
 
471
344
  ## 19.1.54 (2021-03-30)
472
345
 
473
- ### DropDownTree
346
+ ### Dropdown Tree
474
347
 
475
348
  #### Bug Fixes
476
349
 
@@ -494,7 +367,7 @@
494
367
 
495
368
  ## 18.4.43 (2021-02-16)
496
369
 
497
- ### DropDownTree
370
+ ### Dropdown Tree
498
371
 
499
372
  #### Bug Fixes
500
373
 
@@ -581,7 +454,7 @@
581
454
 
582
455
  ## 18.3.42 (2020-10-20)
583
456
 
584
- ### DropDownTree
457
+ ### Dropdown Tree
585
458
 
586
459
  #### Bug Fixes
587
460
 
@@ -619,7 +492,7 @@
619
492
 
620
493
  ## 18.2.54 (2020-08-18)
621
494
 
622
- ### DropDownTree
495
+ ### Dropdown Tree
623
496
 
624
497
  #### Breaking Changes
625
498
 
@@ -639,7 +512,7 @@
639
512
 
640
513
  - `#285392` - Enable / disable list items based on unique value support provided.
641
514
 
642
- ### DropDownTree
515
+ ### Dropdown Tree
643
516
 
644
517
  #### Bug Fixes
645
518
 
@@ -691,7 +564,7 @@
691
564
 
692
565
  -`#273796` - Now, e-outline class is added to the filter input
693
566
 
694
- ### DropDownTree
567
+ ### Dropdown Tree
695
568
 
696
569
  #### Bug Fixes
697
570
 
@@ -713,7 +586,7 @@
713
586
 
714
587
  - `#273796` - Now, filtering works properly when paste the value in the input element.
715
588
 
716
- ### DropDownTree
589
+ ### Dropdown Tree
717
590
 
718
591
  #### Bug Fixes
719
592
 
@@ -753,7 +626,7 @@
753
626
 
754
627
  ## 18.1.46 (2020-04-28)
755
628
 
756
- ### DropDownTree
629
+ ### Dropdown Tree
757
630
 
758
631
  #### Bug Fixes
759
632
 
@@ -783,7 +656,7 @@
783
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.
784
657
  Update the system.js configuration while going with this version and above.
785
658
 
786
- ### DropDownTree
659
+ ### Dropdown Tree
787
660
 
788
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
789
662