@syncfusion/ej2-dropdowns 22.2.5 → 22.2.9
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 +30 -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 +66 -64
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +82 -80
- 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 +10 -10
- package/src/combo-box/combo-box.js +2 -1
- package/src/drop-down-base/drop-down-base.d.ts +1 -0
- package/src/drop-down-base/drop-down-base.js +54 -47
- package/src/drop-down-list/drop-down-list.js +24 -23
- package/src/multi-select/multi-select.js +2 -9
- package/.eslintrc.json +0 -260
- package/tslint.json +0 -111
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ComboBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#483288` - Fixed a script error that occurred when opening the combobox popup in the Internet Explorer browser.
|
|
10
|
+
|
|
11
|
+
### DropDown List
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I477135` - Fixed a memory leak issue in the Dropdownlist Component.
|
|
16
|
+
|
|
17
|
+
- `#I486973` - Fixed an issue where the last selected item in the DropDownList would be retained in the list of items when the data source was changed.
|
|
18
|
+
|
|
19
|
+
## 22.2.8 (2023-08-08)
|
|
20
|
+
|
|
21
|
+
### DropDown List
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- `#I474541` - Fixed an issue where the position of the popup was incorrect when enabling RTL mode.
|
|
26
|
+
|
|
27
|
+
### ListBox
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#I485947` - Issue with "Script error thrown While Drag and Drop in dual ListBox with filtering option in blazor" has been resolved.
|
|
32
|
+
|
|
33
|
+
## 22.2.5 (2023-07-27)
|
|
34
|
+
|
|
5
35
|
### Dropdown Tree
|
|
6
36
|
|
|
7
37
|
#### Bug Fixes
|