@syncfusion/ej2-dropdowns 25.1.37 → 25.1.40
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 +52 -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 +302 -125
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +307 -127
- 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 +45 -29
- package/src/combo-box/combo-box.js +2 -5
- package/src/common/highlight-search.js +4 -0
- package/src/common/interface.d.ts +1 -0
- package/src/common/virtual-scroll.js +5 -5
- package/src/drop-down-base/drop-down-base.d.ts +3 -0
- package/src/drop-down-base/drop-down-base.js +37 -4
- package/src/drop-down-list/drop-down-list.js +71 -34
- package/src/drop-down-tree/drop-down-tree.js +21 -9
- package/src/list-box/list-box-model.d.ts +13 -1
- package/src/list-box/list-box.d.ts +12 -0
- package/src/list-box/list-box.js +56 -17
- package/src/mention/mention.js +1 -1
- package/src/multi-select/multi-select.js +64 -21
- package/styles/list-box/_layout.scss +6 -2
- package/styles/list-box/tailwind-dark.css +0 -10
- package/styles/list-box/tailwind.css +0 -10
- package/styles/tailwind-dark.css +0 -10
- package/styles/tailwind.css +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,62 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ListBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I565976` - Issue with "The getSortedList data not update correctly while removeItem method after drag and drop action in listbox" has been resolved.
|
|
10
|
+
|
|
11
|
+
## 25.1.39 (2024-04-09)
|
|
12
|
+
|
|
13
|
+
### AutoComplete
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#I556993` - Resolved the issue in Autocomplete where the highlight selection was not removed after selecting a value from the dropdown when autofill was enabled.
|
|
18
|
+
|
|
19
|
+
### ListBox
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I566450` - Issue with "When clicking moveAllTo toolbar, the disabled item is also moved to the listbox" has been resolved.
|
|
24
|
+
- `#I575330` - Issue with "Script error thrown in listbox while drag and drop hover on textbox element" has been resolved.
|
|
25
|
+
- `#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.
|
|
26
|
+
|
|
27
|
+
### DropDownTree
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#I574653` - The issue aria-label attribute is not added to the input element in the Dropdown Tree component has been resolved.
|
|
32
|
+
|
|
33
|
+
- `#I572604` - An issue with "facing a console error when clicking a button inside the footer template in the Dropdown Tree component" has been resolved.
|
|
34
|
+
|
|
35
|
+
## 25.1.37 (2024-03-26)
|
|
36
|
+
|
|
37
|
+
### Mention
|
|
38
|
+
|
|
39
|
+
#### Bug Fixes
|
|
40
|
+
|
|
41
|
+
- `#FB51909` - Fixed an issue where filtering was not working properly when allow space was set to true.
|
|
42
|
+
|
|
43
|
+
### ComboBox
|
|
44
|
+
|
|
45
|
+
#### Bug Fixes
|
|
46
|
+
|
|
47
|
+
- `#I567781` - Fixed issue with Request being sent on initial loading when binding remote data and using the allowFiltering property.
|
|
48
|
+
|
|
49
|
+
### DropDownTree
|
|
50
|
+
|
|
51
|
+
#### Bug Fixes
|
|
52
|
+
|
|
53
|
+
- `#I569983` - Issue with "trim leading or trailing white-space when filtering in the Dropdown Tree" has been resolved.
|
|
54
|
+
|
|
5
55
|
### MultiSelect
|
|
6
56
|
|
|
7
57
|
#### Bug Fixes
|
|
8
58
|
|
|
59
|
+
- `#I567835` - Fixed XSS issue related to the highlight search feature when setting the filter query parameter without a value.
|
|
60
|
+
|
|
9
61
|
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
|
|
10
62
|
|
|
11
63
|
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
|