@syncfusion/ej2-dropdowns 20.1.61 → 20.2.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 (95) hide show
  1. package/CHANGELOG.md +3 -77
  2. package/dist/ej2-dropdowns.umd.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-dropdowns.es2015.js +95 -96
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +58 -59
  7. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  8. package/dist/global/ej2-dropdowns.min.js +2 -2
  9. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/helpers/e2e/autocomplete.js +59 -43
  12. package/helpers/e2e/combobox.js +62 -46
  13. package/helpers/e2e/dropdownlist.js +71 -55
  14. package/helpers/e2e/index.js +11 -9
  15. package/helpers/e2e/listboxHelper.js +55 -38
  16. package/helpers/e2e/multiselect.js +104 -88
  17. package/package.json +11 -11
  18. package/src/common/incremental-search.js +1 -1
  19. package/src/drop-down-base/drop-down-base-model.d.ts +1 -1
  20. package/src/drop-down-base/drop-down-base.d.ts +5 -1
  21. package/src/drop-down-base/drop-down-base.js +3 -5
  22. package/src/drop-down-list/drop-down-list.js +8 -8
  23. package/src/drop-down-tree/drop-down-tree-model.d.ts +2 -2
  24. package/src/drop-down-tree/drop-down-tree.js +5 -5
  25. package/src/list-box/list-box.d.ts +1 -1
  26. package/src/list-box/list-box.js +13 -14
  27. package/src/multi-select/multi-select-model.d.ts +1 -1
  28. package/src/multi-select/multi-select.d.ts +2 -1
  29. package/src/multi-select/multi-select.js +28 -26
  30. package/styles/auto-complete/_fusionnew-definition.scss +2 -0
  31. package/styles/auto-complete/_material3-definition.scss +2 -0
  32. package/styles/bootstrap-dark.css +69 -11
  33. package/styles/bootstrap.css +69 -11
  34. package/styles/bootstrap4.css +69 -11
  35. package/styles/bootstrap5-dark.css +70 -12
  36. package/styles/bootstrap5.css +70 -12
  37. package/styles/combo-box/_fusionnew-definition.scss +2 -0
  38. package/styles/combo-box/_material3-definition.scss +2 -0
  39. package/styles/drop-down-base/_fusionnew-definition.scss +111 -0
  40. package/styles/drop-down-base/_material3-definition.scss +111 -0
  41. package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
  42. package/styles/drop-down-list/_material3-definition.scss +201 -0
  43. package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
  44. package/styles/drop-down-list/icons/_material3.scss +14 -0
  45. package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
  46. package/styles/drop-down-tree/_material3-definition.scss +60 -0
  47. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
  48. package/styles/drop-down-tree/icons/_material3.scss +11 -0
  49. package/styles/fabric-dark.css +69 -11
  50. package/styles/fabric.css +69 -11
  51. package/styles/fluent-dark.css +73 -15
  52. package/styles/fluent.css +70 -12
  53. package/styles/highcontrast-light.css +69 -11
  54. package/styles/highcontrast.css +69 -11
  55. package/styles/list-box/_bootstrap-dark-definition.scss +5 -1
  56. package/styles/list-box/_bootstrap-definition.scss +5 -1
  57. package/styles/list-box/_bootstrap4-definition.scss +5 -1
  58. package/styles/list-box/_bootstrap5-definition.scss +7 -2
  59. package/styles/list-box/_fabric-dark-definition.scss +5 -1
  60. package/styles/list-box/_fabric-definition.scss +5 -1
  61. package/styles/list-box/_fluent-definition.scss +7 -2
  62. package/styles/list-box/_fusionnew-definition.scss +113 -0
  63. package/styles/list-box/_highcontrast-definition.scss +5 -1
  64. package/styles/list-box/_highcontrast-light-definition.scss +5 -1
  65. package/styles/list-box/_layout.scss +45 -1
  66. package/styles/list-box/_material-dark-definition.scss +6 -2
  67. package/styles/list-box/_material-definition.scss +6 -2
  68. package/styles/list-box/_material3-definition.scss +119 -0
  69. package/styles/list-box/_tailwind-definition.scss +6 -2
  70. package/styles/list-box/_theme.scss +40 -8
  71. package/styles/list-box/bootstrap-dark.css +59 -11
  72. package/styles/list-box/bootstrap.css +69 -11
  73. package/styles/list-box/bootstrap4.css +69 -11
  74. package/styles/list-box/bootstrap5-dark.css +70 -12
  75. package/styles/list-box/bootstrap5.css +70 -12
  76. package/styles/list-box/fabric-dark.css +59 -11
  77. package/styles/list-box/fabric.css +69 -11
  78. package/styles/list-box/fluent-dark.css +73 -15
  79. package/styles/list-box/fluent.css +70 -12
  80. package/styles/list-box/highcontrast-light.css +59 -11
  81. package/styles/list-box/highcontrast.css +69 -11
  82. package/styles/list-box/icons/_fusionnew.scss +25 -0
  83. package/styles/list-box/icons/_material3.scss +25 -0
  84. package/styles/list-box/material-dark.css +60 -12
  85. package/styles/list-box/material.css +70 -12
  86. package/styles/list-box/tailwind-dark.css +70 -12
  87. package/styles/list-box/tailwind.css +70 -12
  88. package/styles/material-dark.css +70 -12
  89. package/styles/material.css +70 -12
  90. package/styles/multi-select/_fusionnew-definition.scss +219 -0
  91. package/styles/multi-select/_material3-definition.scss +219 -0
  92. package/styles/multi-select/icons/_fusionnew.scss +27 -0
  93. package/styles/multi-select/icons/_material3.scss +27 -0
  94. package/styles/tailwind-dark.css +70 -12
  95. package/styles/tailwind.css +70 -12
