@syncfusion/ej2-dropdowns 23.2.7 → 24.1.41
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 +19 -131
- 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 +653 -116
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +657 -119
- 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 +9 -4
- 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 +305 -41
- package/src/drop-down-tree/drop-down-tree.js +24 -20
- package/src/list-box/list-box.js +8 -1
- package/src/mention/mention.js +5 -1
- package/src/multi-select/checkbox-selection.js +4 -1
- package/src/multi-select/multi-select.js +4 -2
- 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/fluent-dark.css +2 -0
- package/styles/fluent.css +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,43 +2,11 @@
|
|
|
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
5
|
### DropDownTree
|
|
12
6
|
|
|
13
7
|
#### Bug Fixes
|
|
14
8
|
|
|
15
|
-
- `#
|
|
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)
|
|
9
|
+
- `#I522936` - The issue with the htmlAttributes field class value in the Dropdown Tree component has been resolved.
|
|
42
10
|
|
|
43
11
|
### ListBox
|
|
44
12
|
|
|
@@ -50,86 +18,6 @@
|
|
|
50
18
|
|
|
51
19
|
#### Bug Fixes
|
|
52
20
|
|
|
53
|
-
- `#I473804` - Provided smooth scrolling to drag and drop support for the ListBox component.
|
|
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.
|
|
68
|
-
|
|
69
|
-
## 23.1.43 (2023-10-31)
|
|
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
|
|
84
|
-
|
|
85
|
-
#### Bug Fixes
|
|
86
|
-
|
|
87
|
-
- `#I508339` - The persistence issue during page navigation has been resolved.
|
|
88
|
-
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
89
|
-
|
|
90
|
-
## 23.1.42 (2023-10-24)
|
|
91
|
-
|
|
92
|
-
### Mention
|
|
93
|
-
|
|
94
|
-
#### Bug Fixes
|
|
95
|
-
|
|
96
|
-
- `#I506552` - Resolved issue with "Full popup is not visible when we open it at the edge of the screen".
|
|
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
|
|
109
|
-
|
|
110
|
-
- `#I498409` - Fixed an issue where the preselected `value` was getting cleared when updating the data source.
|
|
111
|
-
- `#I500431` - Fixed issue where the preselected `value` through `index` property was not updated when updating the data source.
|
|
112
|
-
|
|
113
|
-
### DropDownTree
|
|
114
|
-
|
|
115
|
-
#### Bug Fixes
|
|
116
|
-
|
|
117
|
-
- `#F184672` - Issue with the `checkAll` and `uncheckAll` status not updated properly has been resolved.
|
|
118
|
-
|
|
119
|
-
## 23.1.38 (2023-09-26)
|
|
120
|
-
|
|
121
|
-
### ListBox
|
|
122
|
-
|
|
123
|
-
#### Bug Fixes
|
|
124
|
-
|
|
125
|
-
- `#I493841` - Issue with "Scrollbar in ListBox while using inside a splitter" has been resolved.
|
|
126
|
-
|
|
127
|
-
## 23.1.36 (2023-09-15)
|
|
128
|
-
|
|
129
|
-
### ListBox
|
|
130
|
-
|
|
131
|
-
#### Bug Fixes
|
|
132
|
-
|
|
133
21
|
- `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form" has been resolved.
|
|
134
22
|
|
|
135
23
|
### MultiSelect
|
|
@@ -238,7 +126,7 @@
|
|
|
238
126
|
|
|
239
127
|
- `#I343860` - Issue with "list items are not read by the NVDA screen reader" has been resolved.
|
|
240
128
|
|
|
241
|
-
###
|
|
129
|
+
### DropDownTree
|
|
242
130
|
|
|
243
131
|
#### Bug Fixes
|
|
244
132
|
|
|
@@ -254,7 +142,7 @@
|
|
|
254
142
|
|
|
255
143
|
## 19.3.53 (2021-11-12)
|
|
256
144
|
|
|
257
|
-
###
|
|
145
|
+
### DropDownTree
|
|
258
146
|
|
|
259
147
|
#### Bug Fixes
|
|
260
148
|
|
|
@@ -262,7 +150,7 @@
|
|
|
262
150
|
|
|
263
151
|
## 19.3.48 (2021-11-02)
|
|
264
152
|
|
|
265
|
-
###
|
|
153
|
+
### DropDownTree
|
|
266
154
|
|
|
267
155
|
#### Bug Fixes
|
|
268
156
|
|
|
@@ -270,7 +158,7 @@
|
|
|
270
158
|
|
|
271
159
|
## 19.3.47 (2021-10-26)
|
|
272
160
|
|
|
273
|
-
###
|
|
161
|
+
### DropDownTree
|
|
274
162
|
|
|
275
163
|
#### Bug Fixes
|
|
276
164
|
|
|
@@ -278,7 +166,7 @@
|
|
|
278
166
|
|
|
279
167
|
## 19.3.46 (2021-10-19)
|
|
280
168
|
|
|
281
|
-
###
|
|
169
|
+
### DropDownTree
|
|
282
170
|
|
|
283
171
|
#### Bug Fixes
|
|
284
172
|
|
|
@@ -296,7 +184,7 @@
|
|
|
296
184
|
|
|
297
185
|
## 19.3.44 (2021-10-05)
|
|
298
186
|
|
|
299
|
-
###
|
|
187
|
+
### DropDownTree
|
|
300
188
|
|
|
301
189
|
#### New Features
|
|
302
190
|
|
|
@@ -336,7 +224,7 @@
|
|
|
336
224
|
|
|
337
225
|
- `I335313` - Issue with "select element is displayed while rendering the component with floating label" has been resolved.
|
|
338
226
|
|
|
339
|
-
###
|
|
227
|
+
### DropDownTree
|
|
340
228
|
|
|
341
229
|
#### Bug Fixes
|
|
342
230
|
|
|
@@ -350,7 +238,7 @@
|
|
|
350
238
|
|
|
351
239
|
- `#I336382` - The issue with getDataList not updated properly after removing the items has been fixed.
|
|
352
240
|
|
|
353
|
-
###
|
|
241
|
+
### DropDownTree
|
|
354
242
|
|
|
355
243
|
#### Bug Fixes
|
|
356
244
|
|
|
@@ -380,7 +268,7 @@
|
|
|
380
268
|
|
|
381
269
|
- `#I335674` - Issue with "filtering list item is reset to the popup while scrolling the popup item using mouse" has been resolved.
|
|
382
270
|
|
|
383
|
-
###
|
|
271
|
+
### DropDownTree
|
|
384
272
|
|
|
385
273
|
#### Bug Fixes
|
|
386
274
|
|
|
@@ -439,7 +327,7 @@
|
|
|
439
327
|
|
|
440
328
|
## 19.1.54 (2021-03-30)
|
|
441
329
|
|
|
442
|
-
###
|
|
330
|
+
### DropDownTree
|
|
443
331
|
|
|
444
332
|
#### Bug Fixes
|
|
445
333
|
|
|
@@ -463,7 +351,7 @@
|
|
|
463
351
|
|
|
464
352
|
## 18.4.43 (2021-02-16)
|
|
465
353
|
|
|
466
|
-
###
|
|
354
|
+
### DropDownTree
|
|
467
355
|
|
|
468
356
|
#### Bug Fixes
|
|
469
357
|
|
|
@@ -550,7 +438,7 @@
|
|
|
550
438
|
|
|
551
439
|
## 18.3.42 (2020-10-20)
|
|
552
440
|
|
|
553
|
-
###
|
|
441
|
+
### DropDownTree
|
|
554
442
|
|
|
555
443
|
#### Bug Fixes
|
|
556
444
|
|
|
@@ -588,7 +476,7 @@
|
|
|
588
476
|
|
|
589
477
|
## 18.2.54 (2020-08-18)
|
|
590
478
|
|
|
591
|
-
###
|
|
479
|
+
### DropDownTree
|
|
592
480
|
|
|
593
481
|
#### Breaking Changes
|
|
594
482
|
|
|
@@ -608,7 +496,7 @@
|
|
|
608
496
|
|
|
609
497
|
- `#285392` - Enable / disable list items based on unique value support provided.
|
|
610
498
|
|
|
611
|
-
###
|
|
499
|
+
### DropDownTree
|
|
612
500
|
|
|
613
501
|
#### Bug Fixes
|
|
614
502
|
|
|
@@ -660,7 +548,7 @@
|
|
|
660
548
|
|
|
661
549
|
-`#273796` - Now, e-outline class is added to the filter input
|
|
662
550
|
|
|
663
|
-
###
|
|
551
|
+
### DropDownTree
|
|
664
552
|
|
|
665
553
|
#### Bug Fixes
|
|
666
554
|
|
|
@@ -682,7 +570,7 @@
|
|
|
682
570
|
|
|
683
571
|
- `#273796` - Now, filtering works properly when paste the value in the input element.
|
|
684
572
|
|
|
685
|
-
###
|
|
573
|
+
### DropDownTree
|
|
686
574
|
|
|
687
575
|
#### Bug Fixes
|
|
688
576
|
|
|
@@ -722,7 +610,7 @@
|
|
|
722
610
|
|
|
723
611
|
## 18.1.46 (2020-04-28)
|
|
724
612
|
|
|
725
|
-
###
|
|
613
|
+
### DropDownTree
|
|
726
614
|
|
|
727
615
|
#### Bug Fixes
|
|
728
616
|
|
|
@@ -752,7 +640,7 @@
|
|
|
752
640
|
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
641
|
Update the system.js configuration while going with this version and above.
|
|
754
642
|
|
|
755
|
-
###
|
|
643
|
+
### DropDownTree
|
|
756
644
|
|
|
757
645
|
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
646
|
|