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

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 +1582 -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
@@ -0,0 +1,1738 @@
1
+ import { __decorate } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { forwardRef, Component, ChangeDetectionStrategy, ContentChild, NgModule, Directive, ContentChildren } from '@angular/core';
4
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
5
+ import { setValue, FormBase, ComponentBase, Template, ComponentMixins, ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
6
+ import { TextBox, TextArea, NumericTextBox, MaskedTextBox, Slider, Uploader, ColorPicker, Signature, Rating, OtpInput, SmartTextArea, SpeechToText, FormValidator } from '@syncfusion/ej2-inputs';
7
+ export * from '@syncfusion/ej2-inputs';
8
+ import { CommonModule } from '@angular/common';
9
+
10
+ var TextBoxComponent_1;
11
+ const inputs$b = ['appendTemplate', 'autocomplete', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'multiline', 'placeholder', 'prependTemplate', 'readonly', 'showClearButton', 'type', 'value', 'width'];
12
+ const outputs$c = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
13
+ const twoWays$b = ['value'];
14
+ /**
15
+ * Represents the EJ2 Angular TextBox Component.
16
+ * ```html
17
+ * <ejs-textbox [value]='value'></ejs-textbox>
18
+ * ```
19
+ */
20
+ let TextBoxComponent = TextBoxComponent_1 = class TextBoxComponent extends TextBox {
21
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
22
+ super();
23
+ this.ngEle = ngEle;
24
+ this.srenderer = srenderer;
25
+ this.viewContainerRef = viewContainerRef;
26
+ this.injector = injector;
27
+ this.cdr = cdr;
28
+ this.skipFromEvent = true;
29
+ this.element = this.ngEle.nativeElement;
30
+ this.injectedModules = this.injectedModules || [];
31
+ this.registerEvents(outputs$c);
32
+ this.addTwoWay.call(this, twoWays$b);
33
+ setValue('currentInstance', this, this.viewContainerRef);
34
+ this.formContext = new FormBase();
35
+ this.formCompContext = new ComponentBase();
36
+ }
37
+ registerOnChange(registerFunction) {
38
+ }
39
+ registerOnTouched(registerFunction) {
40
+ }
41
+ writeValue(value) {
42
+ }
43
+ setDisabledState(disabled) {
44
+ }
45
+ ngOnInit() {
46
+ this.formCompContext.ngOnInit(this);
47
+ }
48
+ ngAfterViewInit() {
49
+ this.formContext.ngAfterViewInit(this);
50
+ }
51
+ ngOnDestroy() {
52
+ this.formCompContext.ngOnDestroy(this);
53
+ }
54
+ ngAfterContentChecked() {
55
+ this.formCompContext.ngAfterContentChecked(this);
56
+ }
57
+ };
58
+ TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
59
+ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TextBoxComponent, selector: "ejs-textbox", inputs: { appendTemplate: "appendTemplate", autocomplete: "autocomplete", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", multiline: "multiline", placeholder: "placeholder", prependTemplate: "prependTemplate", readonly: "readonly", showClearButton: "showClearButton", type: "type", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
60
+ {
61
+ provide: NG_VALUE_ACCESSOR,
62
+ useExisting: forwardRef(() => TextBoxComponent_1),
63
+ multi: true
64
+ }
65
+ ], queries: [{ propertyName: "prependTemplate", first: true, predicate: ["prependTemplate"], descendants: true }, { propertyName: "appendTemplate", first: true, predicate: ["appendTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
66
+ __decorate([
67
+ Template()
68
+ ], TextBoxComponent.prototype, "prependTemplate", void 0);
69
+ __decorate([
70
+ Template()
71
+ ], TextBoxComponent.prototype, "appendTemplate", void 0);
72
+ TextBoxComponent = TextBoxComponent_1 = __decorate([
73
+ ComponentMixins([ComponentBase, FormBase])
74
+ ], TextBoxComponent);
75
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxComponent, decorators: [{
76
+ type: Component,
77
+ args: [{
78
+ selector: 'ejs-textbox',
79
+ inputs: inputs$b,
80
+ outputs: outputs$c,
81
+ template: '',
82
+ changeDetection: ChangeDetectionStrategy.OnPush,
83
+ providers: [
84
+ {
85
+ provide: NG_VALUE_ACCESSOR,
86
+ useExisting: forwardRef(() => TextBoxComponent),
87
+ multi: true
88
+ }
89
+ ],
90
+ queries: {}
91
+ }]
92
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { prependTemplate: [{
93
+ type: ContentChild,
94
+ args: ['prependTemplate']
95
+ }], appendTemplate: [{
96
+ type: ContentChild,
97
+ args: ['appendTemplate']
98
+ }] } });
99
+
100
+ /**
101
+ * NgModule definition for the TextBox component.
102
+ */
103
+ class TextBoxModule {
104
+ }
105
+ TextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
106
+ TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, declarations: [TextBoxComponent], imports: [CommonModule], exports: [TextBoxComponent] });
107
+ TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, imports: [[CommonModule]] });
108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, decorators: [{
109
+ type: NgModule,
110
+ args: [{
111
+ imports: [CommonModule],
112
+ declarations: [
113
+ TextBoxComponent
114
+ ],
115
+ exports: [
116
+ TextBoxComponent
117
+ ]
118
+ }]
119
+ }] });
120
+
121
+ /**
122
+ * NgModule definition for the TextBox component with providers.
123
+ */
124
+ class TextBoxAllModule {
125
+ }
126
+ TextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
127
+ TextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, imports: [CommonModule, TextBoxModule], exports: [TextBoxModule] });
128
+ TextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, providers: [], imports: [[CommonModule, TextBoxModule], TextBoxModule] });
129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, decorators: [{
130
+ type: NgModule,
131
+ args: [{
132
+ imports: [CommonModule, TextBoxModule],
133
+ exports: [
134
+ TextBoxModule
135
+ ],
136
+ providers: []
137
+ }]
138
+ }] });
139
+
140
+ var TextAreaComponent_1;
141
+ const inputs$a = ['adornmentFlow', 'adornmentOrientation', 'appendTemplate', 'cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'prependTemplate', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'value', 'width'];
142
+ const outputs$b = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
143
+ const twoWays$a = ['value'];
144
+ /**
145
+ * Represents the EJ2 Angular TextArea Component.
146
+ * ```html
147
+ * <ejs-textarea [value]='value'></ejs-textarea>
148
+ * ```
149
+ */
150
+ let TextAreaComponent = TextAreaComponent_1 = class TextAreaComponent extends TextArea {
151
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
152
+ super();
153
+ this.ngEle = ngEle;
154
+ this.srenderer = srenderer;
155
+ this.viewContainerRef = viewContainerRef;
156
+ this.injector = injector;
157
+ this.cdr = cdr;
158
+ this.skipFromEvent = true;
159
+ this.element = this.ngEle.nativeElement;
160
+ this.injectedModules = this.injectedModules || [];
161
+ this.registerEvents(outputs$b);
162
+ this.addTwoWay.call(this, twoWays$a);
163
+ setValue('currentInstance', this, this.viewContainerRef);
164
+ this.formContext = new FormBase();
165
+ this.formCompContext = new ComponentBase();
166
+ }
167
+ registerOnChange(registerFunction) {
168
+ }
169
+ registerOnTouched(registerFunction) {
170
+ }
171
+ writeValue(value) {
172
+ }
173
+ setDisabledState(disabled) {
174
+ }
175
+ ngOnInit() {
176
+ this.formCompContext.ngOnInit(this);
177
+ }
178
+ ngAfterViewInit() {
179
+ this.formContext.ngAfterViewInit(this);
180
+ }
181
+ ngOnDestroy() {
182
+ this.formCompContext.ngOnDestroy(this);
183
+ }
184
+ ngAfterContentChecked() {
185
+ this.formCompContext.ngAfterContentChecked(this);
186
+ }
187
+ };
188
+ TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
189
+ TextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TextAreaComponent, selector: "ejs-textarea", inputs: { adornmentFlow: "adornmentFlow", adornmentOrientation: "adornmentOrientation", appendTemplate: "appendTemplate", cols: "cols", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", maxLength: "maxLength", placeholder: "placeholder", prependTemplate: "prependTemplate", readonly: "readonly", resizeMode: "resizeMode", rows: "rows", showClearButton: "showClearButton", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
190
+ {
191
+ provide: NG_VALUE_ACCESSOR,
192
+ useExisting: forwardRef(() => TextAreaComponent_1),
193
+ multi: true
194
+ }
195
+ ], queries: [{ propertyName: "prependTemplate", first: true, predicate: ["prependTemplate"], descendants: true }, { propertyName: "appendTemplate", first: true, predicate: ["appendTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
196
+ __decorate([
197
+ Template()
198
+ ], TextAreaComponent.prototype, "prependTemplate", void 0);
199
+ __decorate([
200
+ Template()
201
+ ], TextAreaComponent.prototype, "appendTemplate", void 0);
202
+ TextAreaComponent = TextAreaComponent_1 = __decorate([
203
+ ComponentMixins([ComponentBase, FormBase])
204
+ ], TextAreaComponent);
205
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaComponent, decorators: [{
206
+ type: Component,
207
+ args: [{
208
+ selector: 'ejs-textarea',
209
+ inputs: inputs$a,
210
+ outputs: outputs$b,
211
+ template: '',
212
+ changeDetection: ChangeDetectionStrategy.OnPush,
213
+ providers: [
214
+ {
215
+ provide: NG_VALUE_ACCESSOR,
216
+ useExisting: forwardRef(() => TextAreaComponent),
217
+ multi: true
218
+ }
219
+ ],
220
+ queries: {}
221
+ }]
222
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { prependTemplate: [{
223
+ type: ContentChild,
224
+ args: ['prependTemplate']
225
+ }], appendTemplate: [{
226
+ type: ContentChild,
227
+ args: ['appendTemplate']
228
+ }] } });
229
+
230
+ /**
231
+ * NgModule definition for the TextArea component.
232
+ */
233
+ class TextAreaModule {
234
+ }
235
+ TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
236
+ TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, declarations: [TextAreaComponent], imports: [CommonModule], exports: [TextAreaComponent] });
237
+ TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, imports: [[CommonModule]] });
238
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, decorators: [{
239
+ type: NgModule,
240
+ args: [{
241
+ imports: [CommonModule],
242
+ declarations: [
243
+ TextAreaComponent
244
+ ],
245
+ exports: [
246
+ TextAreaComponent
247
+ ]
248
+ }]
249
+ }] });
250
+
251
+ /**
252
+ * NgModule definition for the TextArea component with providers.
253
+ */
254
+ class TextAreaAllModule {
255
+ }
256
+ TextAreaAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
257
+ TextAreaAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, imports: [CommonModule, TextAreaModule], exports: [TextAreaModule] });
258
+ TextAreaAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, providers: [], imports: [[CommonModule, TextAreaModule], TextAreaModule] });
259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, decorators: [{
260
+ type: NgModule,
261
+ args: [{
262
+ imports: [CommonModule, TextAreaModule],
263
+ exports: [
264
+ TextAreaModule
265
+ ],
266
+ providers: []
267
+ }]
268
+ }] });
269
+
270
+ var NumericTextBoxComponent_1;
271
+ const inputs$9 = ['allowMouseWheel', 'appendTemplate', 'cssClass', 'currency', 'currencyCode', 'decimals', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'htmlAttributes', 'locale', 'max', 'min', 'placeholder', 'prependTemplate', 'readonly', 'showClearButton', 'showSpinButton', 'step', 'strictMode', 'validateDecimalOnType', 'value', 'width'];
272
+ const outputs$a = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
273
+ const twoWays$9 = ['value'];
274
+ /**
275
+ * Represents the EJ2 Angular NumericTextBox Component.
276
+ * ```html
277
+ * <ej-numerictextbox [value]='value'></ej-numerictextbox>
278
+ * ```
279
+ */
280
+ let NumericTextBoxComponent = NumericTextBoxComponent_1 = class NumericTextBoxComponent extends NumericTextBox {
281
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
282
+ super();
283
+ this.ngEle = ngEle;
284
+ this.srenderer = srenderer;
285
+ this.viewContainerRef = viewContainerRef;
286
+ this.injector = injector;
287
+ this.cdr = cdr;
288
+ this.skipFromEvent = true;
289
+ this.element = this.ngEle.nativeElement;
290
+ this.injectedModules = this.injectedModules || [];
291
+ this.registerEvents(outputs$a);
292
+ this.addTwoWay.call(this, twoWays$9);
293
+ setValue('currentInstance', this, this.viewContainerRef);
294
+ this.formContext = new FormBase();
295
+ this.formCompContext = new ComponentBase();
296
+ }
297
+ registerOnChange(registerFunction) {
298
+ }
299
+ registerOnTouched(registerFunction) {
300
+ }
301
+ writeValue(value) {
302
+ }
303
+ setDisabledState(disabled) {
304
+ }
305
+ ngOnInit() {
306
+ this.formCompContext.ngOnInit(this);
307
+ }
308
+ ngAfterViewInit() {
309
+ this.formContext.ngAfterViewInit(this);
310
+ }
311
+ ngOnDestroy() {
312
+ this.formCompContext.ngOnDestroy(this);
313
+ }
314
+ ngAfterContentChecked() {
315
+ this.formCompContext.ngAfterContentChecked(this);
316
+ }
317
+ };
318
+ NumericTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
319
+ NumericTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: NumericTextBoxComponent, selector: "ejs-numerictextbox", inputs: { allowMouseWheel: "allowMouseWheel", appendTemplate: "appendTemplate", cssClass: "cssClass", currency: "currency", currencyCode: "currencyCode", decimals: "decimals", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", format: "format", htmlAttributes: "htmlAttributes", locale: "locale", max: "max", min: "min", placeholder: "placeholder", prependTemplate: "prependTemplate", readonly: "readonly", showClearButton: "showClearButton", showSpinButton: "showSpinButton", step: "step", strictMode: "strictMode", validateDecimalOnType: "validateDecimalOnType", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", valueChange: "valueChange" }, providers: [
320
+ {
321
+ provide: NG_VALUE_ACCESSOR,
322
+ useExisting: forwardRef(() => NumericTextBoxComponent_1),
323
+ multi: true
324
+ }
325
+ ], queries: [{ propertyName: "prependTemplate", first: true, predicate: ["prependTemplate"], descendants: true }, { propertyName: "appendTemplate", first: true, predicate: ["appendTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
326
+ __decorate([
327
+ Template()
328
+ ], NumericTextBoxComponent.prototype, "prependTemplate", void 0);
329
+ __decorate([
330
+ Template()
331
+ ], NumericTextBoxComponent.prototype, "appendTemplate", void 0);
332
+ NumericTextBoxComponent = NumericTextBoxComponent_1 = __decorate([
333
+ ComponentMixins([ComponentBase, FormBase])
334
+ ], NumericTextBoxComponent);
335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxComponent, decorators: [{
336
+ type: Component,
337
+ args: [{
338
+ selector: 'ejs-numerictextbox',
339
+ inputs: inputs$9,
340
+ outputs: outputs$a,
341
+ template: '',
342
+ changeDetection: ChangeDetectionStrategy.OnPush,
343
+ providers: [
344
+ {
345
+ provide: NG_VALUE_ACCESSOR,
346
+ useExisting: forwardRef(() => NumericTextBoxComponent),
347
+ multi: true
348
+ }
349
+ ],
350
+ queries: {}
351
+ }]
352
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { prependTemplate: [{
353
+ type: ContentChild,
354
+ args: ['prependTemplate']
355
+ }], appendTemplate: [{
356
+ type: ContentChild,
357
+ args: ['appendTemplate']
358
+ }] } });
359
+
360
+ /**
361
+ * NgModule definition for the NumericTextBox component.
362
+ */
363
+ class NumericTextBoxModule {
364
+ }
365
+ NumericTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
366
+ NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, declarations: [NumericTextBoxComponent], imports: [CommonModule], exports: [NumericTextBoxComponent] });
367
+ NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, imports: [[CommonModule]] });
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, decorators: [{
369
+ type: NgModule,
370
+ args: [{
371
+ imports: [CommonModule],
372
+ declarations: [
373
+ NumericTextBoxComponent
374
+ ],
375
+ exports: [
376
+ NumericTextBoxComponent
377
+ ]
378
+ }]
379
+ }] });
380
+
381
+ /**
382
+ * NgModule definition for the NumericTextBox component with providers.
383
+ */
384
+ class NumericTextBoxAllModule {
385
+ }
386
+ NumericTextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
387
+ NumericTextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, imports: [CommonModule, NumericTextBoxModule], exports: [NumericTextBoxModule] });
388
+ NumericTextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, providers: [], imports: [[CommonModule, NumericTextBoxModule], NumericTextBoxModule] });
389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, decorators: [{
390
+ type: NgModule,
391
+ args: [{
392
+ imports: [CommonModule, NumericTextBoxModule],
393
+ exports: [
394
+ NumericTextBoxModule
395
+ ],
396
+ providers: []
397
+ }]
398
+ }] });
399
+
400
+ var MaskedTextBoxComponent_1;
401
+ const inputs$8 = ['appendTemplate', 'cssClass', 'customCharacters', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'mask', 'placeholder', 'prependTemplate', 'promptChar', 'readonly', 'showClearButton', 'value', 'width'];
402
+ const outputs$9 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
403
+ const twoWays$8 = ['value'];
404
+ /**
405
+ * Represents the EJ2 Angular MaskedTextbox Component.
406
+ * ```html
407
+ * <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
408
+ * ```
409
+ */
410
+ let MaskedTextBoxComponent = MaskedTextBoxComponent_1 = class MaskedTextBoxComponent extends MaskedTextBox {
411
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
412
+ super();
413
+ this.ngEle = ngEle;
414
+ this.srenderer = srenderer;
415
+ this.viewContainerRef = viewContainerRef;
416
+ this.injector = injector;
417
+ this.cdr = cdr;
418
+ this.skipFromEvent = true;
419
+ this.element = this.ngEle.nativeElement;
420
+ this.injectedModules = this.injectedModules || [];
421
+ this.registerEvents(outputs$9);
422
+ this.addTwoWay.call(this, twoWays$8);
423
+ setValue('currentInstance', this, this.viewContainerRef);
424
+ this.formContext = new FormBase();
425
+ this.formCompContext = new ComponentBase();
426
+ }
427
+ registerOnChange(registerFunction) {
428
+ }
429
+ registerOnTouched(registerFunction) {
430
+ }
431
+ writeValue(value) {
432
+ }
433
+ setDisabledState(disabled) {
434
+ }
435
+ ngOnInit() {
436
+ this.formCompContext.ngOnInit(this);
437
+ }
438
+ ngAfterViewInit() {
439
+ this.formContext.ngAfterViewInit(this);
440
+ }
441
+ ngOnDestroy() {
442
+ this.formCompContext.ngOnDestroy(this);
443
+ }
444
+ ngAfterContentChecked() {
445
+ this.formCompContext.ngAfterContentChecked(this);
446
+ }
447
+ };
448
+ MaskedTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
449
+ MaskedTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: MaskedTextBoxComponent, selector: "ejs-maskedtextbox", inputs: { appendTemplate: "appendTemplate", cssClass: "cssClass", customCharacters: "customCharacters", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", mask: "mask", placeholder: "placeholder", prependTemplate: "prependTemplate", promptChar: "promptChar", readonly: "readonly", showClearButton: "showClearButton", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", valueChange: "valueChange" }, providers: [
450
+ {
451
+ provide: NG_VALUE_ACCESSOR,
452
+ useExisting: forwardRef(() => MaskedTextBoxComponent_1),
453
+ multi: true
454
+ }
455
+ ], queries: [{ propertyName: "prependTemplate", first: true, predicate: ["prependTemplate"], descendants: true }, { propertyName: "appendTemplate", first: true, predicate: ["appendTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
456
+ __decorate([
457
+ Template()
458
+ ], MaskedTextBoxComponent.prototype, "prependTemplate", void 0);
459
+ __decorate([
460
+ Template()
461
+ ], MaskedTextBoxComponent.prototype, "appendTemplate", void 0);
462
+ MaskedTextBoxComponent = MaskedTextBoxComponent_1 = __decorate([
463
+ ComponentMixins([ComponentBase, FormBase])
464
+ ], MaskedTextBoxComponent);
465
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxComponent, decorators: [{
466
+ type: Component,
467
+ args: [{
468
+ selector: 'ejs-maskedtextbox',
469
+ inputs: inputs$8,
470
+ outputs: outputs$9,
471
+ template: '',
472
+ changeDetection: ChangeDetectionStrategy.OnPush,
473
+ providers: [
474
+ {
475
+ provide: NG_VALUE_ACCESSOR,
476
+ useExisting: forwardRef(() => MaskedTextBoxComponent),
477
+ multi: true
478
+ }
479
+ ],
480
+ queries: {}
481
+ }]
482
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { prependTemplate: [{
483
+ type: ContentChild,
484
+ args: ['prependTemplate']
485
+ }], appendTemplate: [{
486
+ type: ContentChild,
487
+ args: ['appendTemplate']
488
+ }] } });
489
+
490
+ /**
491
+ * NgModule definition for the MaskedTextBox component.
492
+ */
493
+ class MaskedTextBoxModule {
494
+ }
495
+ MaskedTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
496
+ MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, declarations: [MaskedTextBoxComponent], imports: [CommonModule], exports: [MaskedTextBoxComponent] });
497
+ MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, imports: [[CommonModule]] });
498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
499
+ type: NgModule,
500
+ args: [{
501
+ imports: [CommonModule],
502
+ declarations: [
503
+ MaskedTextBoxComponent
504
+ ],
505
+ exports: [
506
+ MaskedTextBoxComponent
507
+ ]
508
+ }]
509
+ }] });
510
+
511
+ /**
512
+ * NgModule definition for the MaskedTextBox component with providers.
513
+ */
514
+ class MaskedTextBoxAllModule {
515
+ }
516
+ MaskedTextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
517
+ MaskedTextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, imports: [CommonModule, MaskedTextBoxModule], exports: [MaskedTextBoxModule] });
518
+ MaskedTextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, providers: [], imports: [[CommonModule, MaskedTextBoxModule], MaskedTextBoxModule] });
519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, decorators: [{
520
+ type: NgModule,
521
+ args: [{
522
+ imports: [CommonModule, MaskedTextBoxModule],
523
+ exports: [
524
+ MaskedTextBoxModule
525
+ ],
526
+ providers: []
527
+ }]
528
+ }] });
529
+
530
+ var SliderComponent_1;
531
+ const inputs$7 = ['colorRange', 'cssClass', 'customValues', 'enableAnimation', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'limits', 'locale', 'max', 'min', 'orientation', 'readonly', 'showButtons', 'step', 'ticks', 'tooltip', 'type', 'value', 'width'];
532
+ const outputs$8 = ['focus', 'blur', 'change', 'changed', 'created', 'renderedTicks', 'renderingTicks', 'tooltipChange', 'valueChange'];
533
+ const twoWays$7 = ['value'];
534
+ /**
535
+ * Represents the EJ2 Angular Slider Component.
536
+ * ```html
537
+ * <ejs-slider [value]='value'></ejs-slider>
538
+ * ```
539
+ */
540
+ let SliderComponent = SliderComponent_1 = class SliderComponent extends Slider {
541
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
542
+ super();
543
+ this.ngEle = ngEle;
544
+ this.srenderer = srenderer;
545
+ this.viewContainerRef = viewContainerRef;
546
+ this.injector = injector;
547
+ this.cdr = cdr;
548
+ this.element = this.ngEle.nativeElement;
549
+ this.injectedModules = this.injectedModules || [];
550
+ this.registerEvents(outputs$8);
551
+ this.addTwoWay.call(this, twoWays$7);
552
+ setValue('currentInstance', this, this.viewContainerRef);
553
+ this.formContext = new FormBase();
554
+ this.formCompContext = new ComponentBase();
555
+ }
556
+ registerOnChange(registerFunction) {
557
+ }
558
+ registerOnTouched(registerFunction) {
559
+ }
560
+ writeValue(value) {
561
+ }
562
+ setDisabledState(disabled) {
563
+ }
564
+ ngOnInit() {
565
+ this.formCompContext.ngOnInit(this);
566
+ }
567
+ ngAfterViewInit() {
568
+ this.formContext.ngAfterViewInit(this);
569
+ }
570
+ ngOnDestroy() {
571
+ this.formCompContext.ngOnDestroy(this);
572
+ }
573
+ ngAfterContentChecked() {
574
+ this.formCompContext.ngAfterContentChecked(this);
575
+ }
576
+ };
577
+ SliderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
578
+ SliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SliderComponent, selector: "ejs-slider", inputs: { colorRange: "colorRange", cssClass: "cssClass", customValues: "customValues", enableAnimation: "enableAnimation", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", limits: "limits", locale: "locale", max: "max", min: "min", orientation: "orientation", readonly: "readonly", showButtons: "showButtons", step: "step", ticks: "ticks", tooltip: "tooltip", type: "type", value: "value", width: "width" }, outputs: { focus: "focus", blur: "blur", change: "change", changed: "changed", created: "created", renderedTicks: "renderedTicks", renderingTicks: "renderingTicks", tooltipChange: "tooltipChange", valueChange: "valueChange" }, providers: [
579
+ {
580
+ provide: NG_VALUE_ACCESSOR,
581
+ useExisting: forwardRef(() => SliderComponent_1),
582
+ multi: true
583
+ }
584
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
585
+ SliderComponent = SliderComponent_1 = __decorate([
586
+ ComponentMixins([ComponentBase, FormBase])
587
+ ], SliderComponent);
588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderComponent, decorators: [{
589
+ type: Component,
590
+ args: [{
591
+ selector: 'ejs-slider',
592
+ inputs: inputs$7,
593
+ outputs: outputs$8,
594
+ template: '',
595
+ changeDetection: ChangeDetectionStrategy.OnPush,
596
+ providers: [
597
+ {
598
+ provide: NG_VALUE_ACCESSOR,
599
+ useExisting: forwardRef(() => SliderComponent),
600
+ multi: true
601
+ }
602
+ ],
603
+ queries: {}
604
+ }]
605
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
606
+
607
+ /**
608
+ * NgModule definition for the Slider component.
609
+ */
610
+ class SliderModule {
611
+ }
612
+ SliderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
613
+ SliderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, declarations: [SliderComponent], imports: [CommonModule], exports: [SliderComponent] });
614
+ SliderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, imports: [[CommonModule]] });
615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, decorators: [{
616
+ type: NgModule,
617
+ args: [{
618
+ imports: [CommonModule],
619
+ declarations: [
620
+ SliderComponent
621
+ ],
622
+ exports: [
623
+ SliderComponent
624
+ ]
625
+ }]
626
+ }] });
627
+
628
+ /**
629
+ * NgModule definition for the Slider component with providers.
630
+ */
631
+ class SliderAllModule {
632
+ }
633
+ SliderAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
634
+ SliderAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, imports: [CommonModule, SliderModule], exports: [SliderModule] });
635
+ SliderAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, providers: [], imports: [[CommonModule, SliderModule], SliderModule] });
636
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, decorators: [{
637
+ type: NgModule,
638
+ args: [{
639
+ imports: [CommonModule, SliderModule],
640
+ exports: [
641
+ SliderModule
642
+ ],
643
+ providers: []
644
+ }]
645
+ }] });
646
+
647
+ let input = ['name', 'size', 'type'];
648
+ let outputs$7 = [];
649
+ /**
650
+ * 'e-files' directive represent a file of angular uploader
651
+ * It must be contained in a Uploader component(`ejs-uploader`).
652
+ * ```html
653
+ * <ejs-uploader id='fileupload' multiple=true>
654
+ * <e-files>
655
+ * <e-file name='Java' size=23000 type='pdf'></e-file>
656
+ * <e-file name='C++' size=30000 type='.docx'></e-file>
657
+ * </e-files>
658
+ * </ejs-uploader>
659
+ * ```
660
+ */
661
+ class UploadedFilesDirective extends ComplexBase {
662
+ constructor(viewContainerRef) {
663
+ super();
664
+ this.viewContainerRef = viewContainerRef;
665
+ setValue('currentInstance', this, this.viewContainerRef);
666
+ this.registerEvents(outputs$7);
667
+ this.directivePropList = input;
668
+ }
669
+ }
670
+ UploadedFilesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploadedFilesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
671
+ UploadedFilesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: UploadedFilesDirective, selector: "e-files>e-uploadedfiles", inputs: { name: "name", size: "size", type: "type" }, usesInheritance: true, ngImport: i0 });
672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploadedFilesDirective, decorators: [{
673
+ type: Directive,
674
+ args: [{
675
+ selector: 'e-files>e-uploadedfiles',
676
+ inputs: input,
677
+ outputs: outputs$7,
678
+ queries: {}
679
+ }]
680
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
681
+ /**
682
+ * UploadedFiles Array Directive
683
+ * @private
684
+ */
685
+ class FilesDirective extends ArrayBase {
686
+ constructor() {
687
+ super('files');
688
+ }
689
+ }
690
+ FilesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: FilesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
691
+ FilesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: FilesDirective, selector: "ejs-uploader>e-files", queries: [{ propertyName: "children", predicate: UploadedFilesDirective }], usesInheritance: true, ngImport: i0 });
692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: FilesDirective, decorators: [{
693
+ type: Directive,
694
+ args: [{
695
+ selector: 'ejs-uploader>e-files',
696
+ queries: {
697
+ children: new ContentChildren(UploadedFilesDirective)
698
+ },
699
+ }]
700
+ }], ctorParameters: function () { return []; } });
701
+
702
+ var UploaderComponent_1;
703
+ const inputs$6 = ['allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template'];
704
+ const outputs$6 = ['focus', 'blur', 'actionComplete', 'beforeRemove', 'beforeUpload', 'canceling', 'change', 'chunkFailure', 'chunkSuccess', 'chunkUploading', 'clearing', 'created', 'failure', 'fileListRendering', 'pausing', 'progress', 'removing', 'rendering', 'resuming', 'selected', 'success', 'uploading'];
705
+ const twoWays$6 = [];
706
+ /**
707
+ * Represents the EJ2 Angular Uploader Component.
708
+ * ```html
709
+ * <ejs-uploader></ejs-uploader>
710
+ * ```
711
+ */
712
+ let UploaderComponent = UploaderComponent_1 = class UploaderComponent extends Uploader {
713
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
714
+ super();
715
+ this.ngEle = ngEle;
716
+ this.srenderer = srenderer;
717
+ this.viewContainerRef = viewContainerRef;
718
+ this.injector = injector;
719
+ this.cdr = cdr;
720
+ this.tags = ['files'];
721
+ this.element = this.ngEle.nativeElement;
722
+ this.injectedModules = this.injectedModules || [];
723
+ this.registerEvents(outputs$6);
724
+ this.addTwoWay.call(this, twoWays$6);
725
+ setValue('currentInstance', this, this.viewContainerRef);
726
+ this.formContext = new FormBase();
727
+ this.formCompContext = new ComponentBase();
728
+ }
729
+ registerOnChange(registerFunction) {
730
+ }
731
+ registerOnTouched(registerFunction) {
732
+ }
733
+ writeValue(value) {
734
+ }
735
+ setDisabledState(disabled) {
736
+ }
737
+ ngOnInit() {
738
+ this.formCompContext.ngOnInit(this);
739
+ }
740
+ ngAfterViewInit() {
741
+ this.formContext.ngAfterViewInit(this);
742
+ }
743
+ ngOnDestroy() {
744
+ this.formCompContext.ngOnDestroy(this);
745
+ }
746
+ ngAfterContentChecked() {
747
+ this.tagObjects[0].instance = this.childFiles;
748
+ this.formCompContext.ngAfterContentChecked(this);
749
+ }
750
+ };
751
+ UploaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
752
+ UploaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: UploaderComponent, selector: "ejs-uploader", inputs: { allowedExtensions: "allowedExtensions", asyncSettings: "asyncSettings", autoUpload: "autoUpload", buttons: "buttons", cssClass: "cssClass", directoryUpload: "directoryUpload", dropArea: "dropArea", dropEffect: "dropEffect", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", files: "files", htmlAttributes: "htmlAttributes", locale: "locale", maxFileSize: "maxFileSize", minFileSize: "minFileSize", multiple: "multiple", sequentialUpload: "sequentialUpload", showFileList: "showFileList", template: "template" }, outputs: { focus: "focus", blur: "blur", actionComplete: "actionComplete", beforeRemove: "beforeRemove", beforeUpload: "beforeUpload", canceling: "canceling", change: "change", chunkFailure: "chunkFailure", chunkSuccess: "chunkSuccess", chunkUploading: "chunkUploading", clearing: "clearing", created: "created", failure: "failure", fileListRendering: "fileListRendering", pausing: "pausing", progress: "progress", removing: "removing", rendering: "rendering", resuming: "resuming", selected: "selected", success: "success", uploading: "uploading" }, providers: [
753
+ {
754
+ provide: NG_VALUE_ACCESSOR,
755
+ useExisting: forwardRef(() => UploaderComponent_1),
756
+ multi: true
757
+ }
758
+ ], queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "childFiles", first: true, predicate: FilesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
759
+ __decorate([
760
+ Template()
761
+ ], UploaderComponent.prototype, "template", void 0);
762
+ UploaderComponent = UploaderComponent_1 = __decorate([
763
+ ComponentMixins([ComponentBase, FormBase])
764
+ ], UploaderComponent);
765
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderComponent, decorators: [{
766
+ type: Component,
767
+ args: [{
768
+ selector: 'ejs-uploader',
769
+ inputs: inputs$6,
770
+ outputs: outputs$6,
771
+ template: '',
772
+ changeDetection: ChangeDetectionStrategy.OnPush,
773
+ providers: [
774
+ {
775
+ provide: NG_VALUE_ACCESSOR,
776
+ useExisting: forwardRef(() => UploaderComponent),
777
+ multi: true
778
+ }
779
+ ],
780
+ queries: {
781
+ childFiles: new ContentChild(FilesDirective)
782
+ }
783
+ }]
784
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { template: [{
785
+ type: ContentChild,
786
+ args: ['template']
787
+ }] } });
788
+
789
+ /**
790
+ * NgModule definition for the Uploader component.
791
+ */
792
+ class UploaderModule {
793
+ }
794
+ UploaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
795
+ UploaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, declarations: [UploaderComponent,
796
+ UploadedFilesDirective,
797
+ FilesDirective], imports: [CommonModule], exports: [UploaderComponent,
798
+ UploadedFilesDirective,
799
+ FilesDirective] });
800
+ UploaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, imports: [[CommonModule]] });
801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, decorators: [{
802
+ type: NgModule,
803
+ args: [{
804
+ imports: [CommonModule],
805
+ declarations: [
806
+ UploaderComponent,
807
+ UploadedFilesDirective,
808
+ FilesDirective
809
+ ],
810
+ exports: [
811
+ UploaderComponent,
812
+ UploadedFilesDirective,
813
+ FilesDirective
814
+ ]
815
+ }]
816
+ }] });
817
+
818
+ /**
819
+ * NgModule definition for the Uploader component with providers.
820
+ */
821
+ class UploaderAllModule {
822
+ }
823
+ UploaderAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
824
+ UploaderAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, imports: [CommonModule, UploaderModule], exports: [UploaderModule] });
825
+ UploaderAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, providers: [], imports: [[CommonModule, UploaderModule], UploaderModule] });
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, decorators: [{
827
+ type: NgModule,
828
+ args: [{
829
+ imports: [CommonModule, UploaderModule],
830
+ exports: [
831
+ UploaderModule
832
+ ],
833
+ providers: []
834
+ }]
835
+ }] });
836
+
837
+ var ColorPickerComponent_1;
838
+ const inputs$5 = ['columns', 'createPopupOnClick', 'cssClass', 'disabled', 'enableOpacity', 'enablePersistence', 'enableRtl', 'inline', 'locale', 'mode', 'modeSwitcher', 'noColor', 'presetColors', 'showButtons', 'showRecentColors', 'value'];
839
+ const outputs$5 = ['focus', 'blur', 'beforeClose', 'beforeModeSwitch', 'beforeOpen', 'beforeTileRender', 'change', 'created', 'onModeSwitch', 'open', 'select', 'valueChange'];
840
+ const twoWays$5 = ['value'];
841
+ /**
842
+ * Represents the EJ2 Angular ColorPicker Component.
843
+ * ```html
844
+ * <input ejs-colorpicker type='color'/>
845
+ * ```
846
+ */
847
+ let ColorPickerComponent = ColorPickerComponent_1 = class ColorPickerComponent extends ColorPicker {
848
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
849
+ super();
850
+ this.ngEle = ngEle;
851
+ this.srenderer = srenderer;
852
+ this.viewContainerRef = viewContainerRef;
853
+ this.injector = injector;
854
+ this.cdr = cdr;
855
+ this.element = this.ngEle.nativeElement;
856
+ this.injectedModules = this.injectedModules || [];
857
+ this.registerEvents(outputs$5);
858
+ this.addTwoWay.call(this, twoWays$5);
859
+ setValue('currentInstance', this, this.viewContainerRef);
860
+ this.formContext = new FormBase();
861
+ this.formCompContext = new ComponentBase();
862
+ }
863
+ registerOnChange(registerFunction) {
864
+ }
865
+ registerOnTouched(registerFunction) {
866
+ }
867
+ writeValue(value) {
868
+ }
869
+ setDisabledState(disabled) {
870
+ }
871
+ ngOnInit() {
872
+ this.formCompContext.ngOnInit(this);
873
+ }
874
+ ngAfterViewInit() {
875
+ this.formContext.ngAfterViewInit(this);
876
+ }
877
+ ngOnDestroy() {
878
+ this.formCompContext.ngOnDestroy(this);
879
+ }
880
+ ngAfterContentChecked() {
881
+ this.formCompContext.ngAfterContentChecked(this);
882
+ }
883
+ };
884
+ ColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
885
+ ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ColorPickerComponent, selector: "[ejs-colorpicker]", inputs: { columns: "columns", createPopupOnClick: "createPopupOnClick", cssClass: "cssClass", disabled: "disabled", enableOpacity: "enableOpacity", enablePersistence: "enablePersistence", enableRtl: "enableRtl", inline: "inline", locale: "locale", mode: "mode", modeSwitcher: "modeSwitcher", noColor: "noColor", presetColors: "presetColors", showButtons: "showButtons", showRecentColors: "showRecentColors", value: "value" }, outputs: { focus: "focus", blur: "blur", beforeClose: "beforeClose", beforeModeSwitch: "beforeModeSwitch", beforeOpen: "beforeOpen", beforeTileRender: "beforeTileRender", change: "change", created: "created", onModeSwitch: "onModeSwitch", open: "open", select: "select", valueChange: "valueChange" }, providers: [
886
+ {
887
+ provide: NG_VALUE_ACCESSOR,
888
+ useExisting: forwardRef(() => ColorPickerComponent_1),
889
+ multi: true
890
+ }
891
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
892
+ ColorPickerComponent = ColorPickerComponent_1 = __decorate([
893
+ ComponentMixins([ComponentBase, FormBase])
894
+ ], ColorPickerComponent);
895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerComponent, decorators: [{
896
+ type: Component,
897
+ args: [{
898
+ selector: '[ejs-colorpicker]',
899
+ inputs: inputs$5,
900
+ outputs: outputs$5,
901
+ template: '',
902
+ changeDetection: ChangeDetectionStrategy.OnPush,
903
+ providers: [
904
+ {
905
+ provide: NG_VALUE_ACCESSOR,
906
+ useExisting: forwardRef(() => ColorPickerComponent),
907
+ multi: true
908
+ }
909
+ ],
910
+ queries: {}
911
+ }]
912
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
913
+
914
+ /**
915
+ * NgModule definition for the ColorPicker component.
916
+ */
917
+ class ColorPickerModule {
918
+ }
919
+ ColorPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
920
+ ColorPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, declarations: [ColorPickerComponent], imports: [CommonModule], exports: [ColorPickerComponent] });
921
+ ColorPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, imports: [[CommonModule]] });
922
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, decorators: [{
923
+ type: NgModule,
924
+ args: [{
925
+ imports: [CommonModule],
926
+ declarations: [
927
+ ColorPickerComponent
928
+ ],
929
+ exports: [
930
+ ColorPickerComponent
931
+ ]
932
+ }]
933
+ }] });
934
+
935
+ /**
936
+ * NgModule definition for the ColorPicker component with providers.
937
+ */
938
+ class ColorPickerAllModule {
939
+ }
940
+ ColorPickerAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
941
+ ColorPickerAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, imports: [CommonModule, ColorPickerModule], exports: [ColorPickerModule] });
942
+ ColorPickerAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, providers: [], imports: [[CommonModule, ColorPickerModule], ColorPickerModule] });
943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, decorators: [{
944
+ type: NgModule,
945
+ args: [{
946
+ imports: [CommonModule, ColorPickerModule],
947
+ exports: [
948
+ ColorPickerModule
949
+ ],
950
+ providers: []
951
+ }]
952
+ }] });
953
+
954
+ var SignatureComponent_1;
955
+ const inputs$4 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
956
+ const outputs$4 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
957
+ const twoWays$4 = [];
958
+ /**
959
+ * Represents the EJ2 Angular Signature Component.
960
+ * ```html
961
+ * <canvas ejs-signature />
962
+ * ```
963
+ */
964
+ let SignatureComponent = SignatureComponent_1 = class SignatureComponent extends Signature {
965
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
966
+ super();
967
+ this.ngEle = ngEle;
968
+ this.srenderer = srenderer;
969
+ this.viewContainerRef = viewContainerRef;
970
+ this.injector = injector;
971
+ this.cdr = cdr;
972
+ this.element = this.ngEle.nativeElement;
973
+ this.injectedModules = this.injectedModules || [];
974
+ this.registerEvents(outputs$4);
975
+ this.addTwoWay.call(this, twoWays$4);
976
+ setValue('currentInstance', this, this.viewContainerRef);
977
+ this.formContext = new FormBase();
978
+ this.formCompContext = new ComponentBase();
979
+ }
980
+ registerOnChange(registerFunction) {
981
+ }
982
+ registerOnTouched(registerFunction) {
983
+ }
984
+ writeValue(value) {
985
+ }
986
+ setDisabledState(disabled) {
987
+ }
988
+ ngOnInit() {
989
+ this.formCompContext.ngOnInit(this);
990
+ }
991
+ ngAfterViewInit() {
992
+ this.formContext.ngAfterViewInit(this);
993
+ }
994
+ ngOnDestroy() {
995
+ this.formCompContext.ngOnDestroy(this);
996
+ }
997
+ ngAfterContentChecked() {
998
+ this.formCompContext.ngAfterContentChecked(this);
999
+ }
1000
+ };
1001
+ SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1002
+ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SignatureComponent, selector: "[ejs-signature]", inputs: { backgroundColor: "backgroundColor", backgroundImage: "backgroundImage", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", isReadOnly: "isReadOnly", locale: "locale", maxStrokeWidth: "maxStrokeWidth", minStrokeWidth: "minStrokeWidth", saveWithBackground: "saveWithBackground", strokeColor: "strokeColor", velocity: "velocity" }, outputs: { focus: "focus", blur: "blur", beforeSave: "beforeSave", change: "change", created: "created" }, providers: [
1003
+ {
1004
+ provide: NG_VALUE_ACCESSOR,
1005
+ useExisting: forwardRef(() => SignatureComponent_1),
1006
+ multi: true
1007
+ }
1008
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1009
+ SignatureComponent = SignatureComponent_1 = __decorate([
1010
+ ComponentMixins([ComponentBase, FormBase])
1011
+ ], SignatureComponent);
1012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureComponent, decorators: [{
1013
+ type: Component,
1014
+ args: [{
1015
+ selector: '[ejs-signature]',
1016
+ inputs: inputs$4,
1017
+ outputs: outputs$4,
1018
+ template: '',
1019
+ changeDetection: ChangeDetectionStrategy.OnPush,
1020
+ providers: [
1021
+ {
1022
+ provide: NG_VALUE_ACCESSOR,
1023
+ useExisting: forwardRef(() => SignatureComponent),
1024
+ multi: true
1025
+ }
1026
+ ],
1027
+ queries: {}
1028
+ }]
1029
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
1030
+
1031
+ /**
1032
+ * NgModule definition for the Signature component.
1033
+ */
1034
+ class SignatureModule {
1035
+ }
1036
+ SignatureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1037
+ SignatureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, declarations: [SignatureComponent], imports: [CommonModule], exports: [SignatureComponent] });
1038
+ SignatureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, imports: [[CommonModule]] });
1039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, decorators: [{
1040
+ type: NgModule,
1041
+ args: [{
1042
+ imports: [CommonModule],
1043
+ declarations: [
1044
+ SignatureComponent
1045
+ ],
1046
+ exports: [
1047
+ SignatureComponent
1048
+ ]
1049
+ }]
1050
+ }] });
1051
+
1052
+ /**
1053
+ * NgModule definition for the Signature component with providers.
1054
+ */
1055
+ class SignatureAllModule {
1056
+ }
1057
+ SignatureAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1058
+ SignatureAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, imports: [CommonModule, SignatureModule], exports: [SignatureModule] });
1059
+ SignatureAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, providers: [], imports: [[CommonModule, SignatureModule], SignatureModule] });
1060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, decorators: [{
1061
+ type: NgModule,
1062
+ args: [{
1063
+ imports: [CommonModule, SignatureModule],
1064
+ exports: [
1065
+ SignatureModule
1066
+ ],
1067
+ providers: []
1068
+ }]
1069
+ }] });
1070
+
1071
+ var RatingComponent_1;
1072
+ const inputs$3 = ['allowReset', 'cssClass', 'disabled', 'emptyTemplate', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSingleSelection', 'fullTemplate', 'itemsCount', 'labelPosition', 'labelTemplate', 'locale', 'min', 'precision', 'readOnly', 'showLabel', 'showTooltip', 'tooltipTemplate', 'value', 'visible'];
1073
+ const outputs$3 = ['focus', 'blur', 'beforeItemRender', 'created', 'onItemHover', 'valueChanged', 'valueChange'];
1074
+ const twoWays$3 = ['value'];
1075
+ /**
1076
+ * Represents the EJ2 Angular Rating Component.
1077
+ * ```html
1078
+ * <input ejs-rating [value]='value' />
1079
+ * ```
1080
+ */
1081
+ let RatingComponent = RatingComponent_1 = class RatingComponent extends Rating {
1082
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1083
+ super();
1084
+ this.ngEle = ngEle;
1085
+ this.srenderer = srenderer;
1086
+ this.viewContainerRef = viewContainerRef;
1087
+ this.injector = injector;
1088
+ this.cdr = cdr;
1089
+ this.element = this.ngEle.nativeElement;
1090
+ this.injectedModules = this.injectedModules || [];
1091
+ this.registerEvents(outputs$3);
1092
+ this.addTwoWay.call(this, twoWays$3);
1093
+ setValue('currentInstance', this, this.viewContainerRef);
1094
+ this.formContext = new FormBase();
1095
+ this.formCompContext = new ComponentBase();
1096
+ }
1097
+ registerOnChange(registerFunction) {
1098
+ }
1099
+ registerOnTouched(registerFunction) {
1100
+ }
1101
+ writeValue(value) {
1102
+ }
1103
+ setDisabledState(disabled) {
1104
+ }
1105
+ ngOnInit() {
1106
+ this.formCompContext.ngOnInit(this);
1107
+ }
1108
+ ngAfterViewInit() {
1109
+ this.formContext.ngAfterViewInit(this);
1110
+ }
1111
+ ngOnDestroy() {
1112
+ this.formCompContext.ngOnDestroy(this);
1113
+ }
1114
+ ngAfterContentChecked() {
1115
+ this.formCompContext.ngAfterContentChecked(this);
1116
+ }
1117
+ };
1118
+ RatingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1119
+ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: RatingComponent, selector: "[ejs-rating]", inputs: { allowReset: "allowReset", cssClass: "cssClass", disabled: "disabled", emptyTemplate: "emptyTemplate", enableAnimation: "enableAnimation", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSingleSelection: "enableSingleSelection", fullTemplate: "fullTemplate", itemsCount: "itemsCount", labelPosition: "labelPosition", labelTemplate: "labelTemplate", locale: "locale", min: "min", precision: "precision", readOnly: "readOnly", showLabel: "showLabel", showTooltip: "showTooltip", tooltipTemplate: "tooltipTemplate", value: "value", visible: "visible" }, outputs: { focus: "focus", blur: "blur", beforeItemRender: "beforeItemRender", created: "created", onItemHover: "onItemHover", valueChanged: "valueChanged", valueChange: "valueChange" }, providers: [
1120
+ {
1121
+ provide: NG_VALUE_ACCESSOR,
1122
+ useExisting: forwardRef(() => RatingComponent_1),
1123
+ multi: true
1124
+ }
1125
+ ], queries: [{ propertyName: "fullTemplate", first: true, predicate: ["fullTemplate"], descendants: true }, { propertyName: "emptyTemplate", first: true, predicate: ["emptyTemplate"], descendants: true }, { propertyName: "tooltipTemplate", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "labelTemplate", first: true, predicate: ["labelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1126
+ __decorate([
1127
+ Template()
1128
+ ], RatingComponent.prototype, "fullTemplate", void 0);
1129
+ __decorate([
1130
+ Template()
1131
+ ], RatingComponent.prototype, "emptyTemplate", void 0);
1132
+ __decorate([
1133
+ Template()
1134
+ ], RatingComponent.prototype, "tooltipTemplate", void 0);
1135
+ __decorate([
1136
+ Template()
1137
+ ], RatingComponent.prototype, "labelTemplate", void 0);
1138
+ RatingComponent = RatingComponent_1 = __decorate([
1139
+ ComponentMixins([ComponentBase, FormBase])
1140
+ ], RatingComponent);
1141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingComponent, decorators: [{
1142
+ type: Component,
1143
+ args: [{
1144
+ selector: '[ejs-rating]',
1145
+ inputs: inputs$3,
1146
+ outputs: outputs$3,
1147
+ template: '',
1148
+ changeDetection: ChangeDetectionStrategy.OnPush,
1149
+ providers: [
1150
+ {
1151
+ provide: NG_VALUE_ACCESSOR,
1152
+ useExisting: forwardRef(() => RatingComponent),
1153
+ multi: true
1154
+ }
1155
+ ],
1156
+ queries: {}
1157
+ }]
1158
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { fullTemplate: [{
1159
+ type: ContentChild,
1160
+ args: ['fullTemplate']
1161
+ }], emptyTemplate: [{
1162
+ type: ContentChild,
1163
+ args: ['emptyTemplate']
1164
+ }], tooltipTemplate: [{
1165
+ type: ContentChild,
1166
+ args: ['tooltipTemplate']
1167
+ }], labelTemplate: [{
1168
+ type: ContentChild,
1169
+ args: ['labelTemplate']
1170
+ }] } });
1171
+
1172
+ /**
1173
+ * NgModule definition for the Rating component.
1174
+ */
1175
+ class RatingModule {
1176
+ }
1177
+ RatingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1178
+ RatingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, declarations: [RatingComponent], imports: [CommonModule], exports: [RatingComponent] });
1179
+ RatingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, imports: [[CommonModule]] });
1180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, decorators: [{
1181
+ type: NgModule,
1182
+ args: [{
1183
+ imports: [CommonModule],
1184
+ declarations: [
1185
+ RatingComponent
1186
+ ],
1187
+ exports: [
1188
+ RatingComponent
1189
+ ]
1190
+ }]
1191
+ }] });
1192
+
1193
+ /**
1194
+ * NgModule definition for the Rating component with providers.
1195
+ */
1196
+ class RatingAllModule {
1197
+ }
1198
+ RatingAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1199
+ RatingAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, imports: [CommonModule, RatingModule], exports: [RatingModule] });
1200
+ RatingAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, providers: [], imports: [[CommonModule, RatingModule], RatingModule] });
1201
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, decorators: [{
1202
+ type: NgModule,
1203
+ args: [{
1204
+ imports: [CommonModule, RatingModule],
1205
+ exports: [
1206
+ RatingModule
1207
+ ],
1208
+ providers: []
1209
+ }]
1210
+ }] });
1211
+
1212
+ var OtpInputComponent_1;
1213
+ const inputs$2 = ['ariaLabels', 'autoFocus', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'length', 'locale', 'placeholder', 'separator', 'stylingMode', 'textTransform', 'type', 'value'];
1214
+ const outputs$2 = ['blur', 'created', 'focus', 'input', 'valueChanged', 'valueChange'];
1215
+ const twoWays$2 = ['value'];
1216
+ /**
1217
+ * Represents the EJ2 Angular OtpInput Component.
1218
+ * ```html
1219
+ * <div ejs-otpinput [value]='value'></div>
1220
+ * ```
1221
+ */
1222
+ let OtpInputComponent = OtpInputComponent_1 = class OtpInputComponent extends OtpInput {
1223
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1224
+ super();
1225
+ this.ngEle = ngEle;
1226
+ this.srenderer = srenderer;
1227
+ this.viewContainerRef = viewContainerRef;
1228
+ this.injector = injector;
1229
+ this.cdr = cdr;
1230
+ this.skipFromEvent = true;
1231
+ this.element = this.ngEle.nativeElement;
1232
+ this.injectedModules = this.injectedModules || [];
1233
+ this.registerEvents(outputs$2);
1234
+ this.addTwoWay.call(this, twoWays$2);
1235
+ setValue('currentInstance', this, this.viewContainerRef);
1236
+ this.formContext = new FormBase();
1237
+ this.formCompContext = new ComponentBase();
1238
+ }
1239
+ registerOnChange(registerFunction) {
1240
+ }
1241
+ registerOnTouched(registerFunction) {
1242
+ }
1243
+ writeValue(value) {
1244
+ }
1245
+ setDisabledState(disabled) {
1246
+ }
1247
+ ngOnInit() {
1248
+ this.formCompContext.ngOnInit(this);
1249
+ }
1250
+ ngAfterViewInit() {
1251
+ this.formContext.ngAfterViewInit(this);
1252
+ }
1253
+ ngOnDestroy() {
1254
+ this.formCompContext.ngOnDestroy(this);
1255
+ }
1256
+ ngAfterContentChecked() {
1257
+ this.formCompContext.ngAfterContentChecked(this);
1258
+ }
1259
+ };
1260
+ OtpInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1261
+ OtpInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: OtpInputComponent, selector: "[ejs-otpinput]", inputs: { ariaLabels: "ariaLabels", autoFocus: "autoFocus", cssClass: "cssClass", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", htmlAttributes: "htmlAttributes", length: "length", locale: "locale", placeholder: "placeholder", separator: "separator", stylingMode: "stylingMode", textTransform: "textTransform", type: "type", value: "value" }, outputs: { blur: "blur", created: "created", focus: "focus", input: "input", valueChanged: "valueChanged", valueChange: "valueChange" }, providers: [
1262
+ {
1263
+ provide: NG_VALUE_ACCESSOR,
1264
+ useExisting: forwardRef(() => OtpInputComponent_1),
1265
+ multi: true
1266
+ }
1267
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1268
+ OtpInputComponent = OtpInputComponent_1 = __decorate([
1269
+ ComponentMixins([ComponentBase, FormBase])
1270
+ ], OtpInputComponent);
1271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputComponent, decorators: [{
1272
+ type: Component,
1273
+ args: [{
1274
+ selector: '[ejs-otpinput]',
1275
+ inputs: inputs$2,
1276
+ outputs: outputs$2,
1277
+ template: '',
1278
+ changeDetection: ChangeDetectionStrategy.OnPush,
1279
+ providers: [
1280
+ {
1281
+ provide: NG_VALUE_ACCESSOR,
1282
+ useExisting: forwardRef(() => OtpInputComponent),
1283
+ multi: true
1284
+ }
1285
+ ],
1286
+ queries: {}
1287
+ }]
1288
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
1289
+
1290
+ /**
1291
+ * NgModule definition for the OtpInput component.
1292
+ */
1293
+ class OtpInputModule {
1294
+ }
1295
+ OtpInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1296
+ OtpInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, declarations: [OtpInputComponent], imports: [CommonModule], exports: [OtpInputComponent] });
1297
+ OtpInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, imports: [[CommonModule]] });
1298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, decorators: [{
1299
+ type: NgModule,
1300
+ args: [{
1301
+ imports: [CommonModule],
1302
+ declarations: [
1303
+ OtpInputComponent
1304
+ ],
1305
+ exports: [
1306
+ OtpInputComponent
1307
+ ]
1308
+ }]
1309
+ }] });
1310
+
1311
+ /**
1312
+ * NgModule definition for the OtpInput component with providers.
1313
+ */
1314
+ class OtpInputAllModule {
1315
+ }
1316
+ OtpInputAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1317
+ OtpInputAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, imports: [CommonModule, OtpInputModule], exports: [OtpInputModule] });
1318
+ OtpInputAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, providers: [], imports: [[CommonModule, OtpInputModule], OtpInputModule] });
1319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, decorators: [{
1320
+ type: NgModule,
1321
+ args: [{
1322
+ imports: [CommonModule, OtpInputModule],
1323
+ exports: [
1324
+ OtpInputModule
1325
+ ],
1326
+ providers: []
1327
+ }]
1328
+ }] });
1329
+
1330
+ var SmartTextAreaComponent_1;
1331
+ const inputs$1 = ['UserPhrases', 'adornmentFlow', 'adornmentOrientation', 'aiSuggestionHandler', 'appendTemplate', 'cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'prependTemplate', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'showSuggestionOnPopup', 'userRole', 'value', 'width'];
1332
+ const outputs$1 = ['afterSuggestionInsert', 'beforeSuggestionInsert', 'blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
1333
+ const twoWays$1 = ['value'];
1334
+ /**
1335
+ * Represents the Angular Smart TextArea Component.
1336
+ * ```html
1337
+ * <ejs-smarttextarea></ejs-smarttextarea>
1338
+ * ```
1339
+ */
1340
+ let SmartTextAreaComponent = SmartTextAreaComponent_1 = class SmartTextAreaComponent extends SmartTextArea {
1341
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1342
+ super();
1343
+ this.ngEle = ngEle;
1344
+ this.srenderer = srenderer;
1345
+ this.viewContainerRef = viewContainerRef;
1346
+ this.injector = injector;
1347
+ this.cdr = cdr;
1348
+ this.skipFromEvent = true;
1349
+ this.element = this.ngEle.nativeElement;
1350
+ this.injectedModules = this.injectedModules || [];
1351
+ this.registerEvents(outputs$1);
1352
+ this.addTwoWay.call(this, twoWays$1);
1353
+ setValue('currentInstance', this, this.viewContainerRef);
1354
+ this.formContext = new FormBase();
1355
+ this.formCompContext = new ComponentBase();
1356
+ }
1357
+ registerOnChange(registerFunction) {
1358
+ }
1359
+ registerOnTouched(registerFunction) {
1360
+ }
1361
+ writeValue(value) {
1362
+ }
1363
+ setDisabledState(disabled) {
1364
+ }
1365
+ ngOnInit() {
1366
+ this.formCompContext.ngOnInit(this);
1367
+ }
1368
+ ngAfterViewInit() {
1369
+ this.formContext.ngAfterViewInit(this);
1370
+ }
1371
+ ngOnDestroy() {
1372
+ this.formCompContext.ngOnDestroy(this);
1373
+ }
1374
+ ngAfterContentChecked() {
1375
+ this.formCompContext.ngAfterContentChecked(this);
1376
+ }
1377
+ };
1378
+ SmartTextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1379
+ SmartTextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SmartTextAreaComponent, selector: "ejs-smarttextarea", inputs: { UserPhrases: "UserPhrases", adornmentFlow: "adornmentFlow", adornmentOrientation: "adornmentOrientation", aiSuggestionHandler: "aiSuggestionHandler", appendTemplate: "appendTemplate", cols: "cols", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", maxLength: "maxLength", placeholder: "placeholder", prependTemplate: "prependTemplate", readonly: "readonly", resizeMode: "resizeMode", rows: "rows", showClearButton: "showClearButton", showSuggestionOnPopup: "showSuggestionOnPopup", userRole: "userRole", value: "value", width: "width" }, outputs: { afterSuggestionInsert: "afterSuggestionInsert", beforeSuggestionInsert: "beforeSuggestionInsert", blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
1380
+ {
1381
+ provide: NG_VALUE_ACCESSOR,
1382
+ useExisting: forwardRef(() => SmartTextAreaComponent_1),
1383
+ multi: true
1384
+ }
1385
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1386
+ SmartTextAreaComponent = SmartTextAreaComponent_1 = __decorate([
1387
+ ComponentMixins([ComponentBase, FormBase])
1388
+ ], SmartTextAreaComponent);
1389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaComponent, decorators: [{
1390
+ type: Component,
1391
+ args: [{
1392
+ selector: 'ejs-smarttextarea',
1393
+ inputs: inputs$1,
1394
+ outputs: outputs$1,
1395
+ template: '',
1396
+ changeDetection: ChangeDetectionStrategy.OnPush,
1397
+ providers: [
1398
+ {
1399
+ provide: NG_VALUE_ACCESSOR,
1400
+ useExisting: forwardRef(() => SmartTextAreaComponent),
1401
+ multi: true
1402
+ }
1403
+ ],
1404
+ queries: {}
1405
+ }]
1406
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
1407
+
1408
+ /**
1409
+ * NgModule definition for the SmartTextArea component.
1410
+ */
1411
+ class SmartTextAreaModule {
1412
+ }
1413
+ SmartTextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1414
+ SmartTextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, declarations: [SmartTextAreaComponent], imports: [CommonModule], exports: [SmartTextAreaComponent] });
1415
+ SmartTextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, imports: [[CommonModule]] });
1416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, decorators: [{
1417
+ type: NgModule,
1418
+ args: [{
1419
+ imports: [CommonModule],
1420
+ declarations: [
1421
+ SmartTextAreaComponent
1422
+ ],
1423
+ exports: [
1424
+ SmartTextAreaComponent
1425
+ ]
1426
+ }]
1427
+ }] });
1428
+
1429
+ /**
1430
+ * NgModule definition for the SmartTextArea component with providers.
1431
+ */
1432
+ class SmartTextAreaAllModule {
1433
+ }
1434
+ SmartTextAreaAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1435
+ SmartTextAreaAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, imports: [CommonModule, SmartTextAreaModule], exports: [SmartTextAreaModule] });
1436
+ SmartTextAreaAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, providers: [], imports: [[CommonModule, SmartTextAreaModule], SmartTextAreaModule] });
1437
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, decorators: [{
1438
+ type: NgModule,
1439
+ args: [{
1440
+ imports: [CommonModule, SmartTextAreaModule],
1441
+ exports: [
1442
+ SmartTextAreaModule
1443
+ ],
1444
+ providers: []
1445
+ }]
1446
+ }] });
1447
+
1448
+ const inputs = ['allowInterimResults', 'buttonSettings', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'lang', 'listeningState', 'locale', 'showTooltip', 'tooltipSettings', 'transcript'];
1449
+ const outputs = ['created', 'onError', 'onStart', 'onStop', 'transcriptChanged', 'transcriptChange'];
1450
+ const twoWays = ['transcript'];
1451
+ /**
1452
+ * Represents the EJ2 Angular SpeechToText Component.
1453
+ * ```html
1454
+ * <button ejs-speechtotext ></button>
1455
+ * ```
1456
+ */
1457
+ let SpeechToTextComponent = class SpeechToTextComponent extends SpeechToText {
1458
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
1459
+ super();
1460
+ this.ngEle = ngEle;
1461
+ this.srenderer = srenderer;
1462
+ this.viewContainerRef = viewContainerRef;
1463
+ this.injector = injector;
1464
+ this.element = this.ngEle.nativeElement;
1465
+ this.injectedModules = this.injectedModules || [];
1466
+ this.registerEvents(outputs);
1467
+ this.addTwoWay.call(this, twoWays);
1468
+ setValue('currentInstance', this, this.viewContainerRef);
1469
+ this.containerContext = new ComponentBase();
1470
+ }
1471
+ ngOnInit() {
1472
+ this.containerContext.ngOnInit(this);
1473
+ }
1474
+ ngAfterViewInit() {
1475
+ this.containerContext.ngAfterViewInit(this);
1476
+ }
1477
+ ngOnDestroy() {
1478
+ this.containerContext.ngOnDestroy(this);
1479
+ }
1480
+ ngAfterContentChecked() {
1481
+ this.containerContext.ngAfterContentChecked(this);
1482
+ }
1483
+ };
1484
+ SpeechToTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
1485
+ SpeechToTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SpeechToTextComponent, selector: "[ejs-speechtotext]", inputs: { allowInterimResults: "allowInterimResults", buttonSettings: "buttonSettings", cssClass: "cssClass", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", htmlAttributes: "htmlAttributes", lang: "lang", listeningState: "listeningState", locale: "locale", showTooltip: "showTooltip", tooltipSettings: "tooltipSettings", transcript: "transcript" }, outputs: { created: "created", onError: "onError", onStart: "onStart", onStop: "onStop", transcriptChanged: "transcriptChanged", transcriptChange: "transcriptChange" }, usesInheritance: true, ngImport: i0, template: `<ng-content ></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1486
+ SpeechToTextComponent = __decorate([
1487
+ ComponentMixins([ComponentBase])
1488
+ ], SpeechToTextComponent);
1489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextComponent, decorators: [{
1490
+ type: Component,
1491
+ args: [{
1492
+ selector: '[ejs-speechtotext]',
1493
+ inputs: inputs,
1494
+ outputs: outputs,
1495
+ template: `<ng-content ></ng-content>`,
1496
+ changeDetection: ChangeDetectionStrategy.OnPush,
1497
+ queries: {}
1498
+ }]
1499
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
1500
+
1501
+ /**
1502
+ * NgModule definition for the SpeechToText component.
1503
+ */
1504
+ class SpeechToTextModule {
1505
+ }
1506
+ SpeechToTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1507
+ SpeechToTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, declarations: [SpeechToTextComponent], imports: [CommonModule], exports: [SpeechToTextComponent] });
1508
+ SpeechToTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, imports: [[CommonModule]] });
1509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, decorators: [{
1510
+ type: NgModule,
1511
+ args: [{
1512
+ imports: [CommonModule],
1513
+ declarations: [
1514
+ SpeechToTextComponent
1515
+ ],
1516
+ exports: [
1517
+ SpeechToTextComponent
1518
+ ]
1519
+ }]
1520
+ }] });
1521
+
1522
+ /**
1523
+ * NgModule definition for the SpeechToText component with providers.
1524
+ */
1525
+ class SpeechToTextAllModule {
1526
+ }
1527
+ SpeechToTextAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1528
+ SpeechToTextAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, imports: [CommonModule, SpeechToTextModule], exports: [SpeechToTextModule] });
1529
+ SpeechToTextAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, providers: [], imports: [[CommonModule, SpeechToTextModule], SpeechToTextModule] });
1530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, decorators: [{
1531
+ type: NgModule,
1532
+ args: [{
1533
+ imports: [CommonModule, SpeechToTextModule],
1534
+ exports: [
1535
+ SpeechToTextModule
1536
+ ],
1537
+ providers: []
1538
+ }]
1539
+ }] });
1540
+
1541
+ class FormValidators {
1542
+ //max validation
1543
+ static max(number) {
1544
+ let max = number;
1545
+ return (control) => {
1546
+ //tslint:disable-next-line
1547
+ let result = FormValidator.checkValidator.max({ value: control.value, param: max });
1548
+ if (result === true) {
1549
+ return null;
1550
+ }
1551
+ else {
1552
+ return { 'max': true };
1553
+ }
1554
+ };
1555
+ }
1556
+ // min validation
1557
+ static min(number) {
1558
+ let min = number;
1559
+ return (control) => {
1560
+ //tslint:disable-next-line
1561
+ let result = FormValidator.checkValidator.min({ value: control.value, param: min });
1562
+ if (result === true) {
1563
+ return null;
1564
+ }
1565
+ else {
1566
+ return { 'min': true };
1567
+ }
1568
+ };
1569
+ }
1570
+ // Credit card validation
1571
+ static creditcard(control) {
1572
+ //tslint:disable-next-line
1573
+ let result = FormValidator.checkValidator.creditcard({ value: control.value });
1574
+ if (result === true) {
1575
+ return null;
1576
+ }
1577
+ else {
1578
+ return { 'cardno': true };
1579
+ }
1580
+ }
1581
+ // date validation
1582
+ static date(control) {
1583
+ //tslint:disable-next-line
1584
+ let result = FormValidator.checkValidator.date({ value: control.value });
1585
+ if (result === true) {
1586
+ return null;
1587
+ }
1588
+ else {
1589
+ return { 'date': true };
1590
+ }
1591
+ }
1592
+ // Date-ISO validation
1593
+ static dateIso(control) {
1594
+ //tslint:disable-next-line
1595
+ let result = FormValidator.checkValidator.dateIso({ value: control.value });
1596
+ if (result === true) {
1597
+ return null;
1598
+ }
1599
+ else {
1600
+ return { 'dateiso': true };
1601
+ }
1602
+ }
1603
+ // Digit validation
1604
+ static digits(control) {
1605
+ //tslint:disable-next-line
1606
+ let result = FormValidator.checkValidator.digits({ value: control.value });
1607
+ if (result === true) {
1608
+ return null;
1609
+ }
1610
+ else {
1611
+ return { 'digit': true };
1612
+ }
1613
+ }
1614
+ // Email validation
1615
+ static email(control) {
1616
+ //tslint:disable-next-line
1617
+ let result = FormValidator.checkValidator.email({ value: control.value });
1618
+ if (result === true) {
1619
+ return null;
1620
+ }
1621
+ else {
1622
+ return { 'email': true };
1623
+ }
1624
+ }
1625
+ //maxlength validation
1626
+ static maxLength(number) {
1627
+ let maxlength = number;
1628
+ return (control) => {
1629
+ //tslint:disable-next-line
1630
+ let result = FormValidator.checkValidator.maxLength({ value: control.value, param: maxlength });
1631
+ if (result === true) {
1632
+ return null;
1633
+ }
1634
+ else {
1635
+ return { 'maxlength': true };
1636
+ }
1637
+ };
1638
+ }
1639
+ //minlength validation
1640
+ static minLength(number) {
1641
+ let minlength = number;
1642
+ return (control) => {
1643
+ //tslint:disable-next-line
1644
+ let result = FormValidator.checkValidator.minLength({ value: control.value, param: minlength });
1645
+ if (result === true) {
1646
+ return null;
1647
+ }
1648
+ else {
1649
+ return { 'minlength': true };
1650
+ }
1651
+ };
1652
+ }
1653
+ //number validation
1654
+ static number(control) {
1655
+ //tslint:disable-next-line
1656
+ let result = FormValidator.checkValidator.number({ value: control.value });
1657
+ if (result === true) {
1658
+ return null;
1659
+ }
1660
+ else {
1661
+ return { 'number': true };
1662
+ }
1663
+ }
1664
+ // required validation
1665
+ static required(control) {
1666
+ //tslint:disable-next-line
1667
+ let result = (control.value === null) ? false : FormValidator.checkValidator.required({ value: control.value });
1668
+ if (result === true) {
1669
+ return null;
1670
+ }
1671
+ else {
1672
+ return { 'required': true };
1673
+ }
1674
+ }
1675
+ // Telephone number validation
1676
+ static tel(control) {
1677
+ //tslint:disable-next-line
1678
+ let result = FormValidator.checkValidator.tel({ value: control.value });
1679
+ if (result === true) {
1680
+ return null;
1681
+ }
1682
+ else {
1683
+ return { 'telno': true };
1684
+ }
1685
+ }
1686
+ // Url validation
1687
+ static url(control) {
1688
+ //tslint:disable-next-line
1689
+ let result = FormValidator.checkValidator.url({ value: control.value });
1690
+ if (result === true) {
1691
+ return null;
1692
+ }
1693
+ else {
1694
+ return { 'url': true };
1695
+ }
1696
+ }
1697
+ // RangeLength validation
1698
+ static rangeLength(number1, number2) {
1699
+ let minRL = number1;
1700
+ let maxRL = number2;
1701
+ //tslint:disable-next-line
1702
+ let param = [minRL, maxRL];
1703
+ return (control) => {
1704
+ //tslint:disable-next-line
1705
+ let result = FormValidator.checkValidator.rangeLength({ value: control.value, param: param });
1706
+ if (result === true) {
1707
+ return null;
1708
+ }
1709
+ else {
1710
+ return { 'rangelength': true };
1711
+ }
1712
+ };
1713
+ }
1714
+ // Range validation
1715
+ static range(number1, number2) {
1716
+ let minR = number1;
1717
+ let maxR = number2;
1718
+ //tslint:disable-next-line
1719
+ let param1 = [minR, maxR];
1720
+ return (control) => {
1721
+ //tslint:disable-next-line
1722
+ let result = FormValidator.checkValidator.range({ value: control.value, param: param1 });
1723
+ if (result === true) {
1724
+ return null;
1725
+ }
1726
+ else {
1727
+ return { 'range': true };
1728
+ }
1729
+ };
1730
+ }
1731
+ }
1732
+
1733
+ /**
1734
+ * Generated bundle index. Do not edit.
1735
+ */
1736
+
1737
+ export { ColorPickerAllModule, ColorPickerComponent, ColorPickerModule, FilesDirective, FormValidators, MaskedTextBoxAllModule, MaskedTextBoxComponent, MaskedTextBoxModule, NumericTextBoxAllModule, NumericTextBoxComponent, NumericTextBoxModule, OtpInputAllModule, OtpInputComponent, OtpInputModule, RatingAllModule, RatingComponent, RatingModule, SignatureAllModule, SignatureComponent, SignatureModule, SliderAllModule, SliderComponent, SliderModule, SmartTextAreaAllModule, SmartTextAreaComponent, SmartTextAreaModule, SpeechToTextAllModule, SpeechToTextComponent, SpeechToTextModule, TextAreaAllModule, TextAreaComponent, TextAreaModule, TextBoxAllModule, TextBoxComponent, TextBoxModule, UploadedFilesDirective, UploaderAllModule, UploaderComponent, UploaderModule };
1738
+ //# sourceMappingURL=syncfusion-ej2-angular-inputs.mjs.map