@syncfusion/ej2-dropdowns 20.2.40 → 20.2.45
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.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +96 -76
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +113 -93
- 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/auto-complete/auto-complete-model.d.ts +1 -1
- package/src/auto-complete/auto-complete.d.ts +4 -3
- package/src/auto-complete/auto-complete.js +53 -29
- package/src/combo-box/combo-box.d.ts +2 -2
- package/src/combo-box/combo-box.js +3 -3
- package/src/drop-down-base/drop-down-base.d.ts +3 -3
- package/src/drop-down-base/drop-down-base.js +8 -8
- package/src/drop-down-list/drop-down-list.d.ts +6 -5
- package/src/drop-down-list/drop-down-list.js +35 -37
- package/src/list-box/list-box.d.ts +1 -1
- package/src/list-box/list-box.js +5 -6
- package/src/multi-select/multi-select.d.ts +1 -1
- package/src/multi-select/multi-select.js +10 -11
- package/styles/multi-select/_layout.scss +4 -0
- package/styles/multi-select/tailwind-dark.css +2 -0
- package/styles/multi-select/tailwind.css +2 -0
- package/styles/tailwind-dark.css +2 -0
- package/styles/tailwind.css +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,42 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 20.2.44 (2022-08-16)
|
|
6
|
+
|
|
7
|
+
### MultiSelect
|
|
8
|
+
|
|
9
|
+
#### New Features
|
|
10
|
+
|
|
11
|
+
- Provided event details in open and close event arguments in the multiselect component.
|
|
12
|
+
|
|
13
|
+
### AutoComplete
|
|
14
|
+
|
|
15
|
+
#### New Features
|
|
16
|
+
|
|
17
|
+
- Provided event details in open and close event arguments in the autocomplete component.
|
|
18
|
+
|
|
19
|
+
### ComboBox
|
|
20
|
+
|
|
21
|
+
#### New Features
|
|
22
|
+
|
|
23
|
+
- Provided event details in open and close event arguments in the combobox component.
|
|
24
|
+
|
|
25
|
+
### DropDownList
|
|
26
|
+
|
|
27
|
+
#### New Features
|
|
28
|
+
|
|
29
|
+
- Provided event details in open and close event arguments in the dropdownlist component.
|
|
30
|
+
|
|
31
|
+
## 20.2.43 (2022-08-08)
|
|
32
|
+
|
|
33
|
+
### ListBox
|
|
34
|
+
|
|
35
|
+
#### Bug Fixes
|
|
36
|
+
|
|
37
|
+
- `#I384240` - Issue with "`RemoveItems` not working properly after adding items with specific index" has been resolved.
|
|
38
|
+
|
|
39
|
+
## 20.2.40 (2022-07-26)
|
|
40
|
+
|
|
5
41
|
### MultiSelect
|
|
6
42
|
|
|
7
43
|
#### Bug Fixes
|