@syncfusion/ej2-dropdowns 24.1.45 → 24.1.47
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 +38 -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 +131 -38
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +136 -38
- 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 +26 -20
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +9 -2
- package/src/drop-down-tree/drop-down-tree.d.ts +3 -1
- package/src/drop-down-tree/drop-down-tree.js +76 -13
- package/src/list-box/list-box.js +13 -0
- package/src/mention/mention.js +8 -1
- package/src/multi-select/multi-select.js +4 -2
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +5 -0
- package/styles/bootstrap5.css +5 -0
- package/styles/drop-down-list/_layout.scss +5 -0
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +5 -0
- package/styles/drop-down-list/bootstrap5.css +5 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +5 -0
- package/styles/drop-down-list/fluent.css +5 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/material3-dark.css +5 -0
- package/styles/drop-down-list/material3.css +5 -0
- package/styles/drop-down-list/tailwind-dark.css +5 -0
- package/styles/drop-down-list/tailwind.css +5 -0
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric.css +5 -0
- package/styles/fluent-dark.css +5 -0
- package/styles/fluent.css +5 -0
- package/styles/highcontrast-light.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/material-dark.css +5 -0
- package/styles/material.css +5 -0
- package/styles/material3-dark.css +5 -0
- package/styles/material3.css +5 -0
- package/styles/tailwind-dark.css +5 -0
- package/styles/tailwind.css +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,44 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### ListBox
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I514409` - Issue with "Filtering focus not removed in listbox while clearing and click anywhere" has been resolved.
|
|
10
|
+
|
|
11
|
+
### ComboBox
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I531844` - Fixed issue where custom value could not be added to combobox when dataSource is empty.
|
|
16
|
+
|
|
17
|
+
## 24.1.46 (2024-01-17)
|
|
18
|
+
|
|
19
|
+
### DropDownTree
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- `#I541407` - The issue with the Dropdown Tree popup not closing when the preselected value is again selected has been resolved.
|
|
24
|
+
|
|
25
|
+
### MultiSelect
|
|
26
|
+
|
|
27
|
+
#### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- `#I535771` - Fixed issue where Z-index was not being added to the popup element when initially opening the popup.
|
|
30
|
+
|
|
31
|
+
## 24.1.45 (2024-01-09)
|
|
32
|
+
|
|
33
|
+
### Mention
|
|
34
|
+
|
|
35
|
+
#### Bug Fixes
|
|
36
|
+
|
|
37
|
+
- `#I534515` - Fixed an issue where unable to add image caption in `RTE` using the Mention integration.
|
|
38
|
+
|
|
39
|
+
- `#I530749` - Now, the Change event triggers properly with the mention list in Rich Text Editor.
|
|
40
|
+
|
|
41
|
+
## 24.1.44 (2024-01-03)
|
|
42
|
+
|
|
5
43
|
### DropDownTree
|
|
6
44
|
|
|
7
45
|
#### Bug Fixes
|