@syncfusion/ej2-dropdowns 19.4.48 → 19.4.54
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 +20 -0
- package/README.md +1 -1
- 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 +82 -35
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +160 -107
- 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 +11 -11
- package/src/combo-box/combo-box.js +4 -1
- package/src/drop-down-base/drop-down-base.js +18 -6
- package/src/drop-down-list/drop-down-list.js +106 -71
- package/src/drop-down-tree/drop-down-tree.js +6 -14
- package/src/list-box/list-box.js +4 -3
- package/src/multi-select/multi-select.js +19 -9
- package/styles/bootstrap-dark.css +10 -1
- package/styles/bootstrap.css +10 -1
- package/styles/bootstrap4.css +10 -1
- package/styles/bootstrap5-dark.css +10 -1
- package/styles/bootstrap5.css +10 -1
- package/styles/fabric-dark.css +10 -1
- package/styles/fabric.css +10 -1
- package/styles/highcontrast-light.css +10 -1
- package/styles/highcontrast.css +10 -1
- package/styles/material-dark.css +10 -1
- package/styles/material.css +10 -1
- package/styles/multi-select/_layout.scss +10 -1
- package/styles/multi-select/bootstrap-dark.css +10 -1
- package/styles/multi-select/bootstrap.css +10 -1
- package/styles/multi-select/bootstrap4.css +10 -1
- package/styles/multi-select/bootstrap5-dark.css +10 -1
- package/styles/multi-select/bootstrap5.css +10 -1
- package/styles/multi-select/fabric-dark.css +10 -1
- package/styles/multi-select/fabric.css +10 -1
- package/styles/multi-select/highcontrast-light.css +10 -1
- package/styles/multi-select/highcontrast.css +10 -1
- package/styles/multi-select/material-dark.css +10 -1
- package/styles/multi-select/material.css +10 -1
- package/styles/multi-select/tailwind-dark.css +10 -1
- package/styles/multi-select/tailwind.css +10 -1
- package/styles/tailwind-dark.css +10 -1
- package/styles/tailwind.css +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Dropdown Tree
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I364762` - The issue with "Getting CSP error even though the template is not used in Dropdown Tree component" has been resolved.
|
|
10
|
+
|
|
11
|
+
## 19.4.50 (2022-02-08)
|
|
12
|
+
|
|
13
|
+
### ListBox
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#I330291` - Issue with Duplicate items not removed properly using remove items method has been resolved.
|
|
18
|
+
|
|
19
|
+
### DropDownList
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I357666` - Issue with "value is not updated dynamically when its not present in the popup" has been resolved.
|
|
24
|
+
|
|
5
25
|
## 19.4.42 (2022-01-11)
|
|
6
26
|
|
|
7
27
|
### MultiSelect
|
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 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|