@syncfusion/ej2-dropdowns 23.2.7-52849 → 24.1.41-566987

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 (127) hide show
  1. package/CHANGELOG.md +20 -132
  2. package/dist/ej2-dropdowns.umd.min.js +1 -1
  3. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-dropdowns.es2015.js +654 -116
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +658 -119
  7. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  8. package/package.json +13 -13
  9. package/src/auto-complete/auto-complete.js +9 -4
  10. package/src/combo-box/combo-box.js +74 -2
  11. package/src/common/incremental-search.d.ts +1 -1
  12. package/src/common/incremental-search.js +50 -7
  13. package/src/common/interface.d.ts +2 -0
  14. package/src/common/virtual-scroll.js +22 -1
  15. package/src/drop-down-base/drop-down-base.d.ts +23 -3
  16. package/src/drop-down-base/drop-down-base.js +154 -40
  17. package/src/drop-down-list/drop-down-list.d.ts +10 -3
  18. package/src/drop-down-list/drop-down-list.js +305 -41
  19. package/src/drop-down-tree/drop-down-tree.js +24 -20
  20. package/src/list-box/list-box.js +8 -1
  21. package/src/mention/mention.js +5 -1
  22. package/src/multi-select/checkbox-selection.js +4 -1
  23. package/src/multi-select/multi-select.js +4 -2
  24. package/styles/auto-complete/_bds-definition.scss +2 -0
  25. package/styles/bootstrap-dark.css +16 -9
  26. package/styles/bootstrap.css +16 -9
  27. package/styles/bootstrap4.css +11 -9
  28. package/styles/bootstrap5-dark.css +11 -9
  29. package/styles/bootstrap5.css +11 -9
  30. package/styles/combo-box/_bds-definition.scss +2 -0
  31. package/styles/drop-down-base/_bds-definition.scss +134 -0
  32. package/styles/drop-down-base/_layout.scss +0 -8
  33. package/styles/drop-down-base/bootstrap-dark.css +0 -8
  34. package/styles/drop-down-base/bootstrap.css +0 -8
  35. package/styles/drop-down-base/bootstrap4.css +0 -8
  36. package/styles/drop-down-base/bootstrap5-dark.css +0 -8
  37. package/styles/drop-down-base/bootstrap5.css +0 -8
  38. package/styles/drop-down-base/fabric-dark.css +0 -8
  39. package/styles/drop-down-base/fabric.css +0 -8
  40. package/styles/drop-down-base/fluent-dark.css +0 -8
  41. package/styles/drop-down-base/fluent.css +0 -8
  42. package/styles/drop-down-base/highcontrast-light.css +0 -8
  43. package/styles/drop-down-base/highcontrast.css +0 -8
  44. package/styles/drop-down-base/material-dark.css +0 -8
  45. package/styles/drop-down-base/material.css +0 -8
  46. package/styles/drop-down-base/material3-dark.css +0 -8
  47. package/styles/drop-down-base/material3.css +0 -8
  48. package/styles/drop-down-base/tailwind-dark.css +0 -8
  49. package/styles/drop-down-base/tailwind.css +0 -8
  50. package/styles/drop-down-list/_bds-definition.scss +134 -0
  51. package/styles/drop-down-list/_layout.scss +5 -0
  52. package/styles/drop-down-list/bootstrap-dark.css +5 -0
  53. package/styles/drop-down-list/bootstrap.css +5 -0
  54. package/styles/drop-down-list/bootstrap4.css +5 -0
  55. package/styles/drop-down-list/bootstrap5-dark.css +5 -0
  56. package/styles/drop-down-list/bootstrap5.css +5 -0
  57. package/styles/drop-down-list/fabric-dark.css +5 -0
  58. package/styles/drop-down-list/fabric.css +5 -0
  59. package/styles/drop-down-list/fluent-dark.css +5 -0
  60. package/styles/drop-down-list/fluent.css +5 -0
  61. package/styles/drop-down-list/highcontrast-light.css +5 -0
  62. package/styles/drop-down-list/highcontrast.css +5 -0
  63. package/styles/drop-down-list/icons/_bds.scss +14 -0
  64. package/styles/drop-down-list/material-dark.css +5 -0
  65. package/styles/drop-down-list/material.css +5 -0
  66. package/styles/drop-down-list/material3-dark.css +5 -0
  67. package/styles/drop-down-list/material3.css +5 -0
  68. package/styles/drop-down-list/tailwind-dark.css +5 -0
  69. package/styles/drop-down-list/tailwind.css +5 -0
  70. package/styles/drop-down-tree/_bds-definition.scss +61 -0
  71. package/styles/drop-down-tree/_layout.scss +5 -0
  72. package/styles/drop-down-tree/bootstrap-dark.css +4 -0
  73. package/styles/drop-down-tree/bootstrap.css +4 -0
  74. package/styles/drop-down-tree/bootstrap4.css +4 -0
  75. package/styles/drop-down-tree/bootstrap5-dark.css +4 -0
  76. package/styles/drop-down-tree/bootstrap5.css +4 -0
  77. package/styles/drop-down-tree/fabric-dark.css +4 -0
  78. package/styles/drop-down-tree/fabric.css +4 -0
  79. package/styles/drop-down-tree/fluent-dark.css +4 -0
  80. package/styles/drop-down-tree/fluent.css +4 -0
  81. package/styles/drop-down-tree/highcontrast-light.css +4 -0
  82. package/styles/drop-down-tree/highcontrast.css +4 -0
  83. package/styles/drop-down-tree/icons/_bds.scss +11 -0
  84. package/styles/drop-down-tree/material-dark.css +4 -0
  85. package/styles/drop-down-tree/material.css +4 -0
  86. package/styles/drop-down-tree/material3-dark.css +4 -0
  87. package/styles/drop-down-tree/material3.css +4 -0
  88. package/styles/drop-down-tree/tailwind-dark.css +4 -0
  89. package/styles/drop-down-tree/tailwind.css +4 -0
  90. package/styles/fabric-dark.css +12 -9
  91. package/styles/fabric.css +12 -9
  92. package/styles/fluent-dark.css +16 -9
  93. package/styles/fluent.css +16 -9
  94. package/styles/highcontrast-light.css +12 -9
  95. package/styles/highcontrast.css +12 -9
  96. package/styles/list-box/_bds-definition.scss +136 -0
  97. package/styles/list-box/icons/_bds.scss +25 -0
  98. package/styles/material-dark.css +11 -9
  99. package/styles/material.css +11 -9
  100. package/styles/material3-dark.css +11 -9
  101. package/styles/material3.css +11 -9
  102. package/styles/mention/_bds-definition.scss +1 -0
  103. package/styles/multi-select/_bds-definition.scss +235 -0
  104. package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
  105. package/styles/multi-select/_bootstrap-definition.scss +4 -0
  106. package/styles/multi-select/_fluent-definition.scss +5 -0
  107. package/styles/multi-select/_layout.scss +8 -1
  108. package/styles/multi-select/bootstrap-dark.css +7 -1
  109. package/styles/multi-select/bootstrap.css +7 -1
  110. package/styles/multi-select/bootstrap4.css +2 -1
  111. package/styles/multi-select/bootstrap5-dark.css +2 -1
  112. package/styles/multi-select/bootstrap5.css +2 -1
  113. package/styles/multi-select/fabric-dark.css +3 -1
  114. package/styles/multi-select/fabric.css +3 -1
  115. package/styles/multi-select/fluent-dark.css +7 -1
  116. package/styles/multi-select/fluent.css +7 -1
  117. package/styles/multi-select/highcontrast-light.css +3 -1
  118. package/styles/multi-select/highcontrast.css +3 -1
  119. package/styles/multi-select/icons/_bds.scss +26 -0
  120. package/styles/multi-select/material-dark.css +2 -1
  121. package/styles/multi-select/material.css +2 -1
  122. package/styles/multi-select/material3-dark.css +2 -1
  123. package/styles/multi-select/material3.css +2 -1
  124. package/styles/multi-select/tailwind-dark.css +2 -1
  125. package/styles/multi-select/tailwind.css +2 -1
  126. package/styles/tailwind-dark.css +11 -9
  127. package/styles/tailwind.css +11 -9
