@syncfusion/ej2-angular-dropdowns 20.2.38-ngcc → 20.2.38

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 (708) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/auto-complete/autocomplete-all.module.mjs +23 -0
  3. package/esm2020/src/auto-complete/autocomplete.component.mjs +121 -0
  4. package/esm2020/src/auto-complete/autocomplete.module.mjs +25 -0
  5. package/esm2020/src/combo-box/combobox-all.module.mjs +23 -0
  6. package/esm2020/src/combo-box/combobox.component.mjs +121 -0
  7. package/esm2020/src/combo-box/combobox.module.mjs +25 -0
  8. package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +23 -0
  9. package/esm2020/src/drop-down-list/dropdownlist.component.mjs +127 -0
  10. package/esm2020/src/drop-down-list/dropdownlist.module.mjs +25 -0
  11. package/esm2020/src/drop-down-tree/dropdowntree-all.module.mjs +23 -0
  12. package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +115 -0
  13. package/esm2020/src/drop-down-tree/dropdowntree.module.mjs +25 -0
  14. package/esm2020/src/index.mjs +20 -0
  15. package/esm2020/src/list-box/listbox-all.module.mjs +23 -0
  16. package/esm2020/src/list-box/listbox.component.mjs +103 -0
  17. package/esm2020/src/list-box/listbox.module.mjs +25 -0
  18. package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
  19. package/esm2020/src/multi-select/multiselect.component.mjs +134 -0
  20. package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
  21. package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
  22. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +935 -0
  23. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  24. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +935 -0
  25. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  26. package/package.json +27 -13
  27. package/schematics/utils/lib-details.ts +2 -2
  28. package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
  29. package/src/auto-complete/autocomplete.component.d.ts +7 -4
  30. package/src/auto-complete/autocomplete.module.d.ts +6 -0
  31. package/src/combo-box/combobox-all.module.d.ts +6 -0
  32. package/src/combo-box/combobox.component.d.ts +7 -4
  33. package/src/combo-box/combobox.module.d.ts +6 -0
  34. package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
  35. package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
  36. package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
  37. package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
  38. package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
  39. package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
  40. package/src/list-box/listbox-all.module.d.ts +6 -0
  41. package/src/list-box/listbox.component.d.ts +4 -1
  42. package/src/list-box/listbox.module.d.ts +6 -0
  43. package/src/multi-select/multiselect-all.module.d.ts +6 -0
  44. package/src/multi-select/multiselect.component.d.ts +3 -0
  45. package/src/multi-select/multiselect.module.d.ts +6 -0
  46. package/styles/auto-complete/_all.scss +1 -0
  47. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -0
  48. package/styles/auto-complete/_bootstrap-definition.scss +2 -0
  49. package/styles/auto-complete/_bootstrap4-definition.scss +11 -0
  50. package/styles/auto-complete/_bootstrap5-dark-definition.scss +1 -0
  51. package/styles/auto-complete/_bootstrap5-definition.scss +2 -0
  52. package/styles/auto-complete/_fabric-dark-definition.scss +2 -0
  53. package/styles/auto-complete/_fabric-definition.scss +2 -0
  54. package/styles/auto-complete/_fluent-dark-definition.scss +1 -0
  55. package/styles/auto-complete/_fluent-definition.scss +2 -0
  56. package/styles/auto-complete/_fusionnew-definition.scss +2 -0
  57. package/styles/auto-complete/_highcontrast-definition.scss +2 -0
  58. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -0
  59. package/styles/auto-complete/_material-dark-definition.scss +2 -0
  60. package/styles/auto-complete/_material-definition.scss +2 -0
  61. package/styles/auto-complete/_material3-definition.scss +2 -0
  62. package/styles/auto-complete/_tailwind-dark-definition.scss +1 -0
  63. package/styles/auto-complete/_tailwind-definition.scss +2 -0
  64. package/styles/auto-complete/bootstrap-dark.scss +4 -1
  65. package/styles/auto-complete/bootstrap.scss +4 -1
  66. package/styles/auto-complete/bootstrap4.scss +4 -1
  67. package/styles/auto-complete/bootstrap5-dark.scss +4 -1
  68. package/styles/auto-complete/bootstrap5.scss +4 -1
  69. package/styles/auto-complete/fabric-dark.scss +4 -1
  70. package/styles/auto-complete/fabric.scss +4 -1
  71. package/styles/auto-complete/fluent-dark.scss +4 -1
  72. package/styles/auto-complete/fluent.scss +4 -1
  73. package/styles/auto-complete/highcontrast-light.scss +4 -1
  74. package/styles/auto-complete/highcontrast.scss +4 -1
  75. package/styles/auto-complete/material-dark.scss +4 -1
  76. package/styles/auto-complete/material.scss +4 -1
  77. package/styles/auto-complete/tailwind-dark.scss +4 -1
  78. package/styles/auto-complete/tailwind.scss +4 -1
  79. package/styles/bootstrap-dark.css +11 -23
  80. package/styles/bootstrap.css +11 -23
  81. package/styles/bootstrap4.css +11 -23
  82. package/styles/bootstrap5-dark.css +12 -24
  83. package/styles/bootstrap5.css +12 -24
  84. package/styles/combo-box/_all.scss +1 -0
  85. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -0
  86. package/styles/combo-box/_bootstrap-definition.scss +2 -0
  87. package/styles/combo-box/_bootstrap4-definition.scss +11 -0
  88. package/styles/combo-box/_bootstrap5-dark-definition.scss +1 -0
  89. package/styles/combo-box/_bootstrap5-definition.scss +2 -0
  90. package/styles/combo-box/_fabric-dark-definition.scss +2 -0
  91. package/styles/combo-box/_fabric-definition.scss +2 -0
  92. package/styles/combo-box/_fluent-dark-definition.scss +1 -0
  93. package/styles/combo-box/_fluent-definition.scss +2 -0
  94. package/styles/combo-box/_fusionnew-definition.scss +2 -0
  95. package/styles/combo-box/_highcontrast-definition.scss +2 -0
  96. package/styles/combo-box/_highcontrast-light-definition.scss +3 -0
  97. package/styles/combo-box/_material-dark-definition.scss +2 -0
  98. package/styles/combo-box/_material-definition.scss +2 -0
  99. package/styles/combo-box/_material3-definition.scss +2 -0
  100. package/styles/combo-box/_tailwind-dark-definition.scss +1 -0
  101. package/styles/combo-box/_tailwind-definition.scss +2 -0
  102. package/styles/combo-box/bootstrap-dark.scss +4 -1
  103. package/styles/combo-box/bootstrap.scss +4 -1
  104. package/styles/combo-box/bootstrap4.scss +4 -1
  105. package/styles/combo-box/bootstrap5-dark.scss +4 -1
  106. package/styles/combo-box/bootstrap5.scss +4 -1
  107. package/styles/combo-box/fabric-dark.scss +4 -1
  108. package/styles/combo-box/fabric.scss +4 -1
  109. package/styles/combo-box/fluent-dark.scss +4 -1
  110. package/styles/combo-box/fluent.scss +4 -1
  111. package/styles/combo-box/highcontrast-light.scss +4 -1
  112. package/styles/combo-box/highcontrast.scss +4 -1
  113. package/styles/combo-box/material-dark.scss +4 -1
  114. package/styles/combo-box/material.scss +4 -1
  115. package/styles/combo-box/tailwind-dark.scss +4 -1
  116. package/styles/combo-box/tailwind.scss +4 -1
  117. package/styles/drop-down-base/_all.scss +2 -0
  118. package/styles/drop-down-base/_bootstrap-dark-definition.scss +76 -0
  119. package/styles/drop-down-base/_bootstrap-definition.scss +77 -0
  120. package/styles/drop-down-base/_bootstrap4-definition.scss +92 -0
  121. package/styles/drop-down-base/_bootstrap5-dark-definition.scss +1 -0
  122. package/styles/drop-down-base/_bootstrap5-definition.scss +111 -0
  123. package/styles/drop-down-base/_definition.scss +23 -0
  124. package/styles/drop-down-base/_fabric-dark-definition.scss +80 -0
  125. package/styles/drop-down-base/_fabric-definition.scss +78 -0
  126. package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
  127. package/styles/drop-down-base/_fluent-definition.scss +114 -0
  128. package/styles/drop-down-base/_fusionnew-definition.scss +111 -0
  129. package/styles/drop-down-base/_highcontrast-definition.scss +94 -0
  130. package/styles/drop-down-base/_highcontrast-light-definition.scss +93 -0
  131. package/styles/drop-down-base/_layout.scss +152 -0
  132. package/styles/drop-down-base/_material-dark-definition.scss +79 -0
  133. package/styles/drop-down-base/_material-definition.scss +78 -0
  134. package/styles/drop-down-base/_material3-definition.scss +111 -0
  135. package/styles/drop-down-base/_tailwind-dark-definition.scss +1 -0
  136. package/styles/drop-down-base/_tailwind-definition.scss +123 -0
  137. package/styles/drop-down-base/_theme.scss +328 -0
  138. package/styles/drop-down-base/bootstrap-dark.scss +3 -1
  139. package/styles/drop-down-base/bootstrap.scss +3 -1
  140. package/styles/drop-down-base/bootstrap4.scss +3 -1
  141. package/styles/drop-down-base/bootstrap5-dark.scss +3 -1
  142. package/styles/drop-down-base/bootstrap5.scss +3 -1
  143. package/styles/drop-down-base/fabric-dark.scss +3 -1
  144. package/styles/drop-down-base/fabric.scss +3 -1
  145. package/styles/drop-down-base/fluent-dark.scss +3 -1
  146. package/styles/drop-down-base/fluent.scss +3 -1
  147. package/styles/drop-down-base/highcontrast-light.scss +3 -1
  148. package/styles/drop-down-base/highcontrast.scss +3 -1
  149. package/styles/drop-down-base/material-dark.scss +3 -1
  150. package/styles/drop-down-base/material.scss +3 -1
  151. package/styles/drop-down-base/tailwind-dark.scss +3 -1
  152. package/styles/drop-down-base/tailwind.scss +3 -1
  153. package/styles/drop-down-list/_all.scss +2 -0
  154. package/styles/drop-down-list/_bootstrap-dark-definition.scss +156 -0
  155. package/styles/drop-down-list/_bootstrap-definition.scss +155 -0
  156. package/styles/drop-down-list/_bootstrap4-definition.scss +189 -0
  157. package/styles/drop-down-list/_bootstrap5-dark-definition.scss +1 -0
  158. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -0
  159. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -0
  160. package/styles/drop-down-list/_fabric-definition.scss +122 -0
  161. package/styles/drop-down-list/_fluent-dark-definition.scss +1 -0
  162. package/styles/drop-down-list/_fluent-definition.scss +184 -0
  163. package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
  164. package/styles/drop-down-list/_highcontrast-definition.scss +131 -0
  165. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -0
  166. package/styles/drop-down-list/_layout.scss +297 -0
  167. package/styles/drop-down-list/_material-dark-definition.scss +143 -0
  168. package/styles/drop-down-list/_material-definition.scss +166 -0
  169. package/styles/drop-down-list/_material3-definition.scss +201 -0
  170. package/styles/drop-down-list/_tailwind-dark-definition.scss +1 -0
  171. package/styles/drop-down-list/_tailwind-definition.scss +133 -0
  172. package/styles/drop-down-list/_theme.scss +10 -0
  173. package/styles/drop-down-list/bootstrap-dark.scss +8 -1
  174. package/styles/drop-down-list/bootstrap.scss +8 -1
  175. package/styles/drop-down-list/bootstrap4.scss +8 -1
  176. package/styles/drop-down-list/bootstrap5-dark.scss +8 -1
  177. package/styles/drop-down-list/bootstrap5.scss +8 -1
  178. package/styles/drop-down-list/fabric-dark.scss +8 -1
  179. package/styles/drop-down-list/fabric.scss +8 -1
  180. package/styles/drop-down-list/fluent-dark.scss +8 -1
  181. package/styles/drop-down-list/fluent.scss +8 -1
  182. package/styles/drop-down-list/highcontrast-light.scss +8 -1
  183. package/styles/drop-down-list/highcontrast.scss +8 -1
  184. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -0
  185. package/styles/drop-down-list/icons/_bootstrap.scss +15 -0
  186. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -0
  187. package/styles/drop-down-list/icons/_bootstrap5-dark.scss +1 -0
  188. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -0
  189. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -0
  190. package/styles/drop-down-list/icons/_fabric.scss +15 -0
  191. package/styles/drop-down-list/icons/_fluent-dark.scss +1 -0
  192. package/styles/drop-down-list/icons/_fluent.scss +14 -0
  193. package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
  194. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -0
  195. package/styles/drop-down-list/icons/_highcontrast.scss +14 -0
  196. package/styles/drop-down-list/icons/_material-dark.scss +14 -0
  197. package/styles/drop-down-list/icons/_material.scss +15 -0
  198. package/styles/drop-down-list/icons/_material3.scss +14 -0
  199. package/styles/drop-down-list/icons/_tailwind-dark.scss +1 -0
  200. package/styles/drop-down-list/icons/_tailwind.scss +14 -0
  201. package/styles/drop-down-list/material-dark.scss +8 -1
  202. package/styles/drop-down-list/material.scss +8 -1
  203. package/styles/drop-down-list/tailwind-dark.scss +8 -1
  204. package/styles/drop-down-list/tailwind.scss +8 -1
  205. package/styles/drop-down-tree/_all.scss +2 -0
  206. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +72 -0
  207. package/styles/drop-down-tree/_bootstrap-definition.scss +71 -0
  208. package/styles/drop-down-tree/_bootstrap4-definition.scss +72 -0
  209. package/styles/drop-down-tree/_bootstrap5-dark-definition.scss +1 -0
  210. package/styles/drop-down-tree/_bootstrap5-definition.scss +60 -0
  211. package/styles/drop-down-tree/_fabric-dark-definition.scss +72 -0
  212. package/styles/drop-down-tree/_fabric-definition.scss +72 -0
  213. package/styles/drop-down-tree/_fluent-dark-definition.scss +1 -0
  214. package/styles/drop-down-tree/_fluent-definition.scss +66 -0
  215. package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
  216. package/styles/drop-down-tree/_highcontrast-definition.scss +72 -0
  217. package/styles/drop-down-tree/_highcontrast-light-definition.scss +72 -0
  218. package/styles/drop-down-tree/_layout.scss +1379 -0
  219. package/styles/drop-down-tree/_material-dark-definition.scss +73 -0
  220. package/styles/drop-down-tree/_material-definition.scss +73 -0
  221. package/styles/drop-down-tree/_material3-definition.scss +60 -0
  222. package/styles/drop-down-tree/_tailwind-dark-definition.scss +1 -0
  223. package/styles/drop-down-tree/_tailwind-definition.scss +61 -0
  224. package/styles/drop-down-tree/_theme.scss +120 -0
  225. package/styles/drop-down-tree/bootstrap-dark.scss +9 -1
  226. package/styles/drop-down-tree/bootstrap.scss +9 -1
  227. package/styles/drop-down-tree/bootstrap4.scss +9 -1
  228. package/styles/drop-down-tree/bootstrap5-dark.scss +9 -1
  229. package/styles/drop-down-tree/bootstrap5.scss +9 -1
  230. package/styles/drop-down-tree/fabric-dark.scss +9 -1
  231. package/styles/drop-down-tree/fabric.scss +9 -1
  232. package/styles/drop-down-tree/fluent-dark.scss +9 -1
  233. package/styles/drop-down-tree/fluent.scss +9 -1
  234. package/styles/drop-down-tree/highcontrast-light.scss +9 -1
  235. package/styles/drop-down-tree/highcontrast.scss +9 -1
  236. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -0
  237. package/styles/drop-down-tree/icons/_bootstrap.scss +12 -0
  238. package/styles/drop-down-tree/icons/_bootstrap4.scss +12 -0
  239. package/styles/drop-down-tree/icons/_bootstrap5-dark.scss +1 -0
  240. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -0
  241. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -0
  242. package/styles/drop-down-tree/icons/_fabric.scss +12 -0
  243. package/styles/drop-down-tree/icons/_fluent-dark.scss +1 -0
  244. package/styles/drop-down-tree/icons/_fluent.scss +11 -0
  245. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
  246. package/styles/drop-down-tree/icons/_highcontrast-light.scss +12 -0
  247. package/styles/drop-down-tree/icons/_highcontrast.scss +12 -0
  248. package/styles/drop-down-tree/icons/_material-dark.scss +12 -0
  249. package/styles/drop-down-tree/icons/_material.scss +12 -0
  250. package/styles/drop-down-tree/icons/_material3.scss +11 -0
  251. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -0
  252. package/styles/drop-down-tree/icons/_tailwind.scss +11 -0
  253. package/styles/drop-down-tree/material-dark.scss +9 -1
  254. package/styles/drop-down-tree/material.scss +9 -1
  255. package/styles/drop-down-tree/tailwind-dark.scss +9 -1
  256. package/styles/drop-down-tree/tailwind.scss +9 -1
  257. package/styles/fabric-dark.css +11 -23
  258. package/styles/fabric.css +11 -23
  259. package/styles/fluent-dark.css +15 -27
  260. package/styles/fluent.css +12 -24
  261. package/styles/highcontrast-light.css +11 -23
  262. package/styles/highcontrast.css +11 -23
  263. package/styles/list-box/_all.scss +2 -0
  264. package/styles/list-box/_bootstrap-dark-definition.scss +123 -0
  265. package/styles/list-box/_bootstrap-definition.scss +117 -0
  266. package/styles/list-box/_bootstrap4-definition.scss +122 -0
  267. package/styles/list-box/_bootstrap5-dark-definition.scss +1 -0
  268. package/styles/list-box/_bootstrap5-definition.scss +120 -0
  269. package/styles/list-box/_fabric-dark-definition.scss +123 -0
  270. package/styles/list-box/_fabric-definition.scss +117 -0
  271. package/styles/list-box/_fluent-dark-definition.scss +1 -0
  272. package/styles/list-box/_fluent-definition.scss +120 -0
  273. package/styles/list-box/_fusionnew-definition.scss +113 -0
  274. package/styles/list-box/_highcontrast-definition.scss +117 -0
  275. package/styles/list-box/_highcontrast-light-definition.scss +123 -0
  276. package/styles/list-box/_layout.scss +534 -0
  277. package/styles/list-box/_material-dark-definition.scss +123 -0
  278. package/styles/list-box/_material-definition.scss +117 -0
  279. package/styles/list-box/_material3-definition.scss +119 -0
  280. package/styles/list-box/_tailwind-dark-definition.scss +1 -0
  281. package/styles/list-box/_tailwind-definition.scss +119 -0
  282. package/styles/list-box/_theme.scss +317 -0
  283. package/styles/list-box/bootstrap-dark.css +11 -23
  284. package/styles/list-box/bootstrap-dark.scss +5 -1
  285. package/styles/list-box/bootstrap.css +11 -23
  286. package/styles/list-box/bootstrap.scss +5 -1
  287. package/styles/list-box/bootstrap4.css +11 -23
  288. package/styles/list-box/bootstrap4.scss +5 -1
  289. package/styles/list-box/bootstrap5-dark.css +12 -24
  290. package/styles/list-box/bootstrap5-dark.scss +5 -1
  291. package/styles/list-box/bootstrap5.css +12 -24
  292. package/styles/list-box/bootstrap5.scss +5 -1
  293. package/styles/list-box/fabric-dark.css +11 -23
  294. package/styles/list-box/fabric-dark.scss +5 -1
  295. package/styles/list-box/fabric.css +11 -23
  296. package/styles/list-box/fabric.scss +5 -1
  297. package/styles/list-box/fluent-dark.css +15 -27
  298. package/styles/list-box/fluent-dark.scss +5 -1
  299. package/styles/list-box/fluent.css +12 -24
  300. package/styles/list-box/fluent.scss +5 -1
  301. package/styles/list-box/highcontrast-light.css +11 -23
  302. package/styles/list-box/highcontrast-light.scss +5 -1
  303. package/styles/list-box/highcontrast.css +11 -23
  304. package/styles/list-box/highcontrast.scss +5 -1
  305. package/styles/list-box/icons/_bootstrap-dark.scss +25 -0
  306. package/styles/list-box/icons/_bootstrap.scss +25 -0
  307. package/styles/list-box/icons/_bootstrap4.scss +25 -0
  308. package/styles/list-box/icons/_bootstrap5-dark.scss +1 -0
  309. package/styles/list-box/icons/_bootstrap5.scss +25 -0
  310. package/styles/list-box/icons/_fabric-dark.scss +25 -0
  311. package/styles/list-box/icons/_fabric.scss +25 -0
  312. package/styles/list-box/icons/_fluent-dark.scss +1 -0
  313. package/styles/list-box/icons/_fluent.scss +25 -0
  314. package/styles/list-box/icons/_fusionnew.scss +25 -0
  315. package/styles/list-box/icons/_highcontrast-light.scss +25 -0
  316. package/styles/list-box/icons/_highcontrast.scss +25 -0
  317. package/styles/list-box/icons/_material-dark.scss +25 -0
  318. package/styles/list-box/icons/_material.scss +25 -0
  319. package/styles/list-box/icons/_material3.scss +25 -0
  320. package/styles/list-box/icons/_tailwind-dark.scss +25 -0
  321. package/styles/list-box/icons/_tailwind.scss +25 -0
  322. package/styles/list-box/material-dark.css +11 -23
  323. package/styles/list-box/material-dark.scss +5 -1
  324. package/styles/list-box/material.css +11 -23
  325. package/styles/list-box/material.scss +5 -1
  326. package/styles/list-box/tailwind-dark.css +12 -24
  327. package/styles/list-box/tailwind-dark.scss +5 -1
  328. package/styles/list-box/tailwind.css +12 -24
  329. package/styles/list-box/tailwind.scss +5 -1
  330. package/styles/material-dark.css +11 -23
  331. package/styles/material.css +11 -23
  332. package/styles/multi-select/_all.scss +2 -0
  333. package/styles/multi-select/_bootstrap-dark-definition.scss +186 -0
  334. package/styles/multi-select/_bootstrap-definition.scss +181 -0
  335. package/styles/multi-select/_bootstrap4-definition.scss +246 -0
  336. package/styles/multi-select/_bootstrap5-dark-definition.scss +1 -0
  337. package/styles/multi-select/_bootstrap5-definition.scss +219 -0
  338. package/styles/multi-select/_fabric-dark-definition.scss +176 -0
  339. package/styles/multi-select/_fabric-definition.scss +172 -0
  340. package/styles/multi-select/_fluent-dark-definition.scss +1 -0
  341. package/styles/multi-select/_fluent-definition.scss +229 -0
  342. package/styles/multi-select/_fusionnew-definition.scss +219 -0
  343. package/styles/multi-select/_highcontrast-definition.scss +264 -0
  344. package/styles/multi-select/_highcontrast-light-definition.scss +263 -0
  345. package/styles/multi-select/_layout.scss +2003 -0
  346. package/styles/multi-select/_material-dark-definition.scss +219 -0
  347. package/styles/multi-select/_material-definition.scss +213 -0
  348. package/styles/multi-select/_material3-definition.scss +219 -0
  349. package/styles/multi-select/_tailwind-dark-definition.scss +1 -0
  350. package/styles/multi-select/_tailwind-definition.scss +225 -0
  351. package/styles/multi-select/_theme.scss +493 -0
  352. package/styles/multi-select/bootstrap-dark.scss +9 -1
  353. package/styles/multi-select/bootstrap.scss +9 -1
  354. package/styles/multi-select/bootstrap4.scss +9 -1
  355. package/styles/multi-select/bootstrap5-dark.scss +9 -1
  356. package/styles/multi-select/bootstrap5.scss +9 -1
  357. package/styles/multi-select/fabric-dark.scss +9 -1
  358. package/styles/multi-select/fabric.scss +9 -1
  359. package/styles/multi-select/fluent-dark.scss +9 -1
  360. package/styles/multi-select/fluent.scss +9 -1
  361. package/styles/multi-select/highcontrast-light.scss +9 -1
  362. package/styles/multi-select/highcontrast.scss +9 -1
  363. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -0
  364. package/styles/multi-select/icons/_bootstrap.scss +26 -0
  365. package/styles/multi-select/icons/_bootstrap4.scss +37 -0
  366. package/styles/multi-select/icons/_bootstrap5-dark.scss +1 -0
  367. package/styles/multi-select/icons/_bootstrap5.scss +27 -0
  368. package/styles/multi-select/icons/_fabric-dark.scss +26 -0
  369. package/styles/multi-select/icons/_fabric.scss +26 -0
  370. package/styles/multi-select/icons/_fluent-dark.scss +1 -0
  371. package/styles/multi-select/icons/_fluent.scss +56 -0
  372. package/styles/multi-select/icons/_fusionnew.scss +27 -0
  373. package/styles/multi-select/icons/_highcontrast-light.scss +26 -0
  374. package/styles/multi-select/icons/_highcontrast.scss +26 -0
  375. package/styles/multi-select/icons/_material-dark.scss +694 -0
  376. package/styles/multi-select/icons/_material.scss +694 -0
  377. package/styles/multi-select/icons/_material3.scss +27 -0
  378. package/styles/multi-select/icons/_tailwind-dark.scss +1 -0
  379. package/styles/multi-select/icons/_tailwind.scss +27 -0
  380. package/styles/multi-select/material-dark.scss +9 -1
  381. package/styles/multi-select/material.scss +9 -1
  382. package/styles/multi-select/tailwind-dark.scss +9 -1
  383. package/styles/multi-select/tailwind.scss +9 -1
  384. package/styles/tailwind-dark.css +12 -24
  385. package/styles/tailwind.css +12 -24
  386. package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
  387. package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1264
  388. package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
  389. package/@syncfusion/ej2-angular-dropdowns.js +0 -1190
  390. package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
  391. package/CHANGELOG.md +0 -2325
  392. package/dist/ej2-angular-dropdowns.umd.js +0 -1327
  393. package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
  394. package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
  395. package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
  396. package/ej2-angular-dropdowns.d.ts +0 -10
  397. package/ej2-angular-dropdowns.metadata.json +0 -1
  398. package/postinstall/tagchange.js +0 -18
  399. package/schematics/collection.json +0 -155
  400. package/schematics/generators/autocomplete-custom-filtering/index.d.ts +0 -3
  401. package/schematics/generators/autocomplete-custom-filtering/index.js +0 -8
  402. package/schematics/generators/autocomplete-custom-filtering/sample-details.d.ts +0 -5
  403. package/schematics/generators/autocomplete-custom-filtering/sample-details.js +0 -7
  404. package/schematics/generators/autocomplete-custom-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  405. package/schematics/generators/autocomplete-custom-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  406. package/schematics/generators/autocomplete-custom-filtering/schema.d.ts +0 -3
  407. package/schematics/generators/autocomplete-custom-filtering/schema.js +0 -2
  408. package/schematics/generators/autocomplete-custom-filtering/schema.json +0 -125
  409. package/schematics/generators/autocomplete-default/index.d.ts +0 -3
  410. package/schematics/generators/autocomplete-default/index.js +0 -8
  411. package/schematics/generators/autocomplete-default/sample-details.d.ts +0 -5
  412. package/schematics/generators/autocomplete-default/sample-details.js +0 -7
  413. package/schematics/generators/autocomplete-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  414. package/schematics/generators/autocomplete-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -3
  415. package/schematics/generators/autocomplete-default/schema.d.ts +0 -3
  416. package/schematics/generators/autocomplete-default/schema.js +0 -2
  417. package/schematics/generators/autocomplete-default/schema.json +0 -125
  418. package/schematics/generators/autocomplete-diacritics-filtering/index.d.ts +0 -3
  419. package/schematics/generators/autocomplete-diacritics-filtering/index.js +0 -8
  420. package/schematics/generators/autocomplete-diacritics-filtering/sample-details.d.ts +0 -5
  421. package/schematics/generators/autocomplete-diacritics-filtering/sample-details.js +0 -7
  422. package/schematics/generators/autocomplete-diacritics-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  423. package/schematics/generators/autocomplete-diacritics-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  424. package/schematics/generators/autocomplete-diacritics-filtering/schema.d.ts +0 -3
  425. package/schematics/generators/autocomplete-diacritics-filtering/schema.js +0 -2
  426. package/schematics/generators/autocomplete-diacritics-filtering/schema.json +0 -125
  427. package/schematics/generators/autocomplete-highlight/index.d.ts +0 -3
  428. package/schematics/generators/autocomplete-highlight/index.js +0 -8
  429. package/schematics/generators/autocomplete-highlight/sample-details.d.ts +0 -5
  430. package/schematics/generators/autocomplete-highlight/sample-details.js +0 -7
  431. package/schematics/generators/autocomplete-highlight/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  432. package/schematics/generators/autocomplete-highlight/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -3
  433. package/schematics/generators/autocomplete-highlight/schema.d.ts +0 -3
  434. package/schematics/generators/autocomplete-highlight/schema.js +0 -2
  435. package/schematics/generators/autocomplete-highlight/schema.json +0 -125
  436. package/schematics/generators/autocomplete-reactive-form/index.d.ts +0 -3
  437. package/schematics/generators/autocomplete-reactive-form/index.js +0 -8
  438. package/schematics/generators/autocomplete-reactive-form/sample-details.d.ts +0 -5
  439. package/schematics/generators/autocomplete-reactive-form/sample-details.js +0 -7
  440. package/schematics/generators/autocomplete-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  441. package/schematics/generators/autocomplete-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  442. package/schematics/generators/autocomplete-reactive-form/schema.d.ts +0 -3
  443. package/schematics/generators/autocomplete-reactive-form/schema.js +0 -2
  444. package/schematics/generators/autocomplete-reactive-form/schema.json +0 -125
  445. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/1.png +0 -0
  446. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/10.png +0 -0
  447. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/2.png +0 -0
  448. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/3.png +0 -0
  449. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/4.png +0 -0
  450. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/5.png +0 -0
  451. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/6.png +0 -0
  452. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/7.png +0 -0
  453. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/8.png +0 -0
  454. package/schematics/generators/autocomplete-template/images/__path__/__name@dasherize__/9.png +0 -0
  455. package/schematics/generators/autocomplete-template/index.d.ts +0 -3
  456. package/schematics/generators/autocomplete-template/index.js +0 -8
  457. package/schematics/generators/autocomplete-template/sample-details.d.ts +0 -5
  458. package/schematics/generators/autocomplete-template/sample-details.js +0 -7
  459. package/schematics/generators/autocomplete-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -65
  460. package/schematics/generators/autocomplete-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  461. package/schematics/generators/autocomplete-template/schema.d.ts +0 -3
  462. package/schematics/generators/autocomplete-template/schema.js +0 -2
  463. package/schematics/generators/autocomplete-template/schema.json +0 -125
  464. package/schematics/generators/autocomplete-template-driven/index.d.ts +0 -3
  465. package/schematics/generators/autocomplete-template-driven/index.js +0 -8
  466. package/schematics/generators/autocomplete-template-driven/sample-details.d.ts +0 -5
  467. package/schematics/generators/autocomplete-template-driven/sample-details.js +0 -7
  468. package/schematics/generators/autocomplete-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  469. package/schematics/generators/autocomplete-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
  470. package/schematics/generators/autocomplete-template-driven/schema.d.ts +0 -3
  471. package/schematics/generators/autocomplete-template-driven/schema.js +0 -2
  472. package/schematics/generators/autocomplete-template-driven/schema.json +0 -125
  473. package/schematics/generators/combobox-custom-value/index.d.ts +0 -3
  474. package/schematics/generators/combobox-custom-value/index.js +0 -8
  475. package/schematics/generators/combobox-custom-value/sample-details.d.ts +0 -5
  476. package/schematics/generators/combobox-custom-value/sample-details.js +0 -7
  477. package/schematics/generators/combobox-custom-value/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -1
  478. package/schematics/generators/combobox-custom-value/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  479. package/schematics/generators/combobox-custom-value/schema.d.ts +0 -3
  480. package/schematics/generators/combobox-custom-value/schema.js +0 -2
  481. package/schematics/generators/combobox-custom-value/schema.json +0 -125
  482. package/schematics/generators/combobox-default/index.d.ts +0 -3
  483. package/schematics/generators/combobox-default/index.js +0 -8
  484. package/schematics/generators/combobox-default/sample-details.d.ts +0 -5
  485. package/schematics/generators/combobox-default/sample-details.js +0 -7
  486. package/schematics/generators/combobox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  487. package/schematics/generators/combobox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -3
  488. package/schematics/generators/combobox-default/schema.d.ts +0 -3
  489. package/schematics/generators/combobox-default/schema.js +0 -2
  490. package/schematics/generators/combobox-default/schema.json +0 -125
  491. package/schematics/generators/combobox-filtering/index.d.ts +0 -3
  492. package/schematics/generators/combobox-filtering/index.js +0 -8
  493. package/schematics/generators/combobox-filtering/sample-details.d.ts +0 -5
  494. package/schematics/generators/combobox-filtering/sample-details.js +0 -7
  495. package/schematics/generators/combobox-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  496. package/schematics/generators/combobox-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -2
  497. package/schematics/generators/combobox-filtering/schema.d.ts +0 -3
  498. package/schematics/generators/combobox-filtering/schema.js +0 -2
  499. package/schematics/generators/combobox-filtering/schema.json +0 -125
  500. package/schematics/generators/combobox-grouping/index.d.ts +0 -3
  501. package/schematics/generators/combobox-grouping/index.js +0 -8
  502. package/schematics/generators/combobox-grouping/sample-details.d.ts +0 -5
  503. package/schematics/generators/combobox-grouping/sample-details.js +0 -7
  504. package/schematics/generators/combobox-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  505. package/schematics/generators/combobox-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  506. package/schematics/generators/combobox-grouping/schema.d.ts +0 -3
  507. package/schematics/generators/combobox-grouping/schema.js +0 -2
  508. package/schematics/generators/combobox-grouping/schema.json +0 -125
  509. package/schematics/generators/combobox-reactive-form/index.d.ts +0 -3
  510. package/schematics/generators/combobox-reactive-form/index.js +0 -8
  511. package/schematics/generators/combobox-reactive-form/sample-details.d.ts +0 -5
  512. package/schematics/generators/combobox-reactive-form/sample-details.js +0 -7
  513. package/schematics/generators/combobox-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  514. package/schematics/generators/combobox-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -24
  515. package/schematics/generators/combobox-reactive-form/schema.d.ts +0 -3
  516. package/schematics/generators/combobox-reactive-form/schema.js +0 -2
  517. package/schematics/generators/combobox-reactive-form/schema.json +0 -125
  518. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/1.png +0 -0
  519. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/10.png +0 -0
  520. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/2.png +0 -0
  521. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/3.png +0 -0
  522. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/4.png +0 -0
  523. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/5.png +0 -0
  524. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/6.png +0 -0
  525. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/7.png +0 -0
  526. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/8.png +0 -0
  527. package/schematics/generators/combobox-template/images/__path__/__name@dasherize__/9.png +0 -0
  528. package/schematics/generators/combobox-template/index.d.ts +0 -3
  529. package/schematics/generators/combobox-template/index.js +0 -8
  530. package/schematics/generators/combobox-template/sample-details.d.ts +0 -5
  531. package/schematics/generators/combobox-template/sample-details.js +0 -7
  532. package/schematics/generators/combobox-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -65
  533. package/schematics/generators/combobox-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  534. package/schematics/generators/combobox-template/schema.d.ts +0 -3
  535. package/schematics/generators/combobox-template/schema.js +0 -2
  536. package/schematics/generators/combobox-template/schema.json +0 -125
  537. package/schematics/generators/combobox-template-driven/index.d.ts +0 -3
  538. package/schematics/generators/combobox-template-driven/index.js +0 -8
  539. package/schematics/generators/combobox-template-driven/sample-details.d.ts +0 -5
  540. package/schematics/generators/combobox-template-driven/sample-details.js +0 -7
  541. package/schematics/generators/combobox-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  542. package/schematics/generators/combobox-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  543. package/schematics/generators/combobox-template-driven/schema.d.ts +0 -3
  544. package/schematics/generators/combobox-template-driven/schema.js +0 -2
  545. package/schematics/generators/combobox-template-driven/schema.json +0 -125
  546. package/schematics/generators/dropdownlist-cascading/index.d.ts +0 -3
  547. package/schematics/generators/dropdownlist-cascading/index.js +0 -8
  548. package/schematics/generators/dropdownlist-cascading/sample-details.d.ts +0 -5
  549. package/schematics/generators/dropdownlist-cascading/sample-details.js +0 -7
  550. package/schematics/generators/dropdownlist-cascading/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  551. package/schematics/generators/dropdownlist-cascading/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  552. package/schematics/generators/dropdownlist-cascading/schema.d.ts +0 -3
  553. package/schematics/generators/dropdownlist-cascading/schema.js +0 -2
  554. package/schematics/generators/dropdownlist-cascading/schema.json +0 -125
  555. package/schematics/generators/dropdownlist-default/index.d.ts +0 -3
  556. package/schematics/generators/dropdownlist-default/index.js +0 -8
  557. package/schematics/generators/dropdownlist-default/sample-details.d.ts +0 -5
  558. package/schematics/generators/dropdownlist-default/sample-details.js +0 -7
  559. package/schematics/generators/dropdownlist-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  560. package/schematics/generators/dropdownlist-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  561. package/schematics/generators/dropdownlist-default/schema.d.ts +0 -3
  562. package/schematics/generators/dropdownlist-default/schema.js +0 -2
  563. package/schematics/generators/dropdownlist-default/schema.json +0 -125
  564. package/schematics/generators/dropdownlist-filtering/index.d.ts +0 -3
  565. package/schematics/generators/dropdownlist-filtering/index.js +0 -8
  566. package/schematics/generators/dropdownlist-filtering/sample-details.d.ts +0 -5
  567. package/schematics/generators/dropdownlist-filtering/sample-details.js +0 -7
  568. package/schematics/generators/dropdownlist-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  569. package/schematics/generators/dropdownlist-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  570. package/schematics/generators/dropdownlist-filtering/schema.d.ts +0 -3
  571. package/schematics/generators/dropdownlist-filtering/schema.js +0 -2
  572. package/schematics/generators/dropdownlist-filtering/schema.json +0 -125
  573. package/schematics/generators/dropdownlist-inline/index.d.ts +0 -3
  574. package/schematics/generators/dropdownlist-inline/index.js +0 -8
  575. package/schematics/generators/dropdownlist-inline/sample-details.d.ts +0 -5
  576. package/schematics/generators/dropdownlist-inline/sample-details.js +0 -7
  577. package/schematics/generators/dropdownlist-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  578. package/schematics/generators/dropdownlist-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  579. package/schematics/generators/dropdownlist-inline/schema.d.ts +0 -3
  580. package/schematics/generators/dropdownlist-inline/schema.js +0 -2
  581. package/schematics/generators/dropdownlist-inline/schema.json +0 -125
  582. package/schematics/generators/dropdownlist-reactive-form/index.d.ts +0 -3
  583. package/schematics/generators/dropdownlist-reactive-form/index.js +0 -8
  584. package/schematics/generators/dropdownlist-reactive-form/sample-details.d.ts +0 -5
  585. package/schematics/generators/dropdownlist-reactive-form/sample-details.js +0 -7
  586. package/schematics/generators/dropdownlist-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  587. package/schematics/generators/dropdownlist-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -25
  588. package/schematics/generators/dropdownlist-reactive-form/schema.d.ts +0 -3
  589. package/schematics/generators/dropdownlist-reactive-form/schema.js +0 -2
  590. package/schematics/generators/dropdownlist-reactive-form/schema.json +0 -125
  591. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/1.png +0 -0
  592. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/10.png +0 -0
  593. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/2.png +0 -0
  594. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/3.png +0 -0
  595. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/4.png +0 -0
  596. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/5.png +0 -0
  597. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/6.png +0 -0
  598. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/7.png +0 -0
  599. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/8.png +0 -0
  600. package/schematics/generators/dropdownlist-template/images/__path__/__name@dasherize__/9.png +0 -0
  601. package/schematics/generators/dropdownlist-template/index.d.ts +0 -3
  602. package/schematics/generators/dropdownlist-template/index.js +0 -8
  603. package/schematics/generators/dropdownlist-template/sample-details.d.ts +0 -5
  604. package/schematics/generators/dropdownlist-template/sample-details.js +0 -7
  605. package/schematics/generators/dropdownlist-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -84
  606. package/schematics/generators/dropdownlist-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -19
  607. package/schematics/generators/dropdownlist-template/schema.d.ts +0 -3
  608. package/schematics/generators/dropdownlist-template/schema.js +0 -2
  609. package/schematics/generators/dropdownlist-template/schema.json +0 -125
  610. package/schematics/generators/dropdownlist-template-driven/index.d.ts +0 -3
  611. package/schematics/generators/dropdownlist-template-driven/index.js +0 -8
  612. package/schematics/generators/dropdownlist-template-driven/sample-details.d.ts +0 -5
  613. package/schematics/generators/dropdownlist-template-driven/sample-details.js +0 -7
  614. package/schematics/generators/dropdownlist-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -17
  615. package/schematics/generators/dropdownlist-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -25
  616. package/schematics/generators/dropdownlist-template-driven/schema.d.ts +0 -3
  617. package/schematics/generators/dropdownlist-template-driven/schema.js +0 -2
  618. package/schematics/generators/dropdownlist-template-driven/schema.json +0 -125
  619. package/schematics/generators/multiselect-box-mode/index.d.ts +0 -3
  620. package/schematics/generators/multiselect-box-mode/index.js +0 -8
  621. package/schematics/generators/multiselect-box-mode/sample-details.d.ts +0 -5
  622. package/schematics/generators/multiselect-box-mode/sample-details.js +0 -7
  623. package/schematics/generators/multiselect-box-mode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  624. package/schematics/generators/multiselect-box-mode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  625. package/schematics/generators/multiselect-box-mode/schema.d.ts +0 -3
  626. package/schematics/generators/multiselect-box-mode/schema.js +0 -2
  627. package/schematics/generators/multiselect-box-mode/schema.json +0 -125
  628. package/schematics/generators/multiselect-checkbox/index.d.ts +0 -3
  629. package/schematics/generators/multiselect-checkbox/index.js +0 -8
  630. package/schematics/generators/multiselect-checkbox/sample-details.d.ts +0 -5
  631. package/schematics/generators/multiselect-checkbox/sample-details.js +0 -7
  632. package/schematics/generators/multiselect-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  633. package/schematics/generators/multiselect-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  634. package/schematics/generators/multiselect-checkbox/schema.d.ts +0 -3
  635. package/schematics/generators/multiselect-checkbox/schema.js +0 -2
  636. package/schematics/generators/multiselect-checkbox/schema.json +0 -125
  637. package/schematics/generators/multiselect-chip-customization/index.d.ts +0 -3
  638. package/schematics/generators/multiselect-chip-customization/index.js +0 -8
  639. package/schematics/generators/multiselect-chip-customization/sample-details.d.ts +0 -5
  640. package/schematics/generators/multiselect-chip-customization/sample-details.js +0 -7
  641. package/schematics/generators/multiselect-chip-customization/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -73
  642. package/schematics/generators/multiselect-chip-customization/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  643. package/schematics/generators/multiselect-chip-customization/schema.d.ts +0 -3
  644. package/schematics/generators/multiselect-chip-customization/schema.js +0 -2
  645. package/schematics/generators/multiselect-chip-customization/schema.json +0 -125
  646. package/schematics/generators/multiselect-delimiter-mode/index.d.ts +0 -3
  647. package/schematics/generators/multiselect-delimiter-mode/index.js +0 -8
  648. package/schematics/generators/multiselect-delimiter-mode/sample-details.d.ts +0 -5
  649. package/schematics/generators/multiselect-delimiter-mode/sample-details.js +0 -7
  650. package/schematics/generators/multiselect-delimiter-mode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -1
  651. package/schematics/generators/multiselect-delimiter-mode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  652. package/schematics/generators/multiselect-delimiter-mode/schema.d.ts +0 -3
  653. package/schematics/generators/multiselect-delimiter-mode/schema.js +0 -2
  654. package/schematics/generators/multiselect-delimiter-mode/schema.json +0 -125
  655. package/schematics/generators/multiselect-filtering/index.d.ts +0 -3
  656. package/schematics/generators/multiselect-filtering/index.js +0 -8
  657. package/schematics/generators/multiselect-filtering/sample-details.d.ts +0 -5
  658. package/schematics/generators/multiselect-filtering/sample-details.js +0 -7
  659. package/schematics/generators/multiselect-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  660. package/schematics/generators/multiselect-filtering/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  661. package/schematics/generators/multiselect-filtering/schema.d.ts +0 -3
  662. package/schematics/generators/multiselect-filtering/schema.js +0 -2
  663. package/schematics/generators/multiselect-filtering/schema.json +0 -125
  664. package/schematics/generators/multiselect-reactive-form/index.d.ts +0 -3
  665. package/schematics/generators/multiselect-reactive-form/index.js +0 -8
  666. package/schematics/generators/multiselect-reactive-form/sample-details.d.ts +0 -5
  667. package/schematics/generators/multiselect-reactive-form/sample-details.js +0 -7
  668. package/schematics/generators/multiselect-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -18
  669. package/schematics/generators/multiselect-reactive-form/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -24
  670. package/schematics/generators/multiselect-reactive-form/schema.d.ts +0 -3
  671. package/schematics/generators/multiselect-reactive-form/schema.js +0 -2
  672. package/schematics/generators/multiselect-reactive-form/schema.json +0 -125
  673. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/1.png +0 -0
  674. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/10.png +0 -0
  675. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/2.png +0 -0
  676. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/3.png +0 -0
  677. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/4.png +0 -0
  678. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/5.png +0 -0
  679. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/6.png +0 -0
  680. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/7.png +0 -0
  681. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/8.png +0 -0
  682. package/schematics/generators/multiselect-template/images/__path__/__name@dasherize__/9.png +0 -0
  683. package/schematics/generators/multiselect-template/index.d.ts +0 -3
  684. package/schematics/generators/multiselect-template/index.js +0 -8
  685. package/schematics/generators/multiselect-template/sample-details.d.ts +0 -5
  686. package/schematics/generators/multiselect-template/sample-details.js +0 -7
  687. package/schematics/generators/multiselect-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -211
  688. package/schematics/generators/multiselect-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  689. package/schematics/generators/multiselect-template/schema.d.ts +0 -3
  690. package/schematics/generators/multiselect-template/schema.js +0 -2
  691. package/schematics/generators/multiselect-template/schema.json +0 -125
  692. package/schematics/generators/multiselect-template-driven/index.d.ts +0 -3
  693. package/schematics/generators/multiselect-template-driven/index.js +0 -8
  694. package/schematics/generators/multiselect-template-driven/sample-details.d.ts +0 -5
  695. package/schematics/generators/multiselect-template-driven/sample-details.js +0 -7
  696. package/schematics/generators/multiselect-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -18
  697. package/schematics/generators/multiselect-template-driven/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -24
  698. package/schematics/generators/multiselect-template-driven/schema.d.ts +0 -3
  699. package/schematics/generators/multiselect-template-driven/schema.js +0 -2
  700. package/schematics/generators/multiselect-template-driven/schema.json +0 -125
  701. package/schematics/ng-add/index.d.ts +0 -3
  702. package/schematics/ng-add/index.js +0 -9
  703. package/schematics/ng-add/schema.d.ts +0 -13
  704. package/schematics/ng-add/schema.js +0 -2
  705. package/schematics/ng-add/schema.json +0 -34
  706. package/schematics/tsconfig.json +0 -25
  707. package/schematics/utils/lib-details.d.ts +0 -4
  708. package/schematics/utils/lib-details.js +0 -6
