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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (436) hide show
  1. package/CHANGELOG.md +1584 -0
  2. package/README.md +11 -3
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  5. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  6. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  7. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  8. package/esm2020/src/index.mjs +40 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  10. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +98 -0
  11. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  12. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  13. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +98 -0
  14. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  15. package/esm2020/src/otp-input/otpinput-all.module.mjs +23 -0
  16. package/esm2020/src/otp-input/otpinput.component.mjs +85 -0
  17. package/esm2020/src/otp-input/otpinput.module.mjs +25 -0
  18. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  19. package/esm2020/src/rating/rating.component.mjs +109 -0
  20. package/esm2020/src/rating/rating.module.mjs +25 -0
  21. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  22. package/esm2020/src/signature/signature.component.mjs +84 -0
  23. package/esm2020/src/signature/signature.module.mjs +25 -0
  24. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  25. package/esm2020/src/slider/slider.component.mjs +84 -0
  26. package/esm2020/src/slider/slider.module.mjs +25 -0
  27. package/esm2020/src/smart-textarea/smarttextarea-all.module.mjs +23 -0
  28. package/esm2020/src/smart-textarea/smarttextarea.component.mjs +85 -0
  29. package/esm2020/src/smart-textarea/smarttextarea.module.mjs +25 -0
  30. package/esm2020/src/speech-to-text/speechtotext-all.module.mjs +23 -0
  31. package/esm2020/src/speech-to-text/speechtotext.component.mjs +59 -0
  32. package/esm2020/src/speech-to-text/speechtotext.module.mjs +25 -0
  33. package/esm2020/src/textarea/textarea-all.module.mjs +23 -0
  34. package/esm2020/src/textarea/textarea.component.mjs +98 -0
  35. package/esm2020/src/textarea/textarea.module.mjs +25 -0
  36. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  37. package/esm2020/src/textbox/textbox.component.mjs +98 -0
  38. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  39. package/esm2020/src/uploader/files.directive.mjs +58 -0
  40. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  41. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  42. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  43. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  44. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1738 -0
  45. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  46. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1738 -0
  47. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  48. package/package.json +28 -46
  49. package/public_api.d.ts +1 -1
  50. package/src/color-picker/colorpicker-all.module.d.ts +11 -5
  51. package/src/color-picker/colorpicker.component.d.ts +48 -45
  52. package/src/color-picker/colorpicker.module.d.ts +11 -5
  53. package/src/form-validator/form-validator.d.ts +36 -36
  54. package/src/index.d.ts +39 -39
  55. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +11 -5
  56. package/src/maskedtextbox/maskedtextbox.component.d.ts +63 -40
  57. package/src/maskedtextbox/maskedtextbox.module.d.ts +11 -5
  58. package/src/numerictextbox/numerictextbox-all.module.d.ts +11 -5
  59. package/src/numerictextbox/numerictextbox.component.d.ts +63 -40
  60. package/src/numerictextbox/numerictextbox.module.d.ts +11 -5
  61. package/src/otp-input/otpinput-all.module.d.ts +11 -5
  62. package/src/otp-input/otpinput.component.d.ts +43 -40
  63. package/src/otp-input/otpinput.module.d.ts +11 -5
  64. package/src/rating/rating-all.module.d.ts +11 -5
  65. package/src/rating/rating.component.d.ts +89 -86
  66. package/src/rating/rating.module.d.ts +11 -5
  67. package/src/signature/signature-all.module.d.ts +11 -5
  68. package/src/signature/signature.component.d.ts +41 -38
  69. package/src/signature/signature.module.d.ts +11 -5
  70. package/src/slider/slider-all.module.d.ts +11 -5
  71. package/src/slider/slider.component.d.ts +45 -42
  72. package/src/slider/slider.module.d.ts +11 -5
  73. package/src/smart-textarea/smarttextarea-all.module.d.ts +11 -5
  74. package/src/smart-textarea/smarttextarea.component.d.ts +46 -41
  75. package/src/smart-textarea/smarttextarea.module.d.ts +11 -5
  76. package/src/speech-to-text/speechtotext-all.module.d.ts +11 -5
  77. package/src/speech-to-text/speechtotext.component.d.ts +36 -33
  78. package/src/speech-to-text/speechtotext.module.d.ts +11 -5
  79. package/src/textarea/textarea-all.module.d.ts +11 -5
  80. package/src/textarea/textarea.component.d.ts +66 -41
  81. package/src/textarea/textarea.module.d.ts +11 -5
  82. package/src/textbox/textbox-all.module.d.ts +11 -5
  83. package/src/textbox/textbox.component.d.ts +64 -41
  84. package/src/textbox/textbox.module.d.ts +11 -5
  85. package/src/uploader/files.directive.d.ts +46 -41
  86. package/src/uploader/uploader-all.module.d.ts +11 -5
  87. package/src/uploader/uploader.component.d.ts +69 -66
  88. package/src/uploader/uploader.module.d.ts +12 -5
  89. package/styles/bds-lite.scss +1 -1
  90. package/styles/bds.scss +14 -14
  91. package/styles/bootstrap-dark-lite.scss +1 -1
  92. package/styles/bootstrap-dark.scss +14 -14
  93. package/styles/bootstrap-lite.scss +1 -1
  94. package/styles/bootstrap.scss +14 -14
  95. package/styles/bootstrap4-lite.scss +1 -1
  96. package/styles/bootstrap4.scss +14 -14
  97. package/styles/bootstrap5-dark-lite.scss +1 -1
  98. package/styles/bootstrap5-dark.scss +14 -14
  99. package/styles/bootstrap5-lite.scss +1 -1
  100. package/styles/bootstrap5.3-lite.scss +1 -1
  101. package/styles/bootstrap5.3.scss +14 -14
  102. package/styles/bootstrap5.scss +14 -14
  103. package/styles/color-picker/bds.scss +1 -1
  104. package/styles/color-picker/bootstrap-dark.scss +1 -1
  105. package/styles/color-picker/bootstrap.scss +1 -1
  106. package/styles/color-picker/bootstrap4.scss +1 -1
  107. package/styles/color-picker/bootstrap5-dark.scss +1 -1
  108. package/styles/color-picker/bootstrap5.3.scss +1 -1
  109. package/styles/color-picker/bootstrap5.scss +1 -1
  110. package/styles/color-picker/fabric-dark.scss +1 -1
  111. package/styles/color-picker/fabric.scss +1 -1
  112. package/styles/color-picker/fluent-dark.scss +1 -1
  113. package/styles/color-picker/fluent.scss +1 -1
  114. package/styles/color-picker/fluent2.scss +1 -1
  115. package/styles/color-picker/highcontrast-light.scss +1 -1
  116. package/styles/color-picker/highcontrast.scss +1 -1
  117. package/styles/color-picker/material-dark.scss +1 -1
  118. package/styles/color-picker/material.scss +1 -1
  119. package/styles/color-picker/material3-dark.scss +1 -2
  120. package/styles/color-picker/material3.scss +1 -2
  121. package/styles/color-picker/tailwind-dark.scss +1 -1
  122. package/styles/color-picker/tailwind.scss +1 -1
  123. package/styles/color-picker/tailwind3.scss +1 -1
  124. package/styles/data-form/bds.scss +1 -1
  125. package/styles/data-form/bootstrap-dark.scss +1 -1
  126. package/styles/data-form/bootstrap.scss +1 -1
  127. package/styles/data-form/bootstrap4.scss +1 -1
  128. package/styles/data-form/bootstrap5-dark.scss +1 -1
  129. package/styles/data-form/bootstrap5.3.scss +1 -1
  130. package/styles/data-form/bootstrap5.scss +1 -1
  131. package/styles/data-form/fabric-dark.scss +1 -1
  132. package/styles/data-form/fabric.scss +1 -1
  133. package/styles/data-form/fluent-dark.scss +1 -1
  134. package/styles/data-form/fluent.scss +1 -1
  135. package/styles/data-form/fluent2.scss +1 -1
  136. package/styles/data-form/highcontrast-light.scss +1 -1
  137. package/styles/data-form/highcontrast.scss +1 -1
  138. package/styles/data-form/material-dark.scss +1 -1
  139. package/styles/data-form/material.scss +1 -1
  140. package/styles/data-form/material3-dark.scss +1 -2
  141. package/styles/data-form/material3.scss +1 -2
  142. package/styles/data-form/tailwind-dark.scss +1 -1
  143. package/styles/data-form/tailwind.scss +1 -1
  144. package/styles/data-form/tailwind3.scss +1 -1
  145. package/styles/fabric-dark-lite.scss +1 -1
  146. package/styles/fabric-dark.scss +14 -14
  147. package/styles/fabric-lite.scss +1 -1
  148. package/styles/fabric.scss +14 -14
  149. package/styles/fluent-dark-lite.scss +1 -1
  150. package/styles/fluent-dark.scss +14 -14
  151. package/styles/fluent-lite.scss +1 -1
  152. package/styles/fluent.scss +14 -14
  153. package/styles/fluent2-lite.scss +1 -1
  154. package/styles/fluent2.scss +14 -14
  155. package/styles/highcontrast-light-lite.scss +1 -1
  156. package/styles/highcontrast-light.scss +14 -14
  157. package/styles/highcontrast-lite.scss +1 -1
  158. package/styles/highcontrast.scss +14 -14
  159. package/styles/input/bds.scss +1 -1
  160. package/styles/input/bootstrap-dark.scss +1 -1
  161. package/styles/input/bootstrap.scss +1 -1
  162. package/styles/input/bootstrap4.scss +1 -1
  163. package/styles/input/bootstrap5-dark.scss +1 -1
  164. package/styles/input/bootstrap5.3.scss +1 -1
  165. package/styles/input/bootstrap5.scss +1 -1
  166. package/styles/input/fabric-dark.scss +1 -1
  167. package/styles/input/fabric.scss +1 -1
  168. package/styles/input/fluent-dark.scss +1 -1
  169. package/styles/input/fluent.scss +1 -1
  170. package/styles/input/fluent2.scss +1 -1
  171. package/styles/input/highcontrast-light.scss +1 -1
  172. package/styles/input/highcontrast.scss +1 -1
  173. package/styles/input/material-dark.scss +1 -1
  174. package/styles/input/material.scss +1 -1
  175. package/styles/input/material3-dark.scss +1 -2
  176. package/styles/input/material3.scss +1 -2
  177. package/styles/input/tailwind-dark.scss +1 -1
  178. package/styles/input/tailwind.scss +1 -1
  179. package/styles/input/tailwind3.scss +1 -1
  180. package/styles/maskedtextbox/bds.scss +1 -1
  181. package/styles/maskedtextbox/bootstrap-dark.scss +1 -1
  182. package/styles/maskedtextbox/bootstrap.scss +1 -1
  183. package/styles/maskedtextbox/bootstrap4.scss +1 -1
  184. package/styles/maskedtextbox/bootstrap5-dark.scss +1 -1
  185. package/styles/maskedtextbox/bootstrap5.3.scss +1 -1
  186. package/styles/maskedtextbox/bootstrap5.scss +1 -1
  187. package/styles/maskedtextbox/fabric-dark.scss +1 -1
  188. package/styles/maskedtextbox/fabric.scss +1 -1
  189. package/styles/maskedtextbox/fluent-dark.scss +1 -1
  190. package/styles/maskedtextbox/fluent.scss +1 -1
  191. package/styles/maskedtextbox/fluent2.scss +1 -1
  192. package/styles/maskedtextbox/highcontrast-light.scss +1 -1
  193. package/styles/maskedtextbox/highcontrast.scss +1 -1
  194. package/styles/maskedtextbox/material-dark.scss +1 -1
  195. package/styles/maskedtextbox/material.scss +1 -1
  196. package/styles/maskedtextbox/material3-dark.scss +1 -2
  197. package/styles/maskedtextbox/material3.scss +1 -2
  198. package/styles/maskedtextbox/tailwind-dark.scss +1 -1
  199. package/styles/maskedtextbox/tailwind.scss +1 -1
  200. package/styles/maskedtextbox/tailwind3.scss +1 -1
  201. package/styles/material-dark-lite.scss +1 -1
  202. package/styles/material-dark.scss +14 -14
  203. package/styles/material-lite.scss +1 -1
  204. package/styles/material.scss +14 -14
  205. package/styles/material3-dark-lite.scss +1 -1
  206. package/styles/material3-dark.scss +14 -15
  207. package/styles/material3-lite.scss +1 -1
  208. package/styles/material3.scss +14 -15
  209. package/styles/numerictextbox/bds.scss +1 -1
  210. package/styles/numerictextbox/bootstrap-dark.scss +1 -1
  211. package/styles/numerictextbox/bootstrap.scss +1 -1
  212. package/styles/numerictextbox/bootstrap4.scss +1 -1
  213. package/styles/numerictextbox/bootstrap5-dark.scss +1 -1
  214. package/styles/numerictextbox/bootstrap5.3.scss +1 -1
  215. package/styles/numerictextbox/bootstrap5.scss +1 -1
  216. package/styles/numerictextbox/fabric-dark.scss +1 -1
  217. package/styles/numerictextbox/fabric.scss +1 -1
  218. package/styles/numerictextbox/fluent-dark.scss +1 -1
  219. package/styles/numerictextbox/fluent.scss +1 -1
  220. package/styles/numerictextbox/fluent2.scss +1 -1
  221. package/styles/numerictextbox/highcontrast-light.scss +1 -1
  222. package/styles/numerictextbox/highcontrast.scss +1 -1
  223. package/styles/numerictextbox/material-dark.scss +1 -1
  224. package/styles/numerictextbox/material.scss +1 -1
  225. package/styles/numerictextbox/material3-dark.scss +1 -2
  226. package/styles/numerictextbox/material3.scss +1 -2
  227. package/styles/numerictextbox/tailwind-dark.scss +1 -1
  228. package/styles/numerictextbox/tailwind.scss +1 -1
  229. package/styles/numerictextbox/tailwind3.scss +1 -1
  230. package/styles/otp-input/bds.scss +1 -1
  231. package/styles/otp-input/bootstrap-dark.scss +1 -1
  232. package/styles/otp-input/bootstrap.scss +1 -1
  233. package/styles/otp-input/bootstrap4.scss +1 -1
  234. package/styles/otp-input/bootstrap5-dark.scss +1 -1
  235. package/styles/otp-input/bootstrap5.3.scss +1 -1
  236. package/styles/otp-input/bootstrap5.scss +1 -1
  237. package/styles/otp-input/fabric-dark.scss +1 -1
  238. package/styles/otp-input/fabric.scss +1 -1
  239. package/styles/otp-input/fluent-dark.scss +1 -1
  240. package/styles/otp-input/fluent.scss +1 -1
  241. package/styles/otp-input/fluent2.scss +1 -1
  242. package/styles/otp-input/highcontrast-light.scss +1 -1
  243. package/styles/otp-input/highcontrast.scss +1 -1
  244. package/styles/otp-input/material-dark.scss +1 -1
  245. package/styles/otp-input/material.scss +1 -1
  246. package/styles/otp-input/material3-dark.scss +1 -2
  247. package/styles/otp-input/material3.scss +1 -2
  248. package/styles/otp-input/tailwind-dark.scss +1 -1
  249. package/styles/otp-input/tailwind.scss +1 -1
  250. package/styles/otp-input/tailwind3.scss +1 -1
  251. package/styles/rating/bds.scss +1 -1
  252. package/styles/rating/bootstrap-dark.scss +1 -1
  253. package/styles/rating/bootstrap.scss +1 -1
  254. package/styles/rating/bootstrap4.scss +1 -1
  255. package/styles/rating/bootstrap5-dark.scss +1 -1
  256. package/styles/rating/bootstrap5.3.scss +1 -1
  257. package/styles/rating/bootstrap5.scss +1 -1
  258. package/styles/rating/fabric-dark.scss +1 -1
  259. package/styles/rating/fabric.scss +1 -1
  260. package/styles/rating/fluent-dark.scss +1 -1
  261. package/styles/rating/fluent.scss +1 -1
  262. package/styles/rating/fluent2.scss +1 -1
  263. package/styles/rating/highcontrast-light.scss +1 -1
  264. package/styles/rating/highcontrast.scss +1 -1
  265. package/styles/rating/material-dark.scss +1 -1
  266. package/styles/rating/material.scss +1 -1
  267. package/styles/rating/material3-dark.scss +1 -2
  268. package/styles/rating/material3.scss +1 -2
  269. package/styles/rating/tailwind-dark.scss +1 -1
  270. package/styles/rating/tailwind.scss +1 -1
  271. package/styles/rating/tailwind3.scss +1 -1
  272. package/styles/signature/bds.scss +1 -1
  273. package/styles/signature/bootstrap-dark.scss +1 -1
  274. package/styles/signature/bootstrap.scss +1 -1
  275. package/styles/signature/bootstrap4.scss +1 -1
  276. package/styles/signature/bootstrap5-dark.scss +1 -1
  277. package/styles/signature/bootstrap5.3.scss +1 -1
  278. package/styles/signature/bootstrap5.scss +1 -1
  279. package/styles/signature/fabric-dark.scss +1 -1
  280. package/styles/signature/fabric.scss +1 -1
  281. package/styles/signature/fluent-dark.scss +1 -1
  282. package/styles/signature/fluent.scss +1 -1
  283. package/styles/signature/fluent2.scss +1 -1
  284. package/styles/signature/highcontrast-light.scss +1 -1
  285. package/styles/signature/highcontrast.scss +1 -1
  286. package/styles/signature/material-dark.scss +1 -1
  287. package/styles/signature/material.scss +1 -1
  288. package/styles/signature/material3-dark.scss +1 -2
  289. package/styles/signature/material3.scss +1 -2
  290. package/styles/signature/tailwind-dark.scss +1 -1
  291. package/styles/signature/tailwind.scss +1 -1
  292. package/styles/signature/tailwind3.scss +1 -1
  293. package/styles/slider/bds.scss +1 -1
  294. package/styles/slider/bootstrap-dark.scss +1 -1
  295. package/styles/slider/bootstrap.scss +1 -1
  296. package/styles/slider/bootstrap4.scss +1 -1
  297. package/styles/slider/bootstrap5-dark.scss +1 -1
  298. package/styles/slider/bootstrap5.3.scss +1 -1
  299. package/styles/slider/bootstrap5.scss +1 -1
  300. package/styles/slider/fabric-dark.scss +1 -1
  301. package/styles/slider/fabric.scss +1 -1
  302. package/styles/slider/fluent-dark.scss +1 -1
  303. package/styles/slider/fluent.scss +1 -1
  304. package/styles/slider/fluent2.scss +1 -1
  305. package/styles/slider/highcontrast-light.scss +1 -1
  306. package/styles/slider/highcontrast.scss +1 -1
  307. package/styles/slider/material-dark.scss +1 -1
  308. package/styles/slider/material.scss +1 -1
  309. package/styles/slider/material3-dark.scss +1 -2
  310. package/styles/slider/material3.scss +1 -2
  311. package/styles/slider/tailwind-dark.scss +1 -1
  312. package/styles/slider/tailwind.scss +1 -1
  313. package/styles/slider/tailwind3.scss +1 -1
  314. package/styles/smart-textarea/bds.scss +1 -1
  315. package/styles/smart-textarea/bootstrap-dark.scss +1 -1
  316. package/styles/smart-textarea/bootstrap.scss +1 -1
  317. package/styles/smart-textarea/bootstrap4.scss +1 -1
  318. package/styles/smart-textarea/bootstrap5-dark.scss +1 -1
  319. package/styles/smart-textarea/bootstrap5.3.scss +1 -1
  320. package/styles/smart-textarea/bootstrap5.scss +1 -1
  321. package/styles/smart-textarea/fabric-dark.scss +1 -1
  322. package/styles/smart-textarea/fabric.scss +1 -1
  323. package/styles/smart-textarea/fluent-dark.scss +1 -1
  324. package/styles/smart-textarea/fluent.scss +1 -1
  325. package/styles/smart-textarea/fluent2.scss +1 -1
  326. package/styles/smart-textarea/highcontrast-light.scss +1 -1
  327. package/styles/smart-textarea/highcontrast.scss +1 -1
  328. package/styles/smart-textarea/material-dark.scss +1 -1
  329. package/styles/smart-textarea/material.scss +1 -1
  330. package/styles/smart-textarea/material3-dark.scss +1 -2
  331. package/styles/smart-textarea/material3.scss +1 -2
  332. package/styles/smart-textarea/tailwind-dark.scss +1 -1
  333. package/styles/smart-textarea/tailwind.scss +1 -1
  334. package/styles/smart-textarea/tailwind3.scss +1 -1
  335. package/styles/speech-to-text/bds.scss +1 -1
  336. package/styles/speech-to-text/bootstrap-dark.scss +1 -1
  337. package/styles/speech-to-text/bootstrap.scss +1 -1
  338. package/styles/speech-to-text/bootstrap4.scss +1 -1
  339. package/styles/speech-to-text/bootstrap5-dark.scss +1 -1
  340. package/styles/speech-to-text/bootstrap5.3.scss +1 -1
  341. package/styles/speech-to-text/bootstrap5.scss +1 -1
  342. package/styles/speech-to-text/fabric-dark.scss +1 -1
  343. package/styles/speech-to-text/fabric.scss +1 -1
  344. package/styles/speech-to-text/fluent-dark.scss +1 -1
  345. package/styles/speech-to-text/fluent.scss +1 -1
  346. package/styles/speech-to-text/fluent2.scss +1 -1
  347. package/styles/speech-to-text/highcontrast-light.scss +1 -1
  348. package/styles/speech-to-text/highcontrast.scss +1 -1
  349. package/styles/speech-to-text/material-dark.scss +1 -1
  350. package/styles/speech-to-text/material.scss +1 -1
  351. package/styles/speech-to-text/material3-dark.scss +1 -2
  352. package/styles/speech-to-text/material3.scss +1 -2
  353. package/styles/speech-to-text/tailwind-dark.scss +1 -1
  354. package/styles/speech-to-text/tailwind.scss +1 -1
  355. package/styles/speech-to-text/tailwind3.scss +1 -1
  356. package/styles/tailwind-dark-lite.scss +1 -1
  357. package/styles/tailwind-dark.scss +14 -14
  358. package/styles/tailwind-lite.scss +1 -1
  359. package/styles/tailwind.scss +14 -14
  360. package/styles/tailwind3-lite.scss +1 -1
  361. package/styles/tailwind3.scss +14 -14
  362. package/styles/textarea/bds.scss +1 -1
  363. package/styles/textarea/bootstrap-dark.scss +1 -1
  364. package/styles/textarea/bootstrap.scss +1 -1
  365. package/styles/textarea/bootstrap4.scss +1 -1
  366. package/styles/textarea/bootstrap5-dark.scss +1 -1
  367. package/styles/textarea/bootstrap5.3.scss +1 -1
  368. package/styles/textarea/bootstrap5.scss +1 -1
  369. package/styles/textarea/fabric-dark.scss +1 -1
  370. package/styles/textarea/fabric.scss +1 -1
  371. package/styles/textarea/fluent-dark.scss +1 -1
  372. package/styles/textarea/fluent.scss +1 -1
  373. package/styles/textarea/fluent2.scss +1 -1
  374. package/styles/textarea/highcontrast-light.scss +1 -1
  375. package/styles/textarea/highcontrast.scss +1 -1
  376. package/styles/textarea/material-dark.scss +1 -1
  377. package/styles/textarea/material.scss +1 -1
  378. package/styles/textarea/material3-dark.scss +1 -2
  379. package/styles/textarea/material3.scss +1 -2
  380. package/styles/textarea/tailwind-dark.scss +1 -1
  381. package/styles/textarea/tailwind.scss +1 -1
  382. package/styles/textarea/tailwind3.scss +1 -1
  383. package/styles/textbox/bds.scss +1 -1
  384. package/styles/textbox/bootstrap-dark.scss +1 -1
  385. package/styles/textbox/bootstrap.scss +1 -1
  386. package/styles/textbox/bootstrap4.scss +1 -1
  387. package/styles/textbox/bootstrap5-dark.scss +1 -1
  388. package/styles/textbox/bootstrap5.3.scss +1 -1
  389. package/styles/textbox/bootstrap5.scss +1 -1
  390. package/styles/textbox/fabric-dark.scss +1 -1
  391. package/styles/textbox/fabric.scss +1 -1
  392. package/styles/textbox/fluent-dark.scss +1 -1
  393. package/styles/textbox/fluent.scss +1 -1
  394. package/styles/textbox/fluent2.scss +1 -1
  395. package/styles/textbox/highcontrast-light.scss +1 -1
  396. package/styles/textbox/highcontrast.scss +1 -1
  397. package/styles/textbox/material-dark.scss +1 -1
  398. package/styles/textbox/material.scss +1 -1
  399. package/styles/textbox/material3-dark.scss +1 -2
  400. package/styles/textbox/material3.scss +1 -2
  401. package/styles/textbox/tailwind-dark.scss +1 -1
  402. package/styles/textbox/tailwind.scss +1 -1
  403. package/styles/textbox/tailwind3.scss +1 -1
  404. package/styles/uploader/bds.scss +1 -1
  405. package/styles/uploader/bootstrap-dark.scss +1 -1
  406. package/styles/uploader/bootstrap.scss +1 -1
  407. package/styles/uploader/bootstrap4.scss +1 -1
  408. package/styles/uploader/bootstrap5-dark.scss +1 -1
  409. package/styles/uploader/bootstrap5.3.scss +1 -1
  410. package/styles/uploader/bootstrap5.scss +1 -1
  411. package/styles/uploader/fabric-dark.scss +1 -1
  412. package/styles/uploader/fabric.scss +1 -1
  413. package/styles/uploader/fluent-dark.scss +1 -1
  414. package/styles/uploader/fluent.scss +1 -1
  415. package/styles/uploader/fluent2.scss +1 -1
  416. package/styles/uploader/highcontrast-light.scss +1 -1
  417. package/styles/uploader/highcontrast.scss +1 -1
  418. package/styles/uploader/material-dark.scss +1 -1
  419. package/styles/uploader/material.scss +1 -1
  420. package/styles/uploader/material3-dark.scss +1 -2
  421. package/styles/uploader/material3.scss +1 -2
  422. package/styles/uploader/tailwind-dark.scss +1 -1
  423. package/styles/uploader/tailwind.scss +1 -1
  424. package/styles/uploader/tailwind3.scss +1 -1
  425. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  426. package/@syncfusion/ej2-angular-inputs.es5.js +0 -2469
  427. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  428. package/@syncfusion/ej2-angular-inputs.js +0 -2323
  429. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  430. package/LICENSE +0 -10
  431. package/dist/ej2-angular-inputs.umd.js +0 -2587
  432. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  433. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  434. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  435. package/ej2-angular-inputs.d.ts +0 -16
  436. package/ej2-angular-inputs.metadata.json +0 -1