package/CHANGELOG.md CHANGED
@@ -2,93 +2,19 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### MultiSelect
6
-
7
- #### Bug Fixes
8
-
9
- - `#I373060` - Issue with "placeholder is not displayed properly while rendering the component with size HTML attribute" has been resolved.
10
-
11
- ## 20.1.60 (2022-06-14)
12
-
13
5
  ### ListBox
14
6
 
15
7
  #### Bug Fixes
16
8
 
17
- - `#I383114` - Issue with "Drop event argument not passes the selected item properly, while drag and drop the multiple item of listbox" has been resolved.
18
-
19
- ### ListBox
20
-
21
- #### Bug Fixes
22
-
23
- - `I377077` - Issue with "we navigate the listbox using tab key, it focus blank top area of the listbox instead of the listbox first item" has been resolved.
24
-
25
- ## 20.1.59 (2022-06-07)
26
-
27
- ### DropDownList
28
-
29
- #### Bug Fixes
30
-
31
- - "Dropdown List template sample is not working in React 18" issue has been resolved.
32
-
33
- ## 20.1.58 (2022-05-31)
34
-
35
- ### AutoComplete
36
-
37
- #### Bug Fixes
9
+ - `#I384240` - Issue with "`RemoveItems` not working properly after adding items with specific index" has been resolved.
38
10
 
39
- - `#F34768` - Issue with "change event argument `IsInteracted` returns wrong value while rendering component with disabled custom value" has been resolved
40
-
41
- ## 20.1.57 (2022-05-24)
42
-
43
- ### Dropdown Tree
44
-
45
- #### Bug Fixes
46
-
47
- - `#I374653` - The issue with "The filtering was not working properly when using a hierarchical data source for the Dropdown Tree component" has been resolved.
48
-
49
- ### DropDownList
50
-
51
- #### Bug Fixes
52
-
53
- - `I375107` - Issue with "cascading dropdown list doesn't display the updated data while binding the remote data and filtering enabled" has been resolved.
54
-
55
- ## 20.1.56 (2022-05-17)
11
+ ## 20.2.36 (2022-06-30)
56
12
 
57
13
  ### ListBox
58
14
 
59
15
  #### Bug Fixes
60
16
 
61
- - `F174682` - Issue with "Drag and Drop not working properly while using item template in listbox" has been resolved.
62
-
63
- ### AutoComplete
64
-
65
- #### Bug Fixes
66
-
67
- - `I372269` - Issue with "value is displayed instead of text while binding beyond the initial loading data values" has been resolved.
68
-
69
- ## 20.1.52 (2022-05-04)
70
-
71
- ### ListBox
72
-
73
- #### Bug Fixes
74
-
75
- - `I374083` - Issue with "Filtering did not work in the datasource empty list" has been resolved.
76
-
77
- ## 20.1.50 (2022-04-19)
78
-
79
- ### ListBox
80
-
81
- #### Bug Fixes
82
-
83
- - `I376206` - Issue with "When `MoveUp/MoveDown` Buttons retain enabled state after removing item and script error thrown" has been resolved.
84
-
85
- ### ListBox
86
-
87
- #### Bug Fixes
88
-
89
- - Issue with "Keyboard navigation correction for select the multiple items of listbox" has been resolved.
90
-
91
- ## 20.1.47 (2022-04-04)
17
+ - `#I383114` - Issue with "Drop event argument not passes the selected item properly, while drag and drop the multiple item of listbox" has been resolved.
92
18
 
93
19
  ### MultiSelect
94
20