package/CHANGELOG.md CHANGED
@@ -2,45 +2,13 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ## 23.2.7 (2023-12-05)
6
-
7
- ### AutoComplete
8
-
9
- #### Bug Fixes
10
-
11
- - `#I522040` - Fixed an issue where setting the highlight as true and adding HTML text as a value would result in it being parsed as a DOM element.
5
+ ## 24.1.41 (2023-12-18)
12
6
 
13
7
  ### DropDownTree
14
8
 
15
9
  #### Bug Fixes
16
10
 
17
- - `#I523487` - The issue with `itemTemplate` support while performing filtering operation in the Dropdown Tree component has been resolved.
18
-
19
- ### MultiSelect
20
-
21
- #### Bug Fixes
22
-
23
- - `#I518299` - Fixed console error that occurred when adding an item using the addItem method.
24
-
25
- ## 23.2.6 (2023-11-28)
26
-
27
- ### DropDownList
28
-
29
- #### Bug Fixes
30
-
31
- - `#I519795` - Fixed an issue where the `BeforeOpenEvent` was triggered twice when the open event was Cancelled.
32
-
33
- - `#I520598` - Resolved issue where the equal to operator on `props.dataSource` in the `updateDataSource` function would always evaluate to false when it was an empty array.
34
-
35
- ## 23.2.5 (2023-11-23)
36
-
37
- ### Mention
38
-
39
- #### Bug Fixes
40
-
41
- - `#I519427` - Fixed a popup positioning issue that occurred when filtering.
42
-
43
- ## 23.2.4 (2023-11-20)
11
+ - `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
44
12
 
45
13
  ### ListBox
46
14
 
@@ -52,86 +20,6 @@
52
20
 
53
21
  #### Bug Fixes
54
22
 
55
- - `#I473804` - Provided smooth scrolling to drag and drop support for the ListBox component.
56
-
57
- ### DropDownList
58
-
59
- #### Bug Fixes
60
-
61
- - `#I503134` - Fixed the issue where keyboard navigation was not working when null values were included in the datasource.
62
-
63
- ## 23.1.44 (2023-11-07)
64
-
65
- ### Mention
66
-
67
- #### Bug Fixes
68
-
69
- - `#I4756` - Fixed the issue where using the Mention Character as a `[` would throw a console error.
70
-
71
- ## 23.1.43 (2023-10-31)
72
-
73
- ### ComboBox
74
-
75
- #### Bug Fixes
76
-
77
- - `#I509217` - Resolved the issue where an empty space was created after clearing the values from the comboBox.
78
-
79
- ### Mention
80
-
81
- #### Bug Fixes
82
-
83
- - `#F182215` - Fixed "In Android, unable to remove a selected value from Mention using backspace key and also keyboard hides".
84
-
85
- ### DropDownTree
86
-
87
- #### Bug Fixes
88
-
89
- - `#I508339` - The persistence issue during page navigation has been resolved.
90
- - `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
91
-
92
- ## 23.1.42 (2023-10-24)
93
-
94
- ### Mention
95
-
96
- #### Bug Fixes
97
-
98
- - `#I506552` - Resolved issue with "Full popup is not visible when we open it at the edge of the screen".
99
-
100
- ## 23.1.41 (2023-10-17)
101
-
102
- ### MultiSelect
103
-
104
- #### Bug fixes
105
-
106
- - `#I503091` - Resolved a null exception that was thrown when dynamically changing the `groupBy` fields to undefined.
107
-
108
- ### DropdownList
109
-
110
- #### Bug Fixes
111
-
112
- - `#I498409` - Fixed an issue where the preselected `value` was getting cleared when updating the data source.
113
- - `#I500431` - Fixed issue where the preselected `value` through `index` property was not updated when updating the data source.
114
-
115
- ### DropDownTree
116
-
117
- #### Bug Fixes
118
-
119
- - `#F184672` - Issue with the `checkAll` and `uncheckAll` status not updated properly has been resolved.
120
-
121
- ## 23.1.38 (2023-09-26)
122
-
123
- ### ListBox
124
-
125
- #### Bug Fixes
126
-
127
- - `#I493841` - Issue with "Scrollbar in ListBox while using inside a splitter" has been resolved.
128
-
129
- ## 23.1.36 (2023-09-15)
130
-
131
- ### ListBox
132
-
133
- #### Bug Fixes
134
-
135
23
  - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form" has been resolved.
