@syncfusion/ej2-angular-inputs 32.1.19-ngcc → 32.1.19

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 (436) hide show
  1. package/CHANGELOG.md +1548 -0
  2. package/README.md +11 -3
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  5. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  6. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  7. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  8. package/esm2020/src/index.mjs +40 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  10. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +98 -0
  11. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  12. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  13. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +98 -0
  14. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  15. package/esm2020/src/otp-input/otpinput-all.module.mjs +23 -0
  16. package/esm2020/src/otp-input/otpinput.component.mjs +85 -0
  17. package/esm2020/src/otp-input/otpinput.module.mjs +25 -0
  18. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  19. package/esm2020/src/rating/rating.component.mjs +109 -0
  20. package/esm2020/src/rating/rating.module.mjs +25 -0
  21. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  22. package/esm2020/src/signature/signature.component.mjs +84 -0
  23. package/esm2020/src/signature/signature.module.mjs +25 -0
  24. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  25. package/esm2020/src/slider/slider.component.mjs +84 -0
  26. package/esm2020/src/slider/slider.module.mjs +25 -0
  27. package/esm2020/src/smart-textarea/smarttextarea-all.module.mjs +23 -0
  28. package/esm2020/src/smart-textarea/smarttextarea.component.mjs +85 -0
  29. package/esm2020/src/smart-textarea/smarttextarea.module.mjs +25 -0
  30. package/esm2020/src/speech-to-text/speechtotext-all.module.mjs +23 -0
  31. package/esm2020/src/speech-to-text/speechtotext.component.mjs +59 -0
  32. package/esm2020/src/speech-to-text/speechtotext.module.mjs +25 -0
  33. package/esm2020/src/textarea/textarea-all.module.mjs +23 -0
  34. package/esm2020/src/textarea/textarea.component.mjs +98 -0
  35. package/esm2020/src/textarea/textarea.module.mjs +25 -0
  36. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  37. package/esm2020/src/textbox/textbox.component.mjs +98 -0
  38. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  39. package/esm2020/src/uploader/files.directive.mjs +58 -0
  40. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  41. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  42. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  43. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  44. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1738 -0
  45. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  46. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1738 -0
  47. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  48. package/package.json +28 -46
  49. package/public_api.d.ts +1 -1
  50. package/src/color-picker/colorpicker-all.module.d.ts +11 -5
  51. package/src/color-picker/colorpicker.component.d.ts +48 -45
  52. package/src/color-picker/colorpicker.module.d.ts +11 -5
  53. package/src/form-validator/form-validator.d.ts +36 -36
  54. package/src/index.d.ts +39 -39
  55. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +11 -5
  56. package/src/maskedtextbox/maskedtextbox.component.d.ts +63 -40
  57. package/src/maskedtextbox/maskedtextbox.module.d.ts +11 -5
  58. package/src/numerictextbox/numerictextbox-all.module.d.ts +11 -5
  59. package/src/numerictextbox/numerictextbox.component.d.ts +63 -40
  60. package/src/numerictextbox/numerictextbox.module.d.ts +11 -5
  61. package/src/otp-input/otpinput-all.module.d.ts +11 -5
  62. package/src/otp-input/otpinput.component.d.ts +43 -40
  63. package/src/otp-input/otpinput.module.d.ts +11 -5
  64. package/src/rating/rating-all.module.d.ts +11 -5
  65. package/src/rating/rating.component.d.ts +89 -86
  66. package/src/rating/rating.module.d.ts +11 -5
  67. package/src/signature/signature-all.module.d.ts +11 -5
  68. package/src/signature/signature.component.d.ts +41 -38
  69. package/src/signature/signature.module.d.ts +11 -5
  70. package/src/slider/slider-all.module.d.ts +11 -5
  71. package/src/slider/slider.component.d.ts +45 -42
  72. package/src/slider/slider.module.d.ts +11 -5
  73. package/src/smart-textarea/smarttextarea-all.module.d.ts +11 -5
  74. package/src/smart-textarea/smarttextarea.component.d.ts +46 -41
  75. package/src/smart-textarea/smarttextarea.module.d.ts +11 -5
  76. package/src/speech-to-text/speechtotext-all.module.d.ts +11 -5
  77. package/src/speech-to-text/speechtotext.component.d.ts +36 -33
  78. package/src/speech-to-text/speechtotext.module.d.ts +11 -5
  79. package/src/textarea/textarea-all.module.d.ts +11 -5
  80. package/src/textarea/textarea.component.d.ts +66 -41
  81. package/src/textarea/textarea.module.d.ts +11 -5
  82. package/src/textbox/textbox-all.module.d.ts +11 -5
  83. package/src/textbox/textbox.component.d.ts +64 -41
  84. package/src/textbox/textbox.module.d.ts +11 -5
  85. package/src/uploader/files.directive.d.ts +46 -41
  86. package/src/uploader/uploader-all.module.d.ts +11 -5
  87. package/src/uploader/uploader.component.d.ts +69 -66
  88. package/src/uploader/uploader.module.d.ts +12 -5
  89. package/styles/bds-lite.scss +1 -1
  90. package/styles/bds.scss +14 -14
  91. package/styles/bootstrap-dark-lite.scss +1 -1
  92. package/styles/bootstrap-dark.scss +14 -14
  93. package/styles/bootstrap-lite.scss +1 -1
  94. package/styles/bootstrap.scss +14 -14
  95. package/styles/bootstrap4-lite.scss +1 -1
  96. package/styles/bootstrap4.scss +14 -14
  97. package/styles/bootstrap5-dark-lite.scss +1 -1
  98. package/styles/bootstrap5-dark.scss +14 -14
  99. package/styles/bootstrap5-lite.scss +1 -1
  100. package/styles/bootstrap5.3-lite.scss +1 -1
  101. package/styles/bootstrap5.3.scss +14 -14
  102. package/styles/bootstrap5.scss +14 -14
  103. package/styles/color-picker/bds.scss +1 -1
  104. package/styles/color-picker/bootstrap-dark.scss +1 -1
  105. package/styles/color-picker/bootstrap.scss +1 -1
  106. package/styles/color-picker/bootstrap4.scss +1 -1
  107. package/styles/color-picker/bootstrap5-dark.scss +1 -1
  108. package/styles/color-picker/bootstrap5.3.scss +1 -1
  109. package/styles/color-picker/bootstrap5.scss +1 -1
  110. package/styles/color-picker/fabric-dark.scss +1 -1
  111. package/styles/color-picker/fabric.scss +1 -1
  112. package/styles/color-picker/fluent-dark.scss +1 -1
  113. package/styles/color-picker/fluent.scss +1 -1
  114. package/styles/color-picker/fluent2.scss +1 -1
  115. package/styles/color-picker/highcontrast-light.scss +1 -1
  116. package/styles/color-picker/highcontrast.scss +1 -1
  117. package/styles/color-picker/material-dark.scss +1 -1
  118. package/styles/color-picker/material.scss +1 -1
  119. package/styles/color-picker/material3-dark.scss +1 -2
  120. package/styles/color-picker/material3.scss +1 -2
  121. package/styles/color-picker/tailwind-dark.scss +1 -1
  122. package/styles/color-picker/tailwind.scss +1 -1
  123. package/styles/color-picker/tailwind3.scss +1 -1
  124. package/styles/data-form/bds.scss +1 -1
  125. package/styles/data-form/bootstrap-dark.scss +1 -1
  126. package/styles/data-form/bootstrap.scss +1 -1
  127. package/styles/data-form/bootstrap4.scss +1 -1
  128. package/styles/data-form/bootstrap5-dark.scss +1 -1
  129. package/styles/data-form/bootstrap5.3.scss +1 -1
  130. package/styles/data-form/bootstrap5.scss +1 -1
  131. package/styles/data-form/fabric-dark.scss +1 -1
  132. package/styles/data-form/fabric.scss +1 -1
  133. package/styles/data-form/fluent-dark.scss +1 -1
  134. package/styles/data-form/fluent.scss +1 -1
  135. package/styles/data-form/fluent2.scss +1 -1
  136. package/styles/data-form/highcontrast-light.scss +1 -1
  137. package/styles/data-form/highcontrast.scss +1 -1
  138. package/styles/data-form/material-dark.scss +1 -1
  139. package/styles/data-form/material.scss +1 -1
  140. package/styles/data-form/material3-dark.scss +1 -2
  141. package/styles/data-form/material3.scss +1 -2
  142. package/styles/data-form/tailwind-dark.scss +1 -1
  143. package/styles/data-form/tailwind.scss +1 -1
  144. package/styles/data-form/tailwind3.scss +1 -1
  145. package/styles/fabric-dark-lite.scss +1 -1
  146. package/styles/fabric-dark.scss +14 -14
  147. package/styles/fabric-lite.scss +1 -1
  148. package/styles/fabric.scss +14 -14
  149. package/styles/fluent-dark-lite.scss +1 -1
  150. package/styles/fluent-dark.scss +14 -14
  151. package/styles/fluent-lite.scss +1 -1
  152. package/styles/fluent.scss +14 -14
  153. package/styles/fluent2-lite.scss +1 -1
  154. package/styles/fluent2.scss +14 -14
  155. package/styles/highcontrast-light-lite.scss +1 -1
  156. package/styles/highcontrast-light.scss +14 -14
  157. package/styles/highcontrast-lite.scss +1 -1
  158. package/styles/highcontrast.scss +14 -14
  159. package/styles/input/bds.scss +1 -1
  160. package/styles/input/bootstrap-dark.scss +1 -1
  161. package/styles/input/bootstrap.scss +1 -1
  162. package/styles/input/bootstrap4.scss +1 -1
  163. package/styles/input/bootstrap5-dark.scss +1 -1
  164. package/styles/input/bootstrap5.3.scss +1 -1
  165. package/styles/input/bootstrap5.scss +1 -1
  166. package/styles/input/fabric-dark.scss +1 -1
  167. package/styles/input/fabric.scss +1 -1
  168. package/styles/input/fluent-dark.scss +1 -1
  169. package/styles/input/fluent.scss +1 -1
  170. package/styles/input/fluent2.scss +1 -1
  171. package/styles/input/highcontrast-light.scss +1 -1
  172. package/styles/input/highcontrast.scss +1 -1
  173. package/styles/input/material-dark.scss +1 -1
  174. package/styles/input/material.scss +1 -1
  175. package/styles/input/material3-dark.scss +1 -2
  176. package/styles/input/material3.scss +1 -2
  177. package/styles/input/tailwind-dark.scss +1 -1
  178. package/styles/input/tailwind.scss +1 -1
  179. package/styles/input/tailwind3.scss +1 -1
  180. package/styles/maskedtextbox/bds.scss +1 -1
  181. package/styles/maskedtextbox/bootstrap-dark.scss +1 -1
  182. package/styles/maskedtextbox/bootstrap.scss +1 -1
  183. package/styles/maskedtextbox/bootstrap4.scss +1 -1
  184. package/styles/maskedtextbox/bootstrap5-dark.scss +1 -1
  185. package/styles/maskedtextbox/bootstrap5.3.scss +1 -1
  186. package/styles/maskedtextbox/bootstrap5.scss +1 -1
  187. package/styles/maskedtextbox/fabric-dark.scss +1 -1
  188. package/styles/maskedtextbox/fabric.scss +1 -1
  189. package/styles/maskedtextbox/fluent-dark.scss +1 -1
  190. package/styles/maskedtextbox/fluent.scss +1 -1
  191. package/styles/maskedtextbox/fluent2.scss +1 -1
  192. package/styles/maskedtextbox/highcontrast-light.scss +1 -1
  193. package/styles/maskedtextbox/highcontrast.scss +1 -1
  194. package/styles/maskedtextbox/material-dark.scss +1 -1
  195. package/styles/maskedtextbox/material.scss +1 -1
  196. package/styles/maskedtextbox/material3-dark.scss +1 -2
  197. package/styles/maskedtextbox/material3.scss +1 -2
  198. package/styles/maskedtextbox/tailwind-dark.scss +1 -1
  199. package/styles/maskedtextbox/tailwind.scss +1 -1
  200. package/styles/maskedtextbox/tailwind3.scss +1 -1
  201. package/styles/material-dark-lite.scss +1 -1
  202. package/styles/material-dark.scss +14 -14
  203. package/styles/material-lite.scss +1 -1
  204. package/styles/material.scss +14 -14
  205. package/styles/material3-dark-lite.scss +1 -1
  206. package/styles/material3-dark.scss +14 -15
  207. package/styles/material3-lite.scss +1 -1
  208. package/styles/material3.scss +14 -15
  209. package/styles/numerictextbox/bds.scss +1 -1
  210. package/styles/numerictextbox/bootstrap-dark.scss +1 -1
  211. package/styles/numerictextbox/bootstrap.scss +1 -1
  212. package/styles/numerictextbox/bootstrap4.scss +1 -1
  213. package/styles/numerictextbox/bootstrap5-dark.scss +1 -1
  214. package/styles/numerictextbox/bootstrap5.3.scss +1 -1
  215. package/styles/numerictextbox/bootstrap5.scss +1 -1
  216. package/styles/numerictextbox/fabric-dark.scss +1 -1
  217. package/styles/numerictextbox/fabric.scss +1 -1
  218. package/styles/numerictextbox/fluent-dark.scss +1 -1
  219. package/styles/numerictextbox/fluent.scss +1 -1
  220. package/styles/numerictextbox/fluent2.scss +1 -1
  221. package/styles/numerictextbox/highcontrast-light.scss +1 -1
  222. package/styles/numerictextbox/highcontrast.scss +1 -1
  223. package/styles/numerictextbox/material-dark.scss +1 -1
  224. package/styles/numerictextbox/material.scss +1 -1
  225. package/styles/numerictextbox/material3-dark.scss +1 -2
  226. package/styles/numerictextbox/material3.scss +1 -2
  227. package/styles/numerictextbox/tailwind-dark.scss +1 -1
  228. package/styles/numerictextbox/tailwind.scss +1 -1
  229. package/styles/numerictextbox/tailwind3.scss +1 -1
  230. package/styles/otp-input/bds.scss +1 -1
  231. package/styles/otp-input/bootstrap-dark.scss +1 -1
  232. package/styles/otp-input/bootstrap.scss +1 -1
  233. package/styles/otp-input/bootstrap4.scss +1 -1
  234. package/styles/otp-input/bootstrap5-dark.scss +1 -1
  235. package/styles/otp-input/bootstrap5.3.scss +1 -1
  236. package/styles/otp-input/bootstrap5.scss +1 -1
  237. package/styles/otp-input/fabric-dark.scss +1 -1
  238. package/styles/otp-input/fabric.scss +1 -1
  239. package/styles/otp-input/fluent-dark.scss +1 -1
  240. package/styles/otp-input/fluent.scss +1 -1
  241. package/styles/otp-input/fluent2.scss +1 -1
  242. package/styles/otp-input/highcontrast-light.scss +1 -1
  243. package/styles/otp-input/highcontrast.scss +1 -1
  244. package/styles/otp-input/material-dark.scss +1 -1
  245. package/styles/otp-input/material.scss +1 -1
  246. package/styles/otp-input/material3-dark.scss +1 -2
  247. package/styles/otp-input/material3.scss +1 -2
  248. package/styles/otp-input/tailwind-dark.scss +1 -1
  249. package/styles/otp-input/tailwind.scss +1 -1
  250. package/styles/otp-input/tailwind3.scss +1 -1
  251. package/styles/rating/bds.scss +1 -1
  252. package/styles/rating/bootstrap-dark.scss +1 -1
  253. package/styles/rating/bootstrap.scss +1 -1
  254. package/styles/rating/bootstrap4.scss +1 -1
  255. package/styles/rating/bootstrap5-dark.scss +1 -1
  256. package/styles/rating/bootstrap5.3.scss +1 -1
  257. package/styles/rating/bootstrap5.scss +1 -1
  258. package/styles/rating/fabric-dark.scss +1 -1
  259. package/styles/rating/fabric.scss +1 -1
  260. package/styles/rating/fluent-dark.scss +1 -1
  261. package/styles/rating/fluent.scss +1 -1
  262. package/styles/rating/fluent2.scss +1 -1
  263. package/styles/rating/highcontrast-light.scss +1 -1
  264. package/styles/rating/highcontrast.scss +1 -1
  265. package/styles/rating/material-dark.scss +1 -1
  266. package/styles/rating/material.scss +1 -1
  267. package/styles/rating/material3-dark.scss +1 -2
  268. package/styles/rating/material3.scss +1 -2
  269. package/styles/rating/tailwind-dark.scss +1 -1
  270. package/styles/rating/tailwind.scss +1 -1
  271. package/styles/rating/tailwind3.scss +1 -1
  272. package/styles/signature/bds.scss +1 -1
  273. package/styles/signature/bootstrap-dark.scss +1 -1
  274. package/styles/signature/bootstrap.scss +1 -1
  275. package/styles/signature/bootstrap4.scss +1 -1
  276. package/styles/signature/bootstrap5-dark.scss +1 -1
  277. package/styles/signature/bootstrap5.3.scss +1 -1
  278. package/styles/signature/bootstrap5.scss +1 -1
  279. package/styles/signature/fabric-dark.scss +1 -1
  280. package/styles/signature/fabric.scss +1 -1
  281. package/styles/signature/fluent-dark.scss +1 -1
  282. package/styles/signature/fluent.scss +1 -1
  283. package/styles/signature/fluent2.scss +1 -1
  284. package/styles/signature/highcontrast-light.scss +1 -1
  285. package/styles/signature/highcontrast.scss +1 -1
  286. package/styles/signature/material-dark.scss +1 -1
  287. package/styles/signature/material.scss +1 -1
  288. package/styles/signature/material3-dark.scss +1 -2
  289. package/styles/signature/material3.scss +1 -2
  290. package/styles/signature/tailwind-dark.scss +1 -1
  291. package/styles/signature/tailwind.scss +1 -1
  292. package/styles/signature/tailwind3.scss +1 -1
  293. package/styles/slider/bds.scss +1 -1
  294. package/styles/slider/bootstrap-dark.scss +1 -1
  295. package/styles/slider/bootstrap.scss +1 -1
  296. package/styles/slider/bootstrap4.scss +1 -1
  297. package/styles/slider/bootstrap5-dark.scss +1 -1
  298. package/styles/slider/bootstrap5.3.scss +1 -1
  299. package/styles/slider/bootstrap5.scss +1 -1
  300. package/styles/slider/fabric-dark.scss +1 -1
  301. package/styles/slider/fabric.scss +1 -1
  302. package/styles/slider/fluent-dark.scss +1 -1
  303. package/styles/slider/fluent.scss +1 -1
  304. package/styles/slider/fluent2.scss +1 -1
  305. package/styles/slider/highcontrast-light.scss +1 -1
  306. package/styles/slider/highcontrast.scss +1 -1
  307. package/styles/slider/material-dark.scss +1 -1
  308. package/styles/slider/material.scss +1 -1
  309. package/styles/slider/material3-dark.scss +1 -2
  310. package/styles/slider/material3.scss +1 -2
  311. package/styles/slider/tailwind-dark.scss +1 -1
  312. package/styles/slider/tailwind.scss +1 -1
  313. package/styles/slider/tailwind3.scss +1 -1
  314. package/styles/smart-textarea/bds.scss +1 -1
  315. package/styles/smart-textarea/bootstrap-dark.scss +1 -1
  316. package/styles/smart-textarea/bootstrap.scss +1 -1
  317. package/styles/smart-textarea/bootstrap4.scss +1 -1
  318. package/styles/smart-textarea/bootstrap5-dark.scss +1 -1
  319. package/styles/smart-textarea/bootstrap5.3.scss +1 -1
  320. package/styles/smart-textarea/bootstrap5.scss +1 -1
  321. package/styles/smart-textarea/fabric-dark.scss +1 -1
  322. package/styles/smart-textarea/fabric.scss +1 -1
  323. package/styles/smart-textarea/fluent-dark.scss +1 -1
  324. package/styles/smart-textarea/fluent.scss +1 -1
  325. package/styles/smart-textarea/fluent2.scss +1 -1
  326. package/styles/smart-textarea/highcontrast-light.scss +1 -1
  327. package/styles/smart-textarea/highcontrast.scss +1 -1
  328. package/styles/smart-textarea/material-dark.scss +1 -1
  329. package/styles/smart-textarea/material.scss +1 -1
  330. package/styles/smart-textarea/material3-dark.scss +1 -2
  331. package/styles/smart-textarea/material3.scss +1 -2
  332. package/styles/smart-textarea/tailwind-dark.scss +1 -1
  333. package/styles/smart-textarea/tailwind.scss +1 -1
  334. package/styles/smart-textarea/tailwind3.scss +1 -1
  335. package/styles/speech-to-text/bds.scss +1 -1
  336. package/styles/speech-to-text/bootstrap-dark.scss +1 -1
  337. package/styles/speech-to-text/bootstrap.scss +1 -1
  338. package/styles/speech-to-text/bootstrap4.scss +1 -1
  339. package/styles/speech-to-text/bootstrap5-dark.scss +1 -1
  340. package/styles/speech-to-text/bootstrap5.3.scss +1 -1
  341. package/styles/speech-to-text/bootstrap5.scss +1 -1
  342. package/styles/speech-to-text/fabric-dark.scss +1 -1
  343. package/styles/speech-to-text/fabric.scss +1 -1
  344. package/styles/speech-to-text/fluent-dark.scss +1 -1
  345. package/styles/speech-to-text/fluent.scss +1 -1
  346. package/styles/speech-to-text/fluent2.scss +1 -1
  347. package/styles/speech-to-text/highcontrast-light.scss +1 -1
  348. package/styles/speech-to-text/highcontrast.scss +1 -1
  349. package/styles/speech-to-text/material-dark.scss +1 -1
  350. package/styles/speech-to-text/material.scss +1 -1
  351. package/styles/speech-to-text/material3-dark.scss +1 -2
  352. package/styles/speech-to-text/material3.scss +1 -2
  353. package/styles/speech-to-text/tailwind-dark.scss +1 -1
  354. package/styles/speech-to-text/tailwind.scss +1 -1
  355. package/styles/speech-to-text/tailwind3.scss +1 -1
  356. package/styles/tailwind-dark-lite.scss +1 -1
  357. package/styles/tailwind-dark.scss +14 -14
  358. package/styles/tailwind-lite.scss +1 -1
  359. package/styles/tailwind.scss +14 -14
  360. package/styles/tailwind3-lite.scss +1 -1
  361. package/styles/tailwind3.scss +14 -14
  362. package/styles/textarea/bds.scss +1 -1
  363. package/styles/textarea/bootstrap-dark.scss +1 -1
  364. package/styles/textarea/bootstrap.scss +1 -1
  365. package/styles/textarea/bootstrap4.scss +1 -1
  366. package/styles/textarea/bootstrap5-dark.scss +1 -1
  367. package/styles/textarea/bootstrap5.3.scss +1 -1
  368. package/styles/textarea/bootstrap5.scss +1 -1
  369. package/styles/textarea/fabric-dark.scss +1 -1
  370. package/styles/textarea/fabric.scss +1 -1
  371. package/styles/textarea/fluent-dark.scss +1 -1
  372. package/styles/textarea/fluent.scss +1 -1
  373. package/styles/textarea/fluent2.scss +1 -1
  374. package/styles/textarea/highcontrast-light.scss +1 -1
  375. package/styles/textarea/highcontrast.scss +1 -1
  376. package/styles/textarea/material-dark.scss +1 -1
  377. package/styles/textarea/material.scss +1 -1
  378. package/styles/textarea/material3-dark.scss +1 -2
  379. package/styles/textarea/material3.scss +1 -2
  380. package/styles/textarea/tailwind-dark.scss +1 -1
  381. package/styles/textarea/tailwind.scss +1 -1
  382. package/styles/textarea/tailwind3.scss +1 -1
  383. package/styles/textbox/bds.scss +1 -1
  384. package/styles/textbox/bootstrap-dark.scss +1 -1
  385. package/styles/textbox/bootstrap.scss +1 -1
  386. package/styles/textbox/bootstrap4.scss +1 -1
  387. package/styles/textbox/bootstrap5-dark.scss +1 -1
  388. package/styles/textbox/bootstrap5.3.scss +1 -1
  389. package/styles/textbox/bootstrap5.scss +1 -1
  390. package/styles/textbox/fabric-dark.scss +1 -1
  391. package/styles/textbox/fabric.scss +1 -1
  392. package/styles/textbox/fluent-dark.scss +1 -1
  393. package/styles/textbox/fluent.scss +1 -1
  394. package/styles/textbox/fluent2.scss +1 -1
  395. package/styles/textbox/highcontrast-light.scss +1 -1
  396. package/styles/textbox/highcontrast.scss +1 -1
  397. package/styles/textbox/material-dark.scss +1 -1
  398. package/styles/textbox/material.scss +1 -1
  399. package/styles/textbox/material3-dark.scss +1 -2
  400. package/styles/textbox/material3.scss +1 -2
  401. package/styles/textbox/tailwind-dark.scss +1 -1
  402. package/styles/textbox/tailwind.scss +1 -1
  403. package/styles/textbox/tailwind3.scss +1 -1
  404. package/styles/uploader/bds.scss +1 -1
  405. package/styles/uploader/bootstrap-dark.scss +1 -1
  406. package/styles/uploader/bootstrap.scss +1 -1
  407. package/styles/uploader/bootstrap4.scss +1 -1
  408. package/styles/uploader/bootstrap5-dark.scss +1 -1
  409. package/styles/uploader/bootstrap5.3.scss +1 -1
  410. package/styles/uploader/bootstrap5.scss +1 -1
  411. package/styles/uploader/fabric-dark.scss +1 -1
  412. package/styles/uploader/fabric.scss +1 -1
  413. package/styles/uploader/fluent-dark.scss +1 -1
  414. package/styles/uploader/fluent.scss +1 -1
  415. package/styles/uploader/fluent2.scss +1 -1
  416. package/styles/uploader/highcontrast-light.scss +1 -1
  417. package/styles/uploader/highcontrast.scss +1 -1
  418. package/styles/uploader/material-dark.scss +1 -1
  419. package/styles/uploader/material.scss +1 -1
  420. package/styles/uploader/material3-dark.scss +1 -2
  421. package/styles/uploader/material3.scss +1 -2
  422. package/styles/uploader/tailwind-dark.scss +1 -1
  423. package/styles/uploader/tailwind.scss +1 -1
  424. package/styles/uploader/tailwind3.scss +1 -1
  425. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  426. package/@syncfusion/ej2-angular-inputs.es5.js +0 -2469
  427. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  428. package/@syncfusion/ej2-angular-inputs.js +0 -2323
  429. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  430. package/LICENSE +0 -10
  431. package/dist/ej2-angular-inputs.umd.js +0 -2578
  432. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  433. package/dist/ej2-angular-inputs.umd.min.js +0 -2
  434. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  435. package/ej2-angular-inputs.d.ts +0 -16
  436. package/ej2-angular-inputs.metadata.json +0 -1
