@syncfusion/ej2-dropdowns 25.1.37 → 25.1.39
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 +36 -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 +252 -108
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +254 -110
- 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 +1 -4
- 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 +4 -1
- 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/.eslintrc.json +0 -260
- package/tslint.json +0 -111
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ListBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#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
|
+
|
|
11
|
+
### DropDownTree
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I574653` - The issue aria-label attribute is not added to the input element in the Dropdown Tree component has been resolved.
|
|
16
|
+
|
|
17
|
+
- `#I572604` - An issue with "facing a console error when clicking a button inside the footer template in the Dropdown Tree component" has been resolved.
|
|
18
|
+
|
|
19
|
+
## 25.1.37 (2024-03-26)
|
|
20
|
+
|
|
21
|
+
### Mention
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- `#FB51909` - Fixed an issue where filtering was not working properly when allow space was set to true.
|
|
26
|
+
|
|
27
|
+
### ComboBox
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#I567781` - Fixed issue with Request being sent on initial loading when binding remote data and using the allowFiltering property.
|
|
32
|
+
|
|
33
|
+
### DropDownTree
|
|
34
|
+
|
|
35
|
+
#### Bug Fixes
|
|
36
|
+
|
|
37
|
+
- `#I569983` - Issue with "trim leading or trailing white-space when filtering in the Dropdown Tree" has been resolved.
|
|
38
|
+
|
|
5
39
|
### MultiSelect
|
|
6
40
|
|
|
7
41
|
#### Bug Fixes
|
|
8
42
|
|
|
43
|
+
- `#I567835` - Fixed XSS issue related to the highlight search feature when setting the filter query parameter without a value.
|
|
44
|
+
|
|
9
45
|
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
|
|
10
46
|
|
|
11
47
|
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
|