@syncfusion/ej2-dropdowns 21.2.8 → 22.1.34

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 (162) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +35 -6
  3. package/README.md +201 -103
  4. package/dist/ej2-dropdowns.min.js +2 -2
  5. package/dist/ej2-dropdowns.umd.min.js +2 -2
  6. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es2015.js +158 -41
  8. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  9. package/dist/es6/ej2-dropdowns.es5.js +158 -41
  10. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  11. package/dist/global/ej2-dropdowns.min.js +2 -2
  12. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +11 -11
  15. package/src/auto-complete/auto-complete-model.d.ts +2 -1
  16. package/src/auto-complete/auto-complete.d.ts +2 -1
  17. package/src/auto-complete/auto-complete.js +1 -1
  18. package/src/combo-box/combo-box-model.d.ts +6 -3
  19. package/src/combo-box/combo-box.d.ts +6 -3
  20. package/src/drop-down-base/drop-down-base-model.d.ts +8 -4
  21. package/src/drop-down-base/drop-down-base.d.ts +8 -4
  22. package/src/drop-down-base/drop-down-base.js +21 -7
  23. package/src/drop-down-list/drop-down-list-model.d.ts +6 -3
  24. package/src/drop-down-list/drop-down-list.d.ts +6 -3
  25. package/src/drop-down-list/drop-down-list.js +23 -14
  26. package/src/drop-down-tree/drop-down-tree-model.d.ts +21 -6
  27. package/src/drop-down-tree/drop-down-tree.d.ts +55 -62
  28. package/src/drop-down-tree/drop-down-tree.js +1 -1
  29. package/src/list-box/list-box.d.ts +15 -0
  30. package/src/list-box/list-box.js +53 -3
  31. package/src/mention/mention-model.d.ts +4 -2
  32. package/src/mention/mention.d.ts +4 -2
  33. package/src/multi-select/multi-select-model.d.ts +15 -8
  34. package/src/multi-select/multi-select.d.ts +15 -7
  35. package/src/multi-select/multi-select.js +59 -15
  36. package/styles/auto-complete/_material3-dark-definition.scss +1 -0
  37. package/styles/auto-complete/_material3-definition.scss +2 -0
  38. package/styles/auto-complete/material3-dark.css +198 -0
  39. package/styles/auto-complete/material3-dark.scss +5 -0
  40. package/styles/auto-complete/material3.css +254 -0
  41. package/styles/auto-complete/material3.scss +5 -0
  42. package/styles/bootstrap-dark.css +212 -100
  43. package/styles/bootstrap.css +214 -101
  44. package/styles/bootstrap4.css +214 -101
  45. package/styles/bootstrap5-dark.css +212 -100
  46. package/styles/bootstrap5.css +212 -100
  47. package/styles/combo-box/_material3-dark-definition.scss +1 -0
  48. package/styles/combo-box/_material3-definition.scss +2 -0
  49. package/styles/combo-box/material3-dark.css +198 -0
  50. package/styles/combo-box/material3-dark.scss +5 -0
  51. package/styles/combo-box/material3.css +254 -0
  52. package/styles/combo-box/material3.scss +5 -0
  53. package/styles/drop-down-base/_layout.scss +3 -1
  54. package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
  55. package/styles/drop-down-base/_material3-definition.scss +87 -0
  56. package/styles/drop-down-base/_theme.scss +10 -0
  57. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  58. package/styles/drop-down-base/bootstrap.css +4 -0
  59. package/styles/drop-down-base/bootstrap4.css +4 -0
  60. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  61. package/styles/drop-down-base/bootstrap5.css +4 -0
  62. package/styles/drop-down-base/fabric-dark.css +4 -0
  63. package/styles/drop-down-base/fabric.css +4 -0
  64. package/styles/drop-down-base/fluent-dark.css +4 -0
  65. package/styles/drop-down-base/fluent.css +4 -0
  66. package/styles/drop-down-base/highcontrast-light.css +4 -0
  67. package/styles/drop-down-base/highcontrast.css +4 -0
  68. package/styles/drop-down-base/material-dark.css +4 -0
  69. package/styles/drop-down-base/material.css +4 -0
  70. package/styles/drop-down-base/material3-dark.css +439 -0
  71. package/styles/drop-down-base/material3-dark.scss +4 -0
  72. package/styles/drop-down-base/material3.css +495 -0
  73. package/styles/drop-down-base/material3.scss +4 -0
  74. package/styles/drop-down-base/tailwind-dark.css +4 -0
  75. package/styles/drop-down-base/tailwind.css +4 -0
  76. package/styles/drop-down-list/_layout.scss +15 -1
  77. package/styles/drop-down-list/_material3-dark-definition.scss +1 -0
  78. package/styles/drop-down-list/_material3-definition.scss +180 -0
  79. package/styles/drop-down-list/icons/_material3-dark.scss +1 -0
  80. package/styles/drop-down-list/material3-dark.css +503 -0
  81. package/styles/drop-down-list/material3-dark.scss +9 -0
  82. package/styles/drop-down-list/material3.css +559 -0
  83. package/styles/drop-down-list/material3.scss +9 -0
  84. package/styles/drop-down-tree/_layout.scss +13 -7
  85. package/styles/drop-down-tree/_material3-dark-definition.scss +1 -0
  86. package/styles/drop-down-tree/_material3-definition.scss +76 -0
  87. package/styles/drop-down-tree/_theme.scss +14 -2
  88. package/styles/drop-down-tree/icons/_material3-dark.scss +1 -0
  89. package/styles/drop-down-tree/icons/_material3.scss +1 -1
  90. package/styles/drop-down-tree/material3-dark.css +466 -0
  91. package/styles/drop-down-tree/material3-dark.scss +10 -0
  92. package/styles/drop-down-tree/material3.css +522 -0
  93. package/styles/drop-down-tree/material3.scss +10 -0
  94. package/styles/fabric-dark.css +212 -100
  95. package/styles/fabric.css +214 -101
  96. package/styles/fluent-dark.css +214 -101
  97. package/styles/fluent.css +214 -101
  98. package/styles/highcontrast-light.css +212 -100
  99. package/styles/highcontrast.css +214 -101
  100. package/styles/list-box/_layout.scss +17 -3
  101. package/styles/list-box/_material3-dark-definition.scss +1 -0
  102. package/styles/list-box/_material3-definition.scss +117 -0
  103. package/styles/list-box/_theme.scss +2 -1
  104. package/styles/list-box/bootstrap-dark.css +207 -99
  105. package/styles/list-box/bootstrap.css +209 -100
  106. package/styles/list-box/bootstrap4.css +209 -100
  107. package/styles/list-box/bootstrap5-dark.css +207 -99
  108. package/styles/list-box/bootstrap5.css +207 -99
  109. package/styles/list-box/fabric-dark.css +207 -99
  110. package/styles/list-box/fabric.css +209 -100
  111. package/styles/list-box/fluent-dark.css +209 -100
  112. package/styles/list-box/fluent.css +209 -100
  113. package/styles/list-box/highcontrast-light.css +207 -99
  114. package/styles/list-box/highcontrast.css +209 -100
  115. package/styles/list-box/icons/_material3-dark.scss +1 -0
  116. package/styles/list-box/material-dark.css +207 -99
  117. package/styles/list-box/material.css +209 -100
  118. package/styles/list-box/material3-dark.css +956 -0
  119. package/styles/list-box/material3-dark.scss +6 -0
  120. package/styles/list-box/material3.css +1012 -0
  121. package/styles/list-box/material3.scss +6 -0
  122. package/styles/list-box/tailwind-dark.css +209 -100
  123. package/styles/list-box/tailwind.css +209 -100
  124. package/styles/material-dark.css +212 -100
  125. package/styles/material.css +214 -101
  126. package/styles/material3-dark.css +4664 -0
  127. package/styles/material3-dark.scss +10 -0
  128. package/styles/material3.css +4720 -0
  129. package/styles/material3.scss +10 -0
  130. package/styles/mention/_material3-dark-definition.scss +1 -0
  131. package/styles/mention/_material3-definition.scss +1 -0
  132. package/styles/mention/material3-dark.css +87 -0
  133. package/styles/mention/material3-dark.scss +7 -0
  134. package/styles/mention/material3.css +143 -0
  135. package/styles/mention/material3.scss +7 -0
  136. package/styles/multi-select/_layout.scss +160 -7
  137. package/styles/multi-select/_material3-dark-definition.scss +1 -0
  138. package/styles/multi-select/_material3-definition.scss +246 -0
  139. package/styles/multi-select/_theme.scss +6 -0
  140. package/styles/multi-select/bootstrap-dark.css +1 -1
  141. package/styles/multi-select/bootstrap.css +1 -1
  142. package/styles/multi-select/bootstrap4.css +1 -1
  143. package/styles/multi-select/bootstrap5-dark.css +1 -1
  144. package/styles/multi-select/bootstrap5.css +1 -1
  145. package/styles/multi-select/fabric-dark.css +1 -1
  146. package/styles/multi-select/fabric.css +1 -1
  147. package/styles/multi-select/fluent-dark.css +1 -1
  148. package/styles/multi-select/fluent.css +1 -1
  149. package/styles/multi-select/highcontrast-light.css +1 -1
  150. package/styles/multi-select/highcontrast.css +1 -1
  151. package/styles/multi-select/icons/_material3-dark.scss +1 -0
  152. package/styles/multi-select/icons/_material3.scss +3 -4
  153. package/styles/multi-select/material-dark.css +1 -1
  154. package/styles/multi-select/material.css +1 -1
  155. package/styles/multi-select/material3-dark.css +2547 -0
  156. package/styles/multi-select/material3-dark.scss +10 -0
  157. package/styles/multi-select/material3.css +2603 -0
  158. package/styles/multi-select/material3.scss +10 -0
  159. package/styles/multi-select/tailwind-dark.css +1 -1
  160. package/styles/multi-select/tailwind.css +1 -1
  161. package/styles/tailwind-dark.css +214 -101
  162. package/styles/tailwind.css +214 -101
