@syncfusion/ej2-dropdowns 23.2.6 → 23.2.7
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 +24 -0
- 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 +27 -8
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +28 -8
- 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 +6 -6
- package/src/auto-complete/auto-complete.js +4 -0
- package/src/drop-down-list/drop-down-list.js +21 -7
- package/src/drop-down-tree/drop-down-tree.js +2 -0
- package/src/multi-select/multi-select.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,36 @@
|
|
|
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
|
+
|
|
5
17
|
### MultiSelect
|
|
6
18
|
|
|
7
19
|
#### Bug Fixes
|
|
8
20
|
|
|
9
21
|
- `#I518299` - Fixed console error that occurred when adding an item using the addItem method.
|
|
10
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
|
+
|
|
11
35
|
### Mention
|
|
12
36
|
|
|
13
37
|
#### Bug Fixes
|