@@ -1,2578 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/forms'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-inputs'), require('@angular/common')) :
3
- typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@angular/forms', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-inputs', '@angular/common'], factory) :
4
- (factory((global['ej2-angular-inputs'] = {}),global.ng.core,global.ng.forms,global.ej2.angular.base,global.ej2.inputs,global.ng.common));
5
- }(this, (function (exports,core,forms,ej2AngularBase,ej2Inputs,common) { 'use strict';
6
-
7
- var __extends = (this && this.__extends) || (function () {
8
- var extendStatics = Object.setPrototypeOf ||
9
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11
- return function (d, b) {
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20
- r = Reflect.decorate(decorators, target, key, desc);
21
- else
22
- for (var i = decorators.length - 1; i >= 0; i--)
23
- if (d = decorators[i])
24
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
25
- return c > 3 && r && Object.defineProperty(target, key, r), r;
26
- };
27
- var __metadata = (this && this.__metadata) || function (k, v) {
28
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
29
- return Reflect.metadata(k, v);
30
- };
31
- var inputs = ['autocomplete', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'multiline', 'placeholder', 'readonly', 'showClearButton', 'type', 'value', 'width'];
32
- var outputs = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
33
- var twoWays = ['value'];
34
- /**
35
- * Represents the EJ2 Angular TextBox Component.
36
- * ```html
37
- * <ejs-textbox [value]='value'></ejs-textbox>
38
- * ```
39
- */
40
- exports.TextBoxComponent = TextBoxComponent_1 = /** @class */ (function (_super) {
41
- __extends(TextBoxComponent, _super);
42
- /**
43
- * @param {?} ngEle
44
- * @param {?} srenderer
45
- * @param {?} viewContainerRef
46
- * @param {?} injector
47
- * @param {?} cdr
48
- */
49
- function TextBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
50
- var _this = _super.call(this) || this;
51
- _this.ngEle = ngEle;
52
- _this.srenderer = srenderer;
53
- _this.viewContainerRef = viewContainerRef;
54
- _this.injector = injector;
55
- _this.cdr = cdr;
56
- _this.skipFromEvent = true;
57
- _this.element = _this.ngEle.nativeElement;
58
- _this.injectedModules = _this.injectedModules || [];
59
- _this.registerEvents(outputs);
60
- _this.addTwoWay.call(_this, twoWays);
61
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
62
- _this.formContext = new ej2AngularBase.FormBase();
63
- _this.formCompContext = new ej2AngularBase.ComponentBase();
64
- return _this;
65
- }
66
- /**
67
- * @param {?} registerFunction
68
- * @return {?}
69
- */
70
- TextBoxComponent.prototype.registerOnChange = function (registerFunction) {
71
- };
72
- /**
73
- * @param {?} registerFunction
74
- * @return {?}
75
- */
76
- TextBoxComponent.prototype.registerOnTouched = function (registerFunction) {
77
- };
78
- /**
79
- * @param {?} value
80
- * @return {?}
81
- */
82
- TextBoxComponent.prototype.writeValue = function (value) {
83
- };
84
- /**
85
- * @param {?} disabled
86
- * @return {?}
87
- */
88
- TextBoxComponent.prototype.setDisabledState = function (disabled) {
89
- };
90
- /**
91
- * @return {?}
92
- */
93
- TextBoxComponent.prototype.ngOnInit = function () {
94
- this.formCompContext.ngOnInit(this);
95
- };
96
- /**
97
- * @return {?}
98
- */
99
- TextBoxComponent.prototype.ngAfterViewInit = function () {
100
- this.formContext.ngAfterViewInit(this);
101
- };
102
- /**
103
- * @return {?}
104
- */
105
- TextBoxComponent.prototype.ngOnDestroy = function () {
106
- this.formCompContext.ngOnDestroy(this);
107
- };
108
- /**
109
- * @return {?}
110
- */
111
- TextBoxComponent.prototype.ngAfterContentChecked = function () {
112
- this.formCompContext.ngAfterContentChecked(this);
113
- };
114
- return TextBoxComponent;
115
- }(ej2Inputs.TextBox));
116
- exports.TextBoxComponent.decorators = [
117
- { type: core.Component, args: [{
118
- selector: 'ejs-textbox',
119
- inputs: inputs,
120
- outputs: outputs,
121
- template: '',
122
- changeDetection: core.ChangeDetectionStrategy.OnPush,
123
- providers: [
124
- {
125
- provide: forms.NG_VALUE_ACCESSOR,
126
- useExisting: core.forwardRef(function () { return TextBoxComponent_1; }),
127
- multi: true
128
- }
129
- ],
130
- queries: {}
131
- },] },
132
- ];
133
- /**
134
- * @nocollapse
135
- */
136
- exports.TextBoxComponent.ctorParameters = function () { return [
137
- { type: core.ElementRef, },
138
- { type: core.Renderer2, },
139
- { type: core.ViewContainerRef, },
140
- { type: core.Injector, },
141
- { type: core.ChangeDetectorRef, },
142
- ]; };
143
- exports.TextBoxComponent = TextBoxComponent_1 = __decorate([
144
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
145
- __metadata("design:paramtypes", [core.ElementRef,
146
- core.Renderer2,
147
- core.ViewContainerRef,
148
- core.Injector,
149
- core.ChangeDetectorRef])
150
- ], exports.TextBoxComponent);
151
- var TextBoxComponent_1;
152
- /**
153
- * NgModule definition for the TextBox component.
154
- */
155
- var TextBoxModule = /** @class */ (function () {
156
- function TextBoxModule() {
157
- }
158
- return TextBoxModule;
159
- }());
160
- TextBoxModule.decorators = [
161
- { type: core.NgModule, args: [{
162
- imports: [common.CommonModule],
163
- declarations: [
164
- exports.TextBoxComponent
165
- ],
166
- exports: [
167
- exports.TextBoxComponent
168
- ]
169
- },] },
170
- ];
171
- /**
172
- * @nocollapse
173
- */
174
- TextBoxModule.ctorParameters = function () { return []; };
175
- /**
176
- * NgModule definition for the TextBox component with providers.
177
- */
178
- var TextBoxAllModule = /** @class */ (function () {
179
- function TextBoxAllModule() {
180
- }
181
- return TextBoxAllModule;
182
- }());
183
- TextBoxAllModule.decorators = [
184
- { type: core.NgModule, args: [{
185
- imports: [common.CommonModule, TextBoxModule],
186
- exports: [
187
- TextBoxModule
188
- ],
189
- providers: []
190
- },] },
191
- ];
192
- /**
193
- * @nocollapse
194
- */
195
- TextBoxAllModule.ctorParameters = function () { return []; };
196
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
197
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
198
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
199
- r = Reflect.decorate(decorators, target, key, desc);
200
- else
201
- for (var i = decorators.length - 1; i >= 0; i--)
202
- if (d = decorators[i])
203
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
204
- return c > 3 && r && Object.defineProperty(target, key, r), r;
205
- };
206
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
207
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
208
- return Reflect.metadata(k, v);
209
- };
210
- var inputs$1 = ['cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'value', 'width'];
211
- var outputs$1 = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
212
- var twoWays$1 = ['value'];
213
- /**
214
- * Represents the EJ2 Angular TextArea Component.
215
- * ```html
216
- * <ejs-textarea [value]='value'></ejs-textarea>
217
- * ```
218
- */
219
- exports.TextAreaComponent = TextAreaComponent_1 = /** @class */ (function (_super) {
220
- __extends(TextAreaComponent, _super);
221
- /**
222
- * @param {?} ngEle
223
- * @param {?} srenderer
224
- * @param {?} viewContainerRef
225
- * @param {?} injector
226
- * @param {?} cdr
227
- */
228
- function TextAreaComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
229
- var _this = _super.call(this) || this;
230
- _this.ngEle = ngEle;
231
- _this.srenderer = srenderer;
232
- _this.viewContainerRef = viewContainerRef;
233
- _this.injector = injector;
234
- _this.cdr = cdr;
235
- _this.skipFromEvent = true;
236
- _this.element = _this.ngEle.nativeElement;
237
- _this.injectedModules = _this.injectedModules || [];
238
- _this.registerEvents(outputs$1);
239
- _this.addTwoWay.call(_this, twoWays$1);
240
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
241
- _this.formContext = new ej2AngularBase.FormBase();
242
- _this.formCompContext = new ej2AngularBase.ComponentBase();
243
- return _this;
244
- }
245
- /**
246
- * @param {?} registerFunction
247
- * @return {?}
248
- */
249
- TextAreaComponent.prototype.registerOnChange = function (registerFunction) {
250
- };
251
- /**
252
- * @param {?} registerFunction
253
- * @return {?}
254
- */
255
- TextAreaComponent.prototype.registerOnTouched = function (registerFunction) {
256
- };
257
- /**
258
- * @param {?} value
259
- * @return {?}
260
- */
261
- TextAreaComponent.prototype.writeValue = function (value) {
262
- };
263
- /**
264
- * @param {?} disabled
265
- * @return {?}
266
- */
267
- TextAreaComponent.prototype.setDisabledState = function (disabled) {
268
- };
269
- /**
270
- * @return {?}
271
- */
272
- TextAreaComponent.prototype.ngOnInit = function () {
273
- this.formCompContext.ngOnInit(this);
274
- };
275
- /**
276
- * @return {?}
277
- */
278
- TextAreaComponent.prototype.ngAfterViewInit = function () {
279
- this.formContext.ngAfterViewInit(this);
280
- };
281
- /**
282
- * @return {?}
283
- */
284
- TextAreaComponent.prototype.ngOnDestroy = function () {
285
- this.formCompContext.ngOnDestroy(this);
286
- };
287
- /**
288
- * @return {?}
289
- */
290
- TextAreaComponent.prototype.ngAfterContentChecked = function () {
291
- this.formCompContext.ngAfterContentChecked(this);
292
- };
293
- return TextAreaComponent;
294
- }(ej2Inputs.TextArea));
295
- exports.TextAreaComponent.decorators = [
296
- { type: core.Component, args: [{
297
- selector: 'ejs-textarea',
298
- inputs: inputs$1,
299
- outputs: outputs$1,
300
- template: '',
301
- changeDetection: core.ChangeDetectionStrategy.OnPush,
302
- providers: [
303
- {
304
- provide: forms.NG_VALUE_ACCESSOR,
305
- useExisting: core.forwardRef(function () { return TextAreaComponent_1; }),
306
- multi: true
307
- }
308
- ],
309
- queries: {}
310
- },] },
311
- ];
312
- /**
313
- * @nocollapse
314
- */
315
- exports.TextAreaComponent.ctorParameters = function () { return [
316
- { type: core.ElementRef, },
317
- { type: core.Renderer2, },
318
- { type: core.ViewContainerRef, },
319
- { type: core.Injector, },
320
- { type: core.ChangeDetectorRef, },
321
- ]; };
322
- exports.TextAreaComponent = TextAreaComponent_1 = __decorate$1([
323
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
324
- __metadata$1("design:paramtypes", [core.ElementRef,
325
- core.Renderer2,
326
- core.ViewContainerRef,
327
- core.Injector,
328
- core.ChangeDetectorRef])
329
- ], exports.TextAreaComponent);
330
- var TextAreaComponent_1;
331
- /**
332
- * NgModule definition for the TextArea component.
333
- */
334
- var TextAreaModule = /** @class */ (function () {
335
- function TextAreaModule() {
336
- }
337
- return TextAreaModule;
338
- }());
339
- TextAreaModule.decorators = [
340
- { type: core.NgModule, args: [{
341
- imports: [common.CommonModule],
342
- declarations: [
343
- exports.TextAreaComponent
344
- ],
345
- exports: [
346
- exports.TextAreaComponent
347
- ]
348
- },] },
349
- ];
350
- /**
351
- * @nocollapse
352
- */
353
- TextAreaModule.ctorParameters = function () { return []; };
354
- /**
355
- * NgModule definition for the TextArea component with providers.
356
- */
357
- var TextAreaAllModule = /** @class */ (function () {
358
- function TextAreaAllModule() {
359
- }
360
- return TextAreaAllModule;
361
- }());
362
- TextAreaAllModule.decorators = [
363
- { type: core.NgModule, args: [{
364
- imports: [common.CommonModule, TextAreaModule],
365
- exports: [
366
- TextAreaModule
367
- ],
368
- providers: []
369
- },] },
370
- ];
371
- /**
372
- * @nocollapse
373
- */
374
- TextAreaAllModule.ctorParameters = function () { return []; };
375
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
376
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
377
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
378
- r = Reflect.decorate(decorators, target, key, desc);
379
- else
380
- for (var i = decorators.length - 1; i >= 0; i--)
381
- if (d = decorators[i])
382
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
383
- return c > 3 && r && Object.defineProperty(target, key, r), r;
384
- };
385
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
386
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
387
- return Reflect.metadata(k, v);
388
- };
389
- var inputs$2 = ['cssClass', 'currency', 'currencyCode', 'decimals', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'htmlAttributes', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showSpinButton', 'step', 'strictMode', 'validateDecimalOnType', 'value', 'width'];
390
- var outputs$2 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
391
- var twoWays$2 = ['value'];
392
- /**
393
- * Represents the EJ2 Angular NumericTextBox Component.
394
- * ```html
395
- * <ej-numerictextbox [value]='value'></ej-numerictextbox>
396
- * ```
397
- */
398
- exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = /** @class */ (function (_super) {
399
- __extends(NumericTextBoxComponent, _super);
400
- /**
401
- * @param {?} ngEle
402
- * @param {?} srenderer
403
- * @param {?} viewContainerRef
404
- * @param {?} injector
405
- * @param {?} cdr
406
- */
407
- function NumericTextBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
408
- var _this = _super.call(this) || this;
409
- _this.ngEle = ngEle;
410
- _this.srenderer = srenderer;
411
- _this.viewContainerRef = viewContainerRef;
412
- _this.injector = injector;
413
- _this.cdr = cdr;
414
- _this.skipFromEvent = true;
415
- _this.element = _this.ngEle.nativeElement;
416
- _this.injectedModules = _this.injectedModules || [];
417
- _this.registerEvents(outputs$2);
418
- _this.addTwoWay.call(_this, twoWays$2);
419
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
420
- _this.formContext = new ej2AngularBase.FormBase();
421
- _this.formCompContext = new ej2AngularBase.ComponentBase();
422
- return _this;
423
- }
424
- /**
425
- * @param {?} registerFunction
426
- * @return {?}
427
- */
428
- NumericTextBoxComponent.prototype.registerOnChange = function (registerFunction) {
429
- };
430
- /**
431
- * @param {?} registerFunction
432
- * @return {?}
433
- */
434
- NumericTextBoxComponent.prototype.registerOnTouched = function (registerFunction) {
435
- };
436
- /**
437
- * @param {?} value
438
- * @return {?}
439
- */
440
- NumericTextBoxComponent.prototype.writeValue = function (value) {
441
- };
442
- /**
443
- * @param {?} disabled
444
- * @return {?}
445
- */
446
- NumericTextBoxComponent.prototype.setDisabledState = function (disabled) {
447
- };
448
- /**
449
- * @return {?}
450
- */
451
- NumericTextBoxComponent.prototype.ngOnInit = function () {
452
- this.formCompContext.ngOnInit(this);
453
- };
454
- /**
455
- * @return {?}
456
- */
457
- NumericTextBoxComponent.prototype.ngAfterViewInit = function () {
458
- this.formContext.ngAfterViewInit(this);
459
- };
460
- /**
461
- * @return {?}
462
- */
463
- NumericTextBoxComponent.prototype.ngOnDestroy = function () {
464
- this.formCompContext.ngOnDestroy(this);
465
- };
466
- /**
467
- * @return {?}
468
- */
469
- NumericTextBoxComponent.prototype.ngAfterContentChecked = function () {
470
- this.formCompContext.ngAfterContentChecked(this);
471
- };
472
- return NumericTextBoxComponent;
473
- }(ej2Inputs.NumericTextBox));
474
- exports.NumericTextBoxComponent.decorators = [
475
- { type: core.Component, args: [{
476
- selector: 'ejs-numerictextbox',
477
- inputs: inputs$2,
478
- outputs: outputs$2,
479
- template: '',
480
- changeDetection: core.ChangeDetectionStrategy.OnPush,
481
- providers: [
482
- {
483
- provide: forms.NG_VALUE_ACCESSOR,
484
- useExisting: core.forwardRef(function () { return NumericTextBoxComponent_1; }),
485
- multi: true
486
- }
487
- ],
488
- queries: {}
489
- },] },
490
- ];
491
- /**
492
- * @nocollapse
493
- */
494
- exports.NumericTextBoxComponent.ctorParameters = function () { return [
495
- { type: core.ElementRef, },
496
- { type: core.Renderer2, },
497
- { type: core.ViewContainerRef, },
498
- { type: core.Injector, },
499
- { type: core.ChangeDetectorRef, },
500
- ]; };
501
- exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = __decorate$2([
502
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
503
- __metadata$2("design:paramtypes", [core.ElementRef,
504
- core.Renderer2,
505
- core.ViewContainerRef,
506
- core.Injector,
507
- core.ChangeDetectorRef])
508
- ], exports.NumericTextBoxComponent);
509
- var NumericTextBoxComponent_1;
510
- /**
511
- * NgModule definition for the NumericTextBox component.
512
- */
513
- var NumericTextBoxModule = /** @class */ (function () {
514
- function NumericTextBoxModule() {
515
- }
516
- return NumericTextBoxModule;
517
- }());
518
- NumericTextBoxModule.decorators = [
519
- { type: core.NgModule, args: [{
520
- imports: [common.CommonModule],
521
- declarations: [
522
- exports.NumericTextBoxComponent
523
- ],
524
- exports: [
525
- exports.NumericTextBoxComponent
526
- ]
527
- },] },
528
- ];
529
- /**
530
- * @nocollapse
531
- */
532
- NumericTextBoxModule.ctorParameters = function () { return []; };
533
- /**
534
- * NgModule definition for the NumericTextBox component with providers.
535
- */
536
- var NumericTextBoxAllModule = /** @class */ (function () {
537
- function NumericTextBoxAllModule() {
538
- }
539
- return NumericTextBoxAllModule;
540
- }());
541
- NumericTextBoxAllModule.decorators = [
542
- { type: core.NgModule, args: [{
543
- imports: [common.CommonModule, NumericTextBoxModule],
544
- exports: [
545
- NumericTextBoxModule
546
- ],
547
- providers: []
548
- },] },
549
- ];
550
- /**
551
- * @nocollapse
552
- */
553
- NumericTextBoxAllModule.ctorParameters = function () { return []; };
554
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
555
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
556
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
557
- r = Reflect.decorate(decorators, target, key, desc);
558
- else
559
- for (var i = decorators.length - 1; i >= 0; i--)
560
- if (d = decorators[i])
561
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
562
- return c > 3 && r && Object.defineProperty(target, key, r), r;
563
- };
564
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
565
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
566
- return Reflect.metadata(k, v);
567
- };
568
- var inputs$3 = ['cssClass', 'customCharacters', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'mask', 'placeholder', 'promptChar', 'readonly', 'showClearButton', 'value', 'width'];
569
- var outputs$3 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
570
- var twoWays$3 = ['value'];
571
- /**
572
- * Represents the EJ2 Angular MaskedTextbox Component.
573
- * ```html
574
- * <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
575
- * ```
576
- */
577
- exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = /** @class */ (function (_super) {
578
- __extends(MaskedTextBoxComponent, _super);
579
- /**
580
- * @param {?} ngEle
581
- * @param {?} srenderer
582
- * @param {?} viewContainerRef
583
- * @param {?} injector
584
- * @param {?} cdr
585
- */
586
- function MaskedTextBoxComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
587
- var _this = _super.call(this) || this;
588
- _this.ngEle = ngEle;
589
- _this.srenderer = srenderer;
590
- _this.viewContainerRef = viewContainerRef;
591
- _this.injector = injector;
592
- _this.cdr = cdr;
593
- _this.skipFromEvent = true;
594
- _this.element = _this.ngEle.nativeElement;
595
- _this.injectedModules = _this.injectedModules || [];
596
- _this.registerEvents(outputs$3);
597
- _this.addTwoWay.call(_this, twoWays$3);
598
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
599
- _this.formContext = new ej2AngularBase.FormBase();
600
- _this.formCompContext = new ej2AngularBase.ComponentBase();
601
- return _this;
602
- }
603
- /**
604
- * @param {?} registerFunction
605
- * @return {?}
606
- */
607
- MaskedTextBoxComponent.prototype.registerOnChange = function (registerFunction) {
608
- };
609
- /**
610
- * @param {?} registerFunction
611
- * @return {?}
612
- */
613
- MaskedTextBoxComponent.prototype.registerOnTouched = function (registerFunction) {
614
- };
615
- /**
616
- * @param {?} value
617
- * @return {?}
618
- */
619
- MaskedTextBoxComponent.prototype.writeValue = function (value) {
620
- };
621
- /**
622
- * @param {?} disabled
623
- * @return {?}
624
- */
625
- MaskedTextBoxComponent.prototype.setDisabledState = function (disabled) {
626
- };
627
- /**
628
- * @return {?}
629
- */
630
- MaskedTextBoxComponent.prototype.ngOnInit = function () {
631
- this.formCompContext.ngOnInit(this);
632
- };
633
- /**
634
- * @return {?}
635
- */
636
- MaskedTextBoxComponent.prototype.ngAfterViewInit = function () {
637
- this.formContext.ngAfterViewInit(this);
638
- };
639
- /**
640
- * @return {?}
641
- */
642
- MaskedTextBoxComponent.prototype.ngOnDestroy = function () {
643
- this.formCompContext.ngOnDestroy(this);
644
- };
645
- /**
646
- * @return {?}
647
- */
648
- MaskedTextBoxComponent.prototype.ngAfterContentChecked = function () {
649
- this.formCompContext.ngAfterContentChecked(this);
650
- };
651
- return MaskedTextBoxComponent;
652
- }(ej2Inputs.MaskedTextBox));
653
- exports.MaskedTextBoxComponent.decorators = [
654
- { type: core.Component, args: [{
655
- selector: 'ejs-maskedtextbox',
656
- inputs: inputs$3,
657
- outputs: outputs$3,
658
- template: '',
659
- changeDetection: core.ChangeDetectionStrategy.OnPush,
660
- providers: [
661
- {
662
- provide: forms.NG_VALUE_ACCESSOR,
663
- useExisting: core.forwardRef(function () { return MaskedTextBoxComponent_1; }),
664
- multi: true
665
- }
666
- ],
667
- queries: {}
668
- },] },
669
- ];
670
- /**
671
- * @nocollapse
672
- */
673
- exports.MaskedTextBoxComponent.ctorParameters = function () { return [
674
- { type: core.ElementRef, },
675
- { type: core.Renderer2, },
676
- { type: core.ViewContainerRef, },
677
- { type: core.Injector, },
678
- { type: core.ChangeDetectorRef, },
679
- ]; };
680
- exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = __decorate$3([
681
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
682
- __metadata$3("design:paramtypes", [core.ElementRef,
683
- core.Renderer2,
684
- core.ViewContainerRef,
685
- core.Injector,
686
- core.ChangeDetectorRef])
687
- ], exports.MaskedTextBoxComponent);
688
- var MaskedTextBoxComponent_1;
689
- /**
690
- * NgModule definition for the MaskedTextBox component.
691
- */
692
- var MaskedTextBoxModule = /** @class */ (function () {
693
- function MaskedTextBoxModule() {
694
- }
695
- return MaskedTextBoxModule;
696
- }());
697
- MaskedTextBoxModule.decorators = [
698
- { type: core.NgModule, args: [{
699
- imports: [common.CommonModule],
700
- declarations: [
701
- exports.MaskedTextBoxComponent
702
- ],
703
- exports: [
704
- exports.MaskedTextBoxComponent
705
- ]
706
- },] },
707
- ];
708
- /**
709
- * @nocollapse
710
- */
711
- MaskedTextBoxModule.ctorParameters = function () { return []; };
712
- /**
713
- * NgModule definition for the MaskedTextBox component with providers.
714
- */
715
- var MaskedTextBoxAllModule = /** @class */ (function () {
716
- function MaskedTextBoxAllModule() {
717
- }
718
- return MaskedTextBoxAllModule;
719
- }());
720
- MaskedTextBoxAllModule.decorators = [
721
- { type: core.NgModule, args: [{
722
- imports: [common.CommonModule, MaskedTextBoxModule],
723
- exports: [
724
- MaskedTextBoxModule
725
- ],
726
- providers: []
727
- },] },
728
- ];
729
- /**
730
- * @nocollapse
731
- */
732
- MaskedTextBoxAllModule.ctorParameters = function () { return []; };
733
- var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
734
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
735
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
736
- r = Reflect.decorate(decorators, target, key, desc);
737
- else
738
- for (var i = decorators.length - 1; i >= 0; i--)
739
- if (d = decorators[i])
740
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
741
- return c > 3 && r && Object.defineProperty(target, key, r), r;
742
- };
743
- var __metadata$4 = (this && this.__metadata) || function (k, v) {
744
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
745
- return Reflect.metadata(k, v);
746
- };
747
- var inputs$4 = ['colorRange', 'cssClass', 'customValues', 'enableAnimation', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'limits', 'locale', 'max', 'min', 'orientation', 'readonly', 'showButtons', 'step', 'ticks', 'tooltip', 'type', 'value', 'width'];
748
- var outputs$4 = ['focus', 'blur', 'change', 'changed', 'created', 'renderedTicks', 'renderingTicks', 'tooltipChange', 'valueChange'];
749
- var twoWays$4 = ['value'];
750
- /**
751
- * Represents the EJ2 Angular Slider Component.
752
- * ```html
753
- * <ejs-slider [value]='value'></ejs-slider>
754
- * ```
755
- */
756
- exports.SliderComponent = SliderComponent_1 = /** @class */ (function (_super) {
757
- __extends(SliderComponent, _super);
758
- /**
759
- * @param {?} ngEle
760
- * @param {?} srenderer
761
- * @param {?} viewContainerRef
762
- * @param {?} injector
763
- * @param {?} cdr
764
- */
765
- function SliderComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
766
- var _this = _super.call(this) || this;
767
- _this.ngEle = ngEle;
768
- _this.srenderer = srenderer;
769
- _this.viewContainerRef = viewContainerRef;
770
- _this.injector = injector;
771
- _this.cdr = cdr;
772
- _this.element = _this.ngEle.nativeElement;
773
- _this.injectedModules = _this.injectedModules || [];
774
- _this.registerEvents(outputs$4);
775
- _this.addTwoWay.call(_this, twoWays$4);
776
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
777
- _this.formContext = new ej2AngularBase.FormBase();
778
- _this.formCompContext = new ej2AngularBase.ComponentBase();
779
- return _this;
780
- }
781
- /**
782
- * @param {?} registerFunction
783
- * @return {?}
784
- */
785
- SliderComponent.prototype.registerOnChange = function (registerFunction) {
786
- };
787
- /**
788
- * @param {?} registerFunction
789
- * @return {?}
790
- */
791
- SliderComponent.prototype.registerOnTouched = function (registerFunction) {
792
- };
793
- /**
794
- * @param {?} value
795
- * @return {?}
796
- */
797
- SliderComponent.prototype.writeValue = function (value) {
798
- };
799
- /**
800
- * @param {?} disabled
801
- * @return {?}
802
- */
803
- SliderComponent.prototype.setDisabledState = function (disabled) {
804
- };
805
- /**
806
- * @return {?}
807
- */
808
- SliderComponent.prototype.ngOnInit = function () {
809
- this.formCompContext.ngOnInit(this);
810
- };
811
- /**
812
- * @return {?}
813
- */
814
- SliderComponent.prototype.ngAfterViewInit = function () {
815
- this.formContext.ngAfterViewInit(this);
816
- };
817
- /**
818
- * @return {?}
819
- */
820
- SliderComponent.prototype.ngOnDestroy = function () {
821
- this.formCompContext.ngOnDestroy(this);
822
- };
823
- /**
824
- * @return {?}
825
- */
826
- SliderComponent.prototype.ngAfterContentChecked = function () {
827
- this.formCompContext.ngAfterContentChecked(this);
828
- };
829
- return SliderComponent;
830
- }(ej2Inputs.Slider));
831
- exports.SliderComponent.decorators = [
832
- { type: core.Component, args: [{
833
- selector: 'ejs-slider',
834
- inputs: inputs$4,
835
- outputs: outputs$4,
836
- template: '',
837
- changeDetection: core.ChangeDetectionStrategy.OnPush,
838
- providers: [
839
- {
840
- provide: forms.NG_VALUE_ACCESSOR,
841
- useExisting: core.forwardRef(function () { return SliderComponent_1; }),
842
- multi: true
843
- }
844
- ],
845
- queries: {}
846
- },] },
847
- ];
848
- /**
849
- * @nocollapse
850
- */
851
- exports.SliderComponent.ctorParameters = function () { return [
852
- { type: core.ElementRef, },
853
- { type: core.Renderer2, },
854
- { type: core.ViewContainerRef, },
855
- { type: core.Injector, },
856
- { type: core.ChangeDetectorRef, },
857
- ]; };
858
- exports.SliderComponent = SliderComponent_1 = __decorate$4([
859
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
860
- __metadata$4("design:paramtypes", [core.ElementRef,
861
- core.Renderer2,
862
- core.ViewContainerRef,
863
- core.Injector,
864
- core.ChangeDetectorRef])
865
- ], exports.SliderComponent);
866
- var SliderComponent_1;
867
- /**
868
- * NgModule definition for the Slider component.
869
- */
870
- var SliderModule = /** @class */ (function () {
871
- function SliderModule() {
872
- }
873
- return SliderModule;
874
- }());
875
- SliderModule.decorators = [
876
- { type: core.NgModule, args: [{
877
- imports: [common.CommonModule],
878
- declarations: [
879
- exports.SliderComponent
880
- ],
881
- exports: [
882
- exports.SliderComponent
883
- ]
884
- },] },
885
- ];
886
- /**
887
- * @nocollapse
888
- */
889
- SliderModule.ctorParameters = function () { return []; };
890
- /**
891
- * NgModule definition for the Slider component with providers.
892
- */
893
- var SliderAllModule = /** @class */ (function () {
894
- function SliderAllModule() {
895
- }
896
- return SliderAllModule;
897
- }());
898
- SliderAllModule.decorators = [
899
- { type: core.NgModule, args: [{
900
- imports: [common.CommonModule, SliderModule],
901
- exports: [
902
- SliderModule
903
- ],
904
- providers: []
905
- },] },
906
- ];
907
- /**
908
- * @nocollapse
909
- */
910
- SliderAllModule.ctorParameters = function () { return []; };
911
- var input = ['name', 'size', 'type'];
912
- var outputs$5 = [];
913
- /**
914
- * 'e-files' directive represent a file of angular uploader
915
- * It must be contained in a Uploader component(`ejs-uploader`).
916
- * ```html
917
- * <ejs-uploader id='fileupload' multiple=true>
918
- * <e-files>
919
- * <e-file name='Java' size=23000 type='pdf'></e-file>
920
- * <e-file name='C++' size=30000 type='.docx'></e-file>
921
- * </e-files>
922
- * </ejs-uploader>
923
- * ```
924
- */
925
- var UploadedFilesDirective = /** @class */ (function (_super) {
926
- __extends(UploadedFilesDirective, _super);
927
- /**
928
- * @param {?} viewContainerRef
929
- */
930
- function UploadedFilesDirective(viewContainerRef) {
931
- var _this = _super.call(this) || this;
932
- _this.viewContainerRef = viewContainerRef;
933
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
934
- _this.registerEvents(outputs$5);
935
- _this.directivePropList = input;
936
- return _this;
937
- }
938
- return UploadedFilesDirective;
939
- }(ej2AngularBase.ComplexBase));
940
- UploadedFilesDirective.decorators = [
941
- { type: core.Directive, args: [{
942
- selector: 'e-files>e-uploadedfiles',
943
- inputs: input,
944
- outputs: outputs$5,
945
- queries: {}
946
- },] },
947
- ];
948
- /**
949
- * @nocollapse
950
- */
951
- UploadedFilesDirective.ctorParameters = function () { return [
952
- { type: core.ViewContainerRef, },
953
- ]; };
954
- /**
955
- * UploadedFiles Array Directive
956
- */
957
- var FilesDirective = /** @class */ (function (_super) {
958
- __extends(FilesDirective, _super);
959
- function FilesDirective() {
960
- return _super.call(this, 'files') || this;
961
- }
962
- return FilesDirective;
963
- }(ej2AngularBase.ArrayBase));
964
- FilesDirective.decorators = [
965
- { type: core.Directive, args: [{
966
- selector: 'ejs-uploader>e-files',
967
- queries: {
968
- children: new core.ContentChildren(UploadedFilesDirective)
969
- },
970
- },] },
971
- ];
972
- /**
973
- * @nocollapse
974
- */
975
- FilesDirective.ctorParameters = function () { return []; };
976
- var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
977
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
978
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
979
- r = Reflect.decorate(decorators, target, key, desc);
980
- else
981
- for (var i = decorators.length - 1; i >= 0; i--)
982
- if (d = decorators[i])
983
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
984
- return c > 3 && r && Object.defineProperty(target, key, r), r;
985
- };
986
- var __metadata$5 = (this && this.__metadata) || function (k, v) {
987
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
988
- return Reflect.metadata(k, v);
989
- };
990
- var inputs$5 = ['allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template'];
991
- var outputs$6 = ['focus', 'blur', 'actionComplete', 'beforeRemove', 'beforeUpload', 'canceling', 'change', 'chunkFailure', 'chunkSuccess', 'chunkUploading', 'clearing', 'created', 'failure', 'fileListRendering', 'pausing', 'progress', 'removing', 'rendering', 'resuming', 'selected', 'success', 'uploading'];
992
- var twoWays$5 = [];
993
- /**
994
- * Represents the EJ2 Angular Uploader Component.
995
- * ```html
996
- * <ejs-uploader></ejs-uploader>
997
- * ```
998
- */
999
- exports.UploaderComponent = UploaderComponent_1 = /** @class */ (function (_super) {
1000
- __extends(UploaderComponent, _super);
1001
- /**
1002
- * @param {?} ngEle
1003
- * @param {?} srenderer
1004
- * @param {?} viewContainerRef
1005
- * @param {?} injector
1006
- * @param {?} cdr
1007
- */
1008
- function UploaderComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1009
- var _this = _super.call(this) || this;
1010
- _this.ngEle = ngEle;
1011
- _this.srenderer = srenderer;
1012
- _this.viewContainerRef = viewContainerRef;
1013
- _this.injector = injector;
1014
- _this.cdr = cdr;
1015
- _this.tags = ['files'];
1016
- _this.element = _this.ngEle.nativeElement;
1017
- _this.injectedModules = _this.injectedModules || [];
1018
- _this.registerEvents(outputs$6);
1019
- _this.addTwoWay.call(_this, twoWays$5);
1020
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1021
- _this.formContext = new ej2AngularBase.FormBase();
1022
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1023
- return _this;
1024
- }
1025
- /**
1026
- * @param {?} registerFunction
1027
- * @return {?}
1028
- */
1029
- UploaderComponent.prototype.registerOnChange = function (registerFunction) {
1030
- };
1031
- /**
1032
- * @param {?} registerFunction
1033
- * @return {?}
1034
- */
1035
- UploaderComponent.prototype.registerOnTouched = function (registerFunction) {
1036
- };
1037
- /**
1038
- * @param {?} value
1039
- * @return {?}
1040
- */
1041
- UploaderComponent.prototype.writeValue = function (value) {
1042
- };
1043
- /**
1044
- * @param {?} disabled
1045
- * @return {?}
1046
- */
1047
- UploaderComponent.prototype.setDisabledState = function (disabled) {
1048
- };
1049
- /**
1050
- * @return {?}
1051
- */
1052
- UploaderComponent.prototype.ngOnInit = function () {
1053
- this.formCompContext.ngOnInit(this);
1054
- };
1055
- /**
1056
- * @return {?}
1057
- */
1058
- UploaderComponent.prototype.ngAfterViewInit = function () {
1059
- this.formContext.ngAfterViewInit(this);
1060
- };
1061
- /**
1062
- * @return {?}
1063
- */
1064
- UploaderComponent.prototype.ngOnDestroy = function () {
1065
- this.formCompContext.ngOnDestroy(this);
1066
- };
1067
- /**
1068
- * @return {?}
1069
- */
1070
- UploaderComponent.prototype.ngAfterContentChecked = function () {
1071
- this.tagObjects[0].instance = this.childFiles;
1072
- this.formCompContext.ngAfterContentChecked(this);
1073
- };
1074
- return UploaderComponent;
1075
- }(ej2Inputs.Uploader));
1076
- exports.UploaderComponent.decorators = [
1077
- { type: core.Component, args: [{
1078
- selector: 'ejs-uploader',
1079
- inputs: inputs$5,
1080
- outputs: outputs$6,
1081
- template: '',
1082
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1083
- providers: [
1084
- {
1085
- provide: forms.NG_VALUE_ACCESSOR,
1086
- useExisting: core.forwardRef(function () { return UploaderComponent_1; }),
1087
- multi: true
1088
- }
1089
- ],
1090
- queries: {
1091
- childFiles: new core.ContentChild(FilesDirective)
1092
- }
1093
- },] },
1094
- ];
1095
- /**
1096
- * @nocollapse
1097
- */
1098
- exports.UploaderComponent.ctorParameters = function () { return [
1099
- { type: core.ElementRef, },
1100
- { type: core.Renderer2, },
1101
- { type: core.ViewContainerRef, },
1102
- { type: core.Injector, },
1103
- { type: core.ChangeDetectorRef, },
1104
- ]; };
1105
- exports.UploaderComponent.propDecorators = {
1106
- 'template': [{ type: core.ContentChild, args: ['template',] },],
1107
- };
1108
- __decorate$5([
1109
- ej2AngularBase.Template(),
1110
- __metadata$5("design:type", Object)
1111
- ], exports.UploaderComponent.prototype, "template", void 0);
1112
- exports.UploaderComponent = UploaderComponent_1 = __decorate$5([
1113
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1114
- __metadata$5("design:paramtypes", [core.ElementRef,
1115
- core.Renderer2,
1116
- core.ViewContainerRef,
1117
- core.Injector,
1118
- core.ChangeDetectorRef])
1119
- ], exports.UploaderComponent);
1120
- var UploaderComponent_1;
1121
- /**
1122
- * NgModule definition for the Uploader component.
1123
- */
1124
- var UploaderModule = /** @class */ (function () {
1125
- function UploaderModule() {
1126
- }
1127
- return UploaderModule;
1128
- }());
1129
- UploaderModule.decorators = [
1130
- { type: core.NgModule, args: [{
1131
- imports: [common.CommonModule],
1132
- declarations: [
1133
- exports.UploaderComponent,
1134
- UploadedFilesDirective,
1135
- FilesDirective
1136
- ],
1137
- exports: [
1138
- exports.UploaderComponent,
1139
- UploadedFilesDirective,
1140
- FilesDirective
1141
- ]
1142
- },] },
1143
- ];
1144
- /**
1145
- * @nocollapse
1146
- */
1147
- UploaderModule.ctorParameters = function () { return []; };
1148
- /**
1149
- * NgModule definition for the Uploader component with providers.
1150
- */
1151
- var UploaderAllModule = /** @class */ (function () {
1152
- function UploaderAllModule() {
1153
- }
1154
- return UploaderAllModule;
1155
- }());
1156
- UploaderAllModule.decorators = [
1157
- { type: core.NgModule, args: [{
1158
- imports: [common.CommonModule, UploaderModule],
1159
- exports: [
1160
- UploaderModule
1161
- ],
1162
- providers: []
1163
- },] },
1164
- ];
1165
- /**
1166
- * @nocollapse
1167
- */
1168
- UploaderAllModule.ctorParameters = function () { return []; };
1169
- var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
1170
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1171
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1172
- r = Reflect.decorate(decorators, target, key, desc);
1173
- else
1174
- for (var i = decorators.length - 1; i >= 0; i--)
1175
- if (d = decorators[i])
1176
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1177
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1178
- };
1179
- var __metadata$6 = (this && this.__metadata) || function (k, v) {
1180
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1181
- return Reflect.metadata(k, v);
1182
- };
1183
- var inputs$6 = ['columns', 'createPopupOnClick', 'cssClass', 'disabled', 'enableOpacity', 'enablePersistence', 'enableRtl', 'inline', 'locale', 'mode', 'modeSwitcher', 'noColor', 'presetColors', 'showButtons', 'showRecentColors', 'value'];
1184
- var outputs$7 = ['focus', 'blur', 'beforeClose', 'beforeModeSwitch', 'beforeOpen', 'beforeTileRender', 'change', 'created', 'onModeSwitch', 'open', 'select', 'valueChange'];
1185
- var twoWays$6 = ['value'];
1186
- /**
1187
- * Represents the EJ2 Angular ColorPicker Component.
1188
- * ```html
1189
- * <input ejs-colorpicker type='color'/>
1190
- * ```
1191
- */
1192
- exports.ColorPickerComponent = ColorPickerComponent_1 = /** @class */ (function (_super) {
1193
- __extends(ColorPickerComponent, _super);
1194
- /**
1195
- * @param {?} ngEle
1196
- * @param {?} srenderer
1197
- * @param {?} viewContainerRef
1198
- * @param {?} injector
1199
- * @param {?} cdr
1200
- */
1201
- function ColorPickerComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1202
- var _this = _super.call(this) || this;
1203
- _this.ngEle = ngEle;
1204
- _this.srenderer = srenderer;
1205
- _this.viewContainerRef = viewContainerRef;
1206
- _this.injector = injector;
1207
- _this.cdr = cdr;
1208
- _this.element = _this.ngEle.nativeElement;
1209
- _this.injectedModules = _this.injectedModules || [];
1210
- _this.registerEvents(outputs$7);
1211
- _this.addTwoWay.call(_this, twoWays$6);
1212
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1213
- _this.formContext = new ej2AngularBase.FormBase();
1214
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1215
- return _this;
1216
- }
1217
- /**
1218
- * @param {?} registerFunction
1219
- * @return {?}
1220
- */
1221
- ColorPickerComponent.prototype.registerOnChange = function (registerFunction) {
1222
- };
1223
- /**
1224
- * @param {?} registerFunction
1225
- * @return {?}
1226
- */
1227
- ColorPickerComponent.prototype.registerOnTouched = function (registerFunction) {
1228
- };
1229
- /**
1230
- * @param {?} value
1231
- * @return {?}
1232
- */
1233
- ColorPickerComponent.prototype.writeValue = function (value) {
1234
- };
1235
- /**
1236
- * @param {?} disabled
1237
- * @return {?}
1238
- */
1239
- ColorPickerComponent.prototype.setDisabledState = function (disabled) {
1240
- };
1241
- /**
1242
- * @return {?}
1243
- */
1244
- ColorPickerComponent.prototype.ngOnInit = function () {
1245
- this.formCompContext.ngOnInit(this);
1246
- };
1247
- /**
1248
- * @return {?}
1249
- */
1250
- ColorPickerComponent.prototype.ngAfterViewInit = function () {
1251
- this.formContext.ngAfterViewInit(this);
1252
- };
1253
- /**
1254
- * @return {?}
1255
- */
1256
- ColorPickerComponent.prototype.ngOnDestroy = function () {
1257
- this.formCompContext.ngOnDestroy(this);
1258
- };
1259
- /**
1260
- * @return {?}
1261
- */
1262
- ColorPickerComponent.prototype.ngAfterContentChecked = function () {
1263
- this.formCompContext.ngAfterContentChecked(this);
1264
- };
1265
- return ColorPickerComponent;
1266
- }(ej2Inputs.ColorPicker));
1267
- exports.ColorPickerComponent.decorators = [
1268
- { type: core.Component, args: [{
1269
- selector: '[ejs-colorpicker]',
1270
- inputs: inputs$6,
1271
- outputs: outputs$7,
1272
- template: '',
1273
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1274
- providers: [
1275
- {
1276
- provide: forms.NG_VALUE_ACCESSOR,
1277
- useExisting: core.forwardRef(function () { return ColorPickerComponent_1; }),
1278
- multi: true
1279
- }
1280
- ],
1281
- queries: {}
1282
- },] },
1283
- ];
1284
- /**
1285
- * @nocollapse
1286
- */
1287
- exports.ColorPickerComponent.ctorParameters = function () { return [
1288
- { type: core.ElementRef, },
1289
- { type: core.Renderer2, },
1290
- { type: core.ViewContainerRef, },
1291
- { type: core.Injector, },
1292
- { type: core.ChangeDetectorRef, },
1293
- ]; };
1294
- exports.ColorPickerComponent = ColorPickerComponent_1 = __decorate$6([
1295
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1296
- __metadata$6("design:paramtypes", [core.ElementRef,
1297
- core.Renderer2,
1298
- core.ViewContainerRef,
1299
- core.Injector,
1300
- core.ChangeDetectorRef])
1301
- ], exports.ColorPickerComponent);
1302
- var ColorPickerComponent_1;
1303
- /**
1304
- * NgModule definition for the ColorPicker component.
1305
- */
1306
- var ColorPickerModule = /** @class */ (function () {
1307
- function ColorPickerModule() {
1308
- }
1309
- return ColorPickerModule;
1310
- }());
1311
- ColorPickerModule.decorators = [
1312
- { type: core.NgModule, args: [{
1313
- imports: [common.CommonModule],
1314
- declarations: [
1315
- exports.ColorPickerComponent
1316
- ],
1317
- exports: [
1318
- exports.ColorPickerComponent
1319
- ]
1320
- },] },
1321
- ];
1322
- /**
1323
- * @nocollapse
1324
- */
1325
- ColorPickerModule.ctorParameters = function () { return []; };
1326
- /**
1327
- * NgModule definition for the ColorPicker component with providers.
1328
- */
1329
- var ColorPickerAllModule = /** @class */ (function () {
1330
- function ColorPickerAllModule() {
1331
- }
1332
- return ColorPickerAllModule;
1333
- }());
1334
- ColorPickerAllModule.decorators = [
1335
- { type: core.NgModule, args: [{
1336
- imports: [common.CommonModule, ColorPickerModule],
1337
- exports: [
1338
- ColorPickerModule
1339
- ],
1340
- providers: []
1341
- },] },
1342
- ];
1343
- /**
1344
- * @nocollapse
1345
- */
1346
- ColorPickerAllModule.ctorParameters = function () { return []; };
1347
- var __decorate$7 = (this && this.__decorate) || function (decorators, target, key, desc) {
1348
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1349
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1350
- r = Reflect.decorate(decorators, target, key, desc);
1351
- else
1352
- for (var i = decorators.length - 1; i >= 0; i--)
1353
- if (d = decorators[i])
1354
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1355
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1356
- };
1357
- var __metadata$7 = (this && this.__metadata) || function (k, v) {
1358
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1359
- return Reflect.metadata(k, v);
1360
- };
1361
- var inputs$7 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
1362
- var outputs$8 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
1363
- var twoWays$7 = [];
1364
- /**
1365
- * Represents the EJ2 Angular Signature Component.
1366
- * ```html
1367
- * <canvas ejs-signature />
1368
- * ```
1369
- */
1370
- exports.SignatureComponent = SignatureComponent_1 = /** @class */ (function (_super) {
1371
- __extends(SignatureComponent, _super);
1372
- /**
1373
- * @param {?} ngEle
1374
- * @param {?} srenderer
1375
- * @param {?} viewContainerRef
1376
- * @param {?} injector
1377
- * @param {?} cdr
1378
- */
1379
- function SignatureComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1380
- var _this = _super.call(this) || this;
1381
- _this.ngEle = ngEle;
1382
- _this.srenderer = srenderer;
1383
- _this.viewContainerRef = viewContainerRef;
1384
- _this.injector = injector;
1385
- _this.cdr = cdr;
1386
- _this.element = _this.ngEle.nativeElement;
1387
- _this.injectedModules = _this.injectedModules || [];
1388
- _this.registerEvents(outputs$8);
1389
- _this.addTwoWay.call(_this, twoWays$7);
1390
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1391
- _this.formContext = new ej2AngularBase.FormBase();
1392
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1393
- return _this;
1394
- }
1395
- /**
1396
- * @param {?} registerFunction
1397
- * @return {?}
1398
- */
1399
- SignatureComponent.prototype.registerOnChange = function (registerFunction) {
1400
- };
1401
- /**
1402
- * @param {?} registerFunction
1403
- * @return {?}
1404
- */
1405
- SignatureComponent.prototype.registerOnTouched = function (registerFunction) {
1406
- };
1407
- /**
1408
- * @param {?} value
1409
- * @return {?}
1410
- */
1411
- SignatureComponent.prototype.writeValue = function (value) {
1412
- };
1413
- /**
1414
- * @param {?} disabled
1415
- * @return {?}
1416
- */
1417
- SignatureComponent.prototype.setDisabledState = function (disabled) {
1418
- };
1419
- /**
1420
- * @return {?}
1421
- */
1422
- SignatureComponent.prototype.ngOnInit = function () {
1423
- this.formCompContext.ngOnInit(this);
1424
- };
1425
- /**
1426
- * @return {?}
1427
- */
1428
- SignatureComponent.prototype.ngAfterViewInit = function () {
1429
- this.formContext.ngAfterViewInit(this);
1430
- };
1431
- /**
1432
- * @return {?}
1433
- */
1434
- SignatureComponent.prototype.ngOnDestroy = function () {
1435
- this.formCompContext.ngOnDestroy(this);
1436
- };
1437
- /**
1438
- * @return {?}
1439
- */
1440
- SignatureComponent.prototype.ngAfterContentChecked = function () {
1441
- this.formCompContext.ngAfterContentChecked(this);
1442
- };
1443
- return SignatureComponent;
1444
- }(ej2Inputs.Signature));
1445
- exports.SignatureComponent.decorators = [
1446
- { type: core.Component, args: [{
1447
- selector: '[ejs-signature]',
1448
- inputs: inputs$7,
1449
- outputs: outputs$8,
1450
- template: '',
1451
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1452
- providers: [
1453
- {
1454
- provide: forms.NG_VALUE_ACCESSOR,
1455
- useExisting: core.forwardRef(function () { return SignatureComponent_1; }),
1456
- multi: true
1457
- }
1458
- ],
1459
- queries: {}
1460
- },] },
1461
- ];
1462
- /**
1463
- * @nocollapse
1464
- */
1465
- exports.SignatureComponent.ctorParameters = function () { return [
1466
- { type: core.ElementRef, },
1467
- { type: core.Renderer2, },
1468
- { type: core.ViewContainerRef, },
1469
- { type: core.Injector, },
1470
- { type: core.ChangeDetectorRef, },
1471
- ]; };
1472
- exports.SignatureComponent = SignatureComponent_1 = __decorate$7([
1473
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1474
- __metadata$7("design:paramtypes", [core.ElementRef,
1475
- core.Renderer2,
1476
- core.ViewContainerRef,
1477
- core.Injector,
1478
- core.ChangeDetectorRef])
1479
- ], exports.SignatureComponent);
1480
- var SignatureComponent_1;
1481
- /**
1482
- * NgModule definition for the Signature component.
1483
- */
1484
- var SignatureModule = /** @class */ (function () {
1485
- function SignatureModule() {
1486
- }
1487
- return SignatureModule;
1488
- }());
1489
- SignatureModule.decorators = [
1490
- { type: core.NgModule, args: [{
1491
- imports: [common.CommonModule],
1492
- declarations: [
1493
- exports.SignatureComponent
1494
- ],
1495
- exports: [
1496
- exports.SignatureComponent
1497
- ]
1498
- },] },
1499
- ];
1500
- /**
1501
- * @nocollapse
1502
- */
1503
- SignatureModule.ctorParameters = function () { return []; };
1504
- /**
1505
- * NgModule definition for the Signature component with providers.
1506
- */
1507
- var SignatureAllModule = /** @class */ (function () {
1508
- function SignatureAllModule() {
1509
- }
1510
- return SignatureAllModule;
1511
- }());
1512
- SignatureAllModule.decorators = [
1513
- { type: core.NgModule, args: [{
1514
- imports: [common.CommonModule, SignatureModule],
1515
- exports: [
1516
- SignatureModule
1517
- ],
1518
- providers: []
1519
- },] },
1520
- ];
1521
- /**
1522
- * @nocollapse
1523
- */
1524
- SignatureAllModule.ctorParameters = function () { return []; };
1525
- var __decorate$8 = (this && this.__decorate) || function (decorators, target, key, desc) {
1526
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1527
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1528
- r = Reflect.decorate(decorators, target, key, desc);
1529
- else
1530
- for (var i = decorators.length - 1; i >= 0; i--)
1531
- if (d = decorators[i])
1532
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1533
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1534
- };
1535
- var __metadata$8 = (this && this.__metadata) || function (k, v) {
1536
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1537
- return Reflect.metadata(k, v);
1538
- };
1539
- var inputs$8 = ['allowReset', 'cssClass', 'disabled', 'emptyTemplate', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSingleSelection', 'fullTemplate', 'itemsCount', 'labelPosition', 'labelTemplate', 'locale', 'min', 'precision', 'readOnly', 'showLabel', 'showTooltip', 'tooltipTemplate', 'value', 'visible'];
1540
- var outputs$9 = ['focus', 'blur', 'beforeItemRender', 'created', 'onItemHover', 'valueChanged', 'valueChange'];
1541
- var twoWays$8 = ['value'];
1542
- /**
1543
- * Represents the EJ2 Angular Rating Component.
1544
- * ```html
1545
- * <input ejs-rating [value]='value' />
1546
- * ```
1547
- */
1548
- exports.RatingComponent = RatingComponent_1 = /** @class */ (function (_super) {
1549
- __extends(RatingComponent, _super);
1550
- /**
1551
- * @param {?} ngEle
1552
- * @param {?} srenderer
1553
- * @param {?} viewContainerRef
1554
- * @param {?} injector
1555
- * @param {?} cdr
1556
- */
1557
- function RatingComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1558
- var _this = _super.call(this) || this;
1559
- _this.ngEle = ngEle;
1560
- _this.srenderer = srenderer;
1561
- _this.viewContainerRef = viewContainerRef;
1562
- _this.injector = injector;
1563
- _this.cdr = cdr;
1564
- _this.element = _this.ngEle.nativeElement;
1565
- _this.injectedModules = _this.injectedModules || [];
1566
- _this.registerEvents(outputs$9);
1567
- _this.addTwoWay.call(_this, twoWays$8);
1568
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1569
- _this.formContext = new ej2AngularBase.FormBase();
1570
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1571
- return _this;
1572
- }
1573
- /**
1574
- * @param {?} registerFunction
1575
- * @return {?}
1576
- */
1577
- RatingComponent.prototype.registerOnChange = function (registerFunction) {
1578
- };
1579
- /**
1580
- * @param {?} registerFunction
1581
- * @return {?}
1582
- */
1583
- RatingComponent.prototype.registerOnTouched = function (registerFunction) {
1584
- };
1585
- /**
1586
- * @param {?} value
1587
- * @return {?}
1588
- */
1589
- RatingComponent.prototype.writeValue = function (value) {
1590
- };
1591
- /**
1592
- * @param {?} disabled
1593
- * @return {?}
1594
- */
1595
- RatingComponent.prototype.setDisabledState = function (disabled) {
1596
- };
1597
- /**
1598
- * @return {?}
1599
- */
1600
- RatingComponent.prototype.ngOnInit = function () {
1601
- this.formCompContext.ngOnInit(this);
1602
- };
1603
- /**
1604
- * @return {?}
1605
- */
1606
- RatingComponent.prototype.ngAfterViewInit = function () {
1607
- this.formContext.ngAfterViewInit(this);
1608
- };
1609
- /**
1610
- * @return {?}
1611
- */
1612
- RatingComponent.prototype.ngOnDestroy = function () {
1613
- this.formCompContext.ngOnDestroy(this);
1614
- };
1615
- /**
1616
- * @return {?}
1617
- */
1618
- RatingComponent.prototype.ngAfterContentChecked = function () {
1619
- this.formCompContext.ngAfterContentChecked(this);
1620
- };
1621
- return RatingComponent;
1622
- }(ej2Inputs.Rating));
1623
- exports.RatingComponent.decorators = [
1624
- { type: core.Component, args: [{
1625
- selector: '[ejs-rating]',
1626
- inputs: inputs$8,
1627
- outputs: outputs$9,
1628
- template: '',
1629
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1630
- providers: [
1631
- {
1632
- provide: forms.NG_VALUE_ACCESSOR,
1633
- useExisting: core.forwardRef(function () { return RatingComponent_1; }),
1634
- multi: true
1635
- }
1636
- ],
1637
- queries: {}
1638
- },] },
1639
- ];
1640
- /**
1641
- * @nocollapse
1642
- */
1643
- exports.RatingComponent.ctorParameters = function () { return [
1644
- { type: core.ElementRef, },
1645
- { type: core.Renderer2, },
1646
- { type: core.ViewContainerRef, },
1647
- { type: core.Injector, },
1648
- { type: core.ChangeDetectorRef, },
1649
- ]; };
1650
- exports.RatingComponent.propDecorators = {
1651
- 'fullTemplate': [{ type: core.ContentChild, args: ['fullTemplate',] },],
1652
- 'emptyTemplate': [{ type: core.ContentChild, args: ['emptyTemplate',] },],
1653
- 'tooltipTemplate': [{ type: core.ContentChild, args: ['tooltipTemplate',] },],
1654
- 'labelTemplate': [{ type: core.ContentChild, args: ['labelTemplate',] },],
1655
- };
1656
- __decorate$8([
1657
- ej2AngularBase.Template(),
1658
- __metadata$8("design:type", Object)
1659
- ], exports.RatingComponent.prototype, "fullTemplate", void 0);
1660
- __decorate$8([
1661
- ej2AngularBase.Template(),
1662
- __metadata$8("design:type", Object)
1663
- ], exports.RatingComponent.prototype, "emptyTemplate", void 0);
1664
- __decorate$8([
1665
- ej2AngularBase.Template(),
1666
- __metadata$8("design:type", Object)
1667
- ], exports.RatingComponent.prototype, "tooltipTemplate", void 0);
1668
- __decorate$8([
1669
- ej2AngularBase.Template(),
1670
- __metadata$8("design:type", Object)
1671
- ], exports.RatingComponent.prototype, "labelTemplate", void 0);
1672
- exports.RatingComponent = RatingComponent_1 = __decorate$8([
1673
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1674
- __metadata$8("design:paramtypes", [core.ElementRef,
1675
- core.Renderer2,
1676
- core.ViewContainerRef,
1677
- core.Injector,
1678
- core.ChangeDetectorRef])
1679
- ], exports.RatingComponent);
1680
- var RatingComponent_1;
1681
- /**
1682
- * NgModule definition for the Rating component.
1683
- */
1684
- var RatingModule = /** @class */ (function () {
1685
- function RatingModule() {
1686
- }
1687
- return RatingModule;
1688
- }());
1689
- RatingModule.decorators = [
1690
- { type: core.NgModule, args: [{
1691
- imports: [common.CommonModule],
1692
- declarations: [
1693
- exports.RatingComponent
1694
- ],
1695
- exports: [
1696
- exports.RatingComponent
1697
- ]
1698
- },] },
1699
- ];
1700
- /**
1701
- * @nocollapse
1702
- */
1703
- RatingModule.ctorParameters = function () { return []; };
1704
- /**
1705
- * NgModule definition for the Rating component with providers.
1706
- */
1707
- var RatingAllModule = /** @class */ (function () {
1708
- function RatingAllModule() {
1709
- }
1710
- return RatingAllModule;
1711
- }());
1712
- RatingAllModule.decorators = [
1713
- { type: core.NgModule, args: [{
1714
- imports: [common.CommonModule, RatingModule],
1715
- exports: [
1716
- RatingModule
1717
- ],
1718
- providers: []
1719
- },] },
1720
- ];
1721
- /**
1722
- * @nocollapse
1723
- */
1724
- RatingAllModule.ctorParameters = function () { return []; };
1725
- var __decorate$9 = (this && this.__decorate) || function (decorators, target, key, desc) {
1726
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1727
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1728
- r = Reflect.decorate(decorators, target, key, desc);
1729
- else
1730
- for (var i = decorators.length - 1; i >= 0; i--)
1731
- if (d = decorators[i])
1732
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1733
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1734
- };
1735
- var __metadata$9 = (this && this.__metadata) || function (k, v) {
1736
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1737
- return Reflect.metadata(k, v);
1738
- };
1739
- var inputs$9 = ['ariaLabels', 'autoFocus', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'length', 'locale', 'placeholder', 'separator', 'stylingMode', 'textTransform', 'type', 'value'];
1740
- var outputs$10 = ['blur', 'created', 'focus', 'input', 'valueChanged', 'valueChange'];
1741
- var twoWays$9 = ['value'];
1742
- /**
1743
- * Represents the EJ2 Angular OtpInput Component.
1744
- * ```html
1745
- * <div ejs-otpinput [value]='value'></div>
1746
- * ```
1747
- */
1748
- exports.OtpInputComponent = OtpInputComponent_1 = /** @class */ (function (_super) {
1749
- __extends(OtpInputComponent, _super);
1750
- /**
1751
- * @param {?} ngEle
1752
- * @param {?} srenderer
1753
- * @param {?} viewContainerRef
1754
- * @param {?} injector
1755
- * @param {?} cdr
1756
- */
1757
- function OtpInputComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1758
- var _this = _super.call(this) || this;
1759
- _this.ngEle = ngEle;
1760
- _this.srenderer = srenderer;
1761
- _this.viewContainerRef = viewContainerRef;
1762
- _this.injector = injector;
1763
- _this.cdr = cdr;
1764
- _this.skipFromEvent = true;
1765
- _this.element = _this.ngEle.nativeElement;
1766
- _this.injectedModules = _this.injectedModules || [];
1767
- _this.registerEvents(outputs$10);
1768
- _this.addTwoWay.call(_this, twoWays$9);
1769
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1770
- _this.formContext = new ej2AngularBase.FormBase();
1771
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1772
- return _this;
1773
- }
1774
- /**
1775
- * @param {?} registerFunction
1776
- * @return {?}
1777
- */
1778
- OtpInputComponent.prototype.registerOnChange = function (registerFunction) {
1779
- };
1780
- /**
1781
- * @param {?} registerFunction
1782
- * @return {?}
1783
- */
1784
- OtpInputComponent.prototype.registerOnTouched = function (registerFunction) {
1785
- };
1786
- /**
1787
- * @param {?} value
1788
- * @return {?}
1789
- */
1790
- OtpInputComponent.prototype.writeValue = function (value) {
1791
- };
1792
- /**
1793
- * @param {?} disabled
1794
- * @return {?}
1795
- */
1796
- OtpInputComponent.prototype.setDisabledState = function (disabled) {
1797
- };
1798
- /**
1799
- * @return {?}
1800
- */
1801
- OtpInputComponent.prototype.ngOnInit = function () {
1802
- this.formCompContext.ngOnInit(this);
1803
- };
1804
- /**
1805
- * @return {?}
1806
- */
1807
- OtpInputComponent.prototype.ngAfterViewInit = function () {
1808
- this.formContext.ngAfterViewInit(this);
1809
- };
1810
- /**
1811
- * @return {?}
1812
- */
1813
- OtpInputComponent.prototype.ngOnDestroy = function () {
1814
- this.formCompContext.ngOnDestroy(this);
1815
- };
1816
- /**
1817
- * @return {?}
1818
- */
1819
- OtpInputComponent.prototype.ngAfterContentChecked = function () {
1820
- this.formCompContext.ngAfterContentChecked(this);
1821
- };
1822
- return OtpInputComponent;
1823
- }(ej2Inputs.OtpInput));
1824
- exports.OtpInputComponent.decorators = [
1825
- { type: core.Component, args: [{
1826
- selector: '[ejs-otpinput]',
1827
- inputs: inputs$9,
1828
- outputs: outputs$10,
1829
- template: '',
1830
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1831
- providers: [
1832
- {
1833
- provide: forms.NG_VALUE_ACCESSOR,
1834
- useExisting: core.forwardRef(function () { return OtpInputComponent_1; }),
1835
- multi: true
1836
- }
1837
- ],
1838
- queries: {}
1839
- },] },
1840
- ];
1841
- /**
1842
- * @nocollapse
1843
- */
1844
- exports.OtpInputComponent.ctorParameters = function () { return [
1845
- { type: core.ElementRef, },
1846
- { type: core.Renderer2, },
1847
- { type: core.ViewContainerRef, },
1848
- { type: core.Injector, },
1849
- { type: core.ChangeDetectorRef, },
1850
- ]; };
1851
- exports.OtpInputComponent = OtpInputComponent_1 = __decorate$9([
1852
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1853
- __metadata$9("design:paramtypes", [core.ElementRef,
1854
- core.Renderer2,
1855
- core.ViewContainerRef,
1856
- core.Injector,
1857
- core.ChangeDetectorRef])
1858
- ], exports.OtpInputComponent);
1859
- var OtpInputComponent_1;
1860
- /**
1861
- * NgModule definition for the OtpInput component.
1862
- */
1863
- var OtpInputModule = /** @class */ (function () {
1864
- function OtpInputModule() {
1865
- }
1866
- return OtpInputModule;
1867
- }());
1868
- OtpInputModule.decorators = [
1869
- { type: core.NgModule, args: [{
1870
- imports: [common.CommonModule],
1871
- declarations: [
1872
- exports.OtpInputComponent
1873
- ],
1874
- exports: [
1875
- exports.OtpInputComponent
1876
- ]
1877
- },] },
1878
- ];
1879
- /**
1880
- * @nocollapse
1881
- */
1882
- OtpInputModule.ctorParameters = function () { return []; };
1883
- /**
1884
- * NgModule definition for the OtpInput component with providers.
1885
- */
1886
- var OtpInputAllModule = /** @class */ (function () {
1887
- function OtpInputAllModule() {
1888
- }
1889
- return OtpInputAllModule;
1890
- }());
1891
- OtpInputAllModule.decorators = [
1892
- { type: core.NgModule, args: [{
1893
- imports: [common.CommonModule, OtpInputModule],
1894
- exports: [
1895
- OtpInputModule
1896
- ],
1897
- providers: []
1898
- },] },
1899
- ];
1900
- /**
1901
- * @nocollapse
1902
- */
1903
- OtpInputAllModule.ctorParameters = function () { return []; };
1904
- var __decorate$10 = (this && this.__decorate) || function (decorators, target, key, desc) {
1905
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1906
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1907
- r = Reflect.decorate(decorators, target, key, desc);
1908
- else
1909
- for (var i = decorators.length - 1; i >= 0; i--)
1910
- if (d = decorators[i])
1911
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1912
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1913
- };
1914
- var __metadata$10 = (this && this.__metadata) || function (k, v) {
1915
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1916
- return Reflect.metadata(k, v);
1917
- };
1918
- var inputs$10 = ['UserPhrases', 'aiSuggestionHandler', 'cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'showSuggestionOnPopup', 'userRole', 'value', 'width'];
1919
- var outputs$11 = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
1920
- var twoWays$10 = ['value'];
1921
- /**
1922
- * Represents the Angular Smart TextArea Component.
1923
- * ```html
1924
- * <ejs-smarttextarea></ejs-smarttextarea>
1925
- * ```
1926
- */
1927
- exports.SmartTextAreaComponent = SmartTextAreaComponent_1 = /** @class */ (function (_super) {
1928
- __extends(SmartTextAreaComponent, _super);
1929
- /**
1930
- * @param {?} ngEle
1931
- * @param {?} srenderer
1932
- * @param {?} viewContainerRef
1933
- * @param {?} injector
1934
- * @param {?} cdr
1935
- */
1936
- function SmartTextAreaComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
1937
- var _this = _super.call(this) || this;
1938
- _this.ngEle = ngEle;
1939
- _this.srenderer = srenderer;
1940
- _this.viewContainerRef = viewContainerRef;
1941
- _this.injector = injector;
1942
- _this.cdr = cdr;
1943
- _this.skipFromEvent = true;
1944
- _this.element = _this.ngEle.nativeElement;
1945
- _this.injectedModules = _this.injectedModules || [];
1946
- _this.registerEvents(outputs$11);
1947
- _this.addTwoWay.call(_this, twoWays$10);
1948
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1949
- _this.formContext = new ej2AngularBase.FormBase();
1950
- _this.formCompContext = new ej2AngularBase.ComponentBase();
1951
- return _this;
1952
- }
1953
- /**
1954
- * @param {?} registerFunction
1955
- * @return {?}
1956
- */
1957
- SmartTextAreaComponent.prototype.registerOnChange = function (registerFunction) {
1958
- };
1959
- /**
1960
- * @param {?} registerFunction
1961
- * @return {?}
1962
- */
1963
- SmartTextAreaComponent.prototype.registerOnTouched = function (registerFunction) {
1964
- };
1965
- /**
1966
- * @param {?} value
1967
- * @return {?}
1968
- */
1969
- SmartTextAreaComponent.prototype.writeValue = function (value) {
1970
- };
1971
- /**
1972
- * @param {?} disabled
1973
- * @return {?}
1974
- */
1975
- SmartTextAreaComponent.prototype.setDisabledState = function (disabled) {
1976
- };
1977
- /**
1978
- * @return {?}
1979
- */
1980
- SmartTextAreaComponent.prototype.ngOnInit = function () {
1981
- this.formCompContext.ngOnInit(this);
1982
- };
1983
- /**
1984
- * @return {?}
1985
- */
1986
- SmartTextAreaComponent.prototype.ngAfterViewInit = function () {
1987
- this.formContext.ngAfterViewInit(this);
1988
- };
1989
- /**
1990
- * @return {?}
1991
- */
1992
- SmartTextAreaComponent.prototype.ngOnDestroy = function () {
1993
- this.formCompContext.ngOnDestroy(this);
1994
- };
1995
- /**
1996
- * @return {?}
1997
- */
1998
- SmartTextAreaComponent.prototype.ngAfterContentChecked = function () {
1999
- this.formCompContext.ngAfterContentChecked(this);
2000
- };
2001
- return SmartTextAreaComponent;
2002
- }(ej2Inputs.SmartTextArea));
2003
- exports.SmartTextAreaComponent.decorators = [
2004
- { type: core.Component, args: [{
2005
- selector: 'ejs-smarttextarea',
2006
- inputs: inputs$10,
2007
- outputs: outputs$11,
2008
- template: '',
2009
- changeDetection: core.ChangeDetectionStrategy.OnPush,
2010
- providers: [
2011
- {
2012
- provide: forms.NG_VALUE_ACCESSOR,
2013
- useExisting: core.forwardRef(function () { return SmartTextAreaComponent_1; }),
2014
- multi: true
2015
- }
2016
- ],
2017
- queries: {}
2018
- },] },
2019
- ];
2020
- /**
2021
- * @nocollapse
2022
- */
2023
- exports.SmartTextAreaComponent.ctorParameters = function () { return [
2024
- { type: core.ElementRef, },
2025
- { type: core.Renderer2, },
2026
- { type: core.ViewContainerRef, },
2027
- { type: core.Injector, },
2028
- { type: core.ChangeDetectorRef, },
2029
- ]; };
2030
- exports.SmartTextAreaComponent = SmartTextAreaComponent_1 = __decorate$10([
2031
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
2032
- __metadata$10("design:paramtypes", [core.ElementRef,
2033
- core.Renderer2,
2034
- core.ViewContainerRef,
2035
- core.Injector,
2036
- core.ChangeDetectorRef])
2037
- ], exports.SmartTextAreaComponent);
2038
- var SmartTextAreaComponent_1;
2039
- /**
2040
- * NgModule definition for the SmartTextArea component.
2041
- */
2042
- var SmartTextAreaModule = /** @class */ (function () {
2043
- function SmartTextAreaModule() {
2044
- }
2045
- return SmartTextAreaModule;
2046
- }());
2047
- SmartTextAreaModule.decorators = [
2048
- { type: core.NgModule, args: [{
2049
- imports: [common.CommonModule],
2050
- declarations: [
2051
- exports.SmartTextAreaComponent
2052
- ],
2053
- exports: [
2054
- exports.SmartTextAreaComponent
2055
- ]
2056
- },] },
2057
- ];
2058
- /**
2059
- * @nocollapse
2060
- */
2061
- SmartTextAreaModule.ctorParameters = function () { return []; };
2062
- /**
2063
- * NgModule definition for the SmartTextArea component with providers.
2064
- */
2065
- var SmartTextAreaAllModule = /** @class */ (function () {
2066
- function SmartTextAreaAllModule() {
2067
- }
2068
- return SmartTextAreaAllModule;
2069
- }());
2070
- SmartTextAreaAllModule.decorators = [
2071
- { type: core.NgModule, args: [{
2072
- imports: [common.CommonModule, SmartTextAreaModule],
2073
- exports: [
2074
- SmartTextAreaModule
2075
- ],
2076
- providers: []
2077
- },] },
2078
- ];
2079
- /**
2080
- * @nocollapse
2081
- */
2082
- SmartTextAreaAllModule.ctorParameters = function () { return []; };
2083
- var __decorate$11 = (this && this.__decorate) || function (decorators, target, key, desc) {
2084
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2085
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
2086
- r = Reflect.decorate(decorators, target, key, desc);
2087
- else
2088
- for (var i = decorators.length - 1; i >= 0; i--)
2089
- if (d = decorators[i])
2090
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
2091
- return c > 3 && r && Object.defineProperty(target, key, r), r;
2092
- };
2093
- var __metadata$11 = (this && this.__metadata) || function (k, v) {
2094
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
2095
- return Reflect.metadata(k, v);
2096
- };
2097
- var inputs$11 = ['allowInterimResults', 'buttonSettings', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'lang', 'listeningState', 'locale', 'showTooltip', 'tooltipSettings', 'transcript'];
2098
- var outputs$12 = ['created', 'onError', 'onStart', 'onStop', 'transcriptChanged', 'transcriptChange'];
2099
- var twoWays$11 = ['transcript'];
2100
- /**
2101
- * Represents the EJ2 Angular SpeechToText Component.
2102
- * ```html
2103
- * <button ejs-speechtotext ></button>
2104
- * ```
2105
- */
2106
- exports.SpeechToTextComponent = /** @class */ (function (_super) {
2107
- __extends(SpeechToTextComponent, _super);
2108
- /**
2109
- * @param {?} ngEle
2110
- * @param {?} srenderer
2111
- * @param {?} viewContainerRef
2112
- * @param {?} injector
2113
- */
2114
- function SpeechToTextComponent(ngEle, srenderer, viewContainerRef, injector) {
2115
- var _this = _super.call(this) || this;
2116
- _this.ngEle = ngEle;
2117
- _this.srenderer = srenderer;
2118
- _this.viewContainerRef = viewContainerRef;
2119
- _this.injector = injector;
2120
- _this.element = _this.ngEle.nativeElement;
2121
- _this.injectedModules = _this.injectedModules || [];
2122
- _this.registerEvents(outputs$12);
2123
- _this.addTwoWay.call(_this, twoWays$11);
2124
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
2125
- _this.containerContext = new ej2AngularBase.ComponentBase();
2126
- return _this;
2127
- }
2128
- /**
2129
- * @return {?}
2130
- */
2131
- SpeechToTextComponent.prototype.ngOnInit = function () {
2132
- this.containerContext.ngOnInit(this);
2133
- };
2134
- /**
2135
- * @return {?}
2136
- */
2137
- SpeechToTextComponent.prototype.ngAfterViewInit = function () {
2138
- this.containerContext.ngAfterViewInit(this);
2139
- };
2140
- /**
2141
- * @return {?}
2142
- */
2143
- SpeechToTextComponent.prototype.ngOnDestroy = function () {
2144
- this.containerContext.ngOnDestroy(this);
2145
- };
2146
- /**
2147
- * @return {?}
2148
- */
2149
- SpeechToTextComponent.prototype.ngAfterContentChecked = function () {
2150
- this.containerContext.ngAfterContentChecked(this);
2151
- };
2152
- return SpeechToTextComponent;
2153
- }(ej2Inputs.SpeechToText));
2154
- exports.SpeechToTextComponent.decorators = [
2155
- { type: core.Component, args: [{
2156
- selector: '[ejs-speechtotext]',
2157
- inputs: inputs$11,
2158
- outputs: outputs$12,
2159
- template: "<ng-content ></ng-content>",
2160
- changeDetection: core.ChangeDetectionStrategy.OnPush,
2161
- queries: {}
2162
- },] },
2163
- ];
2164
- /**
2165
- * @nocollapse
2166
- */
2167
- exports.SpeechToTextComponent.ctorParameters = function () { return [
2168
- { type: core.ElementRef, },
2169
- { type: core.Renderer2, },
2170
- { type: core.ViewContainerRef, },
2171
- { type: core.Injector, },
2172
- ]; };
2173
- exports.SpeechToTextComponent = __decorate$11([
2174
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
2175
- __metadata$11("design:paramtypes", [core.ElementRef,
2176
- core.Renderer2,
2177
- core.ViewContainerRef,
2178
- core.Injector])
2179
- ], exports.SpeechToTextComponent);
2180
- /**
2181
- * NgModule definition for the SpeechToText component.
2182
- */
2183
- var SpeechToTextModule = /** @class */ (function () {
2184
- function SpeechToTextModule() {
2185
- }
2186
- return SpeechToTextModule;
2187
- }());
2188
- SpeechToTextModule.decorators = [
2189
- { type: core.NgModule, args: [{
2190
- imports: [common.CommonModule],
2191
- declarations: [
2192
- exports.SpeechToTextComponent
2193
- ],
2194
- exports: [
2195
- exports.SpeechToTextComponent
2196
- ]
2197
- },] },
2198
- ];
2199
- /**
2200
- * @nocollapse
2201
- */
2202
- SpeechToTextModule.ctorParameters = function () { return []; };
2203
- /**
2204
- * NgModule definition for the SpeechToText component with providers.
2205
- */
2206
- var SpeechToTextAllModule = /** @class */ (function () {
2207
- function SpeechToTextAllModule() {
2208
- }
2209
- return SpeechToTextAllModule;
2210
- }());
2211
- SpeechToTextAllModule.decorators = [
2212
- { type: core.NgModule, args: [{
2213
- imports: [common.CommonModule, SpeechToTextModule],
2214
- exports: [
2215
- SpeechToTextModule
2216
- ],
2217
- providers: []
2218
- },] },
2219
- ];
2220
- /**
2221
- * @nocollapse
2222
- */
2223
- SpeechToTextAllModule.ctorParameters = function () { return []; };
2224
- var FormValidators = /** @class */ (function () {
2225
- function FormValidators() {
2226
- }
2227
- /**
2228
- * @param {?} number
2229
- * @return {?}
2230
- */
2231
- FormValidators.max = function (number) {
2232
- var /** @type {?} */ max = number;
2233
- return function (control) {
2234
- //tslint:disable-next-line
2235
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.max({ value: control.value, param: max });
2236
- if (result === true) {
2237
- return null;
2238
- }
2239
- else {
2240
- return { 'max': true };
2241
- }
2242
- };
2243
- };
2244
- /**
2245
- * @param {?} number
2246
- * @return {?}
2247
- */
2248
- FormValidators.min = function (number) {
2249
- var /** @type {?} */ min = number;
2250
- return function (control) {
2251
- //tslint:disable-next-line
2252
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.min({ value: control.value, param: min });
2253
- if (result === true) {
2254
- return null;
2255
- }
2256
- else {
2257
- return { 'min': true };
2258
- }
2259
- };
2260
- };
2261
- /**
2262
- * @param {?} control
2263
- * @return {?}
2264
- */
2265
- FormValidators.creditcard = function (control) {
2266
- //tslint:disable-next-line
2267
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.creditcard({ value: control.value });
2268
- if (result === true) {
2269
- return null;
2270
- }
2271
- else {
2272
- return { 'cardno': true };
2273
- }
2274
- };
2275
- /**
2276
- * @param {?} control
2277
- * @return {?}
2278
- */
2279
- FormValidators.date = function (control) {
2280
- //tslint:disable-next-line
2281
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.date({ value: control.value });
2282
- if (result === true) {
2283
- return null;
2284
- }
2285
- else {
2286
- return { 'date': true };
2287
- }
2288
- };
2289
- /**
2290
- * @param {?} control
2291
- * @return {?}
2292
- */
2293
- FormValidators.dateIso = function (control) {
2294
- //tslint:disable-next-line
2295
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.dateIso({ value: control.value });
2296
- if (result === true) {
2297
- return null;
2298
- }
2299
- else {
2300
- return { 'dateiso': true };
2301
- }
2302
- };
2303
- /**
2304
- * @param {?} control
2305
- * @return {?}
2306
- */
2307
- FormValidators.digits = function (control) {
2308
- //tslint:disable-next-line
2309
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.digits({ value: control.value });
2310
- if (result === true) {
2311
- return null;
2312
- }
2313
- else {
2314
- return { 'digit': true };
2315
- }
2316
- };
2317
- /**
2318
- * @param {?} control
2319
- * @return {?}
2320
- */
2321
- FormValidators.email = function (control) {
2322
- //tslint:disable-next-line
2323
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.email({ value: control.value });
2324
- if (result === true) {
2325
- return null;
2326
- }
2327
- else {
2328
- return { 'email': true };
2329
- }
2330
- };
2331
- /**
2332
- * @param {?} number
2333
- * @return {?}
2334
- */
2335
- FormValidators.maxLength = function (number) {
2336
- var /** @type {?} */ maxlength = number;
2337
- return function (control) {
2338
- //tslint:disable-next-line
2339
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.maxLength({ value: control.value, param: maxlength });
2340
- if (result === true) {
2341
- return null;
2342
- }
2343
- else {
2344
- return { 'maxlength': true };
2345
- }
2346
- };
2347
- };
2348
- /**
2349
- * @param {?} number
2350
- * @return {?}
2351
- */
2352
- FormValidators.minLength = function (number) {
2353
- var /** @type {?} */ minlength = number;
2354
- return function (control) {
2355
- //tslint:disable-next-line
2356
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.minLength({ value: control.value, param: minlength });
2357
- if (result === true) {
2358
- return null;
2359
- }
2360
- else {
2361
- return { 'minlength': true };
2362
- }
2363
- };
2364
- };
2365
- /**
2366
- * @param {?} control
2367
- * @return {?}
2368
- */
2369
- FormValidators.number = function (control) {
2370
- //tslint:disable-next-line
2371
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.number({ value: control.value });
2372
- if (result === true) {
2373
- return null;
2374
- }
2375
- else {
2376
- return { 'number': true };
2377
- }
2378
- };
2379
- /**
2380
- * @param {?} control
2381
- * @return {?}
2382
- */
2383
- FormValidators.required = function (control) {
2384
- //tslint:disable-next-line
2385
- var /** @type {?} */ result = (control.value === null) ? false : ((ej2Inputs.FormValidator)).checkValidator.required({ value: control.value });
2386
- if (result === true) {
2387
- return null;
2388
- }
2389
- else {
2390
- return { 'required': true };
2391
- }
2392
- };
2393
- /**
2394
- * @param {?} control
2395
- * @return {?}
2396
- */
2397
- FormValidators.tel = function (control) {
2398
- //tslint:disable-next-line
2399
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.tel({ value: control.value });
2400
- if (result === true) {
2401
- return null;
2402
- }
2403
- else {
2404
- return { 'telno': true };
2405
- }
2406
- };
2407
- /**
2408
- * @param {?} control
2409
- * @return {?}
2410
- */
2411
- FormValidators.url = function (control) {
2412
- //tslint:disable-next-line
2413
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.url({ value: control.value });
2414
- if (result === true) {
2415
- return null;
2416
- }
2417
- else {
2418
- return { 'url': true };
2419
- }
2420
- };
2421
- /**
2422
- * @param {?} number1
2423
- * @param {?} number2
2424
- * @return {?}
2425
- */
2426
- FormValidators.rangeLength = function (number1, number2) {
2427
- var /** @type {?} */ minRL = number1;
2428
- var /** @type {?} */ maxRL = number2;
2429
- //tslint:disable-next-line
2430
- var /** @type {?} */ param = [minRL, maxRL];
2431
- return function (control) {
2432
- //tslint:disable-next-line
2433
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.rangeLength({ value: control.value, param: param });
2434
- if (result === true) {
2435
- return null;
2436
- }
2437
- else {
2438
- return { 'rangelength': true };
2439
- }
2440
- };
2441
- };
2442
- /**
2443
- * @param {?} number1
2444
- * @param {?} number2
2445
- * @return {?}
2446
- */
2447
- FormValidators.range = function (number1, number2) {
2448
- var /** @type {?} */ minR = number1;
2449
- var /** @type {?} */ maxR = number2;
2450
- //tslint:disable-next-line
2451
- var /** @type {?} */ param1 = [minR, maxR];
2452
- return function (control) {
2453
- //tslint:disable-next-line
2454
- var /** @type {?} */ result = ((ej2Inputs.FormValidator)).checkValidator.range({ value: control.value, param: param1 });
2455
- if (result === true) {
2456
- return null;
2457
- }
2458
- else {
2459
- return { 'range': true };
2460
- }
2461
- };
2462
- };
2463
- return FormValidators;
2464
- }());
2465
-
2466
- exports.TextBoxModule = TextBoxModule;
2467
- exports.TextBoxAllModule = TextBoxAllModule;
2468
- exports.TextAreaModule = TextAreaModule;
2469
- exports.TextAreaAllModule = TextAreaAllModule;
2470
- exports.NumericTextBoxModule = NumericTextBoxModule;
2471
- exports.NumericTextBoxAllModule = NumericTextBoxAllModule;
2472
- exports.MaskedTextBoxModule = MaskedTextBoxModule;
2473
- exports.MaskedTextBoxAllModule = MaskedTextBoxAllModule;
2474
- exports.SliderModule = SliderModule;
2475
- exports.SliderAllModule = SliderAllModule;
2476
- exports.UploadedFilesDirective = UploadedFilesDirective;
2477
- exports.FilesDirective = FilesDirective;
2478
- exports.UploaderModule = UploaderModule;
2479
- exports.UploaderAllModule = UploaderAllModule;
2480
- exports.ColorPickerModule = ColorPickerModule;
2481
- exports.ColorPickerAllModule = ColorPickerAllModule;
2482
- exports.SignatureModule = SignatureModule;
2483
- exports.SignatureAllModule = SignatureAllModule;
2484
- exports.RatingModule = RatingModule;
2485
- exports.RatingAllModule = RatingAllModule;
2486
- exports.OtpInputModule = OtpInputModule;
2487
- exports.OtpInputAllModule = OtpInputAllModule;
2488
- exports.SmartTextAreaModule = SmartTextAreaModule;
2489
- exports.SmartTextAreaAllModule = SmartTextAreaAllModule;
2490
- exports.SpeechToTextModule = SpeechToTextModule;
2491
- exports.SpeechToTextAllModule = SpeechToTextAllModule;
2492
- exports.FormValidators = FormValidators;
2493
- exports.ɵm = inputs$6;
2494
- exports.ɵn = outputs$7;
2495
- exports.ɵg = inputs$3;
2496
- exports.ɵh = outputs$3;
2497
- exports.ɵe = inputs$2;
2498
- exports.ɵf = outputs$2;
2499
- exports.ɵs = inputs$9;
2500
- exports.ɵt = outputs$10;
2501
- exports.ɵq = inputs$8;
2502
- exports.ɵr = outputs$9;
2503
- exports.ɵo = inputs$7;
2504
- exports.ɵp = outputs$8;
2505
- exports.ɵi = inputs$4;
2506
- exports.ɵj = outputs$4;
2507
- exports.ɵu = inputs$10;
2508
- exports.ɵv = outputs$11;
2509
- exports.ɵw = inputs$11;
2510
- exports.ɵx = outputs$12;
2511
- exports.ɵc = inputs$1;
2512
- exports.ɵd = outputs$1;
2513
- exports.ɵa = inputs;
2514
- exports.ɵb = outputs;
2515
- exports.ɵk = inputs$5;
2516
- exports.ɵl = outputs$6;
2517
- exports.NumericTextBox = ej2Inputs.NumericTextBox;
2518
- exports.regularExpressions = ej2Inputs.regularExpressions;
2519
- exports.createMask = ej2Inputs.createMask;
2520
- exports.applyMask = ej2Inputs.applyMask;
2521
- exports.wireEvents = ej2Inputs.wireEvents;
2522
- exports.unwireEvents = ej2Inputs.unwireEvents;
2523
- exports.bindClearEvent = ej2Inputs.bindClearEvent;
2524
- exports.unstrippedValue = ej2Inputs.unstrippedValue;
2525
- exports.strippedValue = ej2Inputs.strippedValue;
2526
- exports.maskInputMouseDownHandler = ej2Inputs.maskInputMouseDownHandler;
2527
- exports.maskInputMouseUpHandler = ej2Inputs.maskInputMouseUpHandler;
2528
- exports.maskInputFocusHandler = ej2Inputs.maskInputFocusHandler;
2529
- exports.triggerFocus = ej2Inputs.triggerFocus;
2530
- exports.escapeRegExp = ej2Inputs.escapeRegExp;
2531
- exports.maskInputBlurHandler = ej2Inputs.maskInputBlurHandler;
2532
- exports.maskInputDropHandler = ej2Inputs.maskInputDropHandler;
2533
- exports.mobileRemoveFunction = ej2Inputs.mobileRemoveFunction;
2534
- exports.setMaskValue = ej2Inputs.setMaskValue;
2535
- exports.setElementValue = ej2Inputs.setElementValue;
2536
- exports.maskInput = ej2Inputs.maskInput;
2537
- exports.getVal = ej2Inputs.getVal;
2538
- exports.getMaskedVal = ej2Inputs.getMaskedVal;
2539
- exports.MaskUndo = ej2Inputs.MaskUndo;
2540
- exports.MaskedTextBox = ej2Inputs.MaskedTextBox;
2541
- exports.containerAttributes = ej2Inputs.containerAttributes;
2542
- exports.TEXTBOX_FOCUS = ej2Inputs.TEXTBOX_FOCUS;
2543
- exports.Input = ej2Inputs.Input;
2544
- exports.TicksData = ej2Inputs.TicksData;
2545
- exports.ColorRangeData = ej2Inputs.ColorRangeData;
2546
- exports.LimitData = ej2Inputs.LimitData;
2547
- exports.TooltipData = ej2Inputs.TooltipData;
2548
- exports.Slider = ej2Inputs.Slider;
2549
- exports.regex = ej2Inputs.regex;
2550
- exports.ErrorOption = ej2Inputs.ErrorOption;
2551
- exports.FormValidator = ej2Inputs.FormValidator;
2552
- exports.FilesProp = ej2Inputs.FilesProp;
2553
- exports.ButtonsProps = ej2Inputs.ButtonsProps;
2554
- exports.AsyncSettings = ej2Inputs.AsyncSettings;
2555
- exports.Uploader = ej2Inputs.Uploader;
2556
- exports.ColorPicker = ej2Inputs.ColorPicker;
2557
- exports.TextBox = ej2Inputs.TextBox;
2558
- exports.TextArea = ej2Inputs.TextArea;
2559
- exports.ChatMessageRole = ej2Inputs.ChatMessageRole;
2560
- exports.SmartTextArea = ej2Inputs.SmartTextArea;
2561
- exports.Signature = ej2Inputs.Signature;
2562
- exports.LabelPosition = ej2Inputs.LabelPosition;
2563
- exports.PrecisionType = ej2Inputs.PrecisionType;
2564
- exports.Rating = ej2Inputs.Rating;
2565
- exports.OtpInputType = ej2Inputs.OtpInputType;
2566
- exports.OtpInputStyle = ej2Inputs.OtpInputStyle;
2567
- exports.TextTransform = ej2Inputs.TextTransform;
2568
- exports.OtpInput = ej2Inputs.OtpInput;
2569
- exports.SignatureBase = ej2Inputs.SignatureBase;
2570
- exports.ButtonSettings = ej2Inputs.ButtonSettings;
2571
- exports.TooltipSettings = ej2Inputs.TooltipSettings;
2572
- exports.SpeechToTextState = ej2Inputs.SpeechToTextState;
2573
- exports.SpeechToText = ej2Inputs.SpeechToText;
2574
-
2575
- Object.defineProperty(exports, '__esModule', { value: true });
2576
-
2577
- })));
2578
- //# sourceMappingURL=ej2-angular-inputs.umd.js.map