@syncfusion/ej2-dropdowns 21.2.6 → 21.2.10

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 (52) hide show
  1. package/CHANGELOG.md +47 -3
  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 +62 -29
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +62 -29
  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 +11 -11
  13. package/src/drop-down-base/drop-down-base.js +3 -0
  14. package/src/drop-down-list/drop-down-list.d.ts +0 -1
  15. package/src/drop-down-list/drop-down-list.js +9 -14
  16. package/src/list-box/list-box.d.ts +1 -0
  17. package/src/list-box/list-box.js +38 -2
  18. package/src/mention/mention.js +1 -1
  19. package/src/multi-select/multi-select-model.d.ts +1 -1
  20. package/src/multi-select/multi-select.js +11 -12
  21. package/styles/bootstrap-dark.css +207 -99
  22. package/styles/bootstrap.css +209 -100
  23. package/styles/bootstrap4.css +209 -100
  24. package/styles/bootstrap5-dark.css +207 -99
  25. package/styles/bootstrap5.css +207 -99
  26. package/styles/fabric-dark.css +207 -99
  27. package/styles/fabric.css +209 -100
  28. package/styles/fluent-dark.css +209 -100
  29. package/styles/fluent.css +209 -100
  30. package/styles/highcontrast-light.css +207 -99
  31. package/styles/highcontrast.css +209 -100
  32. package/styles/list-box/_layout.scss +8 -2
  33. package/styles/list-box/_theme.scss +2 -1
  34. package/styles/list-box/bootstrap-dark.css +207 -99
  35. package/styles/list-box/bootstrap.css +209 -100
  36. package/styles/list-box/bootstrap4.css +209 -100
  37. package/styles/list-box/bootstrap5-dark.css +207 -99
  38. package/styles/list-box/bootstrap5.css +207 -99
  39. package/styles/list-box/fabric-dark.css +207 -99
  40. package/styles/list-box/fabric.css +209 -100
  41. package/styles/list-box/fluent-dark.css +209 -100
  42. package/styles/list-box/fluent.css +209 -100
  43. package/styles/list-box/highcontrast-light.css +207 -99
  44. package/styles/list-box/highcontrast.css +209 -100
  45. package/styles/list-box/material-dark.css +207 -99
  46. package/styles/list-box/material.css +209 -100
  47. package/styles/list-box/tailwind-dark.css +209 -100
  48. package/styles/list-box/tailwind.css +209 -100
  49. package/styles/material-dark.css +207 -99
  50. package/styles/material.css +209 -100
  51. package/styles/tailwind-dark.css +209 -100
  52. package/styles/tailwind.css +209 -100
package/CHANGELOG.md CHANGED
@@ -2,15 +2,51 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
5
+ ### ListBox
6
6
 
7
- ## 21.2.5 (2023-05-16)
7
+ #### Bug Fixes
8
+
9
+ - `#I467539` - Issue with "AddItems method not working when we use itemTemplate(element type) in listbox" has been resolved.
10
+
11
+ ### MultiSelect
12
+
13
+ #### Bug Fixes
14
+
15
+ - `#I467953` - Issue with "Query construct incorrectly when preselect the value second time beyond the data source value" has been resolved.
16
+
17
+ ### DropDownList
18
+
19
+ #### Bug Fixes
20
+
21
+ - `I469452` - Issue with "A console error is thrown when the datasource value field has a null value in the dropdown list" has been resolved.
8
22
 
9
23
  ### ListBox
10
24
 
11
25
  #### Bug Fixes
12
26
 
13
- - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
27
+ - `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
28
+
29
+ ## 21.2.8 (2023-05-30)
30
+
31
+ ### ListBox
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
36
+
37
+ ### AutoComplete
38
+
39
+ #### Bug Fixes
40
+
41
+ - `#I460876` - Issue with "The header and footer template are not working" has been resolved.
42
+
43
+ ## 21.2.6 (2023-05-23)
44
+
45
+ ### MultiSelect
46
+
47
+ #### Bug Fixes
48
+
49
+ - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
14
50
 
15
51
  ### DropDownList
16
52
 
@@ -18,6 +54,14 @@
18
54
 
19
55
  - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
20
56
 
57
+ ## 21.2.5 (2023-05-16)
58
+
59
+ ### ListBox
60
+
61
+ #### Bug Fixes
62
+
63
+ - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
64
+
21
65
  ### ComboBox
22
66
 
23
67
  #### Bug Fixes