136
24
 
137
25
  ### MultiSelect
@@ -240,7 +128,7 @@
240
128
 
241
129
  - `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
242
130
 
243
- ### Dropdown Tree
131
+ ### DropDownTree
244
132
 
245
133
  #### Bug Fixes
246
134
 
@@ -256,7 +144,7 @@
256
144
 
257
145
  ## 19.3.53 (2021-11-12)
258
146
 
259
- ### Dropdown Tree
147
+ ### DropDownTree
260
148
 
261
149
  #### Bug Fixes
262
150
 
@@ -264,7 +152,7 @@
264
152
 
265
153
  ## 19.3.48 (2021-11-02)
266
154
 
267
- ### Dropdown Tree
155
+ ### DropDownTree
268
156
 
269
157
  #### Bug Fixes
270
158
 
@@ -272,7 +160,7 @@
272
160
 
273
161
  ## 19.3.47 (2021-10-26)
274
162
 
275
- ### Dropdown Tree
163
+ ### DropDownTree
276
164
 
277
165
  #### Bug Fixes
278
166
 
@@ -280,7 +168,7 @@
280
168
 
281
169
  ## 19.3.46 (2021-10-19)
282
170
 
283
- ### Dropdown Tree
171
+ ### DropDownTree
284
172
 
285
173
  #### Bug Fixes
286
174
 
@@ -298,7 +186,7 @@
298
186
 
299
187
  ## 19.3.44 (2021-10-05)
300
188
 
301
- ### Dropdown Tree
189
+ ### DropDownTree
302
190
 
303
191
  #### New Features
304
192
 
@@ -338,7 +226,7 @@
338
226
 
339
227
  - `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
