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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (440) 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 +23 -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/mention/mention-all.module.mjs +23 -0
  19. package/esm2020/src/mention/mention.component.mjs +84 -0
  20. package/esm2020/src/mention/mention.module.mjs +25 -0
  21. package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
  22. package/esm2020/src/multi-select/multiselect.component.mjs +134 -0
  23. package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
  24. package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
  25. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +1052 -0
  26. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  27. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1052 -0
  28. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  29. package/package.json +27 -13
  30. package/schematics/utils/lib-details.d.ts +2 -2
  31. package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
  32. package/src/auto-complete/autocomplete.component.d.ts +7 -4
  33. package/src/auto-complete/autocomplete.module.d.ts +6 -0
  34. package/src/combo-box/combobox-all.module.d.ts +6 -0
  35. package/src/combo-box/combobox.component.d.ts +7 -4
  36. package/src/combo-box/combobox.module.d.ts +6 -0
  37. package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
  38. package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
  39. package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
  40. package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
  41. package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
  42. package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
  43. package/src/list-box/listbox-all.module.d.ts +6 -0
  44. package/src/list-box/listbox.component.d.ts +4 -1
  45. package/src/list-box/listbox.module.d.ts +6 -0
  46. package/src/mention/mention-all.module.d.ts +6 -0
  47. package/src/mention/mention.component.d.ts +3 -0
  48. package/src/mention/mention.module.d.ts +6 -0
  49. package/src/multi-select/multiselect-all.module.d.ts +6 -0
  50. package/src/multi-select/multiselect.component.d.ts +3 -0
  51. package/src/multi-select/multiselect.module.d.ts +6 -0
  52. package/styles/auto-complete/_all.scss +1 -0
  53. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -0
  54. package/styles/auto-complete/_bootstrap-definition.scss +2 -0
  55. package/styles/auto-complete/_bootstrap4-definition.scss +11 -0
  56. package/styles/auto-complete/_bootstrap5-dark-definition.scss +1 -0
  57. package/styles/auto-complete/_bootstrap5-definition.scss +2 -0
  58. package/styles/auto-complete/_fabric-dark-definition.scss +2 -0
  59. package/styles/auto-complete/_fabric-definition.scss +2 -0
  60. package/styles/auto-complete/_fluent-dark-definition.scss +1 -0
  61. package/styles/auto-complete/_fluent-definition.scss +2 -0
  62. package/styles/auto-complete/_fusionnew-definition.scss +2 -0
  63. package/styles/auto-complete/_highcontrast-definition.scss +2 -0
  64. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -0
  65. package/styles/auto-complete/_material-dark-definition.scss +2 -0
  66. package/styles/auto-complete/_material-definition.scss +2 -0
  67. package/styles/auto-complete/_material3-dark-definition.scss +1 -0
  68. package/styles/auto-complete/_material3-definition.scss +2 -0
  69. package/styles/auto-complete/_tailwind-dark-definition.scss +1 -0
  70. package/styles/auto-complete/_tailwind-definition.scss +2 -0
  71. package/styles/auto-complete/bootstrap-dark.scss +4 -1
  72. package/styles/auto-complete/bootstrap.scss +4 -1
  73. package/styles/auto-complete/bootstrap4.scss +4 -1
  74. package/styles/auto-complete/bootstrap5-dark.scss +4 -1
  75. package/styles/auto-complete/bootstrap5.scss +4 -1
  76. package/styles/auto-complete/fabric-dark.scss +4 -1
  77. package/styles/auto-complete/fabric.scss +4 -1
  78. package/styles/auto-complete/fluent-dark.scss +4 -1
  79. package/styles/auto-complete/fluent.scss +4 -1
  80. package/styles/auto-complete/highcontrast-light.scss +4 -1
  81. package/styles/auto-complete/highcontrast.scss +4 -1
  82. package/styles/auto-complete/material-dark.scss +4 -1
  83. package/styles/auto-complete/material.scss +4 -1
  84. package/styles/auto-complete/material3-dark.scss +4 -1
  85. package/styles/auto-complete/material3.scss +4 -1
  86. package/styles/auto-complete/tailwind-dark.scss +4 -1
  87. package/styles/auto-complete/tailwind.scss +4 -1
  88. package/styles/combo-box/_all.scss +1 -0
  89. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -0
  90. package/styles/combo-box/_bootstrap-definition.scss +2 -0
  91. package/styles/combo-box/_bootstrap4-definition.scss +11 -0
  92. package/styles/combo-box/_bootstrap5-dark-definition.scss +1 -0
  93. package/styles/combo-box/_bootstrap5-definition.scss +2 -0
  94. package/styles/combo-box/_fabric-dark-definition.scss +2 -0
  95. package/styles/combo-box/_fabric-definition.scss +2 -0
  96. package/styles/combo-box/_fluent-dark-definition.scss +1 -0
  97. package/styles/combo-box/_fluent-definition.scss +2 -0
  98. package/styles/combo-box/_fusionnew-definition.scss +2 -0
  99. package/styles/combo-box/_highcontrast-definition.scss +2 -0
  100. package/styles/combo-box/_highcontrast-light-definition.scss +3 -0
  101. package/styles/combo-box/_material-dark-definition.scss +2 -0
  102. package/styles/combo-box/_material-definition.scss +2 -0
  103. package/styles/combo-box/_material3-dark-definition.scss +1 -0
  104. package/styles/combo-box/_material3-definition.scss +2 -0
  105. package/styles/combo-box/_tailwind-dark-definition.scss +1 -0
  106. package/styles/combo-box/_tailwind-definition.scss +2 -0
  107. package/styles/combo-box/bootstrap-dark.scss +4 -1
  108. package/styles/combo-box/bootstrap.scss +4 -1
  109. package/styles/combo-box/bootstrap4.scss +4 -1
  110. package/styles/combo-box/bootstrap5-dark.scss +4 -1
  111. package/styles/combo-box/bootstrap5.scss +4 -1
  112. package/styles/combo-box/fabric-dark.scss +4 -1
  113. package/styles/combo-box/fabric.scss +4 -1
  114. package/styles/combo-box/fluent-dark.scss +4 -1
  115. package/styles/combo-box/fluent.scss +4 -1
  116. package/styles/combo-box/highcontrast-light.scss +4 -1
  117. package/styles/combo-box/highcontrast.scss +4 -1
  118. package/styles/combo-box/material-dark.scss +4 -1
  119. package/styles/combo-box/material.scss +4 -1
  120. package/styles/combo-box/material3-dark.scss +4 -1
  121. package/styles/combo-box/material3.scss +4 -1
  122. package/styles/combo-box/tailwind-dark.scss +4 -1
  123. package/styles/combo-box/tailwind.scss +4 -1
  124. package/styles/drop-down-base/_all.scss +2 -0
  125. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -0
  126. package/styles/drop-down-base/_bootstrap-definition.scss +83 -0
  127. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -0
  128. package/styles/drop-down-base/_bootstrap5-dark-definition.scss +1 -0
  129. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -0
  130. package/styles/drop-down-base/_definition.scss +23 -0
  131. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -0
  132. package/styles/drop-down-base/_fabric-definition.scss +84 -0
  133. package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
  134. package/styles/drop-down-base/_fluent-definition.scss +121 -0
  135. package/styles/drop-down-base/_fusionnew-definition.scss +117 -0
  136. package/styles/drop-down-base/_highcontrast-definition.scss +105 -0
  137. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -0
  138. package/styles/drop-down-base/_layout.scss +195 -0
  139. package/styles/drop-down-base/_material-dark-definition.scss +86 -0
  140. package/styles/drop-down-base/_material-definition.scss +85 -0
  141. package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
  142. package/styles/drop-down-base/_material3-definition.scss +87 -0
  143. package/styles/drop-down-base/_tailwind-dark-definition.scss +1 -0
  144. package/styles/drop-down-base/_tailwind-definition.scss +129 -0
  145. package/styles/drop-down-base/_theme.scss +391 -0
  146. package/styles/drop-down-base/bootstrap-dark.scss +3 -1
  147. package/styles/drop-down-base/bootstrap.scss +3 -1
  148. package/styles/drop-down-base/bootstrap4.scss +3 -1
  149. package/styles/drop-down-base/bootstrap5-dark.scss +3 -1
  150. package/styles/drop-down-base/bootstrap5.scss +3 -1
  151. package/styles/drop-down-base/fabric-dark.scss +3 -1
  152. package/styles/drop-down-base/fabric.scss +3 -1
  153. package/styles/drop-down-base/fluent-dark.scss +3 -1
  154. package/styles/drop-down-base/fluent.scss +3 -1
  155. package/styles/drop-down-base/highcontrast-light.scss +3 -1
  156. package/styles/drop-down-base/highcontrast.scss +3 -1
  157. package/styles/drop-down-base/material-dark.scss +3 -1
  158. package/styles/drop-down-base/material.scss +3 -1
  159. package/styles/drop-down-base/material3-dark.scss +3 -1
  160. package/styles/drop-down-base/material3.scss +3 -1
  161. package/styles/drop-down-base/tailwind-dark.scss +3 -1
  162. package/styles/drop-down-base/tailwind.scss +3 -1
  163. package/styles/drop-down-list/_all.scss +3 -0
  164. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -0
  165. package/styles/drop-down-list/_bootstrap-definition.scss +156 -0
  166. package/styles/drop-down-list/_bootstrap4-definition.scss +191 -0
  167. package/styles/drop-down-list/_bootstrap5-dark-definition.scss +1 -0
  168. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -0
  169. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -0
  170. package/styles/drop-down-list/_fabric-definition.scss +124 -0
  171. package/styles/drop-down-list/_fluent-dark-definition.scss +1 -0
  172. package/styles/drop-down-list/_fluent-definition.scss +185 -0
  173. package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
  174. package/styles/drop-down-list/_highcontrast-definition.scss +142 -0
  175. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -0
  176. package/styles/drop-down-list/_layout.scss +310 -0
  177. package/styles/drop-down-list/_material-dark-definition.scss +143 -0
  178. package/styles/drop-down-list/_material-definition.scss +167 -0
  179. package/styles/drop-down-list/_material3-dark-definition.scss +1 -0
  180. package/styles/drop-down-list/_material3-definition.scss +180 -0
  181. package/styles/drop-down-list/_tailwind-dark-definition.scss +1 -0
  182. package/styles/drop-down-list/_tailwind-definition.scss +134 -0
  183. package/styles/drop-down-list/_theme.scss +10 -0
  184. package/styles/drop-down-list/bootstrap-dark.scss +8 -1
  185. package/styles/drop-down-list/bootstrap.scss +8 -1
  186. package/styles/drop-down-list/bootstrap4.scss +8 -1
  187. package/styles/drop-down-list/bootstrap5-dark.scss +8 -1
  188. package/styles/drop-down-list/bootstrap5.scss +8 -1
  189. package/styles/drop-down-list/fabric-dark.scss +8 -1
  190. package/styles/drop-down-list/fabric.scss +8 -1
  191. package/styles/drop-down-list/fluent-dark.scss +8 -1
  192. package/styles/drop-down-list/fluent.scss +8 -1
  193. package/styles/drop-down-list/highcontrast-light.scss +8 -1
  194. package/styles/drop-down-list/highcontrast.scss +8 -1
  195. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -0
  196. package/styles/drop-down-list/icons/_bootstrap.scss +14 -0
  197. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -0
  198. package/styles/drop-down-list/icons/_bootstrap5-dark.scss +1 -0
  199. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -0
  200. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -0
  201. package/styles/drop-down-list/icons/_fabric.scss +14 -0
  202. package/styles/drop-down-list/icons/_fluent-dark.scss +1 -0
  203. package/styles/drop-down-list/icons/_fluent.scss +14 -0
  204. package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
  205. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -0
  206. package/styles/drop-down-list/icons/_highcontrast.scss +14 -0
  207. package/styles/drop-down-list/icons/_material-dark.scss +14 -0
  208. package/styles/drop-down-list/icons/_material.scss +14 -0
  209. package/styles/drop-down-list/icons/_material3-dark.scss +1 -0
  210. package/styles/drop-down-list/icons/_material3.scss +14 -0
  211. package/styles/drop-down-list/icons/_tailwind-dark.scss +1 -0
  212. package/styles/drop-down-list/icons/_tailwind.scss +14 -0
  213. package/styles/drop-down-list/material-dark.scss +8 -1
  214. package/styles/drop-down-list/material.scss +8 -1
  215. package/styles/drop-down-list/material3-dark.scss +8 -1
  216. package/styles/drop-down-list/material3.scss +8 -1
  217. package/styles/drop-down-list/tailwind-dark.scss +8 -1
  218. package/styles/drop-down-list/tailwind.scss +8 -1
  219. package/styles/drop-down-tree/_all.scss +2 -0
  220. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +72 -0
  221. package/styles/drop-down-tree/_bootstrap-definition.scss +71 -0
  222. package/styles/drop-down-tree/_bootstrap4-definition.scss +72 -0
  223. package/styles/drop-down-tree/_bootstrap5-dark-definition.scss +1 -0
  224. package/styles/drop-down-tree/_bootstrap5-definition.scss +60 -0
  225. package/styles/drop-down-tree/_fabric-dark-definition.scss +72 -0
  226. package/styles/drop-down-tree/_fabric-definition.scss +72 -0
  227. package/styles/drop-down-tree/_fluent-dark-definition.scss +1 -0
  228. package/styles/drop-down-tree/_fluent-definition.scss +66 -0
  229. package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
  230. package/styles/drop-down-tree/_highcontrast-definition.scss +72 -0
  231. package/styles/drop-down-tree/_highcontrast-light-definition.scss +72 -0
  232. package/styles/drop-down-tree/_layout.scss +1412 -0
  233. package/styles/drop-down-tree/_material-dark-definition.scss +73 -0
  234. package/styles/drop-down-tree/_material-definition.scss +73 -0
  235. package/styles/drop-down-tree/_material3-dark-definition.scss +1 -0
  236. package/styles/drop-down-tree/_material3-definition.scss +76 -0
  237. package/styles/drop-down-tree/_tailwind-dark-definition.scss +1 -0
  238. package/styles/drop-down-tree/_tailwind-definition.scss +61 -0
  239. package/styles/drop-down-tree/_theme.scss +132 -0
  240. package/styles/drop-down-tree/bootstrap-dark.scss +9 -1
  241. package/styles/drop-down-tree/bootstrap.scss +9 -1
  242. package/styles/drop-down-tree/bootstrap4.scss +9 -1
  243. package/styles/drop-down-tree/bootstrap5-dark.scss +9 -1
  244. package/styles/drop-down-tree/bootstrap5.scss +9 -1
  245. package/styles/drop-down-tree/fabric-dark.scss +9 -1
  246. package/styles/drop-down-tree/fabric.scss +9 -1
  247. package/styles/drop-down-tree/fluent-dark.scss +9 -1
  248. package/styles/drop-down-tree/fluent.scss +9 -1
  249. package/styles/drop-down-tree/highcontrast-light.scss +9 -1
  250. package/styles/drop-down-tree/highcontrast.scss +9 -1
  251. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -0
  252. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -0
  253. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -0
  254. package/styles/drop-down-tree/icons/_bootstrap5-dark.scss +1 -0
  255. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -0
  256. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -0
  257. package/styles/drop-down-tree/icons/_fabric.scss +11 -0
  258. package/styles/drop-down-tree/icons/_fluent-dark.scss +1 -0
  259. package/styles/drop-down-tree/icons/_fluent.scss +11 -0
  260. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
  261. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -0
  262. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -0
  263. package/styles/drop-down-tree/icons/_material-dark.scss +11 -0
  264. package/styles/drop-down-tree/icons/_material.scss +11 -0
  265. package/styles/drop-down-tree/icons/_material3-dark.scss +1 -0
  266. package/styles/drop-down-tree/icons/_material3.scss +11 -0
  267. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -0
  268. package/styles/drop-down-tree/icons/_tailwind.scss +11 -0
  269. package/styles/drop-down-tree/material-dark.scss +9 -1
  270. package/styles/drop-down-tree/material.scss +9 -1
  271. package/styles/drop-down-tree/material3-dark.scss +9 -1
  272. package/styles/drop-down-tree/material3.scss +9 -1
  273. package/styles/drop-down-tree/tailwind-dark.scss +9 -1
  274. package/styles/drop-down-tree/tailwind.scss +9 -1
  275. package/styles/list-box/_all.scss +2 -0
  276. package/styles/list-box/_bootstrap-dark-definition.scss +122 -0
  277. package/styles/list-box/_bootstrap-definition.scss +115 -0
  278. package/styles/list-box/_bootstrap4-definition.scss +120 -0
  279. package/styles/list-box/_bootstrap5-dark-definition.scss +1 -0
  280. package/styles/list-box/_bootstrap5-definition.scss +118 -0
  281. package/styles/list-box/_fabric-dark-definition.scss +122 -0
  282. package/styles/list-box/_fabric-definition.scss +115 -0
  283. package/styles/list-box/_fluent-dark-definition.scss +1 -0
  284. package/styles/list-box/_fluent-definition.scss +118 -0
  285. package/styles/list-box/_fusionnew-definition.scss +111 -0
  286. package/styles/list-box/_highcontrast-definition.scss +115 -0
  287. package/styles/list-box/_highcontrast-light-definition.scss +122 -0
  288. package/styles/list-box/_layout.scss +548 -0
  289. package/styles/list-box/_material-dark-definition.scss +122 -0
  290. package/styles/list-box/_material-definition.scss +115 -0
  291. package/styles/list-box/_material3-dark-definition.scss +1 -0
  292. package/styles/list-box/_material3-definition.scss +117 -0
  293. package/styles/list-box/_tailwind-dark-definition.scss +1 -0
  294. package/styles/list-box/_tailwind-definition.scss +117 -0
  295. package/styles/list-box/_theme.scss +317 -0
  296. package/styles/list-box/bootstrap-dark.scss +5 -1
  297. package/styles/list-box/bootstrap.scss +5 -1
  298. package/styles/list-box/bootstrap4.scss +5 -1
  299. package/styles/list-box/bootstrap5-dark.scss +5 -1
  300. package/styles/list-box/bootstrap5.scss +5 -1
  301. package/styles/list-box/fabric-dark.scss +5 -1
  302. package/styles/list-box/fabric.scss +5 -1
  303. package/styles/list-box/fluent-dark.scss +5 -1
  304. package/styles/list-box/fluent.scss +5 -1
  305. package/styles/list-box/highcontrast-light.scss +5 -1
  306. package/styles/list-box/highcontrast.scss +5 -1
  307. package/styles/list-box/icons/_bootstrap-dark.scss +25 -0
  308. package/styles/list-box/icons/_bootstrap.scss +25 -0
  309. package/styles/list-box/icons/_bootstrap4.scss +25 -0
  310. package/styles/list-box/icons/_bootstrap5-dark.scss +1 -0
  311. package/styles/list-box/icons/_bootstrap5.scss +25 -0
  312. package/styles/list-box/icons/_fabric-dark.scss +25 -0
  313. package/styles/list-box/icons/_fabric.scss +25 -0
  314. package/styles/list-box/icons/_fluent-dark.scss +1 -0
  315. package/styles/list-box/icons/_fluent.scss +25 -0
  316. package/styles/list-box/icons/_fusionnew.scss +25 -0
  317. package/styles/list-box/icons/_highcontrast-light.scss +25 -0
  318. package/styles/list-box/icons/_highcontrast.scss +25 -0
  319. package/styles/list-box/icons/_material-dark.scss +25 -0
  320. package/styles/list-box/icons/_material.scss +25 -0
  321. package/styles/list-box/icons/_material3-dark.scss +1 -0
  322. package/styles/list-box/icons/_material3.scss +25 -0
  323. package/styles/list-box/icons/_tailwind-dark.scss +25 -0
  324. package/styles/list-box/icons/_tailwind.scss +25 -0
  325. package/styles/list-box/material-dark.scss +5 -1
  326. package/styles/list-box/material.scss +5 -1
  327. package/styles/list-box/material3-dark.scss +5 -1
  328. package/styles/list-box/material3.scss +5 -1
  329. package/styles/list-box/tailwind-dark.scss +5 -1
  330. package/styles/list-box/tailwind.scss +5 -1
  331. package/styles/material3-dark.css +1 -394
  332. package/styles/material3-dark.scss +1 -0
  333. package/styles/material3.css +35 -813
  334. package/styles/material3.scss +1 -0
  335. package/styles/mention/_all.scss +1 -0
  336. package/styles/mention/_bootstrap-dark-definition.scss +3 -0
  337. package/styles/mention/_bootstrap-definition.scss +3 -0
  338. package/styles/mention/_bootstrap4-definition.scss +3 -0
  339. package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
  340. package/styles/mention/_bootstrap5-definition.scss +1 -0
  341. package/styles/mention/_fabric-dark-definition.scss +2 -0
  342. package/styles/mention/_fabric-definition.scss +3 -0
  343. package/styles/mention/_fluent-dark-definition.scss +1 -0
  344. package/styles/mention/_fluent-definition.scss +1 -0
  345. package/styles/mention/_fusionnew-definition.scss +1 -0
  346. package/styles/mention/_highcontrast-definition.scss +3 -0
  347. package/styles/mention/_highcontrast-light-definition.scss +3 -0
  348. package/styles/mention/_layout.scss +6 -0
  349. package/styles/mention/_material-dark-definition.scss +3 -0
  350. package/styles/mention/_material-definition.scss +3 -0
  351. package/styles/mention/_material3-dark-definition.scss +1 -0
  352. package/styles/mention/_material3-definition.scss +1 -0
  353. package/styles/mention/_tailwind-dark-definition.scss +1 -0
  354. package/styles/mention/_tailwind-definition.scss +1 -0
  355. package/styles/mention/bootstrap-dark.scss +6 -1
  356. package/styles/mention/bootstrap.scss +6 -1
  357. package/styles/mention/bootstrap4.scss +6 -1
  358. package/styles/mention/bootstrap5-dark.scss +6 -1
  359. package/styles/mention/bootstrap5.scss +6 -1
  360. package/styles/mention/fabric-dark.scss +6 -1
  361. package/styles/mention/fabric.scss +6 -1
  362. package/styles/mention/fluent-dark.scss +6 -1
  363. package/styles/mention/fluent.scss +6 -1
  364. package/styles/mention/highcontrast-light.scss +6 -1
  365. package/styles/mention/highcontrast.scss +6 -1
  366. package/styles/mention/material-dark.scss +6 -1
  367. package/styles/mention/material.scss +6 -1
  368. package/styles/mention/material3-dark.scss +6 -1
  369. package/styles/mention/material3.scss +6 -1
  370. package/styles/mention/tailwind-dark.scss +6 -1
  371. package/styles/mention/tailwind.scss +6 -1
  372. package/styles/multi-select/_all.scss +2 -0
  373. package/styles/multi-select/_bootstrap-dark-definition.scss +196 -0
  374. package/styles/multi-select/_bootstrap-definition.scss +190 -0
  375. package/styles/multi-select/_bootstrap4-definition.scss +257 -0
  376. package/styles/multi-select/_bootstrap5-dark-definition.scss +1 -0
  377. package/styles/multi-select/_bootstrap5-definition.scss +227 -0
  378. package/styles/multi-select/_fabric-dark-definition.scss +185 -0
  379. package/styles/multi-select/_fabric-definition.scss +181 -0
  380. package/styles/multi-select/_fluent-dark-definition.scss +1 -0
  381. package/styles/multi-select/_fluent-definition.scss +238 -0
  382. package/styles/multi-select/_fusionnew-definition.scss +227 -0
  383. package/styles/multi-select/_highcontrast-definition.scss +296 -0
  384. package/styles/multi-select/_highcontrast-light-definition.scss +295 -0
  385. package/styles/multi-select/_layout.scss +2188 -0
  386. package/styles/multi-select/_material-dark-definition.scss +228 -0
  387. package/styles/multi-select/_material-definition.scss +221 -0
  388. package/styles/multi-select/_material3-dark-definition.scss +1 -0
  389. package/styles/multi-select/_material3-definition.scss +246 -0
  390. package/styles/multi-select/_tailwind-dark-definition.scss +1 -0
  391. package/styles/multi-select/_tailwind-definition.scss +232 -0
  392. package/styles/multi-select/_theme.scss +586 -0
  393. package/styles/multi-select/bootstrap-dark.scss +9 -1
  394. package/styles/multi-select/bootstrap.scss +9 -1
  395. package/styles/multi-select/bootstrap4.scss +9 -1
  396. package/styles/multi-select/bootstrap5-dark.scss +9 -1
  397. package/styles/multi-select/bootstrap5.scss +9 -1
  398. package/styles/multi-select/fabric-dark.scss +9 -1
  399. package/styles/multi-select/fabric.scss +9 -1
  400. package/styles/multi-select/fluent-dark.scss +9 -1
  401. package/styles/multi-select/fluent.scss +9 -1
  402. package/styles/multi-select/highcontrast-light.scss +9 -1
  403. package/styles/multi-select/highcontrast.scss +9 -1
  404. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -0
  405. package/styles/multi-select/icons/_bootstrap.scss +26 -0
  406. package/styles/multi-select/icons/_bootstrap4.scss +37 -0
  407. package/styles/multi-select/icons/_bootstrap5-dark.scss +1 -0
  408. package/styles/multi-select/icons/_bootstrap5.scss +26 -0
  409. package/styles/multi-select/icons/_fabric-dark.scss +26 -0
  410. package/styles/multi-select/icons/_fabric.scss +26 -0
  411. package/styles/multi-select/icons/_fluent-dark.scss +1 -0
  412. package/styles/multi-select/icons/_fluent.scss +55 -0
  413. package/styles/multi-select/icons/_fusionnew.scss +26 -0
  414. package/styles/multi-select/icons/_highcontrast-light.scss +26 -0
  415. package/styles/multi-select/icons/_highcontrast.scss +26 -0
  416. package/styles/multi-select/icons/_material-dark.scss +693 -0
  417. package/styles/multi-select/icons/_material.scss +693 -0
  418. package/styles/multi-select/icons/_material3-dark.scss +1 -0
  419. package/styles/multi-select/icons/_material3.scss +692 -0
  420. package/styles/multi-select/icons/_tailwind-dark.scss +1 -0
  421. package/styles/multi-select/icons/_tailwind.scss +26 -0
  422. package/styles/multi-select/material-dark.scss +9 -1
  423. package/styles/multi-select/material.scss +9 -1
  424. package/styles/multi-select/material3-dark.scss +9 -1
  425. package/styles/multi-select/material3.scss +9 -1
  426. package/styles/multi-select/tailwind-dark.scss +9 -1
  427. package/styles/multi-select/tailwind.scss +9 -1
  428. package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
  429. package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1427
  430. package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
  431. package/@syncfusion/ej2-angular-dropdowns.js +0 -1342
  432. package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
  433. package/CHANGELOG.md +0 -2505
  434. package/dist/ej2-angular-dropdowns.umd.js +0 -1495
  435. package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
  436. package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
  437. package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
  438. package/ej2-angular-dropdowns.d.ts +0 -11
  439. package/ej2-angular-dropdowns.metadata.json +0 -1
  440. package/postinstall/tagchange.js +0 -18
