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