340
228
 
341
- ### Dropdown Tree
229
+ ### DropDownTree
342
230
 
343
231
  #### Bug Fixes
344
232
 
@@ -352,7 +240,7 @@
352
240
 
353
241
  - `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
354
242
 
355
- ### Dropdown Tree
243
+ ### DropDownTree
356
244
 
357
245
  #### Bug Fixes
358
246
 
@@ -382,7 +270,7 @@
382
270
 
383
271
  - `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
384
272
 
385
- ### Dropdown Tree
273
+ ### DropDownTree
386
274
 
387
275
  #### Bug Fixes
388
276
 
@@ -441,7 +329,7 @@
441
329
 
442
330
  ## 19.1.54 (2021-03-30)
443
331
 
444
- ### Dropdown Tree
332
+ ### DropDownTree
445
333
 
446
334
  #### Bug Fixes
447
335
 
@@ -465,7 +353,7 @@
465
353
 
466
354
  ## 18.4.43 (2021-02-16)
467
355
 
468
- ### Dropdown Tree
356
+ ### DropDownTree
469
357
 
470
358
  #### Bug Fixes
471
359
 
@@ -552,7 +440,7 @@
552
440
 
553
441
  ## 18.3.42 (2020-10-20)
554
442
 
555
- ### Dropdown Tree
443
+ ### DropDownTree
556
444
 
557
445
  #### Bug Fixes
558
446
 
@@ -590,7 +478,7 @@
590
478
 
591
479
  ## 18.2.54 (2020-08-18)
592
480
 
593
- ### Dropdown Tree
481
+ ### DropDownTree
594
482
 
595
483
  #### Breaking Changes
596
484
 
@@ -610,7 +498,7 @@
610
498
 
611
499
  - `#285392` - Enable / disable list items based on unique value support provided.
612
500
 
613
- ### Dropdown Tree
501
+ ### DropDownTree
614
502
 
615
503
  #### Bug Fixes
616
504
 
@@ -662,7 +550,7 @@
662
550
 
663
551
  -`#273796` - Now, e-outline class is added to the filter input
664
552
 
665
- ### Dropdown Tree
553
+ ### DropDownTree
666
554
 
667
555
  #### Bug Fixes
668
556
 
@@ -684,7 +572,7 @@
684
572
 
685
573
  - `#273796` - Now, filtering works properly when paste the value in the input element.
686
574
 
687
- ### Dropdown Tree
575
+ ### DropDownTree
688
576
 
689
577
  #### Bug Fixes
690
578
 
@@ -724,7 +612,7 @@
724
612
 
725
613
  ## 18.1.46 (2020-04-28)
726
614
 
727
- ### Dropdown Tree
615
+ ### DropDownTree
728
616
 
729
617
  #### Bug Fixes
730
618
 
@@ -754,7 +642,7 @@
754
642
  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.
755
643
  Update the system.js configuration while going with this version and above.
756
644
 
757
- ### Dropdown Tree
645
+ ### DropDownTree
758
646
 
759
647
  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
760
648