@@ -1,36 +1,36 @@
1
- import { AbstractControl, ValidatorFn } from '@angular/forms';
2
- export declare class FormValidators {
3
- static max(number: number | Date): ValidatorFn;
4
- static min(number: number | Date): ValidatorFn;
5
- static creditcard(control: AbstractControl): {
6
- [key: string]: boolean;
7
- } | null;
8
- static date(control: AbstractControl): {
9
- [key: string]: boolean;
10
- } | null;
11
- static dateIso(control: AbstractControl): {
12
- [key: string]: boolean;
13
- } | null;
14
- static digits(control: AbstractControl): {
15
- [key: string]: boolean;
16
- } | null;
17
- static email(control: AbstractControl): {
18
- [key: string]: boolean;
19
- } | null;
20
- static maxLength(number: number): ValidatorFn;
21
- static minLength(number: number): ValidatorFn;
22
- static number(control: AbstractControl): {
23
- [key: string]: boolean;
24
- } | null;
25
- static required(control: AbstractControl): {
26
- [key: string]: boolean;
27
- } | null;
28
- static tel(control: AbstractControl): {
29
- [key: string]: boolean;
30
- } | null;
31
- static url(control: AbstractControl): {
32
- [key: string]: boolean;
33
- } | null;
34
- static rangeLength(number1: number, number2: number): ValidatorFn;
35
- static range(number1: number, number2: number): ValidatorFn;
36
- }
1
+ import { AbstractControl, ValidatorFn } from '@angular/forms';
2
+ export declare class FormValidators {
3
+ static max(number: number | Date): ValidatorFn;
4
+ static min(number: number | Date): ValidatorFn;
5
+ static creditcard(control: AbstractControl): {
6
+ [key: string]: boolean;
7
+ } | null;
8
+ static date(control: AbstractControl): {
9
+ [key: string]: boolean;
10
+ } | null;
11
+ static dateIso(control: AbstractControl): {
12
+ [key: string]: boolean;
13
+ } | null;
14
+ static digits(control: AbstractControl): {
15
+ [key: string]: boolean;
16
+ } | null;
17
+ static email(control: AbstractControl): {
18
+ [key: string]: boolean;
19
+ } | null;
20
+ static maxLength(number: number): ValidatorFn;
21
+ static minLength(number: number): ValidatorFn;
22
+ static number(control: AbstractControl): {
23
+ [key: string]: boolean;
24
+ } | null;
25
+ static required(control: AbstractControl): {
26
+ [key: string]: boolean;
27
+ } | null;
28
+ static tel(control: AbstractControl): {
29
+ [key: string]: boolean;
30
+ } | null;
31
+ static url(control: AbstractControl): {
32
+ [key: string]: boolean;
33
+ } | null;
34
+ static rangeLength(number1: number, number2: number): ValidatorFn;
35
+ static range(number1: number, number2: number): ValidatorFn;
36
+ }
package/src/index.d.ts CHANGED
@@ -1,39 +1,39 @@
1
- export { TextBoxComponent } from './textbox/textbox.component';
2
- export { TextBoxModule } from './textbox/textbox.module';
3
- export { TextBoxAllModule } from './textbox/textbox-all.module';
4
- export { TextAreaComponent } from './textarea/textarea.component';
5
- export { TextAreaModule } from './textarea/textarea.module';
6
- export { TextAreaAllModule } from './textarea/textarea-all.module';
7
- export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
8
- export { NumericTextBoxModule } from './numerictextbox/numerictextbox.module';
9
- export { NumericTextBoxAllModule } from './numerictextbox/numerictextbox-all.module';
10
- export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
11
- export { MaskedTextBoxModule } from './maskedtextbox/maskedtextbox.module';
12
- export { MaskedTextBoxAllModule } from './maskedtextbox/maskedtextbox-all.module';
13
- export { SliderComponent } from './slider/slider.component';
14
- export { SliderModule } from './slider/slider.module';
15
- export { SliderAllModule } from './slider/slider-all.module';
16
- export { UploadedFilesDirective, FilesDirective } from './uploader/files.directive';
17
- export { UploaderComponent } from './uploader/uploader.component';
18
- export { UploaderModule } from './uploader/uploader.module';
19
- export { UploaderAllModule } from './uploader/uploader-all.module';
20
- export { ColorPickerComponent } from './color-picker/colorpicker.component';
21
- export { ColorPickerModule } from './color-picker/colorpicker.module';
22
- export { ColorPickerAllModule } from './color-picker/colorpicker-all.module';
23
- export { SignatureComponent } from './signature/signature.component';
24
- export { SignatureModule } from './signature/signature.module';
25
- export { SignatureAllModule } from './signature/signature-all.module';
26
- export { RatingComponent } from './rating/rating.component';
27
- export { RatingModule } from './rating/rating.module';
28
- export { RatingAllModule } from './rating/rating-all.module';
29
- export { OtpInputComponent } from './otp-input/otpinput.component';
30
- export { OtpInputModule } from './otp-input/otpinput.module';
31
- export { OtpInputAllModule } from './otp-input/otpinput-all.module';
32
- export { SmartTextAreaComponent } from './smart-textarea/smarttextarea.component';
33
- export { SmartTextAreaModule } from './smart-textarea/smarttextarea.module';
34
- export { SmartTextAreaAllModule } from './smart-textarea/smarttextarea-all.module';
35
- export { SpeechToTextComponent } from './speech-to-text/speechtotext.component';
36
- export { SpeechToTextModule } from './speech-to-text/speechtotext.module';
37
- export { SpeechToTextAllModule } from './speech-to-text/speechtotext-all.module';
38
- export * from './form-validator/form-validator';
39
- export * from '@syncfusion/ej2-inputs';
1
+ export { TextBoxComponent } from './textbox/textbox.component';
2
+ export { TextBoxModule } from './textbox/textbox.module';
3
+ export { TextBoxAllModule } from './textbox/textbox-all.module';
4
+ export { TextAreaComponent } from './textarea/textarea.component';
5
+ export { TextAreaModule } from './textarea/textarea.module';
6
+ export { TextAreaAllModule } from './textarea/textarea-all.module';
7
+ export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
8
+ export { NumericTextBoxModule } from './numerictextbox/numerictextbox.module';
9
+ export { NumericTextBoxAllModule } from './numerictextbox/numerictextbox-all.module';
10
+ export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
11
+ export { MaskedTextBoxModule } from './maskedtextbox/maskedtextbox.module';
12
+ export { MaskedTextBoxAllModule } from './maskedtextbox/maskedtextbox-all.module';
13
+ export { SliderComponent } from './slider/slider.component';
14
+ export { SliderModule } from './slider/slider.module';
15
+ export { SliderAllModule } from './slider/slider-all.module';
16
+ export { UploadedFilesDirective, FilesDirective } from './uploader/files.directive';
17
+ export { UploaderComponent } from './uploader/uploader.component';
18
+ export { UploaderModule } from './uploader/uploader.module';
19
+ export { UploaderAllModule } from './uploader/uploader-all.module';
20
+ export { ColorPickerComponent } from './color-picker/colorpicker.component';
21
+ export { ColorPickerModule } from './color-picker/colorpicker.module';
22
+ export { ColorPickerAllModule } from './color-picker/colorpicker-all.module';
23
+ export { SignatureComponent } from './signature/signature.component';
24
+ export { SignatureModule } from './signature/signature.module';
25
+ export { SignatureAllModule } from './signature/signature-all.module';
26
+ export { RatingComponent } from './rating/rating.component';
27
+ export { RatingModule } from './rating/rating.module';
28
+ export { RatingAllModule } from './rating/rating-all.module';
29
+ export { OtpInputComponent } from './otp-input/otpinput.component';
30
+ export { OtpInputModule } from './otp-input/otpinput.module';
31
+ export { OtpInputAllModule } from './otp-input/otpinput-all.module';
32
+ export { SmartTextAreaComponent } from './smart-textarea/smarttextarea.component';
33
+ export { SmartTextAreaModule } from './smart-textarea/smarttextarea.module';
34
+ export { SmartTextAreaAllModule } from './smart-textarea/smarttextarea-all.module';
35
+ export { SpeechToTextComponent } from './speech-to-text/speechtotext.component';
36
+ export { SpeechToTextModule } from './speech-to-text/speechtotext.module';
37
+ export { SpeechToTextAllModule } from './speech-to-text/speechtotext-all.module';
38
+ export * from './form-validator/form-validator';
39
+ export * from '@syncfusion/ej2-inputs';
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the MaskedTextBox component with providers.
3
- */
4
- export declare class MaskedTextBoxAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./maskedtextbox.module";
4
+ /**
5
+ * NgModule definition for the MaskedTextBox component with providers.
6
+ */
7
+ export declare class MaskedTextBoxAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxAllModule, never, [typeof i1.CommonModule, typeof i2.MaskedTextBoxModule], [typeof i2.MaskedTextBoxModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxAllModule>;
11
+ }
@@ -1,40 +1,63 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { MaskedTextBox } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular MaskedTextbox Component.
9
- * ```html
10
- * <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
11
- * ```
12
- */
13
- export declare class MaskedTextBoxComponent extends MaskedTextBox implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- blur: any;
23
- change: any;
24
- created: any;
25
- destroyed: any;
26
- focus: any;
27
- valueChange: any;
28
- private skipFromEvent;
29
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
- registerOnChange(registerFunction: (_: any) => void): void;
31
- registerOnTouched(registerFunction: () => void): void;
32
- writeValue(value: any): void;
33
- setDisabledState(disabled: boolean): void;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- ngAfterContentChecked(): void;
38
- registerEvents: (eventList: string[]) => void;
39
- addTwoWay: (propList: string[]) => void;
40
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { MaskedTextBox } from '@syncfusion/ej2-inputs';
4
+ import * as i0 from "@angular/core";
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular MaskedTextbox Component.
10
+ * ```html
11
+ * <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
12
+ * ```
13
+ */
14
+ export declare class MaskedTextBoxComponent extends MaskedTextBox implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ private cdr;
20
+ formCompContext: any;
21
+ formContext: any;
22
+ tagObjects: any;
23
+ blur: any;
24
+ change: any;
25
+ created: any;
26
+ destroyed: any;
27
+ focus: any;
28
+ valueChange: any;
29
+ /**
30
+ * Specifies the HTML template string for custom elements to prepend to the MaskedTextBox input.
31
+ * Supports icons, buttons, or any valid HTML. Updates dynamically on property change.
32
+ * @default null
33
+ * @angulartype string | object
34
+ * @reacttype string | function | JSX.Element
35
+ * @vuetype string | function
36
+ * @asptype string
37
+ */
38
+ prependTemplate: any;
39
+ /**
40
+ * Specifies the HTML template string for custom elements to append to the MaskedTextBox input.
41
+ * Supports icons, buttons, or any valid HTML. Updates dynamically on property change.
42
+ * @default null
43
+ * @angulartype string | object
44
+ * @reacttype string | function | JSX.Element
45
+ * @vuetype string | function
46
+ * @asptype string
47
+ */
48
+ appendTemplate: any;
49
+ private skipFromEvent;
50
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
51
+ registerOnChange(registerFunction: (_: any) => void): void;
52
+ registerOnTouched(registerFunction: () => void): void;
53
+ writeValue(value: any): void;
54
+ setDisabledState(disabled: boolean): void;
55
+ ngOnInit(): void;
56
+ ngAfterViewInit(): void;
57
+ ngOnDestroy(): void;
58
+ ngAfterContentChecked(): void;
59
+ registerEvents: (eventList: string[]) => void;
60
+ addTwoWay: (propList: string[]) => void;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxComponent, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaskedTextBoxComponent, "ejs-maskedtextbox", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "valueChange": "valueChange"; }, ["prependTemplate", "appendTemplate"], never>;
63
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the MaskedTextBox component.
3
- */
4
- export declare class MaskedTextBoxModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./maskedtextbox.component";
3
+ import * as i2 from "@angular/common";
4
+ /**
5
+ * NgModule definition for the MaskedTextBox component.
6
+ */
7
+ export declare class MaskedTextBoxModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, [typeof i1.MaskedTextBoxComponent], [typeof i2.CommonModule], [typeof i1.MaskedTextBoxComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxModule>;
11
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the NumericTextBox component with providers.
3
- */
4
- export declare class NumericTextBoxAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./numerictextbox.module";
4
+ /**
5
+ * NgModule definition for the NumericTextBox component with providers.
6
+ */
7
+ export declare class NumericTextBoxAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxAllModule, never, [typeof i1.CommonModule, typeof i2.NumericTextBoxModule], [typeof i2.NumericTextBoxModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxAllModule>;
11
+ }
@@ -1,40 +1,63 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { NumericTextBox } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular NumericTextBox Component.
9
- * ```html
10
- * <ej-numerictextbox [value]='value'></ej-numerictextbox>
11
- * ```
12
- */
13
- export declare class NumericTextBoxComponent extends NumericTextBox implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- blur: any;
23
- change: any;
24
- created: any;
25
- destroyed: any;
26
- focus: any;
27
- valueChange: any;
28
- private skipFromEvent;
29
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
- registerOnChange(registerFunction: (_: any) => void): void;
31
- registerOnTouched(registerFunction: () => void): void;
32
- writeValue(value: any): void;
33
- setDisabledState(disabled: boolean): void;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- ngAfterContentChecked(): void;
38
- registerEvents: (eventList: string[]) => void;
39
- addTwoWay: (propList: string[]) => void;
40
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { NumericTextBox } from '@syncfusion/ej2-inputs';
4
+ import * as i0 from "@angular/core";
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular NumericTextBox Component.
10
+ * ```html
11
+ * <ej-numerictextbox [value]='value'></ej-numerictextbox>
12
+ * ```
13
+ */
14
+ export declare class NumericTextBoxComponent extends NumericTextBox implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ private cdr;
20
+ formCompContext: any;
21
+ formContext: any;
22
+ tagObjects: any;
23
+ blur: any;
24
+ change: any;
25
+ created: any;
26
+ destroyed: any;
27
+ focus: any;
28
+ valueChange: any;
29
+ /**
30
+ * Specifies the HTML template string for custom elements to prepend to the NumericTextBox input.
31
+ * Supports icons, buttons, or any valid HTML. Updates dynamically on property change.
32
+ * @default null
33
+ * @angulartype string | object
34
+ * @reacttype string | function | JSX.Element
35
+ * @vuetype string | function
36
+ * @asptype string
37
+ */
38
+ prependTemplate: any;
39
+ /**
40
+ * Specifies the HTML template string for custom elements to append to the NumericTextBox input.
41
+ * Supports icons, buttons, or any valid HTML. Updates dynamically on property change.
42
+ * @default null
43
+ * @angulartype string | object
44
+ * @reacttype string | function | JSX.Element
45
+ * @vuetype string | function
46
+ * @asptype string
47
+ */
48
+ appendTemplate: any;
49
+ private skipFromEvent;
50
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
51
+ registerOnChange(registerFunction: (_: any) => void): void;
52
+ registerOnTouched(registerFunction: () => void): void;
53
+ writeValue(value: any): void;
54
+ setDisabledState(disabled: boolean): void;
55
+ ngOnInit(): void;
56
+ ngAfterViewInit(): void;
57
+ ngOnDestroy(): void;
58
+ ngAfterContentChecked(): void;
59
+ registerEvents: (eventList: string[]) => void;
60
+ addTwoWay: (propList: string[]) => void;
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxComponent, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextBoxComponent, "ejs-numerictextbox", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "valueChange": "valueChange"; }, ["prependTemplate", "appendTemplate"], never>;
63
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the NumericTextBox component.
3
- */
4
- export declare class NumericTextBoxModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./numerictextbox.component";
3
+ import * as i2 from "@angular/common";
4
+ /**
5
+ * NgModule definition for the NumericTextBox component.
6
+ */
7
+ export declare class NumericTextBoxModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, [typeof i1.NumericTextBoxComponent], [typeof i2.CommonModule], [typeof i1.NumericTextBoxComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxModule>;
11
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the OtpInput component with providers.
3
- */
4
- export declare class OtpInputAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./otpinput.module";
4
+ /**
5
+ * NgModule definition for the OtpInput component with providers.
6
+ */
7
+ export declare class OtpInputAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OtpInputAllModule, never, [typeof i1.CommonModule, typeof i2.OtpInputModule], [typeof i2.OtpInputModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<OtpInputAllModule>;
11
+ }
@@ -1,40 +1,43 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { OtpInput } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular OtpInput Component.
9
- * ```html
10
- * <div ejs-otpinput [value]='value'></div>
11
- * ```
12
- */
13
- export declare class OtpInputComponent extends OtpInput implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- blur: any;
23
- created: any;
24
- focus: any;
25
- input: any;
26
- valueChanged: any;
27
- valueChange: any;
28
- private skipFromEvent;
29
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
- registerOnChange(registerFunction: (_: any) => void): void;
31
- registerOnTouched(registerFunction: () => void): void;
32
- writeValue(value: any): void;
33
- setDisabledState(disabled: boolean): void;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- ngAfterContentChecked(): void;
38
- registerEvents: (eventList: string[]) => void;
39
- addTwoWay: (propList: string[]) => void;
40
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { OtpInput } from '@syncfusion/ej2-inputs';
4
+ import * as i0 from "@angular/core";
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular OtpInput Component.
10
+ * ```html
11
+ * <div ejs-otpinput [value]='value'></div>
12
+ * ```
13
+ */
14
+ export declare class OtpInputComponent extends OtpInput implements IComponentBase {
15
+ private ngEle;
16
+ private srenderer;
17
+ private viewContainerRef;
18
+ private injector;
19
+ private cdr;
20
+ formCompContext: any;
21
+ formContext: any;
22
+ tagObjects: any;
23
+ blur: any;
24
+ created: any;
25
+ focus: any;
26
+ input: any;
27
+ valueChanged: any;
28
+ valueChange: any;
29
+ private skipFromEvent;
30
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
31
+ registerOnChange(registerFunction: (_: any) => void): void;
32
+ registerOnTouched(registerFunction: () => void): void;
33
+ writeValue(value: any): void;
34
+ setDisabledState(disabled: boolean): void;
35
+ ngOnInit(): void;
36
+ ngAfterViewInit(): void;
37
+ ngOnDestroy(): void;
38
+ ngAfterContentChecked(): void;
39
+ registerEvents: (eventList: string[]) => void;
40
+ addTwoWay: (propList: string[]) => void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<OtpInputComponent, "[ejs-otpinput]", never, { "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"; }, { "blur": "blur"; "created": "created"; "focus": "focus"; "input": "input"; "valueChanged": "valueChanged"; "valueChange": "valueChange"; }, never, never>;
43
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the OtpInput component.
3
- */
4
- export declare class OtpInputModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./otpinput.component";
3
+ import * as i2 from "@angular/common";
4
+ /**
5
+ * NgModule definition for the OtpInput component.
6
+ */
7
+ export declare class OtpInputModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OtpInputModule, [typeof i1.OtpInputComponent], [typeof i2.CommonModule], [typeof i1.OtpInputComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<OtpInputModule>;
11
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the Rating component with providers.
3
- */
4
- export declare class RatingAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./rating.module";
4
+ /**
5
+ * NgModule definition for the Rating component with providers.
6
+ */
7
+ export declare class RatingAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RatingAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RatingAllModule, never, [typeof i1.CommonModule, typeof i2.RatingModule], [typeof i2.RatingModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<RatingAllModule>;
11
+ }