@@ -1 +0,0 @@
1
- {"version":3,"file":"ej2-angular-dropdowns.es5.js","sources":["~/@syncfusion/ej2-angular-dropdowns/ej2-angular-dropdowns.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-tree/dropdowntree-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-tree/dropdowntree.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-tree/dropdowntree.component.ts","~/@syncfusion/ej2-angular-dropdowns/src/list-box/listbox-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/list-box/listbox.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/list-box/listbox.component.ts","~/@syncfusion/ej2-angular-dropdowns/src/multi-select/multiselect-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/multi-select/multiselect.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/multi-select/multiselect.component.ts","~/@syncfusion/ej2-angular-dropdowns/src/auto-complete/autocomplete-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/auto-complete/autocomplete.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/auto-complete/autocomplete.component.ts","~/@syncfusion/ej2-angular-dropdowns/src/combo-box/combobox-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/combo-box/combobox.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/combo-box/combobox.component.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-list/dropdownlist-all.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-list/dropdownlist.module.ts","~/@syncfusion/ej2-angular-dropdowns/src/drop-down-list/dropdownlist.component.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {DropDownListComponent,DropDownListModule,DropDownListAllModule,ComboBoxComponent,ComboBoxModule,ComboBoxAllModule,AutoCompleteComponent,AutoCompleteModule,AutoCompleteAllModule,MultiSelectComponent,MultiSelectModule,MultiSelectAllModule,CheckBoxSelectionService,ListBoxComponent,ListBoxModule,ListBoxAllModule,DropDownTreeComponent,DropDownTreeModule,DropDownTreeAllModule,SearchType,incrementalSearch,Search,escapeCharRegExp,resetIncrementalSearchValues,HightLightType,highlightSearch,revertHighlightSearch,FilterType,FieldSettings,dropDownBaseClasses,DropDownBaseClassList,SelectEventArgs,BeforeOpenEventArgs,ActionBeginEventArgs,ActionCompleteEventArgs,DataBoundEventArgs,DropDownBase,ResultData,FilteringEventArgs,PopupEventArgs,FocusEventArgs,FieldSettingsModel,DropDownBaseModel,ChangeEventArgs,dropDownListClasses,DropDownList,DropDownListClassList,DropDownListModel,TreeFilterType,Fields,TreeSettings,DdtChangeEventArgs,DdtBeforeOpenEventArgs,DdtPopupEventArgs,DdtDataBoundEventArgs,DdtFocusEventArgs,DdtFilteringEventArgs,DdtSelectEventArgs,DdtKeyPressEventArgs,Mode,SortOrder,ExpandOn,DropDownTree,FieldsModel,TreeSettingsModel,DropDownTreeModel,ComboBox,CustomValueSpecifierEventArgs,ComboBoxModel,AutoComplete,AutoCompleteModel,RemoveEventArgs,MultiSelect,CustomValueEventArgs,TaggingEventArgs,MultiSelectChangeEventArgs,visualMode,ISelectAllEventArgs,MultiSelectModel,CheckBoxSelection,ItemCreatedArgs,IUpdateListArgs,IMulitSelect,createFloatLabel,updateFloatLabelState,removeFloating,setPlaceHolder,floatLabelFocus,floatLabelBlur,encodePlaceholder,SelectionMode,ToolBarPosition,CheckBoxPosition,SelectionSettings,ToolbarSettings,ListBox,BeforeItemRenderEventArgs,SourceDestinationModel,DragEventArgs,ListBoxChangeEventArgs,DropEventArgs,SelectionSettingsModel,ToolbarSettingsModel,ListBoxModel} from './public_api';\n\nexport {inputs as ɵe,outputs as ɵf} from './src/auto-complete/autocomplete.component';\nexport {inputs as ɵc,outputs as ɵd} from './src/combo-box/combobox.component';\nexport {inputs as ɵa,outputs as ɵb} from './src/drop-down-list/dropdownlist.component';\nexport {inputs as ɵk,outputs as ɵl} from './src/drop-down-tree/dropdowntree.component';\nexport {inputs as ɵi,outputs as ɵj} from './src/list-box/listbox.component';\nexport {inputs as ɵg,outputs as ɵh} from './src/multi-select/multiselect.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DropDownTreeComponent } from './dropdowntree.component';\nimport { DropDownTreeModule } from './dropdowntree.module';\n/**\n * NgModule definition for the DropDownTree component with providers.\n */\nexport class DropDownTreeAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DropDownTreeModule],\n exports: [\n DropDownTreeModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownTreeAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownTreeAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownTreeAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DropDownTreeComponent } from './dropdowntree.component';\n/**\n * NgModule definition for the DropDownTree component.\n */\nexport class DropDownTreeModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DropDownTreeComponent\n ],\n exports: [\n DropDownTreeComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownTreeModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownTreeModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownTreeModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { DropDownTree } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','allowFiltering','allowMultiSelection','changeOnBlur','cssClass','customTemplate','delimiterChar','enablePersistence','enableRtl','enabled','fields','filterBarPlaceholder','filterType','floatLabelType','footerTemplate','headerTemplate','htmlAttributes','ignoreAccent','ignoreCase','itemTemplate','locale','mode','noRecordsTemplate','placeholder','popupHeight','popupWidth','readonly','selectAllText','showCheckBox','showClearButton','showDropDownIcon','showSelectAll','sortOrder','text','treeSettings','unSelectAllText','value','width','wrapText','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['actionFailure','beforeOpen','blur','change','close','created','dataBound','destroyed','filtering','focus','keyPress','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The DropDownTree component contains a list of predefined values from which you can choose a single or multiple values.\n * ```html\n * <ejs-dropdowntree></ejs-dropdowntree>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class DropDownTreeComponent extends DropDownTree implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionFailure: any;\n\tbeforeOpen: any;\n\tblur: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tfiltering: any;\n\tfocus: any;\n\tkeyPress: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\n/**\n * Specifies the template that renders a customized footer container at the bottom of the pop-up list. \n * By default, the footerTemplate will be null and there will be no footer container for the pop-up list.\n * \\@default null\n */\n@Template()\n public footerTemplate: any;\n/**\n * Specifies the template that renders a customized header container at the top of the pop-up list. \n * By default, the headerTemplate will be null and there will be no header container for the pop-up list.\n * \\@default null\n */\n@Template()\n public headerTemplate: any;\n/**\n * Specifies a template to render customized content for all the items. \n * If the **itemTemplate** property is set, the template content overrides the displayed item text. \n * The property accepts [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) \n * or HTML element ID holding the content.\n * \\@default null\n */\n@Template()\n public itemTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request failed')\npublic actionFailureTemplate: any;\nprivate skipFromEvent:boolean = true;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-dropdowntree',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => DropDownTreeComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction DropDownTreeComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownTreeComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownTreeComponent.ctorParameters;\n/** @type {?} */\nDropDownTreeComponent.propDecorators;\n/** @type {?} */\nDropDownTreeComponent.prototype.formCompContext;\n/** @type {?} */\nDropDownTreeComponent.prototype.formContext;\n/** @type {?} */\nDropDownTreeComponent.prototype.tagObjects;\n/** @type {?} */\nDropDownTreeComponent.prototype.actionFailure;\n/** @type {?} */\nDropDownTreeComponent.prototype.beforeOpen;\n/** @type {?} */\nDropDownTreeComponent.prototype.blur;\n/** @type {?} */\nDropDownTreeComponent.prototype.change;\n/** @type {?} */\nDropDownTreeComponent.prototype.close;\n/** @type {?} */\nDropDownTreeComponent.prototype.created;\n/** @type {?} */\nDropDownTreeComponent.prototype.dataBound;\n/** @type {?} */\nDropDownTreeComponent.prototype.destroyed;\n/** @type {?} */\nDropDownTreeComponent.prototype.filtering;\n/** @type {?} */\nDropDownTreeComponent.prototype.focus;\n/** @type {?} */\nDropDownTreeComponent.prototype.keyPress;\n/** @type {?} */\nDropDownTreeComponent.prototype.open;\n/** @type {?} */\nDropDownTreeComponent.prototype.select;\n/** @type {?} */\nDropDownTreeComponent.prototype.valueChange;\n/**\n * Specifies the template that renders a customized footer container at the bottom of the pop-up list. \n * By default, the footerTemplate will be null and there will be no footer container for the pop-up list.\n * \\@default null\n * @type {?}\n */\nDropDownTreeComponent.prototype.footerTemplate;\n/**\n * Specifies the template that renders a customized header container at the top of the pop-up list. \n * By default, the headerTemplate will be null and there will be no header container for the pop-up list.\n * \\@default null\n * @type {?}\n */\nDropDownTreeComponent.prototype.headerTemplate;\n/**\n * Specifies a template to render customized content for all the items. \n * If the **itemTemplate** property is set, the template content overrides the displayed item text. \n * The property accepts [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) \n * or HTML element ID holding the content.\n * \\@default null\n * @type {?}\n */\nDropDownTreeComponent.prototype.itemTemplate;\n/** @type {?} */\nDropDownTreeComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nDropDownTreeComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nDropDownTreeComponent.prototype.skipFromEvent;\n/** @type {?} */\nDropDownTreeComponent.prototype.registerEvents;\n/** @type {?} */\nDropDownTreeComponent.prototype.addTwoWay;\n/** @type {?} */\nDropDownTreeComponent.prototype.ngEle;\n/** @type {?} */\nDropDownTreeComponent.prototype.srenderer;\n/** @type {?} */\nDropDownTreeComponent.prototype.viewContainerRef;\n/** @type {?} */\nDropDownTreeComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ListBoxComponent } from './listbox.component';\nimport { ListBoxModule } from './listbox.module';\n/**\n * NgModule definition for the ListBox component with providers.\n */\nexport class ListBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, ListBoxModule],\n exports: [\n ListBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ListBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nListBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nListBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ListBoxComponent } from './listbox.component';\n/**\n * NgModule definition for the ListBox component.\n */\nexport class ListBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ListBoxComponent\n ],\n exports: [\n ListBoxComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ListBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nListBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nListBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { ListBox } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','allowDragAndDrop','allowFiltering','cssClass','dataSource','enablePersistence','enableRtl','enabled','fields','filterBarPlaceholder','filterType','groupTemplate','height','ignoreAccent','ignoreCase','itemTemplate','locale','maximumSelectionLength','noRecordsTemplate','query','scope','selectionSettings','sortOrder','toolbarSettings','value','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionComplete','actionFailure','beforeDrop','beforeItemRender','change','created','dataBound','destroyed','drag','dragStart','drop','filtering','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The ListBox allows the user to select values from the predefined list of values.\n * ```html\n * <ejs-listbox [dataSource]='data'></ejs-listbox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class ListBoxComponent extends ListBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbeforeDrop: any;\n\tbeforeItemRender: any;\n\tchange: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tdrag: any;\n\tdragStart: any;\n\tdrop: any;\n\tfiltering: any;\n\tselect: any;\npublic valueChange: any;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n */\n@Template()\n public itemTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DropDownsCheckBoxSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-listbox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => ListBoxComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n};\n}\n\nfunction ListBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nListBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nListBoxComponent.ctorParameters;\n/** @type {?} */\nListBoxComponent.propDecorators;\n/** @type {?} */\nListBoxComponent.prototype.formCompContext;\n/** @type {?} */\nListBoxComponent.prototype.formContext;\n/** @type {?} */\nListBoxComponent.prototype.tagObjects;\n/** @type {?} */\nListBoxComponent.prototype.actionBegin;\n/** @type {?} */\nListBoxComponent.prototype.actionComplete;\n/** @type {?} */\nListBoxComponent.prototype.actionFailure;\n/** @type {?} */\nListBoxComponent.prototype.beforeDrop;\n/** @type {?} */\nListBoxComponent.prototype.beforeItemRender;\n/** @type {?} */\nListBoxComponent.prototype.change;\n/** @type {?} */\nListBoxComponent.prototype.created;\n/** @type {?} */\nListBoxComponent.prototype.dataBound;\n/** @type {?} */\nListBoxComponent.prototype.destroyed;\n/** @type {?} */\nListBoxComponent.prototype.drag;\n/** @type {?} */\nListBoxComponent.prototype.dragStart;\n/** @type {?} */\nListBoxComponent.prototype.drop;\n/** @type {?} */\nListBoxComponent.prototype.filtering;\n/** @type {?} */\nListBoxComponent.prototype.select;\n/** @type {?} */\nListBoxComponent.prototype.valueChange;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n * @type {?}\n */\nListBoxComponent.prototype.itemTemplate;\n/** @type {?} */\nListBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nListBoxComponent.prototype.focus;\n/** @type {?} */\nListBoxComponent.prototype.blur;\n/** @type {?} */\nListBoxComponent.prototype.registerEvents;\n/** @type {?} */\nListBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nListBoxComponent.prototype.ngEle;\n/** @type {?} */\nListBoxComponent.prototype.srenderer;\n/** @type {?} */\nListBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nListBoxComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MultiSelectComponent } from './multiselect.component';\nimport { MultiSelectModule } from './multiselect.module';\nimport {CheckBoxSelection} from '@syncfusion/ej2-dropdowns';\n\n\nexport const /** @type {?} */ CheckBoxSelectionService: ValueProvider = { provide: 'DropDownsCheckBoxSelection', useValue: CheckBoxSelection};\n/**\n * NgModule definition for the MultiSelect component with providers.\n */\nexport class MultiSelectAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, MultiSelectModule],\n exports: [\n MultiSelectModule\n ],\n providers:[\n CheckBoxSelectionService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiSelectAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiSelectAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiSelectAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MultiSelectComponent } from './multiselect.component';\n/**\n * NgModule definition for the MultiSelect component.\n */\nexport class MultiSelectModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n MultiSelectComponent\n ],\n exports: [\n MultiSelectComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction MultiSelectModule_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiSelectModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiSelectModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { MultiSelect } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','addTagOnBlur','allowCustomValue','allowFiltering','changeOnBlur','closePopupOnSelect','cssClass','dataSource','delimiterChar','enableGroupCheckBox','enableHtmlSanitizer','enablePersistence','enableRtl','enableSelectionOrder','enabled','fields','filterBarPlaceholder','filterType','floatLabelType','footerTemplate','groupTemplate','headerTemplate','hideSelectedItem','htmlAttributes','ignoreAccent','ignoreCase','itemTemplate','locale','maximumSelectionLength','mode','noRecordsTemplate','openOnClick','placeholder','popupHeight','popupWidth','query','readonly','selectAllText','showClearButton','showDropDownIcon','showSelectAll','sortOrder','text','unSelectAllText','value','valueTemplate','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','beforeOpen','beforeSelectAll','blur','change','chipSelection','close','created','customValueSelection','dataBound','destroyed','filtering','focus','open','removed','removing','select','selectedAll','tagging','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The MultiSelect allows the user to pick a values from the predefined list of values.\n * ```html\n * <ejs-multiselect></ejs-multiselect>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class MultiSelectComponent extends MultiSelect implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbeforeOpen: any;\n\tbeforeSelectAll: any;\n\tblur: any;\n\tchange: any;\n\tchipSelection: any;\n\tclose: any;\n\tcreated: any;\n\tcustomValueSelection: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tfiltering: any;\n\tfocus: any;\n\topen: any;\n\tremoved: any;\n\tremoving: any;\n\tselect: any;\n\tselectedAll: any;\n\ttagging: any;\npublic valueChange: any;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \\@default null\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \\@default null\n */\n@Template()\n public headerTemplate: any;\n/**\n * Accepts the template design and assigns it to the selected list item in the input element of the component. \n * For more details about the available template options refer to \n * [`Template`](../../multi-select/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n */\n@Template()\n public valueTemplate: any;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n */\n@Template()\n public itemTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the MultiSelect popup list.\n * \\@default null\n */\n@Template()\n public groupTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request failed')\npublic actionFailureTemplate: any;\nprivate skipFromEvent:boolean = true;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('DropDownsCheckBoxSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-multiselect',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MultiSelectComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'valueTemplate': [{ type: ContentChild, args: ['valueTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction MultiSelectComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nMultiSelectComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nMultiSelectComponent.ctorParameters;\n/** @type {?} */\nMultiSelectComponent.propDecorators;\n/** @type {?} */\nMultiSelectComponent.prototype.formCompContext;\n/** @type {?} */\nMultiSelectComponent.prototype.formContext;\n/** @type {?} */\nMultiSelectComponent.prototype.tagObjects;\n/** @type {?} */\nMultiSelectComponent.prototype.actionBegin;\n/** @type {?} */\nMultiSelectComponent.prototype.actionComplete;\n/** @type {?} */\nMultiSelectComponent.prototype.actionFailure;\n/** @type {?} */\nMultiSelectComponent.prototype.beforeOpen;\n/** @type {?} */\nMultiSelectComponent.prototype.beforeSelectAll;\n/** @type {?} */\nMultiSelectComponent.prototype.blur;\n/** @type {?} */\nMultiSelectComponent.prototype.change;\n/** @type {?} */\nMultiSelectComponent.prototype.chipSelection;\n/** @type {?} */\nMultiSelectComponent.prototype.close;\n/** @type {?} */\nMultiSelectComponent.prototype.created;\n/** @type {?} */\nMultiSelectComponent.prototype.customValueSelection;\n/** @type {?} */\nMultiSelectComponent.prototype.dataBound;\n/** @type {?} */\nMultiSelectComponent.prototype.destroyed;\n/** @type {?} */\nMultiSelectComponent.prototype.filtering;\n/** @type {?} */\nMultiSelectComponent.prototype.focus;\n/** @type {?} */\nMultiSelectComponent.prototype.open;\n/** @type {?} */\nMultiSelectComponent.prototype.removed;\n/** @type {?} */\nMultiSelectComponent.prototype.removing;\n/** @type {?} */\nMultiSelectComponent.prototype.select;\n/** @type {?} */\nMultiSelectComponent.prototype.selectedAll;\n/** @type {?} */\nMultiSelectComponent.prototype.tagging;\n/** @type {?} */\nMultiSelectComponent.prototype.valueChange;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \\@default null\n * @type {?}\n */\nMultiSelectComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \\@default null\n * @type {?}\n */\nMultiSelectComponent.prototype.headerTemplate;\n/**\n * Accepts the template design and assigns it to the selected list item in the input element of the component. \n * For more details about the available template options refer to \n * [`Template`](../../multi-select/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @type {?}\n */\nMultiSelectComponent.prototype.valueTemplate;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * > For more details about the available template options refer to [`Template`](../../multi-select/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @type {?}\n */\nMultiSelectComponent.prototype.itemTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the MultiSelect popup list.\n * \\@default null\n * @type {?}\n */\nMultiSelectComponent.prototype.groupTemplate;\n/** @type {?} */\nMultiSelectComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nMultiSelectComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nMultiSelectComponent.prototype.skipFromEvent;\n/** @type {?} */\nMultiSelectComponent.prototype.registerEvents;\n/** @type {?} */\nMultiSelectComponent.prototype.addTwoWay;\n/** @type {?} */\nMultiSelectComponent.prototype.ngEle;\n/** @type {?} */\nMultiSelectComponent.prototype.srenderer;\n/** @type {?} */\nMultiSelectComponent.prototype.viewContainerRef;\n/** @type {?} */\nMultiSelectComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AutoCompleteComponent } from './autocomplete.component';\nimport { AutoCompleteModule } from './autocomplete.module';\n/**\n * NgModule definition for the AutoComplete component with providers.\n */\nexport class AutoCompleteAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, AutoCompleteModule],\n exports: [\n AutoCompleteModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction AutoCompleteAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nAutoCompleteAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAutoCompleteAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AutoCompleteComponent } from './autocomplete.component';\n/**\n * NgModule definition for the AutoComplete component.\n */\nexport class AutoCompleteModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n AutoCompleteComponent\n ],\n exports: [\n AutoCompleteComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction AutoCompleteModule_tsickle_Closure_declarations() {\n/** @type {?} */\nAutoCompleteModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAutoCompleteModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { AutoComplete } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','allowCustom','allowFiltering','autofill','cssClass','dataSource','enablePersistence','enableRtl','enabled','fields','filterBarPlaceholder','filterType','floatLabelType','footerTemplate','groupTemplate','headerTemplate','highlight','htmlAttributes','ignoreAccent','ignoreCase','index','itemTemplate','locale','minLength','noRecordsTemplate','placeholder','popupHeight','popupWidth','query','readonly','showClearButton','showPopupButton','sortOrder','suggestionCount','text','value','valueTemplate','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','beforeOpen','blur','change','close','created','customValueSpecifier','dataBound','destroyed','filtering','focus','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one.\n * ```html\n * <ejs-autocomplete></ejs-autocomplete>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class AutoCompleteComponent extends AutoComplete implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbeforeOpen: any;\n\tblur: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tcustomValueSpecifier: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tfiltering: any;\n\tfocus: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n */\n@Template()\n public headerTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n */\n@Template()\n public groupTemplate: any;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n */\n@Template()\n public itemTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request failed')\npublic actionFailureTemplate: any;\nprivate skipFromEvent:boolean = true;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-autocomplete',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => AutoCompleteComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction AutoCompleteComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nAutoCompleteComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAutoCompleteComponent.ctorParameters;\n/** @type {?} */\nAutoCompleteComponent.propDecorators;\n/** @type {?} */\nAutoCompleteComponent.prototype.formCompContext;\n/** @type {?} */\nAutoCompleteComponent.prototype.formContext;\n/** @type {?} */\nAutoCompleteComponent.prototype.tagObjects;\n/** @type {?} */\nAutoCompleteComponent.prototype.actionBegin;\n/** @type {?} */\nAutoCompleteComponent.prototype.actionComplete;\n/** @type {?} */\nAutoCompleteComponent.prototype.actionFailure;\n/** @type {?} */\nAutoCompleteComponent.prototype.beforeOpen;\n/** @type {?} */\nAutoCompleteComponent.prototype.blur;\n/** @type {?} */\nAutoCompleteComponent.prototype.change;\n/** @type {?} */\nAutoCompleteComponent.prototype.close;\n/** @type {?} */\nAutoCompleteComponent.prototype.created;\n/** @type {?} */\nAutoCompleteComponent.prototype.customValueSpecifier;\n/** @type {?} */\nAutoCompleteComponent.prototype.dataBound;\n/** @type {?} */\nAutoCompleteComponent.prototype.destroyed;\n/** @type {?} */\nAutoCompleteComponent.prototype.filtering;\n/** @type {?} */\nAutoCompleteComponent.prototype.focus;\n/** @type {?} */\nAutoCompleteComponent.prototype.open;\n/** @type {?} */\nAutoCompleteComponent.prototype.select;\n/** @type {?} */\nAutoCompleteComponent.prototype.valueChange;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nAutoCompleteComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nAutoCompleteComponent.prototype.headerTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nAutoCompleteComponent.prototype.groupTemplate;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n * @type {?}\n */\nAutoCompleteComponent.prototype.itemTemplate;\n/** @type {?} */\nAutoCompleteComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nAutoCompleteComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nAutoCompleteComponent.prototype.skipFromEvent;\n/** @type {?} */\nAutoCompleteComponent.prototype.registerEvents;\n/** @type {?} */\nAutoCompleteComponent.prototype.addTwoWay;\n/** @type {?} */\nAutoCompleteComponent.prototype.ngEle;\n/** @type {?} */\nAutoCompleteComponent.prototype.srenderer;\n/** @type {?} */\nAutoCompleteComponent.prototype.viewContainerRef;\n/** @type {?} */\nAutoCompleteComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ComboBoxComponent } from './combobox.component';\nimport { ComboBoxModule } from './combobox.module';\n/**\n * NgModule definition for the ComboBox component with providers.\n */\nexport class ComboBoxAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, ComboBoxModule],\n exports: [\n ComboBoxModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ComboBoxAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nComboBoxAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nComboBoxAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ComboBoxComponent } from './combobox.component';\n/**\n * NgModule definition for the ComboBox component.\n */\nexport class ComboBoxModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ComboBoxComponent\n ],\n exports: [\n ComboBoxComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ComboBoxModule_tsickle_Closure_declarations() {\n/** @type {?} */\nComboBoxModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nComboBoxModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { ComboBox } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','allowCustom','allowFiltering','autofill','cssClass','dataSource','enablePersistence','enableRtl','enabled','fields','filterBarPlaceholder','filterType','floatLabelType','footerTemplate','groupTemplate','headerTemplate','htmlAttributes','ignoreAccent','ignoreCase','index','itemTemplate','locale','noRecordsTemplate','placeholder','popupHeight','popupWidth','query','readonly','showClearButton','sortOrder','text','value','valueTemplate','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','beforeOpen','blur','change','close','created','customValueSpecifier','dataBound','destroyed','filtering','focus','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The ComboBox component allows the user to type a value or choose an option from the list of predefined options.\n * ```html\n * <ejs-combobox></ejs-combobox>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class ComboBoxComponent extends ComboBox implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbeforeOpen: any;\n\tblur: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tcustomValueSpecifier: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tfiltering: any;\n\tfocus: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n */\n@Template()\n public headerTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n */\n@Template()\n public groupTemplate: any;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n */\n@Template()\n public itemTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request failed')\npublic actionFailureTemplate: any;\nprivate skipFromEvent:boolean = true;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-combobox',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => ComboBoxComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction ComboBoxComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nComboBoxComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nComboBoxComponent.ctorParameters;\n/** @type {?} */\nComboBoxComponent.propDecorators;\n/** @type {?} */\nComboBoxComponent.prototype.formCompContext;\n/** @type {?} */\nComboBoxComponent.prototype.formContext;\n/** @type {?} */\nComboBoxComponent.prototype.tagObjects;\n/** @type {?} */\nComboBoxComponent.prototype.actionBegin;\n/** @type {?} */\nComboBoxComponent.prototype.actionComplete;\n/** @type {?} */\nComboBoxComponent.prototype.actionFailure;\n/** @type {?} */\nComboBoxComponent.prototype.beforeOpen;\n/** @type {?} */\nComboBoxComponent.prototype.blur;\n/** @type {?} */\nComboBoxComponent.prototype.change;\n/** @type {?} */\nComboBoxComponent.prototype.close;\n/** @type {?} */\nComboBoxComponent.prototype.created;\n/** @type {?} */\nComboBoxComponent.prototype.customValueSpecifier;\n/** @type {?} */\nComboBoxComponent.prototype.dataBound;\n/** @type {?} */\nComboBoxComponent.prototype.destroyed;\n/** @type {?} */\nComboBoxComponent.prototype.filtering;\n/** @type {?} */\nComboBoxComponent.prototype.focus;\n/** @type {?} */\nComboBoxComponent.prototype.open;\n/** @type {?} */\nComboBoxComponent.prototype.select;\n/** @type {?} */\nComboBoxComponent.prototype.valueChange;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nComboBoxComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nComboBoxComponent.prototype.headerTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nComboBoxComponent.prototype.groupTemplate;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n * @type {?}\n */\nComboBoxComponent.prototype.itemTemplate;\n/** @type {?} */\nComboBoxComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nComboBoxComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nComboBoxComponent.prototype.skipFromEvent;\n/** @type {?} */\nComboBoxComponent.prototype.registerEvents;\n/** @type {?} */\nComboBoxComponent.prototype.addTwoWay;\n/** @type {?} */\nComboBoxComponent.prototype.ngEle;\n/** @type {?} */\nComboBoxComponent.prototype.srenderer;\n/** @type {?} */\nComboBoxComponent.prototype.viewContainerRef;\n/** @type {?} */\nComboBoxComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DropDownListComponent } from './dropdownlist.component';\nimport { DropDownListModule } from './dropdownlist.module';\n/**\n * NgModule definition for the DropDownList component with providers.\n */\nexport class DropDownListAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DropDownListModule],\n exports: [\n DropDownListModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownListAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownListAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownListAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DropDownListComponent } from './dropdownlist.component';\n/**\n * NgModule definition for the DropDownList component.\n */\nexport class DropDownListModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DropDownListComponent\n ],\n exports: [\n DropDownListComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownListModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownListModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownListModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { DropDownList } from '@syncfusion/ej2-dropdowns';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionFailureTemplate','allowFiltering','cssClass','dataSource','enablePersistence','enableRtl','enabled','fields','filterBarPlaceholder','filterType','floatLabelType','footerTemplate','groupTemplate','headerTemplate','htmlAttributes','ignoreAccent','ignoreCase','index','itemTemplate','locale','noRecordsTemplate','placeholder','popupHeight','popupWidth','query','readonly','showClearButton','sortOrder','text','value','valueTemplate','width','zIndex'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','beforeOpen','blur','change','close','created','dataBound','destroyed','filtering','focus','open','select','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * The DropDownList component contains a list of predefined values, from which the user can choose a single value.\n * ```html\n * <ejs-dropdownlist></ejs-dropdownlist>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class DropDownListComponent extends DropDownList implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbeforeOpen: any;\n\tblur: any;\n\tchange: any;\n\tclose: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tfiltering: any;\n\tfocus: any;\n\topen: any;\n\tselect: any;\npublic valueChange: any;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n */\n@Template()\n public footerTemplate: any;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n */\n@Template()\n public headerTemplate: any;\n/**\n * Accepts the template design and assigns it to the selected list item in the input element of the component. \n * For more details about the available template options refer to \n * [`Template`](../../drop-down-list/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n */\n@Template()\n public valueTemplate: any;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n */\n@Template()\n public groupTemplate: any;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n */\n@Template()\n public itemTemplate: any;\n \n @Template('No records found')\npublic noRecordsTemplate: any;\n \n @Template('Request failed')\npublic actionFailureTemplate: any;\nprivate skipFromEvent:boolean = true;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-dropdownlist',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => DropDownListComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'valueTemplate': [{ type: ContentChild, args: ['valueTemplate', ] },],\n'groupTemplate': [{ type: ContentChild, args: ['groupTemplate', ] },],\n'itemTemplate': [{ type: ContentChild, args: ['itemTemplate', ] },],\n'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate', ] },],\n'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate', ] },],\n};\n}\n\nfunction DropDownListComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownListComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownListComponent.ctorParameters;\n/** @type {?} */\nDropDownListComponent.propDecorators;\n/** @type {?} */\nDropDownListComponent.prototype.formCompContext;\n/** @type {?} */\nDropDownListComponent.prototype.formContext;\n/** @type {?} */\nDropDownListComponent.prototype.tagObjects;\n/** @type {?} */\nDropDownListComponent.prototype.actionBegin;\n/** @type {?} */\nDropDownListComponent.prototype.actionComplete;\n/** @type {?} */\nDropDownListComponent.prototype.actionFailure;\n/** @type {?} */\nDropDownListComponent.prototype.beforeOpen;\n/** @type {?} */\nDropDownListComponent.prototype.blur;\n/** @type {?} */\nDropDownListComponent.prototype.change;\n/** @type {?} */\nDropDownListComponent.prototype.close;\n/** @type {?} */\nDropDownListComponent.prototype.created;\n/** @type {?} */\nDropDownListComponent.prototype.dataBound;\n/** @type {?} */\nDropDownListComponent.prototype.destroyed;\n/** @type {?} */\nDropDownListComponent.prototype.filtering;\n/** @type {?} */\nDropDownListComponent.prototype.focus;\n/** @type {?} */\nDropDownListComponent.prototype.open;\n/** @type {?} */\nDropDownListComponent.prototype.select;\n/** @type {?} */\nDropDownListComponent.prototype.valueChange;\n/**\n * Accepts the template design and assigns it to the footer container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @type {?}\n */\nDropDownListComponent.prototype.footerTemplate;\n/**\n * Accepts the template design and assigns it to the header container of the popup list. \n * > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.\n * \\@default null\n * @type {?}\n */\nDropDownListComponent.prototype.headerTemplate;\n/**\n * Accepts the template design and assigns it to the selected list item in the input element of the component. \n * For more details about the available template options refer to \n * [`Template`](../../drop-down-list/templates) documentation.\n * \n * We have built-in `template engine`\n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @type {?}\n */\nDropDownListComponent.prototype.valueTemplate;\n/**\n * Accepts the template design and assigns it to the group headers present in the popup list.\n * \\@default null\n * @deprecated\n * @type {?}\n */\nDropDownListComponent.prototype.groupTemplate;\n/**\n * Accepts the template design and assigns it to each list item present in the popup. \n * We have built-in `template engine`\n * \n * which provides options to compile template string into a executable function.\n * For EX: We have expression evolution as like ES6 expression string literals.\n * \n * \\@default null\n * @deprecated\n * @type {?}\n */\nDropDownListComponent.prototype.itemTemplate;\n/** @type {?} */\nDropDownListComponent.prototype.noRecordsTemplate;\n/** @type {?} */\nDropDownListComponent.prototype.actionFailureTemplate;\n/** @type {?} */\nDropDownListComponent.prototype.skipFromEvent;\n/** @type {?} */\nDropDownListComponent.prototype.registerEvents;\n/** @type {?} */\nDropDownListComponent.prototype.addTwoWay;\n/** @type {?} */\nDropDownListComponent.prototype.ngEle;\n/** @type {?} */\nDropDownListComponent.prototype.srenderer;\n/** @type {?} */\nDropDownListComponent.prototype.viewContainerRef;\n/** @type {?} */\nDropDownListComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs","inputs","twoWays"],"mappings":"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"}