package/.eslintrc.json CHANGED
@@ -37,6 +37,7 @@
37
37
  "security/detect-possible-timing-attacks":"error",
38
38
  "security/detect-pseudoRandomBytes":"error",
39
39
  "security/detect-new-buffer":"error",
40
+ "security/detect-bidi-characters":"error",
40
41
  "@typescript-eslint/no-inferrable-types": "off",
41
42
  "@typescript-eslint/ban-types": ["warn", {
42
43
  "types": {
package/CHANGELOG.md CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## 21.2.10 (2023-06-13)
6
+
7
+ ### ListBox
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#I467539` - Issue with "AddItems method not working when we use itemTemplate(element type) in listbox" has been resolved.
12
+
13
+ ### MultiSelect
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#I467953` - Issue with "Query construct incorrectly when preselect the value second time beyond the data source value" has been resolved.
18
+
19
+ ### DropDownList
20
+
21
+ #### Bug Fixes
22
+
23
+ - `I469452` - Issue with "A console error is thrown when the datasource value field has a null value in the dropdown list" has been resolved.
24
+
25
+ ### ListBox
26
+
27
+ #### Bug Fixes
28
+
29
+ - `#F43705` - Issue with "Dropping selected items does not work correctly while enabling the checkbox in listbox component." has been resolved.
30
+ - `#I462373` - Issue with "Double quotes value not submitted while using the listbox component within the form." has been resolved.
31
+
32
+ ## 21.2.8 (2023-05-30)
33
+
5
34
  ### ListBox
6
35
 
7
36
  #### Bug Fixes
@@ -22,19 +51,19 @@
22
51
 
23
52
  - `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
24
53
 
25
- ## 21.2.5 (2023-05-16)
26
-
27
- ### ListBox
54
+ ### DropDownList
28
55
 
29
56
  #### Bug Fixes
30
57
 
31
- - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
58
+ - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
32
59
 
33
- ### DropDownList
60
+ ## 21.2.5 (2023-05-16)
61
+
62
+ ### ListBox
34
63
 
35
64
  #### Bug Fixes
36
65
 
37
- - `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
66
+ - `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
38
67
 
39
68
  ### ComboBox
40
69
 
package/README.md CHANGED
@@ -1,119 +1,217 @@
1
- # ej2-dropdowns
1
+ # JavaScript DropDown Controls
2
2
 
3
3
  Superset of HTML select box contains specific features such as data binding, grouping, sorting, filtering, and templates.
4
4
 
5
- ![](ReadMe_Images/gif.gif)
5
+ ## What's Included in the JavaScript DropDown Package
6
6
 
7
- >Note: This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials).
7
+ The JavaScript DropDown package includes the following list of components.
8
8
 
9
- >A free community license (https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers..
9
+ ### JavaScript DropDownList
10
10
 
11
- ## 1. Setup To install this package and its dependent packages, use the following command
11
+ The [JavaScript DropdownList](https://www.syncfusion.com/javascript-ui-controls/js-dropdown-list?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a quick replacement of the HTML select tags. It has a rich appearance and allows users to select a single value that is non-editable from a list of predefined values.
12
12
 
13
- Use the following command to install drop-down components and its dependent packages
13
+ <p align="center">
14
+ <a href="https://ej2.syncfusion.com/documentation/drop-down-list/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a> .
15
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-list/default.html">Online demos</a> .
16
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-dropdown-list?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>
17
+ </p>
18
+
19
+ <p align="center">
20
+ <img alt="JavaScript DropDownList Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-dropdownlist.png">
21
+ </p>
22
+
23
+ #### Key features
24
+
25
+ * [Data binding](https://ej2.syncfusion.com/demos/#/material/drop-down-list/data-binding.html) - Binds and accesses the list of items from the local or server-side data source.
26
+ * [Grouping](https://ej2.syncfusion.com/demos/#/material/drop-down-list/grouping-icon.html) - Groups the logically related items under a single or specific category.
27
+ * [Sorting](https://ej2.syncfusion.com/documentation/api/drop-down-list#sortorder) - Sorts the list items in alphabetical order (either ascending or descending).
28
+ * [Filtering](https://ej2.syncfusion.com/demos/#/material/drop-down-list/filtering.html) - Filters the list items based on a character typed in the search box.
29
+ * [Templates](https://ej2.syncfusion.com/demos/#/material/drop-down-list/template.html) - Customizes the list items, selected value, header, footer, category group header, and no records content.
30
+ * [Accessibility](https://ej2.syncfusion.com/documentation/drop-down-list/accessibility) - Provided with built-in accessibility support used to access all the DropDownList component features using keyboard, screen readers, or other assistive technology devices.
31
+
32
+ ### JavaScript DropDownTree
33
+
34
+ The [JavaScript DropdownTree](https://www.syncfusion.com/javascript-ui-controls/js-dropdown-tree?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a textbox control that allows the user to select single or multiple values from hierarchical data in a tree-like structure. It has several out-of-the-box features, such as data binding, check boxes, templates, UI customization, accessibility, and preselected values.
35
+
36
+ <p align="center">
37
+ <a href="https://ej2.syncfusion.com/documentation/drop-down-tree/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-dropdown-npm">Getting Started</a> .
38
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-tree/default.html">Online demos</a> .
39
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-dropdown-tree?utm_source=npm&utm_medium=listing&utm_campaign=vue-dropdown-npm">Learn more</a>
40
+ </p>
41
+
42
+ <p align="center">
43
+ <img alt="JavaScript DropDownTree Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-dropdowntree.png">
44
+ </p>
45
+
46
+ #### Key features
47
+
48
+ * [Data binding](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-tree/local-data.html) - Binds and accesses the list of items from the local or remote data source.
49
+ * [Checkbox](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-tree/checkbox.html) - Built-in support for checkboxes, allowing users to select single or multiple items.
50
+ * [Template](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-tree/template.html) - To change the appearance of the selection pop-up for tree items, plus the header and footer of the pop-up tree.
51
+ * [Filtering](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/drop-down-tree/filtering.html) - Filters the list items based on a character typed in the search box.
52
+
53
+ ### JavaScript Mention
54
+
55
+ The JavaScript Mention control is an autocomplete-like control to tag or select a user/group from the suggestion list. The control opens the suggestion list when a user starts typing with the character ‘@’ in popular social media sites such as Facebook, Twitter, and more. It supports several out-of-the-box features: Data binding, grouping, UI customization, accessibility, and more.
56
+
57
+ <p align="center">
58
+ <a href="https://ej2.syncfusion.com/documentation/mention/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a> .
59
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/mention/default.html">Online demos</a> .
60
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-mention?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>
61
+ </p>
62
+
63
+ <p align="center">
64
+ <img alt="JavaScript Mention Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-mention.png">
65
+ </p>
66
+
67
+ #### Key features
68
+
69
+ * [Sorting](https://ej2.syncfusion.com/documentation/mention/sorting/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) - Sorts the list items in alphabetical order (either ascending or descending).
70
+ * [Filtering](https://ej2.syncfusion.com/documentation/mention/filtering-data/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) - Filters the list items based on a character typed in the search box.
71
+
72
+ ### JavaScript ComboBox
73
+
74
+ The [JavaScript ComboBox](https://www.syncfusion.com/javascript-ui-controls/js-combobox?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a drop-down list with editable textbox that also allows users to choose an option from a predefined pop-up list.
75
+
76
+ <p align="center">
77
+ <a href="https://ej2.syncfusion.com/documentation/combo-box/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a> .
78
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/combo-box/default.html">Online demos</a> .
79
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-combobox?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>
80
+ </p>
81
+
82
+ <p align="center">
83
+ <img alt="JavaScript ComboBox Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-combobox.png">
84
+ </p>
85
+
86
+ #### Key features
87
+
88
+ * [Data binding](https://ej2.syncfusion.com/demos/#/material/combo-box/data-binding.html) - Binds and accesses the list of items from local or server-side data source.
89
+ * [Custom values](https://ej2.syncfusion.com/demos/#/material/combo-box/custom-value.html) - Sets user-defined values that is not in the pop-up list.
90
+ * [Grouping](https://ej2.syncfusion.com/demos/#/material/combo-box/grouping-icon.html) - Groups the logically related items under a single or specific category.
91
+ * [Sorting](https://ej2.syncfusion.com/documentation/api/combo-box#sortorder) - Sorts the list items in alphabetical order (either ascending or descending).
92
+ * [Filtering](https://ej2.syncfusion.com/demos/#/material/combo-box/filtering.html) - Filters the list items based on a character typed in the component.
93
+ * [Templates](https://ej2.syncfusion.com/demos/#/material/combo-box/template.html) - Customizes the list items, selected value, header, footer, category group header, and no records content.
94
+ * [Accessibility](https://ej2.syncfusion.com/documentation/combo-box/accessibility) - Provided with built-in accessibility support that helps to access all the ComboBox component features using the keyboard, screen readers, or other assistive technology devices.
95
+
96
+ ### JavaScript AutoComplete
97
+
98
+ The [JavaScript AutoComplete](https://www.syncfusion.com/javascript-ui-controls/js-autocomplete?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a textbox control that provides a list of suggestions to select from as the user types. It has several out-of-the-box features such as data binding, filtering, grouping, UI customization, accessibility, and more.
99
+
100
+ <p align="center">
101
+ <a href="https://ej2.syncfusion.com/documentation/auto-complete/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a>.
102
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/auto-complete/default.html">Online demos</a>.
103
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-autocomplete?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>.
104
+ </p>
105
+
106
+ <p align="center">
107
+ <img alt="JavaScript AutoComplete Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-autocomplete.png">
108
+ </p>
109
+
110
+ #### Key features
111
+
112
+ * [Data binding](https://ej2.syncfusion.com/demos/#/material/auto-complete/data-binding.html) - Binds and accesses the list of items from local or server-side data source.
113
+ * [Grouping](https://ej2.syncfusion.com/demos/#/material/auto-complete/grouping-icon.html) - Groups the logically related items under a single or specific category.
114
+ * [Sorting](https://ej2.syncfusion.com/documentation/api/auto-complete#sortorder) - Sorts the list items in alphabetical order (either ascending or descending).
115
+ * [Highlight search](https://ej2.syncfusion.com/demos/#/material/auto-complete/highlight.html) - Highlights the typed text in the suggestion list.
116
+ * [Templates](https://ej2.syncfusion.com/demos/#/material/auto-complete/template.html) - Customizes the list item, header, footer, category group header, no records, and action failure content.
117
+ * [Accessibility](https://ej2.syncfusion.com/documentation/auto-complete/accessibility) - Provided with built-in accessibility support that helps to access all the AutoComplete component features using keyboard, on-screen readers, or other assistive technology devices.
118
+
119
+ ### JavaScript MultiSelect
120
+
121
+ The [JavaScript MultiSelect Dropdown](https://www.syncfusion.com/javascript-ui-controls/js-multiselect-dropdown?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a quick replacement for the HTML select tag for selecting multiple values. HTML MultiSelect Dropdown is a textbox control that allows the user to type or select multiple values from a list of predefined options.
122
+
123
+ <p align="center">
124
+ <a href="https://ej2.syncfusion.com/documentation/multi-select/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a> .
125
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/multi-select/default.html">Online demos</a> .
126
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-multiselect-dropdown?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>
127
+ </p>
128
+
129
+ <p align="center">
130
+ <img alt="JavaScript MultiSelect Dropdown Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-multiselect.png">
131
+ </p>
132
+
133
+ #### Key features
134
+
135
+ * [Data binding](https://ej2.syncfusion.com/demos/#/material/multi-select/data-binding.html) - Binds and accesses the list of items from local or server-side data source.
136
+ * [Grouping](https://ej2.syncfusion.com/demos/#/material/multi-select/grouping-icon.html) - Groups the logically related items under a single or specific category.
137
+ * [Templates](https://ej2.syncfusion.com/demos/#/material/multi-select/template.html) - Customizes the list items, selected value, header, footer, category group header, and no records content.
138
+ * [Sorting](https://ej2.syncfusion.com/documentation/api/multi-select#sortorder) - Sorts the list items in alphabetical order (either ascending or descending).
139
+ * [Filtering](https://ej2.syncfusion.com/demos/#/material/multi-select/filtering.html) - Filters the list items based on a character typed in the search box.
140
+ * [Custom value](https://ej2.syncfusion.com/demos/#/material/multi-select/custom-value.html) - Allows users to select a new custom value.
141
+ * [Accessibility](https://ej2.syncfusion.com/documentation/multi-select/accessibility) - Provided with built-in accessibility support that helps to access all the DropDownList component features using the keyboard, screen readers, or other assistive technology devices.
142
+
143
+ ### JavaScript ListBox
144
+
145
+ The [JavaScript ListBox](https://www.syncfusion.com/javascript-ui-controls/js-listbox?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm) control is a graphical user interface for displaying a list of items with multi-selection options. It has a rich appearance and allows users to select one or more items from the list using checkboxes or keyboard interactions.
146
+
147
+ <p align="center">
148
+ <a href="https://ej2.syncfusion.com/documentation/list-box/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Getting Started</a> .
149
+ <a href="https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/list-box/default.html">Online demos</a> .
150
+ <a href="https://www.syncfusion.com/javascript-ui-controls/js-listbox?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm">Learn more</a>
151
+ </p>
152
+
153
+ <p align="center">
154
+ <img alt="JavaScript ListBox Control" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/javascript/javascript-listbox.png">
155
+ </p>
156
+
157
+ #### Key features
158
+
159
+ * [Data binding](https://ej2.syncfusion.com/documentation/list-box/data-binding/) - Binds and accesses the list of items from local or server-side data source.
160
+ * [Dual listbox](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/list-box/dual-list-box.html) - Allows transferring and reordering the list item between two ListBoxes.
161
+ * [Drag and drop](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/list-box/drag-and-drop.html) - Allows drag and drop the list item with the same/multiple ListBox.
162
+ * [Grouping](https://ej2.syncfusion.com/documentation/list-box/sorting-and-grouping/#grouping) - Groups the logically related items under a single or specific category.
163
+ * [Templates](https://ej2.syncfusion.com/demos/?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm#/material/list-box/template.html) - Customizes the list items.
164
+ * [Sorting](https://ej2.syncfusion.com/documentation/list-box/sorting-and-grouping/) - Sorts the list items in alphabetical order (either ascending or descending).
165
+ * [Accessibility](https://ej2.syncfusion.com/documentation/list-box/accessibility/) - Provided with built-in accessibility support that helps to access all the ListBox component features using the keyboard, screen readers, or other assistive technology devices.
166
+
167
+ <p align="center">
168
+ Trusted by the world's leading companies
169
+ <a href="https://www.syncfusion.com/">
170
+ <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Syncfusion logo">
171
+ </a>
172
+ </p>
173
+
174
+ ## Setup
175
+
176
+ To install `dropdowns` and its dependent packages, use the following command,
14
177
 
15
178
  ```
16
179
  npm install @syncfusion/ej2-dropdowns
17
180
  ```
18
181
 
19
- ## 2. Components included
20
-
21
- * DropDownList - A textbox component that allows users to select a non-editable single value from the list of predefined values.
22
- * [GettingStarted](https://ej2.syncfusion.com/documentation/drop-down-list/getting-started.html?lang=typescript)
23
- * [View Online Demos](https://ej2.syncfusion.com/javascript/demos/#/material/drop-down-list/default.html)
24
- * [Product Page](https://www.syncfusion.com/products/javascript/dropdownlist)
25
- * ComboBox - A textbox component that allows users to type a value or choose an option from the list of predefined options.
26
- * [GettingStarted](https://ej2.syncfusion.com/documentation/combo-box/getting-started.html?lang=typescript)
27
- * [View Online Demos](https://ej2.syncfusion.com/javascript/demos/#/material/combo-box/default.html)
28
- * [Product Page](https://www.syncfusion.com/products/javascript/combobox)
29
- * Autocomplete - A textbox component that provides a list of suggestions to select based on the text typed by the users.
30
- * [GettingStarted](https://ej2.syncfusion.com/documentation/auto-complete/getting-started.html?lang=typescript)
31
- * [View Online Demos](https://ej2.syncfusion.com/javascript/demos/#/material/auto-complete/default.html)
32
- * [Product Page](https://www.syncfusion.com/products/javascript/autocomplete)
33
- * MultiSelect - A textbox component that allows users to type or choose multiple values from the list of predefined options.
34
- * [GettingStarted](https://ej2.syncfusion.com/documentation/multi-select/getting-started.html?lang=typescript)
35
- * [View Online Demos](https://ej2.syncfusion.com/javascript/demos/#/material/multi-select/default.html)
36
- * [Product Page](https://www.syncfusion.com/products/javascript/multiselect)
37
- * ListBox - ListBox is a graphical user interface component used to display a list of items. Users can select one or more items in the list using a checkbox or by keyboard selection. It supports sorting, grouping, reordering, and drag and drop of items.
38
- * [GettingStarted](https://ej2.syncfusion.com/documentation/list-box/getting-started.html?lang=typescript)
39
- * [View Online Demos](https://ej2.syncfusion.com/javascript/demos/#/material/list-box/default.html)
40
- * [Product Page](https://www.syncfusion.com/products/javascript/listbox)
41
-
42
- ## 3. Supported frameworks
43
-
44
- Drop-down components also supports the following frameworks:
45
- 1. [Angular](https://ej2.syncfusion.com/angular/demos/#/material)
46
- 2. [React](https://ej2.syncfusion.com/react/demos/#/material)
47
- 3. [Vue.js](https://ej2.syncfusion.com/vue/demos/#/material)
48
- 4. [ASP.NET Core](https://ej2.syncfusion.com/aspnetcore/)
49
- 5. [ASP.NET MVC](https://ej2.syncfusion.com/aspnetmvc/)
50
- 6. [JavaScript (ES5)](https://ej2.syncfusion.com/javascript/demos/#/material)
51
-
52
- ## 4. Use-case samples / Showcase samples
53
-
54
- * Expanse Tracker ([Source](https://github.com/syncfusion/ej2-showcase-ts-expensetracker), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/expensetracker/?utm_source=npm&utm_campaign=dropdown#/dashboard))
55
- * Loan Calculator ([Source](https://github.com/syncfusion/ej2-showcase-ts-loancalculator), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/loancalculator/?utm_source=npm&utm_campaign=dropdwonlist#/default))
56
- * Web Mail ([Source](https://github.com/syncfusion/ej2-showcase-ts-webmail), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/webmail/#/home))
57
-
58
-
59
- ## 5. Key features
60
- * DropDownList
61
- * [Data binding](https://ej2.syncfusion.com/demos/#/material/drop-down-list/data-binding.html): Binds and accesses the list of items from the local or server-side data source.
62
- * [Grouping](https://ej2.syncfusion.com/demos/#/material/drop-down-list/grouping-icon.html): Groups the logically related items under a single or specific category.
63
- * [Sorting](https://ej2.syncfusion.com/documentation/api/drop-down-list#sortorder): Sorts the list items in alphabetical order (either ascending or descending).
64
- * [Filtering](https://ej2.syncfusion.com/demos/#/material/drop-down-list/filtering.html): Filters the list items based on a character typed in the search box.
65
- * [Templates](https://ej2.syncfusion.com/demos/#/material/drop-down-list/template.html): Customizes the list items, selected value, header, footer, category group header, and no records content.
66
- * [Accessibility](https://ej2.syncfusion.com/documentation/drop-down-list/accessibility): Provided with built-in accessibility support used to access all the DropDownList component features using keyboard, screen readers, or other assistive technology devices.
67
-
68
-
69
- * ComboBox
70
- * [Data binding](https://ej2.syncfusion.com/demos/#/material/combo-box/data-binding.html): Binds and accesses the list of items from local or server-side data source.
71
- * [Custom values](https://ej2.syncfusion.com/demos/#/material/combo-box/custom-value.html): Sets user-defined values that is not in the pop-up list.
72
- * [Grouping](https://ej2.syncfusion.com/demos/#/material/combo-box/grouping-icon.html): Groups the logically related items under a single or specific category.
73
- * [Sorting](https://ej2.syncfusion.com/documentation/api/combo-box#sortorder): Sorts the list items in alphabetical order (either ascending or descending).
74
- * [Filtering](https://ej2.syncfusion.com/demos/#/material/combo-box/filtering.html): Filters the list items based on a character typed in the component.
75
- * [Templates](https://ej2.syncfusion.com/demos/#/material/combo-box/template.html): Customizes the list items, selected value, header, footer, category group header, and no records content.
76
- * [Accessibility](https://ej2.syncfusion.com/documentation/combo-box/accessibility): Provided with built-in accessibility support that helps to access all the ComboBox component features using the keyboard, screen readers, or other assistive technology devices.
77
-
78
-
79
- * AutoComplete
80
- * [Data binding](https://ej2.syncfusion.com/demos/#/material/auto-complete/data-binding.html): Binds and accesses the list of items from local or server-side data source.
81
- * [Grouping](https://ej2.syncfusion.com/demos/#/material/auto-complete/grouping-icon.html): Groups the logically related items under a single or specific category.
82
- * [Sorting](https://ej2.syncfusion.com/documentation/api/auto-complete#sortorder): Sorts the list items in alphabetical order (either ascending or descending).
83
- * [Highlight search](https://ej2.syncfusion.com/demos/#/material/auto-complete/highlight.html): Highlights the typed text in the suggestion list.
84
- * [Templates](https://ej2.syncfusion.com/demos/#/material/auto-complete/template.html): Customizes the list item, header, footer, category group header, no records, and action failure content.
85
- * [Accessibility](https://ej2.syncfusion.com/documentation/auto-complete/accessibility): Provided with built-in accessibility support that helps to access all the AutoComplete component features using keyboard, on-screen readers, or other assistive technology devices.
86
-
87
-
88
- * MultiSelect
89
- * [Data binding](https://ej2.syncfusion.com/demos/#/material/multi-select/data-binding.html): Binds and accesses the list of items from local or server-side data source.
90
- * [Grouping](https://ej2.syncfusion.com/demos/#/material/multi-select/grouping-icon.html): Groups the logically related items under a single or specific category.
91
- * [Templates](https://ej2.syncfusion.com/demos/#/material/multi-select/template.html): Customizes the list items, selected value, header, footer, category group header, and no records content.
92
- * [Sorting](https://ej2.syncfusion.com/documentation/api/multi-select#sortorder): Sorts the list items in alphabetical order (either ascending or descending).
93
- * [Filtering](https://ej2.syncfusion.com/demos/#/material/multi-select/filtering.html): Filters the list items based on a character typed in the search box.
94
- * [Custom value](https://ej2.syncfusion.com/demos/#/material/multi-select/custom-value.html): Allows users to select a new custom value.
95
- * [Accessibility](https://ej2.syncfusion.com/documentation/multi-select/accessibility): Provided with built-in accessibility support that helps to access all the DropDownList component features using the keyboard, screen readers, or other assistive technology devices.
96
-
97
- * ListBox
98
- * **Data binding**: Binds and accesses the list of items from local or server-side data source.
99
- * **Dual ListBox**: Allows transferring and reordering the list item between two ListBoxes.
100
- * **Drag and Drop**: Allows drag and drop the list item with the same/multiple ListBox.
101
- * **Grouping**: Groups the logically related items under a single or specific category.
102
- * **Templates**: Customizes the list items.
103
- * **Sorting**: Sorts the list items in alphabetical order (either ascending or descending).
104
- * **Accessibility**: Provided with built-in accessibility support that helps to access all the ListBox component features using the keyboard, screen readers, or other assistive technology devices.
105
-
106
- ## 6. Support
107
- Product support can be obtained through the following mediums:
108
- * Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=dropdwon) support system or [Community forum.](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=dropdwon)
109
- * New [GitHub issue.](https://github.com/syncfusion/ej2-javascript-ui-controls/issues/new)
110
- * Ask your query in Stack Overflow with tag ‘syncfusion’, ‘ej2’.
182
+ ## Supported frameworks
111
183
 
112
-
113
- ## 7. License
114
- Check the license details [here.](https://github.com/syncfusion/ej2/blob/master/license?utm_source=npm&utm_campaign=dropdown)
184
+ DropDown controls are also offered to following list of frameworks.
185
+
186
+ | [<img src="https://ej2.syncfusion.com/github/images/angular.svg" height="50" />](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/angular-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
187
+ | :-----: | :-----: | :-----: | :-----: | :-----: |
188
+
189
+ ## Showcase samples
190
+
191
+ * Expanse Tracker - [Source](https://github.com/syncfusion/ej2-showcase-ts-expensetracker), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/expensetracker/?utm_source=npm&utm_campaign=dropdown#/dashboard)
192
+ * Loan Calculator - [Source](https://github.com/syncfusion/ej2-showcase-ts-loancalculator), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/loancalculator/?utm_source=npm&utm_campaign=dropdwonlist#/default)
193
+ * Web Mail - [Source](https://github.com/syncfusion/ej2-showcase-ts-webmail), [Live Demo](https://ej2.syncfusion.com/showcase/typescript/webmail/#/home)
194
+
195
+ ## Support
196
+
197
+ Product support is available through following mediums.
115
198
 
116
- ## 8. Change log
117
- Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/dropdowns/CHANGELOG.md)
199
+ * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
200
+ * [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm)
201
+ * [GitHub issues](https://github.com/syncfusion/ej2-javascript-ui-controls/issues/new)
202
+ * [Request feature or report bug](https://www.syncfusion.com/feedback/javascript?utm_source=npm&utm_medium=listing&utm_campaign=javascript-dropdown-npm)
203
+ * Live chat
204
+
205
+ ## Change log
206
+
207
+ Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/dropdowns/CHANGELOG.md). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
118
208
 
209
+ ## License and copyright
210
+
211
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [JavaScript UI controls](https://www.syncfusion.com/javascript-ui-controls), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
212
+
213
+ > A [free community license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
214
+
215
+ See [LICENSE FILE](https://github.com/syncfusion/ej2/blob/master/license?utm_source=npm&utm_campaign=dropdown) for more info.
216
+
119
217
  © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.