@syncfusion/ej2-dropdowns 21.1.38 → 21.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 +23 -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 +63 -20
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +65 -22
- 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/drop-down-base/drop-down-base.js +10 -1
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +5 -2
- package/src/list-box/list-box.js +26 -11
- package/src/mention/mention.js +6 -0
- package/src/multi-select/checkbox-selection.js +6 -3
- package/src/multi-select/multi-select.js +12 -5
- package/styles/material-dark.css +4 -4
- package/styles/material.css +4 -4
- package/styles/multi-select/icons/_material-dark.scss +4 -4
- package/styles/multi-select/icons/_material.scss +4 -4
- package/styles/multi-select/material-dark.css +4 -4
- package/styles/multi-select/material.css +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ListBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template in angular platform" has been resolved.
|
|
10
|
+
|
|
11
|
+
### Dropdown Tree
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I451965` - While performing filtering multiple times, the checked node state is cleared in the Dropdown Tree component has been resolved.
|
|
16
|
+
|
|
17
|
+
## 21.1.39 (2023-04-11)
|
|
18
|
+
|
|
19
|
+
### ListBox
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#F181131` - Issue with "No Record Found text disappears while hovering the drag item on list box without drop" has been resolved.
|
|
24
|
+
- `#F181311` - Issue with "Scrolling is not working while drag and drop the list box with item Template" has been resolved.
|
|
25
|
+
|
|
26
|
+
## 21.1.38 (2023-04-04)
|
|
27
|
+
|
|
5
28
|
### Dropdown Tree
|
|
6
29
|
|
|
7
30
|
#### Bug Fixes
|