@syncfusion/ej2-dropdowns 25.2.3 → 25.2.5
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 +44 -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 +236 -138
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +246 -147
- 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/drop-down-base/drop-down-base.d.ts +8 -3
- package/src/drop-down-base/drop-down-base.js +40 -18
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +33 -10
- package/src/drop-down-tree/drop-down-tree.js +10 -6
- package/src/multi-select/float-label.js +1 -0
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +162 -113
- package/styles/material3-dark.css +10 -7
- package/styles/material3.css +10 -7
- package/styles/multi-select/_layout.scss +2 -2
- package/styles/multi-select/icons/_material3.scss +8 -5
- package/styles/multi-select/material3-dark.css +10 -7
- package/styles/multi-select/material3.css +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,50 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### DropDownTree
|
|
6
|
+
|
|
7
|
+
- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
|
|
8
|
+
|
|
9
|
+
### MultiSelect
|
|
10
|
+
|
|
11
|
+
#### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- `#I188132` - Fixed an issue where the 'for' attribute was not being added to the label element of MultiSelect.
|
|
14
|
+
|
|
15
|
+
### DropDownList
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#I583651` - Fixed the issue with the header remaining fixed on the page after scrolling while using dropdown with grouping on a scrollable page.
|
|
20
|
+
|
|
21
|
+
- `#I583092` - Fixed an issue where the dropdownlist did not retrieve the proper index when dynamically updating the datasource with an index.
|
|
22
|
+
|
|
23
|
+
## 25.2.4 (2024-05-14)
|
|
24
|
+
|
|
25
|
+
### MultiSelect
|
|
26
|
+
|
|
27
|
+
#### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- `#I583683` - Resolved issue with allow object binding property causing errors when binding fields as integers
|
|
30
|
+
|
|
31
|
+
### DropDownTree
|
|
32
|
+
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- `#I585791` - Resolved the SelectAll checkbox uncheck issue after closing and opening the Dropdown Tree component.
|
|
36
|
+
|
|
37
|
+
### DropDownList
|
|
38
|
+
|
|
39
|
+
#### Bug Fixes
|
|
40
|
+
|
|
41
|
+
- `#I580648` - Issue with "The dropdownlist not retrieving the proper index when grouping with allow filtering" has been resolved.
|
|
42
|
+
|
|
43
|
+
- `#I581080` - Fixed the issue with the dropdownlist index value not updating in component instances.
|
|
44
|
+
|
|
45
|
+
- `#I581098` - Fixed issue where aria-controls was not maintained when popup was in closed state.
|
|
46
|
+
|
|
47
|
+
## 25.2.3 (2024-05-08)
|
|
48
|
+
|
|
5
49
|
### ListBox
|
|
6
50
|
|
|
7
51
|
#### Bug Fixes
|