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

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