@@ -1,1342 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, ContentChild, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef, forwardRef } from '@angular/core';
2
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
- import { ComponentBase, ComponentMixins, FormBase, Template, setValue } from '@syncfusion/ej2-angular-base';
4
- import { AutoComplete, CheckBoxSelection, ComboBox, DropDownList, DropDownTree, ListBox, Mention, MultiSelect } from '@syncfusion/ej2-dropdowns';
5
- import { CommonModule } from '@angular/common';
6
-
7
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
8
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
9
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
10
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
11
- return c > 3 && r && Object.defineProperty(target, key, r), r;
12
- };
13
- var __metadata = (this && this.__metadata) || function (k, v) {
14
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
15
- };
16
- const inputs = ['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'];
17
- const outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
18
- const twoWays = ['value'];
19
- /**
20
- * The DropDownList component contains a list of predefined values, from which the user can choose a single value.
21
- * ```html
22
- * <ejs-dropdownlist></ejs-dropdownlist>
23
- * ```
24
- */
25
- let DropDownListComponent = DropDownListComponent_1 = class DropDownListComponent extends DropDownList {
26
- /**
27
- * @param {?} ngEle
28
- * @param {?} srenderer
29
- * @param {?} viewContainerRef
30
- * @param {?} injector
31
- */
32
- constructor(ngEle, srenderer, viewContainerRef, injector) {
33
- super();
34
- this.ngEle = ngEle;
35
- this.srenderer = srenderer;
36
- this.viewContainerRef = viewContainerRef;
37
- this.injector = injector;
38
- this.skipFromEvent = true;
39
- this.element = this.ngEle.nativeElement;
40
- this.injectedModules = this.injectedModules || [];
41
- this.registerEvents(outputs);
42
- this.addTwoWay.call(this, twoWays);
43
- setValue('currentInstance', this, this.viewContainerRef);
44
- this.formContext = new FormBase();
45
- this.formCompContext = new ComponentBase();
46
- }
47
- /**
48
- * @param {?} registerFunction
49
- * @return {?}
50
- */
51
- registerOnChange(registerFunction) {
52
- }
53
- /**
54
- * @param {?} registerFunction
55
- * @return {?}
56
- */
57
- registerOnTouched(registerFunction) {
58
- }
59
- /**
60
- * @param {?} value
61
- * @return {?}
62
- */
63
- writeValue(value) {
64
- }
65
- /**
66
- * @param {?} disabled
67
- * @return {?}
68
- */
69
- setDisabledState(disabled) {
70
- }
71
- /**
72
- * @return {?}
73
- */
74
- ngOnInit() {
75
- this.formCompContext.ngOnInit(this);
76
- }
77
- /**
78
- * @return {?}
79
- */
80
- ngAfterViewInit() {
81
- this.formContext.ngAfterViewInit(this);
82
- }
83
- /**
84
- * @return {?}
85
- */
86
- ngOnDestroy() {
87
- this.formCompContext.ngOnDestroy(this);
88
- }
89
- /**
90
- * @return {?}
91
- */
92
- ngAfterContentChecked() {
93
- this.formCompContext.ngAfterContentChecked(this);
94
- }
95
- };
96
- DropDownListComponent.decorators = [
97
- { type: Component, args: [{
98
- selector: 'ejs-dropdownlist',
99
- inputs: inputs,
100
- outputs: outputs,
101
- template: '',
102
- changeDetection: ChangeDetectionStrategy.OnPush,
103
- providers: [
104
- {
105
- provide: NG_VALUE_ACCESSOR,
106
- useExisting: forwardRef(() => DropDownListComponent_1),
107
- multi: true
108
- }
109
- ],
110
- queries: {}
111
- },] },
112
- ];
113
- /**
114
- * @nocollapse
115
- */
116
- DropDownListComponent.ctorParameters = () => [
117
- { type: ElementRef, },
118
- { type: Renderer2, },
119
- { type: ViewContainerRef, },
120
- { type: Injector, },
121
- ];
122
- DropDownListComponent.propDecorators = {
123
- 'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
124
- 'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
125
- 'valueTemplate': [{ type: ContentChild, args: ['valueTemplate',] },],
126
- 'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
127
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
128
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
129
- 'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
130
- };
131
- __decorate([
132
- Template(),
133
- __metadata("design:type", Object)
134
- ], DropDownListComponent.prototype, "footerTemplate", void 0);
135
- __decorate([
136
- Template(),
137
- __metadata("design:type", Object)
138
- ], DropDownListComponent.prototype, "headerTemplate", void 0);
139
- __decorate([
140
- Template(),
141
- __metadata("design:type", Object)
142
- ], DropDownListComponent.prototype, "valueTemplate", void 0);
143
- __decorate([
144
- Template(),
145
- __metadata("design:type", Object)
146
- ], DropDownListComponent.prototype, "groupTemplate", void 0);
147
- __decorate([
148
- Template(),
149
- __metadata("design:type", Object)
150
- ], DropDownListComponent.prototype, "itemTemplate", void 0);
151
- __decorate([
152
- Template('No records found'),
153
- __metadata("design:type", Object)
154
- ], DropDownListComponent.prototype, "noRecordsTemplate", void 0);
155
- __decorate([
156
- Template('Request failed'),
157
- __metadata("design:type", Object)
158
- ], DropDownListComponent.prototype, "actionFailureTemplate", void 0);
159
- DropDownListComponent = DropDownListComponent_1 = __decorate([
160
- ComponentMixins([ComponentBase, FormBase]),
161
- __metadata("design:paramtypes", [ElementRef,
162
- Renderer2,
163
- ViewContainerRef,
164
- Injector])
165
- ], DropDownListComponent);
166
- var DropDownListComponent_1;
167
-
168
- /**
169
- * NgModule definition for the DropDownList component.
170
- */
171
- class DropDownListModule {
172
- }
173
- DropDownListModule.decorators = [
174
- { type: NgModule, args: [{
175
- imports: [CommonModule],
176
- declarations: [
177
- DropDownListComponent
178
- ],
179
- exports: [
180
- DropDownListComponent
181
- ]
182
- },] },
183
- ];
184
- /**
185
- * @nocollapse
186
- */
187
- DropDownListModule.ctorParameters = () => [];
188
-
189
- /**
190
- * NgModule definition for the DropDownList component with providers.
191
- */
192
- class DropDownListAllModule {
193
- }
194
- DropDownListAllModule.decorators = [
195
- { type: NgModule, args: [{
196
- imports: [CommonModule, DropDownListModule],
197
- exports: [
198
- DropDownListModule
199
- ],
200
- providers: []
201
- },] },
202
- ];
203
- /**
204
- * @nocollapse
205
- */
206
- DropDownListAllModule.ctorParameters = () => [];
207
-
208
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
209
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
210
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
211
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
212
- return c > 3 && r && Object.defineProperty(target, key, r), r;
213
- };
214
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
215
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
216
- };
217
- const inputs$1 = ['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'];
218
- const outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
219
- const twoWays$1 = ['value'];
220
- /**
221
- * The ComboBox component allows the user to type a value or choose an option from the list of predefined options.
222
- * ```html
223
- * <ejs-combobox></ejs-combobox>
224
- * ```
225
- */
226
- let ComboBoxComponent = ComboBoxComponent_1 = class ComboBoxComponent extends ComboBox {
227
- /**
228
- * @param {?} ngEle
229
- * @param {?} srenderer
230
- * @param {?} viewContainerRef
231
- * @param {?} injector
232
- */
233
- constructor(ngEle, srenderer, viewContainerRef, injector) {
234
- super();
235
- this.ngEle = ngEle;
236
- this.srenderer = srenderer;
237
- this.viewContainerRef = viewContainerRef;
238
- this.injector = injector;
239
- this.skipFromEvent = true;
240
- this.element = this.ngEle.nativeElement;
241
- this.injectedModules = this.injectedModules || [];
242
- this.registerEvents(outputs$1);
243
- this.addTwoWay.call(this, twoWays$1);
244
- setValue('currentInstance', this, this.viewContainerRef);
245
- this.formContext = new FormBase();
246
- this.formCompContext = new ComponentBase();
247
- }
248
- /**
249
- * @param {?} registerFunction
250
- * @return {?}
251
- */
252
- registerOnChange(registerFunction) {
253
- }
254
- /**
255
- * @param {?} registerFunction
256
- * @return {?}
257
- */
258
- registerOnTouched(registerFunction) {
259
- }
260
- /**
261
- * @param {?} value
262
- * @return {?}
263
- */
264
- writeValue(value) {
265
- }
266
- /**
267
- * @param {?} disabled
268
- * @return {?}
269
- */
270
- setDisabledState(disabled) {
271
- }
272
- /**
273
- * @return {?}
274
- */
275
- ngOnInit() {
276
- this.formCompContext.ngOnInit(this);
277
- }
278
- /**
279
- * @return {?}
280
- */
281
- ngAfterViewInit() {
282
- this.formContext.ngAfterViewInit(this);
283
- }
284
- /**
285
- * @return {?}
286
- */
287
- ngOnDestroy() {
288
- this.formCompContext.ngOnDestroy(this);
289
- }
290
- /**
291
- * @return {?}
292
- */
293
- ngAfterContentChecked() {
294
- this.formCompContext.ngAfterContentChecked(this);
295
- }
296
- };
297
- ComboBoxComponent.decorators = [
298
- { type: Component, args: [{
299
- selector: 'ejs-combobox',
300
- inputs: inputs$1,
301
- outputs: outputs$1,
302
- template: '',
303
- changeDetection: ChangeDetectionStrategy.OnPush,
304
- providers: [
305
- {
306
- provide: NG_VALUE_ACCESSOR,
307
- useExisting: forwardRef(() => ComboBoxComponent_1),
308
- multi: true
309
- }
310
- ],
311
- queries: {}
312
- },] },
313
- ];
314
- /**
315
- * @nocollapse
316
- */
317
- ComboBoxComponent.ctorParameters = () => [
318
- { type: ElementRef, },
319
- { type: Renderer2, },
320
- { type: ViewContainerRef, },
321
- { type: Injector, },
322
- ];
323
- ComboBoxComponent.propDecorators = {
324
- 'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
325
- 'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
326
- 'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
327
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
328
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
329
- 'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
330
- };
331
- __decorate$1([
332
- Template(),
333
- __metadata$1("design:type", Object)
334
- ], ComboBoxComponent.prototype, "footerTemplate", void 0);
335
- __decorate$1([
336
- Template(),
337
- __metadata$1("design:type", Object)
338
- ], ComboBoxComponent.prototype, "headerTemplate", void 0);
339
- __decorate$1([
340
- Template(),
341
- __metadata$1("design:type", Object)
342
- ], ComboBoxComponent.prototype, "groupTemplate", void 0);
343
- __decorate$1([
344
- Template(),
345
- __metadata$1("design:type", Object)
346
- ], ComboBoxComponent.prototype, "itemTemplate", void 0);
347
- __decorate$1([
348
- Template('No records found'),
349
- __metadata$1("design:type", Object)
350
- ], ComboBoxComponent.prototype, "noRecordsTemplate", void 0);
351
- __decorate$1([
352
- Template('Request failed'),
353
- __metadata$1("design:type", Object)
354
- ], ComboBoxComponent.prototype, "actionFailureTemplate", void 0);
355
- ComboBoxComponent = ComboBoxComponent_1 = __decorate$1([
356
- ComponentMixins([ComponentBase, FormBase]),
357
- __metadata$1("design:paramtypes", [ElementRef,
358
- Renderer2,
359
- ViewContainerRef,
360
- Injector])
361
- ], ComboBoxComponent);
362
- var ComboBoxComponent_1;
363
-
364
- /**
365
- * NgModule definition for the ComboBox component.
366
- */
367
- class ComboBoxModule {
368
- }
369
- ComboBoxModule.decorators = [
370
- { type: NgModule, args: [{
371
- imports: [CommonModule],
372
- declarations: [
373
- ComboBoxComponent
374
- ],
375
- exports: [
376
- ComboBoxComponent
377
- ]
378
- },] },
379
- ];
380
- /**
381
- * @nocollapse
382
- */
383
- ComboBoxModule.ctorParameters = () => [];
384
-
385
- /**
386
- * NgModule definition for the ComboBox component with providers.
387
- */
388
- class ComboBoxAllModule {
389
- }
390
- ComboBoxAllModule.decorators = [
391
- { type: NgModule, args: [{
392
- imports: [CommonModule, ComboBoxModule],
393
- exports: [
394
- ComboBoxModule
395
- ],
396
- providers: []
397
- },] },
398
- ];
399
- /**
400
- * @nocollapse
401
- */
402
- ComboBoxAllModule.ctorParameters = () => [];
403
-
404
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
405
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
406
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
407
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
408
- return c > 3 && r && Object.defineProperty(target, key, r), r;
409
- };
410
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
411
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
412
- };
413
- const inputs$2 = ['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'];
414
- const outputs$2 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'customValueSpecifier', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'select', 'valueChange'];
415
- const twoWays$2 = ['value'];
416
- /**
417
- * The AutoComplete component provides the matched suggestion list when type into the input, from which the user can select one.
418
- * ```html
419
- * <ejs-autocomplete></ejs-autocomplete>
420
- * ```
421
- */
422
- let AutoCompleteComponent = AutoCompleteComponent_1 = class AutoCompleteComponent extends AutoComplete {
423
- /**
424
- * @param {?} ngEle
425
- * @param {?} srenderer
426
- * @param {?} viewContainerRef
427
- * @param {?} injector
428
- */
429
- constructor(ngEle, srenderer, viewContainerRef, injector) {
430
- super();
431
- this.ngEle = ngEle;
432
- this.srenderer = srenderer;
433
- this.viewContainerRef = viewContainerRef;
434
- this.injector = injector;
435
- this.skipFromEvent = true;
436
- this.element = this.ngEle.nativeElement;
437
- this.injectedModules = this.injectedModules || [];
438
- this.registerEvents(outputs$2);
439
- this.addTwoWay.call(this, twoWays$2);
440
- setValue('currentInstance', this, this.viewContainerRef);
441
- this.formContext = new FormBase();
442
- this.formCompContext = new ComponentBase();
443
- }
444
- /**
445
- * @param {?} registerFunction
446
- * @return {?}
447
- */
448
- registerOnChange(registerFunction) {
449
- }
450
- /**
451
- * @param {?} registerFunction
452
- * @return {?}
453
- */
454
- registerOnTouched(registerFunction) {
455
- }
456
- /**
457
- * @param {?} value
458
- * @return {?}
459
- */
460
- writeValue(value) {
461
- }
462
- /**
463
- * @param {?} disabled
464
- * @return {?}
465
- */
466
- setDisabledState(disabled) {
467
- }
468
- /**
469
- * @return {?}
470
- */
471
- ngOnInit() {
472
- this.formCompContext.ngOnInit(this);
473
- }
474
- /**
475
- * @return {?}
476
- */
477
- ngAfterViewInit() {
478
- this.formContext.ngAfterViewInit(this);
479
- }
480
- /**
481
- * @return {?}
482
- */
483
- ngOnDestroy() {
484
- this.formCompContext.ngOnDestroy(this);
485
- }
486
- /**
487
- * @return {?}
488
- */
489
- ngAfterContentChecked() {
490
- this.formCompContext.ngAfterContentChecked(this);
491
- }
492
- };
493
- AutoCompleteComponent.decorators = [
494
- { type: Component, args: [{
495
- selector: 'ejs-autocomplete',
496
- inputs: inputs$2,
497
- outputs: outputs$2,
498
- template: '',
499
- changeDetection: ChangeDetectionStrategy.OnPush,
500
- providers: [
501
- {
502
- provide: NG_VALUE_ACCESSOR,
503
- useExisting: forwardRef(() => AutoCompleteComponent_1),
504
- multi: true
505
- }
506
- ],
507
- queries: {}
508
- },] },
509
- ];
510
- /**
511
- * @nocollapse
512
- */
513
- AutoCompleteComponent.ctorParameters = () => [
514
- { type: ElementRef, },
515
- { type: Renderer2, },
516
- { type: ViewContainerRef, },
517
- { type: Injector, },
518
- ];
519
- AutoCompleteComponent.propDecorators = {
520
- 'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
521
- 'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
522
- 'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
523
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
524
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
525
- 'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
526
- };
527
- __decorate$2([
528
- Template(),
529
- __metadata$2("design:type", Object)
530
- ], AutoCompleteComponent.prototype, "footerTemplate", void 0);
531
- __decorate$2([
532
- Template(),
533
- __metadata$2("design:type", Object)
534
- ], AutoCompleteComponent.prototype, "headerTemplate", void 0);
535
- __decorate$2([
536
- Template(),
537
- __metadata$2("design:type", Object)
538
- ], AutoCompleteComponent.prototype, "groupTemplate", void 0);
539
- __decorate$2([
540
- Template(),
541
- __metadata$2("design:type", Object)
542
- ], AutoCompleteComponent.prototype, "itemTemplate", void 0);
543
- __decorate$2([
544
- Template('No records found'),
545
- __metadata$2("design:type", Object)
546
- ], AutoCompleteComponent.prototype, "noRecordsTemplate", void 0);
547
- __decorate$2([
548
- Template('Request failed'),
549
- __metadata$2("design:type", Object)
550
- ], AutoCompleteComponent.prototype, "actionFailureTemplate", void 0);
551
- AutoCompleteComponent = AutoCompleteComponent_1 = __decorate$2([
552
- ComponentMixins([ComponentBase, FormBase]),
553
- __metadata$2("design:paramtypes", [ElementRef,
554
- Renderer2,
555
- ViewContainerRef,
556
- Injector])
557
- ], AutoCompleteComponent);
558
- var AutoCompleteComponent_1;
559
-
560
- /**
561
- * NgModule definition for the AutoComplete component.
562
- */
563
- class AutoCompleteModule {
564
- }
565
- AutoCompleteModule.decorators = [
566
- { type: NgModule, args: [{
567
- imports: [CommonModule],
568
- declarations: [
569
- AutoCompleteComponent
570
- ],
571
- exports: [
572
- AutoCompleteComponent
573
- ]
574
- },] },
575
- ];
576
- /**
577
- * @nocollapse
578
- */
579
- AutoCompleteModule.ctorParameters = () => [];
580
-
581
- /**
582
- * NgModule definition for the AutoComplete component with providers.
583
- */
584
- class AutoCompleteAllModule {
585
- }
586
- AutoCompleteAllModule.decorators = [
587
- { type: NgModule, args: [{
588
- imports: [CommonModule, AutoCompleteModule],
589
- exports: [
590
- AutoCompleteModule
591
- ],
592
- providers: []
593
- },] },
594
- ];
595
- /**
596
- * @nocollapse
597
- */
598
- AutoCompleteAllModule.ctorParameters = () => [];
599
-
600
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
601
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
602
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
603
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
604
- return c > 3 && r && Object.defineProperty(target, key, r), r;
605
- };
606
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
607
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
608
- };
609
- const inputs$3 = ['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'];
610
- const outputs$3 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'beforeSelectAll', 'blur', 'change', 'chipSelection', 'close', 'created', 'customValueSelection', 'dataBound', 'destroyed', 'filtering', 'focus', 'open', 'removed', 'removing', 'select', 'selectedAll', 'tagging', 'valueChange'];
611
- const twoWays$3 = ['value'];
612
- /**
613
- * The MultiSelect allows the user to pick a values from the predefined list of values.
614
- * ```html
615
- * <ejs-multiselect></ejs-multiselect>
616
- * ```
617
- */
618
- let MultiSelectComponent = MultiSelectComponent_1 = class MultiSelectComponent extends MultiSelect {
619
- /**
620
- * @param {?} ngEle
621
- * @param {?} srenderer
622
- * @param {?} viewContainerRef
623
- * @param {?} injector
624
- */
625
- constructor(ngEle, srenderer, viewContainerRef, injector) {
626
- super();
627
- this.ngEle = ngEle;
628
- this.srenderer = srenderer;
629
- this.viewContainerRef = viewContainerRef;
630
- this.injector = injector;
631
- this.skipFromEvent = true;
632
- this.element = this.ngEle.nativeElement;
633
- this.injectedModules = this.injectedModules || [];
634
- try {
635
- let mod = this.injector.get('DropDownsCheckBoxSelection');
636
- if (this.injectedModules.indexOf(mod) === -1) {
637
- this.injectedModules.push(mod);
638
- }
639
- }
640
- catch (_a) { }
641
- this.registerEvents(outputs$3);
642
- this.addTwoWay.call(this, twoWays$3);
643
- setValue('currentInstance', this, this.viewContainerRef);
644
- this.formContext = new FormBase();
645
- this.formCompContext = new ComponentBase();
646
- }
647
- /**
648
- * @param {?} registerFunction
649
- * @return {?}
650
- */
651
- registerOnChange(registerFunction) {
652
- }
653
- /**
654
- * @param {?} registerFunction
655
- * @return {?}
656
- */
657
- registerOnTouched(registerFunction) {
658
- }
659
- /**
660
- * @param {?} value
661
- * @return {?}
662
- */
663
- writeValue(value) {
664
- }
665
- /**
666
- * @param {?} disabled
667
- * @return {?}
668
- */
669
- setDisabledState(disabled) {
670
- }
671
- /**
672
- * @return {?}
673
- */
674
- ngOnInit() {
675
- this.formCompContext.ngOnInit(this);
676
- }
677
- /**
678
- * @return {?}
679
- */
680
- ngAfterViewInit() {
681
- this.formContext.ngAfterViewInit(this);
682
- }
683
- /**
684
- * @return {?}
685
- */
686
- ngOnDestroy() {
687
- this.formCompContext.ngOnDestroy(this);
688
- }
689
- /**
690
- * @return {?}
691
- */
692
- ngAfterContentChecked() {
693
- this.formCompContext.ngAfterContentChecked(this);
694
- }
695
- };
696
- MultiSelectComponent.decorators = [
697
- { type: Component, args: [{
698
- selector: 'ejs-multiselect',
699
- inputs: inputs$3,
700
- outputs: outputs$3,
701
- template: '',
702
- changeDetection: ChangeDetectionStrategy.OnPush,
703
- providers: [
704
- {
705
- provide: NG_VALUE_ACCESSOR,
706
- useExisting: forwardRef(() => MultiSelectComponent_1),
707
- multi: true
708
- }
709
- ],
710
- queries: {}
711
- },] },
712
- ];
713
- /**
714
- * @nocollapse
715
- */
716
- MultiSelectComponent.ctorParameters = () => [
717
- { type: ElementRef, },
718
- { type: Renderer2, },
719
- { type: ViewContainerRef, },
720
- { type: Injector, },
721
- ];
722
- MultiSelectComponent.propDecorators = {
723
- 'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
724
- 'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
725
- 'valueTemplate': [{ type: ContentChild, args: ['valueTemplate',] },],
726
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
727
- 'groupTemplate': [{ type: ContentChild, args: ['groupTemplate',] },],
728
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
729
- 'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
730
- };
731
- __decorate$3([
732
- Template(),
733
- __metadata$3("design:type", Object)
734
- ], MultiSelectComponent.prototype, "footerTemplate", void 0);
735
- __decorate$3([
736
- Template(),
737
- __metadata$3("design:type", Object)
738
- ], MultiSelectComponent.prototype, "headerTemplate", void 0);
739
- __decorate$3([
740
- Template(),
741
- __metadata$3("design:type", Object)
742
- ], MultiSelectComponent.prototype, "valueTemplate", void 0);
743
- __decorate$3([
744
- Template(),
745
- __metadata$3("design:type", Object)
746
- ], MultiSelectComponent.prototype, "itemTemplate", void 0);
747
- __decorate$3([
748
- Template(),
749
- __metadata$3("design:type", Object)
750
- ], MultiSelectComponent.prototype, "groupTemplate", void 0);
751
- __decorate$3([
752
- Template('No records found'),
753
- __metadata$3("design:type", Object)
754
- ], MultiSelectComponent.prototype, "noRecordsTemplate", void 0);
755
- __decorate$3([
756
- Template('Request failed'),
757
- __metadata$3("design:type", Object)
758
- ], MultiSelectComponent.prototype, "actionFailureTemplate", void 0);
759
- MultiSelectComponent = MultiSelectComponent_1 = __decorate$3([
760
- ComponentMixins([ComponentBase, FormBase]),
761
- __metadata$3("design:paramtypes", [ElementRef,
762
- Renderer2,
763
- ViewContainerRef,
764
- Injector])
765
- ], MultiSelectComponent);
766
- var MultiSelectComponent_1;
767
-
768
- /**
769
- * NgModule definition for the MultiSelect component.
770
- */
771
- class MultiSelectModule {
772
- }
773
- MultiSelectModule.decorators = [
774
- { type: NgModule, args: [{
775
- imports: [CommonModule],
776
- declarations: [
777
- MultiSelectComponent
778
- ],
779
- exports: [
780
- MultiSelectComponent
781
- ]
782
- },] },
783
- ];
784
- /**
785
- * @nocollapse
786
- */
787
- MultiSelectModule.ctorParameters = () => [];
788
-
789
- const CheckBoxSelectionService = { provide: 'DropDownsCheckBoxSelection', useValue: CheckBoxSelection };
790
- /**
791
- * NgModule definition for the MultiSelect component with providers.
792
- */
793
- class MultiSelectAllModule {
794
- }
795
- MultiSelectAllModule.decorators = [
796
- { type: NgModule, args: [{
797
- imports: [CommonModule, MultiSelectModule],
798
- exports: [
799
- MultiSelectModule
800
- ],
801
- providers: [
802
- CheckBoxSelectionService
803
- ]
804
- },] },
805
- ];
806
- /**
807
- * @nocollapse
808
- */
809
- MultiSelectAllModule.ctorParameters = () => [];
810
-
811
- var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
812
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
813
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
814
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
815
- return c > 3 && r && Object.defineProperty(target, key, r), r;
816
- };
817
- var __metadata$4 = (this && this.__metadata) || function (k, v) {
818
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
819
- };
820
- const inputs$4 = ['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'];
821
- const outputs$4 = ['focus', 'blur', 'actionBegin', 'actionComplete', 'actionFailure', 'beforeDrop', 'beforeItemRender', 'change', 'created', 'dataBound', 'destroyed', 'drag', 'dragStart', 'drop', 'filtering', 'select', 'valueChange'];
822
- const twoWays$4 = ['value'];
823
- /**
824
- * The ListBox allows the user to select values from the predefined list of values.
825
- * ```html
826
- * <ejs-listbox [dataSource]='data'></ejs-listbox>
827
- * ```
828
- */
829
- let ListBoxComponent = ListBoxComponent_1 = class ListBoxComponent extends ListBox {
830
- /**
831
- * @param {?} ngEle
832
- * @param {?} srenderer
833
- * @param {?} viewContainerRef
834
- * @param {?} injector
835
- */
836
- constructor(ngEle, srenderer, viewContainerRef, injector) {
837
- super();
838
- this.ngEle = ngEle;
839
- this.srenderer = srenderer;
840
- this.viewContainerRef = viewContainerRef;
841
- this.injector = injector;
842
- this.element = this.ngEle.nativeElement;
843
- this.injectedModules = this.injectedModules || [];
844
- try {
845
- let mod = this.injector.get('DropDownsCheckBoxSelection');
846
- if (this.injectedModules.indexOf(mod) === -1) {
847
- this.injectedModules.push(mod);
848
- }
849
- }
850
- catch (_a) { }
851
- this.registerEvents(outputs$4);
852
- this.addTwoWay.call(this, twoWays$4);
853
- setValue('currentInstance', this, this.viewContainerRef);
854
- this.formContext = new FormBase();
855
- this.formCompContext = new ComponentBase();
856
- }
857
- /**
858
- * @param {?} registerFunction
859
- * @return {?}
860
- */
861
- registerOnChange(registerFunction) {
862
- }
863
- /**
864
- * @param {?} registerFunction
865
- * @return {?}
866
- */
867
- registerOnTouched(registerFunction) {
868
- }
869
- /**
870
- * @param {?} value
871
- * @return {?}
872
- */
873
- writeValue(value) {
874
- }
875
- /**
876
- * @param {?} disabled
877
- * @return {?}
878
- */
879
- setDisabledState(disabled) {
880
- }
881
- /**
882
- * @return {?}
883
- */
884
- ngOnInit() {
885
- this.formCompContext.ngOnInit(this);
886
- }
887
- /**
888
- * @return {?}
889
- */
890
- ngAfterViewInit() {
891
- this.formContext.ngAfterViewInit(this);
892
- }
893
- /**
894
- * @return {?}
895
- */
896
- ngOnDestroy() {
897
- this.formCompContext.ngOnDestroy(this);
898
- }
899
- /**
900
- * @return {?}
901
- */
902
- ngAfterContentChecked() {
903
- this.formCompContext.ngAfterContentChecked(this);
904
- }
905
- };
906
- ListBoxComponent.decorators = [
907
- { type: Component, args: [{
908
- selector: 'ejs-listbox',
909
- inputs: inputs$4,
910
- outputs: outputs$4,
911
- template: '',
912
- changeDetection: ChangeDetectionStrategy.OnPush,
913
- providers: [
914
- {
915
- provide: NG_VALUE_ACCESSOR,
916
- useExisting: forwardRef(() => ListBoxComponent_1),
917
- multi: true
918
- }
919
- ],
920
- queries: {}
921
- },] },
922
- ];
923
- /**
924
- * @nocollapse
925
- */
926
- ListBoxComponent.ctorParameters = () => [
927
- { type: ElementRef, },
928
- { type: Renderer2, },
929
- { type: ViewContainerRef, },
930
- { type: Injector, },
931
- ];
932
- ListBoxComponent.propDecorators = {
933
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
934
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
935
- };
936
- __decorate$4([
937
- Template(),
938
- __metadata$4("design:type", Object)
939
- ], ListBoxComponent.prototype, "itemTemplate", void 0);
940
- __decorate$4([
941
- Template('No records found'),
942
- __metadata$4("design:type", Object)
943
- ], ListBoxComponent.prototype, "noRecordsTemplate", void 0);
944
- ListBoxComponent = ListBoxComponent_1 = __decorate$4([
945
- ComponentMixins([ComponentBase, FormBase]),
946
- __metadata$4("design:paramtypes", [ElementRef,
947
- Renderer2,
948
- ViewContainerRef,
949
- Injector])
950
- ], ListBoxComponent);
951
- var ListBoxComponent_1;
952
-
953
- /**
954
- * NgModule definition for the ListBox component.
955
- */
956
- class ListBoxModule {
957
- }
958
- ListBoxModule.decorators = [
959
- { type: NgModule, args: [{
960
- imports: [CommonModule],
961
- declarations: [
962
- ListBoxComponent
963
- ],
964
- exports: [
965
- ListBoxComponent
966
- ]
967
- },] },
968
- ];
969
- /**
970
- * @nocollapse
971
- */
972
- ListBoxModule.ctorParameters = () => [];
973
-
974
- /**
975
- * NgModule definition for the ListBox component with providers.
976
- */
977
- class ListBoxAllModule {
978
- }
979
- ListBoxAllModule.decorators = [
980
- { type: NgModule, args: [{
981
- imports: [CommonModule, ListBoxModule],
982
- exports: [
983
- ListBoxModule
984
- ],
985
- providers: []
986
- },] },
987
- ];
988
- /**
989
- * @nocollapse
990
- */
991
- ListBoxAllModule.ctorParameters = () => [];
992
-
993
- var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
994
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
995
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
996
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
997
- return c > 3 && r && Object.defineProperty(target, key, r), r;
998
- };
999
- var __metadata$5 = (this && this.__metadata) || function (k, v) {
1000
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
1001
- };
1002
- const inputs$5 = ['actionFailureTemplate', 'allowFiltering', 'allowMultiSelection', 'changeOnBlur', 'cssClass', 'customTemplate', 'delimiterChar', 'enableHtmlSanitizer', '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'];
1003
- const outputs$5 = ['actionFailure', 'beforeOpen', 'blur', 'change', 'close', 'created', 'dataBound', 'destroyed', 'filtering', 'focus', 'keyPress', 'open', 'select', 'valueChange'];
1004
- const twoWays$5 = ['value'];
1005
- /**
1006
- * The DropDownTree component contains a list of predefined values from which you can choose a single or multiple values.
1007
- * ```html
1008
- * <ejs-dropdowntree></ejs-dropdowntree>
1009
- * ```
1010
- */
1011
- let DropDownTreeComponent = DropDownTreeComponent_1 = class DropDownTreeComponent extends DropDownTree {
1012
- /**
1013
- * @param {?} ngEle
1014
- * @param {?} srenderer
1015
- * @param {?} viewContainerRef
1016
- * @param {?} injector
1017
- */
1018
- constructor(ngEle, srenderer, viewContainerRef, injector) {
1019
- super();
1020
- this.ngEle = ngEle;
1021
- this.srenderer = srenderer;
1022
- this.viewContainerRef = viewContainerRef;
1023
- this.injector = injector;
1024
- this.skipFromEvent = true;
1025
- this.element = this.ngEle.nativeElement;
1026
- this.injectedModules = this.injectedModules || [];
1027
- this.registerEvents(outputs$5);
1028
- this.addTwoWay.call(this, twoWays$5);
1029
- setValue('currentInstance', this, this.viewContainerRef);
1030
- this.formContext = new FormBase();
1031
- this.formCompContext = new ComponentBase();
1032
- }
1033
- /**
1034
- * @param {?} registerFunction
1035
- * @return {?}
1036
- */
1037
- registerOnChange(registerFunction) {
1038
- }
1039
- /**
1040
- * @param {?} registerFunction
1041
- * @return {?}
1042
- */
1043
- registerOnTouched(registerFunction) {
1044
- }
1045
- /**
1046
- * @param {?} value
1047
- * @return {?}
1048
- */
1049
- writeValue(value) {
1050
- }
1051
- /**
1052
- * @param {?} disabled
1053
- * @return {?}
1054
- */
1055
- setDisabledState(disabled) {
1056
- }
1057
- /**
1058
- * @return {?}
1059
- */
1060
- ngOnInit() {
1061
- this.formCompContext.ngOnInit(this);
1062
- }
1063
- /**
1064
- * @return {?}
1065
- */
1066
- ngAfterViewInit() {
1067
- this.formContext.ngAfterViewInit(this);
1068
- }
1069
- /**
1070
- * @return {?}
1071
- */
1072
- ngOnDestroy() {
1073
- this.formCompContext.ngOnDestroy(this);
1074
- }
1075
- /**
1076
- * @return {?}
1077
- */
1078
- ngAfterContentChecked() {
1079
- this.formCompContext.ngAfterContentChecked(this);
1080
- }
1081
- };
1082
- DropDownTreeComponent.decorators = [
1083
- { type: Component, args: [{
1084
- selector: 'ejs-dropdowntree',
1085
- inputs: inputs$5,
1086
- outputs: outputs$5,
1087
- template: '',
1088
- changeDetection: ChangeDetectionStrategy.OnPush,
1089
- providers: [
1090
- {
1091
- provide: NG_VALUE_ACCESSOR,
1092
- useExisting: forwardRef(() => DropDownTreeComponent_1),
1093
- multi: true
1094
- }
1095
- ],
1096
- queries: {}
1097
- },] },
1098
- ];
1099
- /**
1100
- * @nocollapse
1101
- */
1102
- DropDownTreeComponent.ctorParameters = () => [
1103
- { type: ElementRef, },
1104
- { type: Renderer2, },
1105
- { type: ViewContainerRef, },
1106
- { type: Injector, },
1107
- ];
1108
- DropDownTreeComponent.propDecorators = {
1109
- 'footerTemplate': [{ type: ContentChild, args: ['footerTemplate',] },],
1110
- 'headerTemplate': [{ type: ContentChild, args: ['headerTemplate',] },],
1111
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
1112
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
1113
- 'actionFailureTemplate': [{ type: ContentChild, args: ['actionFailureTemplate',] },],
1114
- };
1115
- __decorate$5([
1116
- Template(),
1117
- __metadata$5("design:type", Object)
1118
- ], DropDownTreeComponent.prototype, "footerTemplate", void 0);
1119
- __decorate$5([
1120
- Template(),
1121
- __metadata$5("design:type", Object)
1122
- ], DropDownTreeComponent.prototype, "headerTemplate", void 0);
1123
- __decorate$5([
1124
- Template(),
1125
- __metadata$5("design:type", Object)
1126
- ], DropDownTreeComponent.prototype, "itemTemplate", void 0);
1127
- __decorate$5([
1128
- Template('No records found'),
1129
- __metadata$5("design:type", Object)
1130
- ], DropDownTreeComponent.prototype, "noRecordsTemplate", void 0);
1131
- __decorate$5([
1132
- Template('Request failed'),
1133
- __metadata$5("design:type", Object)
1134
- ], DropDownTreeComponent.prototype, "actionFailureTemplate", void 0);
1135
- DropDownTreeComponent = DropDownTreeComponent_1 = __decorate$5([
1136
- ComponentMixins([ComponentBase, FormBase]),
1137
- __metadata$5("design:paramtypes", [ElementRef,
1138
- Renderer2,
1139
- ViewContainerRef,
1140
- Injector])
1141
- ], DropDownTreeComponent);
1142
- var DropDownTreeComponent_1;
1143
-
1144
- /**
1145
- * NgModule definition for the DropDownTree component.
1146
- */
1147
- class DropDownTreeModule {
1148
- }
1149
- DropDownTreeModule.decorators = [
1150
- { type: NgModule, args: [{
1151
- imports: [CommonModule],
1152
- declarations: [
1153
- DropDownTreeComponent
1154
- ],
1155
- exports: [
1156
- DropDownTreeComponent
1157
- ]
1158
- },] },
1159
- ];
1160
- /**
1161
- * @nocollapse
1162
- */
1163
- DropDownTreeModule.ctorParameters = () => [];
1164
-
1165
- /**
1166
- * NgModule definition for the DropDownTree component with providers.
1167
- */
1168
- class DropDownTreeAllModule {
1169
- }
1170
- DropDownTreeAllModule.decorators = [
1171
- { type: NgModule, args: [{
1172
- imports: [CommonModule, DropDownTreeModule],
1173
- exports: [
1174
- DropDownTreeModule
1175
- ],
1176
- providers: []
1177
- },] },
1178
- ];
1179
- /**
1180
- * @nocollapse
1181
- */
1182
- DropDownTreeAllModule.ctorParameters = () => [];
1183
-
1184
- var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
1185
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1186
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
1187
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1188
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1189
- };
1190
- var __metadata$6 = (this && this.__metadata) || function (k, v) {
1191
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
1192
- };
1193
- const inputs$6 = ['allowSpaces', 'cssClass', 'dataSource', 'displayTemplate', 'fields', 'filterType', 'highlight', 'ignoreCase', 'itemTemplate', 'locale', 'mentionChar', 'minLength', 'noRecordsTemplate', 'popupHeight', 'popupWidth', 'query', 'showMentionChar', 'sortOrder', 'spinnerTemplate', 'suffixText', 'suggestionCount', 'target'];
1194
- const outputs$6 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeOpen', 'change', 'closed', 'created', 'destroyed', 'filtering', 'opened', 'select'];
1195
- const twoWays$6 = [''];
1196
- /**
1197
- * The Mention component contains a list of predefined values, from which the user can choose a single value.
1198
- * ```html
1199
- * <ejs-mention></ejs-mention>
1200
- * ```
1201
- */
1202
- let MentionComponent = class MentionComponent extends Mention {
1203
- /**
1204
- * @param {?} ngEle
1205
- * @param {?} srenderer
1206
- * @param {?} viewContainerRef
1207
- * @param {?} injector
1208
- */
1209
- constructor(ngEle, srenderer, viewContainerRef, injector) {
1210
- super();
1211
- this.ngEle = ngEle;
1212
- this.srenderer = srenderer;
1213
- this.viewContainerRef = viewContainerRef;
1214
- this.injector = injector;
1215
- this.element = this.ngEle.nativeElement;
1216
- this.injectedModules = this.injectedModules || [];
1217
- this.registerEvents(outputs$6);
1218
- this.addTwoWay.call(this, twoWays$6);
1219
- setValue('currentInstance', this, this.viewContainerRef);
1220
- this.containerContext = new ComponentBase();
1221
- }
1222
- /**
1223
- * @return {?}
1224
- */
1225
- ngOnInit() {
1226
- this.containerContext.ngOnInit(this);
1227
- }
1228
- /**
1229
- * @return {?}
1230
- */
1231
- ngAfterViewInit() {
1232
- this.containerContext.ngAfterViewInit(this);
1233
- }
1234
- /**
1235
- * @return {?}
1236
- */
1237
- ngOnDestroy() {
1238
- this.containerContext.ngOnDestroy(this);
1239
- }
1240
- /**
1241
- * @return {?}
1242
- */
1243
- ngAfterContentChecked() {
1244
- this.containerContext.ngAfterContentChecked(this);
1245
- }
1246
- };
1247
- MentionComponent.decorators = [
1248
- { type: Component, args: [{
1249
- selector: 'ejs-mention',
1250
- inputs: inputs$6,
1251
- outputs: outputs$6,
1252
- template: `<ng-content ></ng-content>`,
1253
- changeDetection: ChangeDetectionStrategy.OnPush,
1254
- queries: {}
1255
- },] },
1256
- ];
1257
- /**
1258
- * @nocollapse
1259
- */
1260
- MentionComponent.ctorParameters = () => [
1261
- { type: ElementRef, },
1262
- { type: Renderer2, },
1263
- { type: ViewContainerRef, },
1264
- { type: Injector, },
1265
- ];
1266
- MentionComponent.propDecorators = {
1267
- 'displayTemplate': [{ type: ContentChild, args: ['displayTemplate',] },],
1268
- 'itemTemplate': [{ type: ContentChild, args: ['itemTemplate',] },],
1269
- 'spinnerTemplate': [{ type: ContentChild, args: ['spinnerTemplate',] },],
1270
- 'noRecordsTemplate': [{ type: ContentChild, args: ['noRecordsTemplate',] },],
1271
- };
1272
- __decorate$6([
1273
- Template(),
1274
- __metadata$6("design:type", Object)
1275
- ], MentionComponent.prototype, "displayTemplate", void 0);
1276
- __decorate$6([
1277
- Template(),
1278
- __metadata$6("design:type", Object)
1279
- ], MentionComponent.prototype, "itemTemplate", void 0);
1280
- __decorate$6([
1281
- Template(),
1282
- __metadata$6("design:type", Object)
1283
- ], MentionComponent.prototype, "spinnerTemplate", void 0);
1284
- __decorate$6([
1285
- Template('No records found'),
1286
- __metadata$6("design:type", Object)
1287
- ], MentionComponent.prototype, "noRecordsTemplate", void 0);
1288
- MentionComponent = __decorate$6([
1289
- ComponentMixins([ComponentBase]),
1290
- __metadata$6("design:paramtypes", [ElementRef,
1291
- Renderer2,
1292
- ViewContainerRef,
1293
- Injector])
1294
- ], MentionComponent);
1295
-
1296
- /**
1297
- * NgModule definition for the Mention component.
1298
- */
1299
- class MentionModule {
1300
- }
1301
- MentionModule.decorators = [
1302
- { type: NgModule, args: [{
1303
- imports: [CommonModule],
1304
- declarations: [
1305
- MentionComponent
1306
- ],
1307
- exports: [
1308
- MentionComponent
1309
- ]
1310
- },] },
1311
- ];
1312
- /**
1313
- * @nocollapse
1314
- */
1315
- MentionModule.ctorParameters = () => [];
1316
-
1317
- /**
1318
- * NgModule definition for the Mention component with providers.
1319
- */
1320
- class MentionAllModule {
1321
- }
1322
- MentionAllModule.decorators = [
1323
- { type: NgModule, args: [{
1324
- imports: [CommonModule, MentionModule],
1325
- exports: [
1326
- MentionModule
1327
- ],
1328
- providers: []
1329
- },] },
1330
- ];
1331
- /**
1332
- * @nocollapse
1333
- */
1334
- MentionAllModule.ctorParameters = () => [];
1335
-
1336
- /**
1337
- * Generated bundle index. Do not edit.
1338
- */
1339
-
1340
- export { DropDownListComponent, DropDownListModule, DropDownListAllModule, ComboBoxComponent, ComboBoxModule, ComboBoxAllModule, AutoCompleteComponent, AutoCompleteModule, AutoCompleteAllModule, MultiSelectComponent, MultiSelectModule, MultiSelectAllModule, CheckBoxSelectionService, ListBoxComponent, ListBoxModule, ListBoxAllModule, DropDownTreeComponent, DropDownTreeModule, DropDownTreeAllModule, MentionComponent, MentionModule, MentionAllModule, inputs$2 as ɵe, outputs$2 as ɵf, inputs$1 as ɵc, outputs$1 as ɵd, inputs as ɵa, outputs as ɵb, inputs$5 as ɵk, outputs$5 as ɵl, inputs$4 as ɵi, outputs$4 as ɵj, inputs$6 as ɵm, outputs$6 as ɵn, inputs$3 as ɵg, outputs$3 as ɵh };
1341
- export { incrementalSearch, Search, escapeCharRegExp, resetIncrementalSearchValues, highlightSearch, revertHighlightSearch, FieldSettings, dropDownBaseClasses, DropDownBase, dropDownListClasses, DropDownList, Fields, TreeSettings, DropDownTree, ComboBox, AutoComplete, MultiSelect, CheckBoxSelection, createFloatLabel, updateFloatLabelState, removeFloating, setPlaceHolder, floatLabelFocus, floatLabelBlur, encodePlaceholder, SelectionSettings, ToolbarSettings, ListBox, Mention } from '@syncfusion/ej2-dropdowns';
1342
- //# sourceMappingURL=ej2-angular-dropdowns.js.map