@syncfusion/ej2-dropdowns 23.2.7 → 24.1.43
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 +26 -118
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +690 -117
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +694 -120
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -13
- package/src/auto-complete/auto-complete.js +10 -5
- package/src/combo-box/combo-box.js +74 -2
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +50 -7
- package/src/common/interface.d.ts +2 -0
- package/src/common/virtual-scroll.js +22 -1
- package/src/drop-down-base/drop-down-base.d.ts +23 -3
- package/src/drop-down-base/drop-down-base.js +153 -40
- package/src/drop-down-list/drop-down-list.d.ts +10 -3
- package/src/drop-down-list/drop-down-list.js +332 -41
- package/src/drop-down-tree/drop-down-tree.js +24 -20
- package/src/list-box/list-box.d.ts +1 -0
- package/src/list-box/list-box.js +12 -1
- package/src/mention/mention.js +10 -1
- package/src/multi-select/checkbox-selection.js +4 -1
- package/src/multi-select/multi-select.js +4 -2
- package/styles/bootstrap-dark.css +0 -3
- package/styles/bootstrap.css +0 -3
- package/styles/bootstrap4.css +0 -3
- package/styles/bootstrap5-dark.css +0 -3
- package/styles/bootstrap5.css +0 -3
- package/styles/drop-down-base/_layout.scss +0 -3
- package/styles/drop-down-base/bootstrap-dark.css +0 -3
- package/styles/drop-down-base/bootstrap.css +0 -3
- package/styles/drop-down-base/bootstrap4.css +0 -3
- package/styles/drop-down-base/bootstrap5-dark.css +0 -3
- package/styles/drop-down-base/bootstrap5.css +0 -3
- package/styles/drop-down-base/fabric-dark.css +0 -3
- package/styles/drop-down-base/fabric.css +0 -3
- package/styles/drop-down-base/fluent-dark.css +0 -3
- package/styles/drop-down-base/fluent.css +0 -3
- package/styles/drop-down-base/highcontrast-light.css +0 -3
- package/styles/drop-down-base/highcontrast.css +0 -3
- package/styles/drop-down-base/material-dark.css +0 -3
- package/styles/drop-down-base/material.css +0 -3
- package/styles/drop-down-base/material3-dark.css +0 -3
- package/styles/drop-down-base/material3.css +0 -3
- package/styles/drop-down-base/tailwind-dark.css +0 -3
- package/styles/drop-down-base/tailwind.css +0 -3
- package/styles/drop-down-tree/_layout.scss +6 -0
- package/styles/drop-down-tree/fluent-dark.css +2 -0
- package/styles/drop-down-tree/fluent.css +2 -0
- package/styles/fabric-dark.css +0 -3
- package/styles/fabric.css +0 -3
- package/styles/fluent-dark.css +2 -3
- package/styles/fluent.css +2 -3
- package/styles/highcontrast-light.css +0 -3
- package/styles/highcontrast.css +0 -3
- package/styles/material-dark.css +0 -3
- package/styles/material.css +0 -3
- package/styles/material3-dark.css +0 -3
- package/styles/material3.css +0 -3
- package/styles/tailwind-dark.css +0 -3
- package/styles/tailwind.css +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,129 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
### AutoComplete
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#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.
|
|
10
|
-
|
|
11
|
-
### DropDownTree
|
|
12
|
-
|
|
13
|
-
#### Bug Fixes
|
|
14
|
-
|
|
15
|
-
- `#I523487` - The issue with `itemTemplate` support while performing filtering operation in the Dropdown Tree component has been resolved.
|
|
16
|
-
|
|
17
|
-
### MultiSelect
|
|
18
|
-
|
|
19
|
-
#### Bug Fixes
|
|
20
|
-
|
|
21
|
-
- `#I518299` - Fixed console error that occurred when adding an item using the addItem method.
|
|
22
|
-
|
|
23
|
-
## 23.2.6 (2023-11-28)
|
|
24
|
-
|
|
25
|
-
### DropDownList
|
|
26
|
-
|
|
27
|
-
#### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- `#I519795` - Fixed an issue where the `BeforeOpenEvent` was triggered twice when the open event was Cancelled.
|
|
30
|
-
|
|
31
|
-
- `#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.
|
|
32
|
-
|
|
33
|
-
## 23.2.5 (2023-11-23)
|
|
34
|
-
|
|
35
|
-
### Mention
|
|
36
|
-
|
|
37
|
-
#### Bug Fixes
|
|
38
|
-
|
|
39
|
-
- `#I519427` - Fixed a popup positioning issue that occurred when filtering.
|
|
40
|
-
|
|
41
|
-
## 23.2.4 (2023-11-20)
|
|
42
|
-
|
|
43
|
-
### ListBox
|
|
44
|
-
|
|
45
|
-
#### Bug Fixes
|
|
46
|
-
|
|
47
|
-
- `#I514409` - Issue with "After clearing the filter Listbox item template was empty" has been resolved.
|
|
48
|
-
|
|
49
5
|
### ListBox
|
|
50
6
|
|
|
51
7
|
#### Bug Fixes
|
|
52
8
|
|
|
53
|
-
- `#
|
|
54
|
-
|
|
55
|
-
### DropDownList
|
|
56
|
-
|
|
57
|
-
#### Bug Fixes
|
|
58
|
-
|
|
59
|
-
- `#I503134` - Fixed the issue where keyboard navigation was not working when null values were included in the datasource.
|
|
60
|
-
|
|
61
|
-
## 23.1.44 (2023-11-07)
|
|
62
|
-
|
|
63
|
-
### Mention
|
|
64
|
-
|
|
65
|
-
#### Bug Fixes
|
|
66
|
-
|
|
67
|
-
- `#I4756` - Fixed the issue where using the Mention Character as a `[` would throw a console error.
|
|
9
|
+
- `#I520132` - Issue with "The listbox value was not updated properly while filtering the data source when we place within form" has been resolved.
|
|
68
10
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
### ComboBox
|
|
72
|
-
|
|
73
|
-
#### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- `#I509217` - Resolved the issue where an empty space was created after clearing the values from the comboBox.
|
|
76
|
-
|
|
77
|
-
### Mention
|
|
78
|
-
|
|
79
|
-
#### Bug Fixes
|
|
80
|
-
|
|
81
|
-
- `#F182215` - Fixed "In Android, unable to remove a selected value from Mention using backspace key and also keyboard hides".
|
|
82
|
-
|
|
83
|
-
### DropDownTree
|
|
11
|
+
### DropdownList
|
|
84
12
|
|
|
85
13
|
#### Bug Fixes
|
|
86
14
|
|
|
87
|
-
- `#
|
|
88
|
-
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
89
|
-
|
|
90
|
-
## 23.1.42 (2023-10-24)
|
|
15
|
+
- `#I523994` - Resolved the issue where the NVDA Reader was not reading the list item when filtering is enabled.
|
|
91
16
|
|
|
92
|
-
###
|
|
17
|
+
### AutoComplete
|
|
93
18
|
|
|
94
19
|
#### Bug Fixes
|
|
95
20
|
|
|
96
|
-
- `#
|
|
97
|
-
|
|
98
|
-
## 23.1.41 (2023-10-17)
|
|
99
|
-
|
|
100
|
-
### MultiSelect
|
|
101
|
-
|
|
102
|
-
#### Bug fixes
|
|
103
|
-
|
|
104
|
-
- `#I503091` - Resolved a null exception that was thrown when dynamically changing the `groupBy` fields to undefined.
|
|
105
|
-
|
|
106
|
-
### DropdownList
|
|
107
|
-
|
|
108
|
-
#### Bug Fixes
|
|
21
|
+
- `#I528524` - Fixed an issue where the Change Event was not triggered when pressing the enter key after preventing the Popup from opening.
|
|
109
22
|
|
|
110
|
-
|
|
111
|
-
- `#I500431` - Fixed issue where the preselected `value` through `index` property was not updated when updating the data source.
|
|
23
|
+
## 24.1.41 (2023-12-18)
|
|
112
24
|
|
|
113
25
|
### DropDownTree
|
|
114
26
|
|
|
115
27
|
#### Bug Fixes
|
|
116
28
|
|
|
117
|
-
- `#
|
|
118
|
-
|
|
119
|
-
## 23.1.38 (2023-09-26)
|
|
29
|
+
- `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
|
|
120
30
|
|
|
121
31
|
### ListBox
|
|
122
32
|
|
|
123
33
|
#### Bug Fixes
|
|
124
34
|
|
|
125
|
-
- `#
|
|
126
|
-
|
|
127
|
-
## 23.1.36 (2023-09-15)
|
|
35
|
+
- `#I514409` - Issue with "After clearing the filter Listbox item template was empty" has been resolved.
|
|
128
36
|
|
|
129
37
|
### ListBox
|
|
130
38
|
|
|
@@ -238,7 +146,7 @@
|
|
|
238
146
|
|
|
239
147
|
- `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
|
|
240
148
|
|
|
241
|
-
###
|
|
149
|
+
### DropDownTree
|
|
242
150
|
|
|
243
151
|
#### Bug Fixes
|
|
244
152
|
|
|
@@ -254,7 +162,7 @@
|
|
|
254
162
|
|
|
255
163
|
## 19.3.53 (2021-11-12)
|
|
256
164
|
|
|
257
|
-
###
|
|
165
|
+
### DropDownTree
|
|
258
166
|
|
|
259
167
|
#### Bug Fixes
|
|
260
168
|
|
|
@@ -262,7 +170,7 @@
|
|
|
262
170
|
|
|
263
171
|
## 19.3.48 (2021-11-02)
|
|
264
172
|
|
|
265
|
-
###
|
|
173
|
+
### DropDownTree
|
|
266
174
|
|
|
267
175
|
#### Bug Fixes
|
|
268
176
|
|
|
@@ -270,7 +178,7 @@
|
|
|
270
178
|
|
|
271
179
|
## 19.3.47 (2021-10-26)
|
|
272
180
|
|
|
273
|
-
###
|
|
181
|
+
### DropDownTree
|
|
274
182
|
|
|
275
183
|
#### Bug Fixes
|
|
276
184
|
|
|
@@ -278,7 +186,7 @@
|
|
|
278
186
|
|
|
279
187
|
## 19.3.46 (2021-10-19)
|
|
280
188
|
|
|
281
|
-
###
|
|
189
|
+
### DropDownTree
|
|
282
190
|
|
|
283
191
|
#### Bug Fixes
|
|
284
192
|
|
|
@@ -296,7 +204,7 @@
|
|
|
296
204
|
|
|
297
205
|
## 19.3.44 (2021-10-05)
|
|
298
206
|
|
|
299
|
-
###
|
|
207
|
+
### DropDownTree
|
|
300
208
|
|
|
301
209
|
#### New Features
|
|
302
210
|
|
|
@@ -336,7 +244,7 @@
|
|
|
336
244
|
|
|
337
245
|
- `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
|
|
338
246
|
|
|
339
|
-
###
|
|
247
|
+
### DropDownTree
|
|
340
248
|
|
|
341
249
|
#### Bug Fixes
|
|
342
250
|
|
|
@@ -350,7 +258,7 @@
|
|
|
350
258
|
|
|
351
259
|
- `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
|
|
352
260
|
|
|
353
|
-
###
|
|
261
|
+
### DropDownTree
|
|
354
262
|
|
|
355
263
|
#### Bug Fixes
|
|
356
264
|
|
|
@@ -380,7 +288,7 @@
|
|
|
380
288
|
|
|
381
289
|
- `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
|
|
382
290
|
|
|
383
|
-
###
|
|
291
|
+
### DropDownTree
|
|
384
292
|
|
|
385
293
|
#### Bug Fixes
|
|
386
294
|
|
|
@@ -439,7 +347,7 @@
|
|
|
439
347
|
|
|
440
348
|
## 19.1.54 (2021-03-30)
|
|
441
349
|
|
|
442
|
-
###
|
|
350
|
+
### DropDownTree
|
|
443
351
|
|
|
444
352
|
#### Bug Fixes
|
|
445
353
|
|
|
@@ -463,7 +371,7 @@
|
|
|
463
371
|
|
|
464
372
|
## 18.4.43 (2021-02-16)
|
|
465
373
|
|
|
466
|
-
###
|
|
374
|
+
### DropDownTree
|
|
467
375
|
|
|
468
376
|
#### Bug Fixes
|
|
469
377
|
|
|
@@ -550,7 +458,7 @@
|
|
|
550
458
|
|
|
551
459
|
## 18.3.42 (2020-10-20)
|
|
552
460
|
|
|
553
|
-
###
|
|
461
|
+
### DropDownTree
|
|
554
462
|
|
|
555
463
|
#### Bug Fixes
|
|
556
464
|
|
|
@@ -588,7 +496,7 @@
|
|
|
588
496
|
|
|
589
497
|
## 18.2.54 (2020-08-18)
|
|
590
498
|
|
|
591
|
-
###
|
|
499
|
+
### DropDownTree
|
|
592
500
|
|
|
593
501
|
#### Breaking Changes
|
|
594
502
|
|
|
@@ -608,7 +516,7 @@
|
|
|
608
516
|
|
|
609
517
|
- `#285392` - Enable / disable list items based on unique value support provided.
|
|
610
518
|
|
|
611
|
-
###
|
|
519
|
+
### DropDownTree
|
|
612
520
|
|
|
613
521
|
#### Bug Fixes
|
|
614
522
|
|
|
@@ -660,7 +568,7 @@
|
|
|
660
568
|
|
|
661
569
|
-`#273796` - Now, e-outline class is added to the filter input
|
|
662
570
|
|
|
663
|
-
###
|
|
571
|
+
### DropDownTree
|
|
664
572
|
|
|
665
573
|
#### Bug Fixes
|
|
666
574
|
|
|
@@ -682,7 +590,7 @@
|
|
|
682
590
|
|
|
683
591
|
- `#273796` - Now, filtering works properly when paste the value in the input element.
|
|
684
592
|
|
|
685
|
-
###
|
|
593
|
+
### DropDownTree
|
|
686
594
|
|
|
687
595
|
#### Bug Fixes
|
|
688
596
|
|
|
@@ -722,7 +630,7 @@
|
|
|
722
630
|
|
|
723
631
|
## 18.1.46 (2020-04-28)
|
|
724
632
|
|
|
725
|
-
###
|
|
633
|
+
### DropDownTree
|
|
726
634
|
|
|
727
635
|
#### Bug Fixes
|
|
728
636
|
|
|
@@ -752,7 +660,7 @@
|
|
|
752
660
|
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.
|
|
753
661
|
Update the system.js configuration while going with this version and above.
|
|
754
662
|
|
|
755
|
-
###
|
|
663
|
+
### DropDownTree
|
|
756
664
|
|
|
757
665
|
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
|
|
758
666
|
|