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

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