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

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