@syncfusion/ej2-dropdowns 25.1.39 → 25.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 +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 +324 -179
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +327 -179
- 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 +9 -9
- package/src/auto-complete/auto-complete.js +2 -10
- package/src/combo-box/combo-box.js +2 -2
- package/src/common/interface.d.ts +2 -0
- package/src/common/virtual-scroll.js +13 -4
- package/src/drop-down-base/drop-down-base.d.ts +3 -0
- package/src/drop-down-base/drop-down-base.js +65 -41
- package/src/drop-down-list/drop-down-list.d.ts +1 -1
- package/src/drop-down-list/drop-down-list.js +37 -27
- package/src/list-box/list-box.js +51 -20
- package/src/multi-select/multi-select.d.ts +3 -1
- package/src/multi-select/multi-select.js +156 -68
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### MultiSelect
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I571383` - Resolved issue where removing a long text tag in a multi-select drop down was also removing a short text tag.
|
|
10
|
+
|
|
11
|
+
### ListBox
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I566450` - Issue with "The disabled itemTemplate item is not move properly for listbox toolbar action" has been resolved.
|
|
16
|
+
|
|
17
|
+
## 25.1.40 (2024-04-16)
|
|
18
|
+
|
|
19
|
+
### ListBox
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I565976` - Issue with "The getSortedList data not update correctly while removeItem method after drag and drop action in listbox" has been resolved.
|
|
24
|
+
|
|
25
|
+
## 25.1.39 (2024-04-09)
|
|
26
|
+
|
|
27
|
+
### AutoComplete
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#I556993` - Resolved the issue in Autocomplete where the highlight selection was not removed after selecting a value from the dropdown when autofill was enabled.
|
|
32
|
+
|
|
5
33
|
### ListBox
|
|
6
34
|
|
|
7
35
|
#### Bug Fixes
|
|
8
36
|
|
|
37
|
+
- `#I566450` - Issue with "When clicking moveAllTo toolbar, the disabled item is also moved to the listbox" has been resolved.
|
|
38
|
+
- `#I575330` - Issue with "Script error thrown in listbox while drag and drop hover on textbox element" has been resolved.
|
|
9
39
|
- `#I565976` - Issue with "The getSortedList and getDataList method datasource order is not proper while using addItems, removeItem method and change their position using drag and drop" has been resolved.
|
|
10
40
|
|
|
11
41
|
### DropDownTree
|