@syncfusion/ej2-dropdowns 25.1.35 → 25.1.39

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 (48) hide show
  1. package/CHANGELOG.md +48 -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 +270 -109
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +272 -111
  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 +9 -9
  13. package/src/auto-complete/auto-complete.js +45 -29
  14. package/src/combo-box/combo-box.js +1 -4
  15. package/src/common/highlight-search.js +4 -0
  16. package/src/common/interface.d.ts +1 -0
  17. package/src/common/virtual-scroll.js +5 -5
  18. package/src/drop-down-base/drop-down-base.d.ts +3 -0
  19. package/src/drop-down-base/drop-down-base.js +37 -4
  20. package/src/drop-down-list/drop-down-list.js +71 -34
  21. package/src/drop-down-tree/drop-down-tree.js +21 -9
  22. package/src/list-box/list-box-model.d.ts +13 -1
  23. package/src/list-box/list-box.d.ts +12 -0
  24. package/src/list-box/list-box.js +4 -1
  25. package/src/mention/mention.js +1 -1
  26. package/src/multi-select/checkbox-selection.d.ts +2 -0
  27. package/src/multi-select/checkbox-selection.js +8 -1
  28. package/src/multi-select/multi-select-model.d.ts +1 -1
  29. package/src/multi-select/multi-select.d.ts +1 -0
  30. package/src/multi-select/multi-select.js +75 -22
  31. package/styles/fluent-dark.css +1 -1
  32. package/styles/fluent.css +1 -1
  33. package/styles/list-box/_layout.scss +6 -2
  34. package/styles/list-box/tailwind-dark.css +0 -10
  35. package/styles/list-box/tailwind.css +0 -10
  36. package/styles/material-dark.css +9 -0
  37. package/styles/material.css +9 -0
  38. package/styles/multi-select/_fluent-definition.scss +1 -1
  39. package/styles/multi-select/_material-dark-definition.scss +11 -0
  40. package/styles/multi-select/_material-definition.scss +11 -0
  41. package/styles/multi-select/fluent-dark.css +1 -1
  42. package/styles/multi-select/fluent.css +1 -1
  43. package/styles/multi-select/material-dark.css +9 -0
  44. package/styles/multi-select/material.css +9 -0
  45. package/styles/tailwind-dark.css +0 -10
  46. package/styles/tailwind.css +0 -10
  47. package/.eslintrc.json +0 -260
  48. package/tslint.json +0 -111
package/CHANGELOG.md CHANGED
@@ -2,6 +2,54 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### ListBox
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I565976` - Issue with "The getSortedList and getDataList method datasource order is not proper while using addItems, removeItem method and change their position using drag and drop" has been resolved.
10
+
11
+ ### DropDownTree
12
+
13
+ #### Bug Fixes
14
+
15
+ - `#I574653` - The issue aria-label attribute is not added to the input element in the Dropdown Tree component has been resolved.
16
+
17
+ - `#I572604` - An issue with "facing a console error when clicking a button inside the footer template in the Dropdown Tree component" has been resolved.
18
+
19
+ ## 25.1.37 (2024-03-26)
20
+
21
+ ### Mention
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#FB51909` - Fixed an issue where filtering was not working properly when allow space was set to true.
26
+
27
+ ### ComboBox
28
+
29
+ #### Bug Fixes
30
+
31
+ - `#I567781` - Fixed issue with Request being sent on initial loading when binding remote data and using the allowFiltering property.
32
+
33
+ ### DropDownTree
34
+
35
+ #### Bug Fixes
36
+
37
+ - `#I569983` - Issue with "trim leading or trailing white-space when filtering in the Dropdown Tree" has been resolved.
38
+
39
+ ### MultiSelect
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#I567835` - Fixed XSS issue related to the highlight search feature when setting the filter query parameter without a value.
44
+
45
+ - `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
46
+
47
+ - `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
48
+
49
+ - `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
50
+
51
+ ## 25.1.35 (2024-03-15)
52
+
5
53
  ### ComboBox
6
54
 
7
55
  #### Bug Fixes