@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.
Files changed (55) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist/ej2-dropdowns.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js +2 -2
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +131 -38
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +136 -38
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +2 -2
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +10 -10
  13. package/src/drop-down-base/drop-down-base.js +26 -20
  14. package/src/drop-down-list/drop-down-list.d.ts +1 -0
  15. package/src/drop-down-list/drop-down-list.js +9 -2
  16. package/src/drop-down-tree/drop-down-tree.d.ts +3 -1
  17. package/src/drop-down-tree/drop-down-tree.js +76 -13
  18. package/src/list-box/list-box.js +13 -0
  19. package/src/mention/mention.js +8 -1
  20. package/src/multi-select/multi-select.js +4 -2
  21. package/styles/bootstrap-dark.css +5 -0
  22. package/styles/bootstrap.css +5 -0
  23. package/styles/bootstrap4.css +5 -0
  24. package/styles/bootstrap5-dark.css +5 -0
  25. package/styles/bootstrap5.css +5 -0
  26. package/styles/drop-down-list/_layout.scss +5 -0
  27. package/styles/drop-down-list/bootstrap-dark.css +5 -0
  28. package/styles/drop-down-list/bootstrap.css +5 -0
  29. package/styles/drop-down-list/bootstrap4.css +5 -0
  30. package/styles/drop-down-list/bootstrap5-dark.css +5 -0
  31. package/styles/drop-down-list/bootstrap5.css +5 -0
  32. package/styles/drop-down-list/fabric-dark.css +5 -0
  33. package/styles/drop-down-list/fabric.css +5 -0
  34. package/styles/drop-down-list/fluent-dark.css +5 -0
  35. package/styles/drop-down-list/fluent.css +5 -0
  36. package/styles/drop-down-list/highcontrast-light.css +5 -0
  37. package/styles/drop-down-list/highcontrast.css +5 -0
  38. package/styles/drop-down-list/material-dark.css +5 -0
  39. package/styles/drop-down-list/material.css +5 -0
  40. package/styles/drop-down-list/material3-dark.css +5 -0
  41. package/styles/drop-down-list/material3.css +5 -0
  42. package/styles/drop-down-list/tailwind-dark.css +5 -0
  43. package/styles/drop-down-list/tailwind.css +5 -0
  44. package/styles/fabric-dark.css +5 -0
  45. package/styles/fabric.css +5 -0
  46. package/styles/fluent-dark.css +5 -0
  47. package/styles/fluent.css +5 -0
  48. package/styles/highcontrast-light.css +5 -0
  49. package/styles/highcontrast.css +5 -0
  50. package/styles/material-dark.css +5 -0
  51. package/styles/material.css +5 -0
  52. package/styles/material3-dark.css +5 -0
  53. package/styles/material3.css +5 -0
  54. package/styles/tailwind-dark.css +5 -0
  55. 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