@syncfusion/ej2-dropdowns 20.4.38 → 20.4.42
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 +37 -0
- package/README.md +1 -1
- 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 +40 -8
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +39 -7
- 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 +13 -12
- package/src/drop-down-base/drop-down-base.js +1 -1
- package/src/drop-down-tree/drop-down-tree.js +3 -0
- package/src/list-box/list-box-model.d.ts +6 -6
- package/src/list-box/list-box.js +11 -3
- package/src/mention/mention.js +12 -3
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Mention
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I422992` - Now, the `cssClass` property works fine in the Mention component.
|
|
10
|
+
|
|
11
|
+
### MultiSelect
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I423751` - The issue "MultiSelect height not being set properly in the tailwind theme" has been resolved.
|
|
16
|
+
|
|
17
|
+
## 20.4.40 (2022-12-28)
|
|
18
|
+
|
|
19
|
+
### Dropdown Tree
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#F178650` - Resolved the error after perform filtering in Dropdown Tree while updating data dynamically
|
|
24
|
+
|
|
25
|
+
### ListBox
|
|
26
|
+
|
|
27
|
+
#### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- `#F424252` - Issue with "Data source not update properly when we filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
30
|
+
- `#I423072` - Issue with "`actionBegin` event argument not passes the filtered item properly while filtering and clicking move All button in listbox toolbar sample" has been resolved.
|
|
31
|
+
|
|
32
|
+
## 20.4.38 (2022-12-21)
|
|
33
|
+
|
|
34
|
+
### Dropdown Tree
|
|
35
|
+
|
|
36
|
+
#### New Features
|
|
37
|
+
|
|
38
|
+
- `#I395558` - Provided enableHtmlSanitizer support for Dropdown Tree component.
|
|
39
|
+
|
|
40
|
+
- `#F169154`, `#I424048` - Provided an option to prevent the parent node selection in the Dropdown Tree component.
|
|
41
|
+
|
|
5
42
|
### ListBox
|
|
6
43
|
|
|
7
44
|
#### Bug Fixes
|
package/README.md
CHANGED
|
@@ -116,4 +116,4 @@ Check the license details [here.](https://github.com/syncfusion/ej2/blob/master/
|
|
|
116
116
|
## 8. Change log
|
|
117
117
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/dropdowns/CHANGELOG.md)
|
|
118
118
|
|
|
119
|
-
© Copyright
|
|
119
|
+
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|