@syncfusion/ej2-dropdowns 23.1.41 → 23.1.43
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 +29 -2
- 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 +90 -14
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +93 -17
- 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.d.ts +7 -0
- package/src/drop-down-base/drop-down-base.js +17 -0
- package/src/drop-down-list/drop-down-list.js +35 -5
- package/src/drop-down-tree/drop-down-tree.js +3 -3
- package/src/mention/mention.d.ts +1 -0
- package/src/mention/mention.js +38 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ComboBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I509217` - Resolved the issue where an empty space was created after clearing the values from the comboBox.
|
|
10
|
+
|
|
11
|
+
### Mention
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#F182215` - Fixed "In Android, unable to remove a selected value from Mention using backspace key and also keyboard hides".
|
|
16
|
+
|
|
17
|
+
### DropDownTree
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#I508339` - The persistence issue during page navigation has been resolved.
|
|
22
|
+
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
23
|
+
|
|
24
|
+
## 23.1.42 (2023-10-24)
|
|
25
|
+
|
|
26
|
+
### Mention
|
|
27
|
+
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- `#I506552` - Resolved issue with "Full popup is not visible when we open it at the edge of the screen".
|
|
31
|
+
|
|
32
|
+
## 23.1.41 (2023-10-17)
|
|
33
|
+
|
|
5
34
|
### MultiSelect
|
|
6
35
|
|
|
7
36
|
#### Bug fixes
|
|
@@ -13,14 +42,12 @@
|
|
|
13
42
|
#### Bug Fixes
|
|
14
43
|
|
|
15
44
|
- `#I498409` - Fixed an issue where the preselected `value` was getting cleared when updating the data source.
|
|
16
|
-
|
|
17
45
|
- `#I500431` - Fixed issue where the preselected `value` through `index` property was not updated when updating the data source.
|
|
18
46
|
|
|
19
47
|
### DropDownTree
|
|
20
48
|
|
|
21
49
|
#### Bug Fixes
|
|
22
50
|
|
|
23
|
-
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
24
51
|
- `#F184672` - Issue with the `checkAll` and `uncheckAll` status not updated properly has been resolved.
|
|
25
52
|
|
|
26
53
|
## 23.1.38 (2023-09-26)
|