@syncfusion/ej2-angular-calendars 23.1.36-ngcc → 23.1.36

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 (337) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
  3. package/esm2020/src/calendar/calendar.component.mjs +91 -0
  4. package/esm2020/src/calendar/calendar.module.mjs +25 -0
  5. package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
  6. package/esm2020/src/datepicker/datepicker.component.mjs +99 -0
  7. package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
  8. package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
  9. package/esm2020/src/daterangepicker/daterangepicker.component.mjs +103 -0
  10. package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
  11. package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
  12. package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
  13. package/esm2020/src/datetimepicker/datetimepicker.component.mjs +99 -0
  14. package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
  15. package/esm2020/src/index.mjs +18 -0
  16. package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
  17. package/esm2020/src/timepicker/timepicker.component.mjs +92 -0
  18. package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
  19. package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
  20. package/fesm2015/syncfusion-ej2-angular-calendars.mjs +737 -0
  21. package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  22. package/fesm2020/syncfusion-ej2-angular-calendars.mjs +737 -0
  23. package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  24. package/package.json +26 -12
  25. package/src/calendar/calendar-all.module.d.ts +6 -0
  26. package/src/calendar/calendar.component.d.ts +3 -0
  27. package/src/calendar/calendar.module.d.ts +6 -0
  28. package/src/datepicker/datepicker-all.module.d.ts +6 -0
  29. package/src/datepicker/datepicker.component.d.ts +3 -0
  30. package/src/datepicker/datepicker.module.d.ts +6 -0
  31. package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
  32. package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
  33. package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
  34. package/src/daterangepicker/presets.directive.d.ts +5 -0
  35. package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
  36. package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
  37. package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
  38. package/src/timepicker/timepicker-all.module.d.ts +6 -0
  39. package/src/timepicker/timepicker.component.d.ts +3 -0
  40. package/src/timepicker/timepicker.module.d.ts +6 -0
  41. package/styles/calendar/_all.scss +2 -0
  42. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  43. package/styles/calendar/_bootstrap-definition.scss +228 -0
  44. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  45. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  46. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  47. package/styles/calendar/_fabric-dark-definition.scss +192 -0
  48. package/styles/calendar/_fabric-definition.scss +190 -0
  49. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  50. package/styles/calendar/_fluent-definition.scss +252 -0
  51. package/styles/calendar/_fusionnew-definition.scss +250 -0
  52. package/styles/calendar/_highcontrast-definition.scss +189 -0
  53. package/styles/calendar/_highcontrast-light-definition.scss +192 -0
  54. package/styles/calendar/_layout.scss +786 -0
  55. package/styles/calendar/_material-dark-definition.scss +194 -0
  56. package/styles/calendar/_material-definition.scss +189 -0
  57. package/styles/calendar/_material3-dark-definition.scss +1 -0
  58. package/styles/calendar/_material3-definition.scss +195 -0
  59. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  60. package/styles/calendar/_tailwind-definition.scss +262 -0
  61. package/styles/calendar/_theme.scss +534 -0
  62. package/styles/calendar/bootstrap-dark.scss +5 -1
  63. package/styles/calendar/bootstrap.scss +5 -1
  64. package/styles/calendar/bootstrap4.scss +5 -1
  65. package/styles/calendar/bootstrap5-dark.scss +5 -1
  66. package/styles/calendar/bootstrap5.scss +5 -1
  67. package/styles/calendar/fabric-dark.scss +5 -1
  68. package/styles/calendar/fabric.scss +5 -1
  69. package/styles/calendar/fluent-dark.scss +5 -1
  70. package/styles/calendar/fluent.scss +5 -1
  71. package/styles/calendar/highcontrast-light.scss +5 -1
  72. package/styles/calendar/highcontrast.scss +5 -1
  73. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  74. package/styles/calendar/icons/_bootstrap.scss +13 -0
  75. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  76. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  77. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  78. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  79. package/styles/calendar/icons/_fabric.scss +13 -0
  80. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  81. package/styles/calendar/icons/_fluent.scss +13 -0
  82. package/styles/calendar/icons/_fusionnew.scss +13 -0
  83. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  84. package/styles/calendar/icons/_highcontrast.scss +13 -0
  85. package/styles/calendar/icons/_material-dark.scss +13 -0
  86. package/styles/calendar/icons/_material.scss +13 -0
  87. package/styles/calendar/icons/_material3-dark.scss +1 -0
  88. package/styles/calendar/icons/_material3.scss +13 -0
  89. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  90. package/styles/calendar/icons/_tailwind.scss +13 -0
  91. package/styles/calendar/material-dark.scss +5 -1
  92. package/styles/calendar/material.scss +5 -1
  93. package/styles/calendar/material3-dark.scss +5 -1
  94. package/styles/calendar/material3.scss +5 -1
  95. package/styles/calendar/tailwind-dark.scss +5 -1
  96. package/styles/calendar/tailwind.scss +5 -1
  97. package/styles/datepicker/_all.scss +2 -0
  98. package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
  99. package/styles/datepicker/_bootstrap-definition.scss +96 -0
  100. package/styles/datepicker/_bootstrap4-definition.scss +101 -0
  101. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  102. package/styles/datepicker/_bootstrap5-definition.scss +107 -0
  103. package/styles/datepicker/_fabric-dark-definition.scss +98 -0
  104. package/styles/datepicker/_fabric-definition.scss +95 -0
  105. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  106. package/styles/datepicker/_fluent-definition.scss +107 -0
  107. package/styles/datepicker/_fusionnew-definition.scss +107 -0
  108. package/styles/datepicker/_highcontrast-definition.scss +96 -0
  109. package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
  110. package/styles/datepicker/_layout.scss +434 -0
  111. package/styles/datepicker/_material-dark-definition.scss +103 -0
  112. package/styles/datepicker/_material-definition.scss +100 -0
  113. package/styles/datepicker/_material3-dark-definition.scss +1 -0
  114. package/styles/datepicker/_material3-definition.scss +116 -0
  115. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  116. package/styles/datepicker/_tailwind-definition.scss +105 -0
  117. package/styles/datepicker/_theme.scss +53 -0
  118. package/styles/datepicker/bootstrap-dark.scss +7 -1
  119. package/styles/datepicker/bootstrap.scss +7 -1
  120. package/styles/datepicker/bootstrap4.scss +7 -1
  121. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  122. package/styles/datepicker/bootstrap5.scss +7 -1
  123. package/styles/datepicker/fabric-dark.scss +7 -1
  124. package/styles/datepicker/fabric.scss +7 -1
  125. package/styles/datepicker/fluent-dark.scss +7 -1
  126. package/styles/datepicker/fluent.scss +7 -1
  127. package/styles/datepicker/highcontrast-light.scss +7 -1
  128. package/styles/datepicker/highcontrast.scss +7 -1
  129. package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
  130. package/styles/datepicker/icons/_bootstrap.scss +72 -0
  131. package/styles/datepicker/icons/_bootstrap4.scss +76 -0
  132. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  133. package/styles/datepicker/icons/_bootstrap5.scss +76 -0
  134. package/styles/datepicker/icons/_fabric-dark.scss +65 -0
  135. package/styles/datepicker/icons/_fabric.scss +65 -0
  136. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  137. package/styles/datepicker/icons/_fluent.scss +76 -0
  138. package/styles/datepicker/icons/_fusionnew.scss +76 -0
  139. package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
  140. package/styles/datepicker/icons/_highcontrast.scss +72 -0
  141. package/styles/datepicker/icons/_material-dark.scss +99 -0
  142. package/styles/datepicker/icons/_material.scss +99 -0
  143. package/styles/datepicker/icons/_material3-dark.scss +1 -0
  144. package/styles/datepicker/icons/_material3.scss +79 -0
  145. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  146. package/styles/datepicker/icons/_tailwind.scss +76 -0
  147. package/styles/datepicker/material-dark.scss +7 -1
  148. package/styles/datepicker/material.scss +7 -1
  149. package/styles/datepicker/material3-dark.scss +7 -1
  150. package/styles/datepicker/material3.scss +7 -1
  151. package/styles/datepicker/tailwind-dark.scss +7 -1
  152. package/styles/datepicker/tailwind.scss +7 -1
  153. package/styles/daterangepicker/_all.scss +2 -0
  154. package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
  155. package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
  156. package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
  157. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  158. package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
  159. package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
  160. package/styles/daterangepicker/_fabric-definition.scss +258 -0
  161. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  162. package/styles/daterangepicker/_fluent-definition.scss +305 -0
  163. package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
  164. package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
  165. package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
  166. package/styles/daterangepicker/_layout.scss +1031 -0
  167. package/styles/daterangepicker/_material-dark-definition.scss +266 -0
  168. package/styles/daterangepicker/_material-definition.scss +266 -0
  169. package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
  170. package/styles/daterangepicker/_material3-definition.scss +281 -0
  171. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  172. package/styles/daterangepicker/_tailwind-definition.scss +287 -0
  173. package/styles/daterangepicker/_theme.scss +455 -0
  174. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  175. package/styles/daterangepicker/bootstrap.scss +7 -1
  176. package/styles/daterangepicker/bootstrap4.scss +7 -1
  177. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  178. package/styles/daterangepicker/bootstrap5.scss +7 -1
  179. package/styles/daterangepicker/fabric-dark.scss +7 -1
  180. package/styles/daterangepicker/fabric.scss +7 -1
  181. package/styles/daterangepicker/fluent-dark.scss +7 -1
  182. package/styles/daterangepicker/fluent.scss +7 -1
  183. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  184. package/styles/daterangepicker/highcontrast.scss +7 -1
  185. package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
  186. package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
  187. package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
  188. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  189. package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
  190. package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
  191. package/styles/daterangepicker/icons/_fabric.scss +85 -0
  192. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  193. package/styles/daterangepicker/icons/_fluent.scss +92 -0
  194. package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
  195. package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
  196. package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
  197. package/styles/daterangepicker/icons/_material-dark.scss +119 -0
  198. package/styles/daterangepicker/icons/_material.scss +119 -0
  199. package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
  200. package/styles/daterangepicker/icons/_material3.scss +129 -0
  201. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  202. package/styles/daterangepicker/icons/_tailwind.scss +92 -0
  203. package/styles/daterangepicker/material-dark.scss +7 -1
  204. package/styles/daterangepicker/material.scss +7 -1
  205. package/styles/daterangepicker/material3-dark.scss +7 -1
  206. package/styles/daterangepicker/material3.scss +7 -1
  207. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  208. package/styles/daterangepicker/tailwind.scss +7 -1
  209. package/styles/datetimepicker/_all.scss +2 -0
  210. package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
  211. package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
  212. package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
  213. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  214. package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
  215. package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
  216. package/styles/datetimepicker/_fabric-definition.scss +57 -0
  217. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  218. package/styles/datetimepicker/_fluent-definition.scss +65 -0
  219. package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
  220. package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
  221. package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
  222. package/styles/datetimepicker/_layout.scss +238 -0
  223. package/styles/datetimepicker/_material-dark-definition.scss +64 -0
  224. package/styles/datetimepicker/_material-definition.scss +62 -0
  225. package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
  226. package/styles/datetimepicker/_material3-definition.scss +71 -0
  227. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  228. package/styles/datetimepicker/_tailwind-definition.scss +65 -0
  229. package/styles/datetimepicker/_theme.scss +70 -0
  230. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  231. package/styles/datetimepicker/bootstrap.scss +8 -1
  232. package/styles/datetimepicker/bootstrap4.scss +8 -1
  233. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  234. package/styles/datetimepicker/bootstrap5.scss +8 -1
  235. package/styles/datetimepicker/fabric-dark.scss +8 -1
  236. package/styles/datetimepicker/fabric.scss +8 -1
  237. package/styles/datetimepicker/fluent-dark.scss +8 -1
  238. package/styles/datetimepicker/fluent.scss +8 -1
  239. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  240. package/styles/datetimepicker/highcontrast.scss +8 -1
  241. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  242. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  243. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  244. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  245. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  246. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  247. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  248. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  249. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  250. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  251. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  252. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  253. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  254. package/styles/datetimepicker/icons/_material.scss +62 -0
  255. package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
  256. package/styles/datetimepicker/icons/_material3.scss +11 -0
  257. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  258. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  259. package/styles/datetimepicker/material-dark.scss +8 -1
  260. package/styles/datetimepicker/material.scss +8 -1
  261. package/styles/datetimepicker/material3-dark.scss +8 -1
  262. package/styles/datetimepicker/material3.scss +8 -1
  263. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  264. package/styles/datetimepicker/tailwind.scss +8 -1
  265. package/styles/material3-dark.css +0 -220
  266. package/styles/material3-dark.scss +1 -0
  267. package/styles/material3.css +0 -444
  268. package/styles/material3.scss +1 -0
  269. package/styles/timepicker/_all.scss +2 -0
  270. package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
  271. package/styles/timepicker/_bootstrap-definition.scss +77 -0
  272. package/styles/timepicker/_bootstrap4-definition.scss +85 -0
  273. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  274. package/styles/timepicker/_bootstrap5-definition.scss +86 -0
  275. package/styles/timepicker/_fabric-dark-definition.scss +80 -0
  276. package/styles/timepicker/_fabric-definition.scss +77 -0
  277. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  278. package/styles/timepicker/_fluent-definition.scss +86 -0
  279. package/styles/timepicker/_fusionnew-definition.scss +86 -0
  280. package/styles/timepicker/_highcontrast-definition.scss +77 -0
  281. package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
  282. package/styles/timepicker/_layout.scss +303 -0
  283. package/styles/timepicker/_material-dark-definition.scss +84 -0
  284. package/styles/timepicker/_material-definition.scss +81 -0
  285. package/styles/timepicker/_material3-dark-definition.scss +1 -0
  286. package/styles/timepicker/_material3-definition.scss +99 -0
  287. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  288. package/styles/timepicker/_tailwind-definition.scss +84 -0
  289. package/styles/timepicker/_theme.scss +114 -0
  290. package/styles/timepicker/bootstrap-dark.scss +6 -1
  291. package/styles/timepicker/bootstrap.scss +6 -1
  292. package/styles/timepicker/bootstrap4.scss +6 -1
  293. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  294. package/styles/timepicker/bootstrap5.scss +6 -1
  295. package/styles/timepicker/fabric-dark.scss +6 -1
  296. package/styles/timepicker/fabric.scss +6 -1
  297. package/styles/timepicker/fluent-dark.scss +6 -1
  298. package/styles/timepicker/fluent.scss +6 -1
  299. package/styles/timepicker/highcontrast-light.scss +6 -1
  300. package/styles/timepicker/highcontrast.scss +6 -1
  301. package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
  302. package/styles/timepicker/icons/_bootstrap.scss +24 -0
  303. package/styles/timepicker/icons/_bootstrap4.scss +24 -0
  304. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  305. package/styles/timepicker/icons/_bootstrap5.scss +24 -0
  306. package/styles/timepicker/icons/_fabric-dark.scss +24 -0
  307. package/styles/timepicker/icons/_fabric.scss +24 -0
  308. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  309. package/styles/timepicker/icons/_fluent.scss +24 -0
  310. package/styles/timepicker/icons/_fusionnew.scss +24 -0
  311. package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
  312. package/styles/timepicker/icons/_highcontrast.scss +24 -0
  313. package/styles/timepicker/icons/_material-dark.scss +52 -0
  314. package/styles/timepicker/icons/_material.scss +54 -0
  315. package/styles/timepicker/icons/_material3-dark.scss +1 -0
  316. package/styles/timepicker/icons/_material3.scss +24 -0
  317. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  318. package/styles/timepicker/icons/_tailwind.scss +24 -0
  319. package/styles/timepicker/material-dark.scss +6 -1
  320. package/styles/timepicker/material.scss +6 -1
  321. package/styles/timepicker/material3-dark.scss +6 -1
  322. package/styles/timepicker/material3.scss +6 -1
  323. package/styles/timepicker/tailwind-dark.scss +6 -1
  324. package/styles/timepicker/tailwind.scss +6 -1
  325. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  326. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
  327. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  328. package/@syncfusion/ej2-angular-calendars.js +0 -981
  329. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  330. package/CHANGELOG.md +0 -1334
  331. package/dist/ej2-angular-calendars.umd.js +0 -1093
  332. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  333. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  334. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  335. package/ej2-angular-calendars.d.ts +0 -9
  336. package/ej2-angular-calendars.metadata.json +0 -1
  337. package/postinstall/tagchange.js +0 -18
@@ -1,1093 +0,0 @@
1
- /*!
2
- * filename: ej2-angular-calendars.umd.js
3
- * version : 23.1.36
4
- * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
- * Use of this code is subject to the terms of our license.
6
- * A copy of the current license can be obtained at any time by e-mailing
7
- * licensing@syncfusion.com. Any infringement will be prosecuted under
8
- * applicable laws.
9
- */
10
- (function (global, factory) {
11
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/forms'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-calendars'), require('@angular/common')) :
12
- typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@angular/forms', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-calendars', '@angular/common'], factory) :
13
- (factory((global['ej2-angular-calendars'] = {}),global.ng.core,global.ng.forms,global.ej2.angular.base,global.ej2.calendars,global.ng.common));
14
- }(this, (function (exports,core,forms,ej2AngularBase,ej2Calendars,common) { 'use strict';
15
-
16
- var __extends = (this && this.__extends) || (function () {
17
- var extendStatics = Object.setPrototypeOf ||
18
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
- return function (d, b) {
21
- extendStatics(d, b);
22
- function __() { this.constructor = d; }
23
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
- };
25
- })();
26
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
- r = Reflect.decorate(decorators, target, key, desc);
30
- else
31
- for (var i = decorators.length - 1; i >= 0; i--)
32
- if (d = decorators[i])
33
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
- return c > 3 && r && Object.defineProperty(target, key, r), r;
35
- };
36
- var __metadata = (this && this.__metadata) || function (k, v) {
37
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
- return Reflect.metadata(k, v);
39
- };
40
- var inputs = ['calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'isMultiSelection', 'keyConfigs', 'locale', 'max', 'min', 'serverTimezoneOffset', 'showTodayButton', 'start', 'value', 'values', 'weekNumber', 'weekRule'];
41
- var outputs = ['focus', 'blur', 'change', 'created', 'destroyed', 'navigated', 'renderDayCell', 'valueChange', 'valuesChange'];
42
- var twoWays = ['value', 'values'];
43
- /**
44
- * Represents the Essential JS 2 Angular Calendar Component.
45
- * ```html
46
- * <ejs-calendar [value]='date'></ejs-calendar>
47
- * ```
48
- */
49
- exports.CalendarComponent = CalendarComponent_1 = /** @class */ (function (_super) {
50
- __extends(CalendarComponent, _super);
51
- /**
52
- * @param {?} ngEle
53
- * @param {?} srenderer
54
- * @param {?} viewContainerRef
55
- * @param {?} injector
56
- * @param {?} cdr
57
- */
58
- function CalendarComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
59
- var _this = _super.call(this) || this;
60
- _this.ngEle = ngEle;
61
- _this.srenderer = srenderer;
62
- _this.viewContainerRef = viewContainerRef;
63
- _this.injector = injector;
64
- _this.cdr = cdr;
65
- _this.element = _this.ngEle.nativeElement;
66
- _this.injectedModules = _this.injectedModules || [];
67
- try {
68
- var mod = _this.injector.get('CalendarsIslamic');
69
- if (_this.injectedModules.indexOf(mod) === -1) {
70
- _this.injectedModules.push(mod);
71
- }
72
- }
73
- catch (_a) { }
74
- _this.registerEvents(outputs);
75
- _this.addTwoWay.call(_this, twoWays);
76
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
77
- _this.formContext = new ej2AngularBase.FormBase();
78
- _this.formCompContext = new ej2AngularBase.ComponentBase();
79
- return _this;
80
- }
81
- /**
82
- * @param {?} registerFunction
83
- * @return {?}
84
- */
85
- CalendarComponent.prototype.registerOnChange = function (registerFunction) {
86
- };
87
- /**
88
- * @param {?} registerFunction
89
- * @return {?}
90
- */
91
- CalendarComponent.prototype.registerOnTouched = function (registerFunction) {
92
- };
93
- /**
94
- * @param {?} value
95
- * @return {?}
96
- */
97
- CalendarComponent.prototype.writeValue = function (value) {
98
- };
99
- /**
100
- * @param {?} disabled
101
- * @return {?}
102
- */
103
- CalendarComponent.prototype.setDisabledState = function (disabled) {
104
- };
105
- /**
106
- * @return {?}
107
- */
108
- CalendarComponent.prototype.ngOnInit = function () {
109
- this.formCompContext.ngOnInit(this);
110
- };
111
- /**
112
- * @return {?}
113
- */
114
- CalendarComponent.prototype.ngAfterViewInit = function () {
115
- this.formContext.ngAfterViewInit(this);
116
- };
117
- /**
118
- * @return {?}
119
- */
120
- CalendarComponent.prototype.ngOnDestroy = function () {
121
- this.formCompContext.ngOnDestroy(this);
122
- };
123
- /**
124
- * @return {?}
125
- */
126
- CalendarComponent.prototype.ngAfterContentChecked = function () {
127
- this.formCompContext.ngAfterContentChecked(this);
128
- };
129
- return CalendarComponent;
130
- }(ej2Calendars.Calendar));
131
- exports.CalendarComponent.decorators = [
132
- { type: core.Component, args: [{
133
- selector: 'ejs-calendar',
134
- inputs: inputs,
135
- outputs: outputs,
136
- template: '',
137
- changeDetection: core.ChangeDetectionStrategy.OnPush,
138
- providers: [
139
- {
140
- provide: forms.NG_VALUE_ACCESSOR,
141
- useExisting: core.forwardRef(function () { return CalendarComponent_1; }),
142
- multi: true
143
- }
144
- ],
145
- queries: {}
146
- },] },
147
- ];
148
- /**
149
- * @nocollapse
150
- */
151
- exports.CalendarComponent.ctorParameters = function () { return [
152
- { type: core.ElementRef, },
153
- { type: core.Renderer2, },
154
- { type: core.ViewContainerRef, },
155
- { type: core.Injector, },
156
- { type: core.ChangeDetectorRef, },
157
- ]; };
158
- exports.CalendarComponent = CalendarComponent_1 = __decorate([
159
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
160
- __metadata("design:paramtypes", [core.ElementRef,
161
- core.Renderer2,
162
- core.ViewContainerRef,
163
- core.Injector,
164
- core.ChangeDetectorRef])
165
- ], exports.CalendarComponent);
166
- var CalendarComponent_1;
167
- /**
168
- * NgModule definition for the Calendar component.
169
- */
170
- var CalendarModule = /** @class */ (function () {
171
- function CalendarModule() {
172
- }
173
- return CalendarModule;
174
- }());
175
- CalendarModule.decorators = [
176
- { type: core.NgModule, args: [{
177
- imports: [common.CommonModule],
178
- declarations: [
179
- exports.CalendarComponent
180
- ],
181
- exports: [
182
- exports.CalendarComponent
183
- ]
184
- },] },
185
- ];
186
- /**
187
- * @nocollapse
188
- */
189
- CalendarModule.ctorParameters = function () { return []; };
190
- var IslamicService = { provide: 'CalendarsIslamic', useValue: ej2Calendars.Islamic };
191
- /**
192
- * NgModule definition for the Calendar component with providers.
193
- */
194
- var CalendarAllModule = /** @class */ (function () {
195
- function CalendarAllModule() {
196
- }
197
- return CalendarAllModule;
198
- }());
199
- CalendarAllModule.decorators = [
200
- { type: core.NgModule, args: [{
201
- imports: [common.CommonModule, CalendarModule],
202
- exports: [
203
- CalendarModule
204
- ],
205
- providers: [
206
- IslamicService
207
- ]
208
- },] },
209
- ];
210
- /**
211
- * @nocollapse
212
- */
213
- CalendarAllModule.ctorParameters = function () { return []; };
214
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
215
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
216
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
217
- r = Reflect.decorate(decorators, target, key, desc);
218
- else
219
- for (var i = decorators.length - 1; i >= 0; i--)
220
- if (d = decorators[i])
221
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
222
- return c > 3 && r && Object.defineProperty(target, key, r), r;
223
- };
224
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
225
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
226
- return Reflect.metadata(k, v);
227
- };
228
- var inputs$1 = ['allowEdit', 'calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'isMultiSelection', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'serverTimezoneOffset', 'showClearButton', 'showTodayButton', 'start', 'strictMode', 'value', 'values', 'weekNumber', 'weekRule', 'width', 'zIndex'];
229
- var outputs$1 = ['blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell', 'valueChange'];
230
- var twoWays$1 = ['value'];
231
- /**
232
- * Represents the Essential JS 2 Angular DatePicker Component.
233
- * ```html
234
- * <ejs-datepicker [value]='date'></ejs-datepicker>
235
- * ```
236
- */
237
- exports.DatePickerComponent = DatePickerComponent_1 = /** @class */ (function (_super) {
238
- __extends(DatePickerComponent, _super);
239
- /**
240
- * @param {?} ngEle
241
- * @param {?} srenderer
242
- * @param {?} viewContainerRef
243
- * @param {?} injector
244
- * @param {?} cdr
245
- */
246
- function DatePickerComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
247
- var _this = _super.call(this) || this;
248
- _this.ngEle = ngEle;
249
- _this.srenderer = srenderer;
250
- _this.viewContainerRef = viewContainerRef;
251
- _this.injector = injector;
252
- _this.cdr = cdr;
253
- _this.skipFromEvent = true;
254
- _this.element = _this.ngEle.nativeElement;
255
- _this.injectedModules = _this.injectedModules || [];
256
- try {
257
- var mod = _this.injector.get('CalendarsIslamic');
258
- if (_this.injectedModules.indexOf(mod) === -1) {
259
- _this.injectedModules.push(mod);
260
- }
261
- }
262
- catch (_a) { }
263
- try {
264
- var mod = _this.injector.get('CalendarsMaskedDateTime');
265
- if (_this.injectedModules.indexOf(mod) === -1) {
266
- _this.injectedModules.push(mod);
267
- }
268
- }
269
- catch (_b) { }
270
- _this.registerEvents(outputs$1);
271
- _this.addTwoWay.call(_this, twoWays$1);
272
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
273
- _this.formContext = new ej2AngularBase.FormBase();
274
- _this.formCompContext = new ej2AngularBase.ComponentBase();
275
- return _this;
276
- }
277
- /**
278
- * @param {?} registerFunction
279
- * @return {?}
280
- */
281
- DatePickerComponent.prototype.registerOnChange = function (registerFunction) {
282
- };
283
- /**
284
- * @param {?} registerFunction
285
- * @return {?}
286
- */
287
- DatePickerComponent.prototype.registerOnTouched = function (registerFunction) {
288
- };
289
- /**
290
- * @param {?} value
291
- * @return {?}
292
- */
293
- DatePickerComponent.prototype.writeValue = function (value) {
294
- };
295
- /**
296
- * @param {?} disabled
297
- * @return {?}
298
- */
299
- DatePickerComponent.prototype.setDisabledState = function (disabled) {
300
- };
301
- /**
302
- * @return {?}
303
- */
304
- DatePickerComponent.prototype.ngOnInit = function () {
305
- this.formCompContext.ngOnInit(this);
306
- };
307
- /**
308
- * @return {?}
309
- */
310
- DatePickerComponent.prototype.ngAfterViewInit = function () {
311
- this.formContext.ngAfterViewInit(this);
312
- };
313
- /**
314
- * @return {?}
315
- */
316
- DatePickerComponent.prototype.ngOnDestroy = function () {
317
- this.formCompContext.ngOnDestroy(this);
318
- };
319
- /**
320
- * @return {?}
321
- */
322
- DatePickerComponent.prototype.ngAfterContentChecked = function () {
323
- this.formCompContext.ngAfterContentChecked(this);
324
- };
325
- return DatePickerComponent;
326
- }(ej2Calendars.DatePicker));
327
- exports.DatePickerComponent.decorators = [
328
- { type: core.Component, args: [{
329
- selector: 'ejs-datepicker',
330
- inputs: inputs$1,
331
- outputs: outputs$1,
332
- template: '',
333
- changeDetection: core.ChangeDetectionStrategy.OnPush,
334
- providers: [
335
- {
336
- provide: forms.NG_VALUE_ACCESSOR,
337
- useExisting: core.forwardRef(function () { return DatePickerComponent_1; }),
338
- multi: true
339
- }
340
- ],
341
- queries: {}
342
- },] },
343
- ];
344
- /**
345
- * @nocollapse
346
- */
347
- exports.DatePickerComponent.ctorParameters = function () { return [
348
- { type: core.ElementRef, },
349
- { type: core.Renderer2, },
350
- { type: core.ViewContainerRef, },
351
- { type: core.Injector, },
352
- { type: core.ChangeDetectorRef, },
353
- ]; };
354
- exports.DatePickerComponent = DatePickerComponent_1 = __decorate$1([
355
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
356
- __metadata$1("design:paramtypes", [core.ElementRef,
357
- core.Renderer2,
358
- core.ViewContainerRef,
359
- core.Injector,
360
- core.ChangeDetectorRef])
361
- ], exports.DatePickerComponent);
362
- var DatePickerComponent_1;
363
- /**
364
- * NgModule definition for the DatePicker component.
365
- */
366
- var DatePickerModule = /** @class */ (function () {
367
- function DatePickerModule() {
368
- }
369
- return DatePickerModule;
370
- }());
371
- DatePickerModule.decorators = [
372
- { type: core.NgModule, args: [{
373
- imports: [common.CommonModule],
374
- declarations: [
375
- exports.DatePickerComponent
376
- ],
377
- exports: [
378
- exports.DatePickerComponent
379
- ]
380
- },] },
381
- ];
382
- /**
383
- * @nocollapse
384
- */
385
- DatePickerModule.ctorParameters = function () { return []; };
386
- var MaskedDateTimeService = { provide: 'CalendarsMaskedDateTime', useValue: ej2Calendars.MaskedDateTime };
387
- /**
388
- * NgModule definition for the DatePicker component with providers.
389
- */
390
- var DatePickerAllModule = /** @class */ (function () {
391
- function DatePickerAllModule() {
392
- }
393
- return DatePickerAllModule;
394
- }());
395
- DatePickerAllModule.decorators = [
396
- { type: core.NgModule, args: [{
397
- imports: [common.CommonModule, DatePickerModule],
398
- exports: [
399
- DatePickerModule
400
- ],
401
- providers: [
402
- MaskedDateTimeService
403
- ]
404
- },] },
405
- ];
406
- /**
407
- * @nocollapse
408
- */
409
- DatePickerAllModule.ctorParameters = function () { return []; };
410
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
411
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
412
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
413
- r = Reflect.decorate(decorators, target, key, desc);
414
- else
415
- for (var i = decorators.length - 1; i >= 0; i--)
416
- if (d = decorators[i])
417
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
418
- return c > 3 && r && Object.defineProperty(target, key, r), r;
419
- };
420
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
421
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
422
- return Reflect.metadata(k, v);
423
- };
424
- var inputs$2 = ['allowEdit', 'cssClass', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'scrollTo', 'serverTimezoneOffset', 'showClearButton', 'step', 'strictMode', 'value', 'width', 'zIndex'];
425
- var outputs$2 = ['blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'itemRender', 'open', 'valueChange'];
426
- var twoWays$2 = ['value'];
427
- /**
428
- * Represents the Essential JS 2 Angular TimePicker Component.
429
- * ```html
430
- * <ejs-timepicker [value]='dateTime'></ejs-timepicker>
431
- * ```
432
- */
433
- exports.TimePickerComponent = TimePickerComponent_1 = /** @class */ (function (_super) {
434
- __extends(TimePickerComponent, _super);
435
- /**
436
- * @param {?} ngEle
437
- * @param {?} srenderer
438
- * @param {?} viewContainerRef
439
- * @param {?} injector
440
- * @param {?} cdr
441
- */
442
- function TimePickerComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
443
- var _this = _super.call(this) || this;
444
- _this.ngEle = ngEle;
445
- _this.srenderer = srenderer;
446
- _this.viewContainerRef = viewContainerRef;
447
- _this.injector = injector;
448
- _this.cdr = cdr;
449
- _this.skipFromEvent = true;
450
- _this.element = _this.ngEle.nativeElement;
451
- _this.injectedModules = _this.injectedModules || [];
452
- try {
453
- var mod = _this.injector.get('CalendarsMaskedDateTime');
454
- if (_this.injectedModules.indexOf(mod) === -1) {
455
- _this.injectedModules.push(mod);
456
- }
457
- }
458
- catch (_a) { }
459
- _this.registerEvents(outputs$2);
460
- _this.addTwoWay.call(_this, twoWays$2);
461
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
462
- _this.formContext = new ej2AngularBase.FormBase();
463
- _this.formCompContext = new ej2AngularBase.ComponentBase();
464
- return _this;
465
- }
466
- /**
467
- * @param {?} registerFunction
468
- * @return {?}
469
- */
470
- TimePickerComponent.prototype.registerOnChange = function (registerFunction) {
471
- };
472
- /**
473
- * @param {?} registerFunction
474
- * @return {?}
475
- */
476
- TimePickerComponent.prototype.registerOnTouched = function (registerFunction) {
477
- };
478
- /**
479
- * @param {?} value
480
- * @return {?}
481
- */
482
- TimePickerComponent.prototype.writeValue = function (value) {
483
- };
484
- /**
485
- * @param {?} disabled
486
- * @return {?}
487
- */
488
- TimePickerComponent.prototype.setDisabledState = function (disabled) {
489
- };
490
- /**
491
- * @return {?}
492
- */
493
- TimePickerComponent.prototype.ngOnInit = function () {
494
- this.formCompContext.ngOnInit(this);
495
- };
496
- /**
497
- * @return {?}
498
- */
499
- TimePickerComponent.prototype.ngAfterViewInit = function () {
500
- this.formContext.ngAfterViewInit(this);
501
- };
502
- /**
503
- * @return {?}
504
- */
505
- TimePickerComponent.prototype.ngOnDestroy = function () {
506
- this.formCompContext.ngOnDestroy(this);
507
- };
508
- /**
509
- * @return {?}
510
- */
511
- TimePickerComponent.prototype.ngAfterContentChecked = function () {
512
- this.formCompContext.ngAfterContentChecked(this);
513
- };
514
- return TimePickerComponent;
515
- }(ej2Calendars.TimePicker));
516
- exports.TimePickerComponent.decorators = [
517
- { type: core.Component, args: [{
518
- selector: 'ejs-timepicker',
519
- inputs: inputs$2,
520
- outputs: outputs$2,
521
- template: '',
522
- changeDetection: core.ChangeDetectionStrategy.OnPush,
523
- providers: [
524
- {
525
- provide: forms.NG_VALUE_ACCESSOR,
526
- useExisting: core.forwardRef(function () { return TimePickerComponent_1; }),
527
- multi: true
528
- }
529
- ],
530
- queries: {}
531
- },] },
532
- ];
533
- /**
534
- * @nocollapse
535
- */
536
- exports.TimePickerComponent.ctorParameters = function () { return [
537
- { type: core.ElementRef, },
538
- { type: core.Renderer2, },
539
- { type: core.ViewContainerRef, },
540
- { type: core.Injector, },
541
- { type: core.ChangeDetectorRef, },
542
- ]; };
543
- exports.TimePickerComponent = TimePickerComponent_1 = __decorate$2([
544
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
545
- __metadata$2("design:paramtypes", [core.ElementRef,
546
- core.Renderer2,
547
- core.ViewContainerRef,
548
- core.Injector,
549
- core.ChangeDetectorRef])
550
- ], exports.TimePickerComponent);
551
- var TimePickerComponent_1;
552
- /**
553
- * NgModule definition for the TimePicker component.
554
- */
555
- var TimePickerModule = /** @class */ (function () {
556
- function TimePickerModule() {
557
- }
558
- return TimePickerModule;
559
- }());
560
- TimePickerModule.decorators = [
561
- { type: core.NgModule, args: [{
562
- imports: [common.CommonModule],
563
- declarations: [
564
- exports.TimePickerComponent
565
- ],
566
- exports: [
567
- exports.TimePickerComponent
568
- ]
569
- },] },
570
- ];
571
- /**
572
- * @nocollapse
573
- */
574
- TimePickerModule.ctorParameters = function () { return []; };
575
- /**
576
- * NgModule definition for the TimePicker component with providers.
577
- */
578
- var TimePickerAllModule = /** @class */ (function () {
579
- function TimePickerAllModule() {
580
- }
581
- return TimePickerAllModule;
582
- }());
583
- TimePickerAllModule.decorators = [
584
- { type: core.NgModule, args: [{
585
- imports: [common.CommonModule, TimePickerModule],
586
- exports: [
587
- TimePickerModule
588
- ],
589
- providers: []
590
- },] },
591
- ];
592
- /**
593
- * @nocollapse
594
- */
595
- TimePickerAllModule.ctorParameters = function () { return []; };
596
- var input = ['end', 'label', 'start'];
597
- var outputs$3 = [];
598
- /**
599
- * 'e-presets' directive represent a presets of angular daterangepicker
600
- * It must be contained in a daterangepicker component(`ej-daterangepicker`).
601
- * ```html
602
- * <ejs-daterangepicker id='range'>
603
- * <e-presets>
604
- * <e-preset label='Last Week' [start]=new Date('06/07/2018') [end]= new Date('06/01/2018')></e-preset>
605
- * <e-preset label='Last Month' [start]=new Date('06/07/2018') [end]= new Date('05/07/2018')></e-preset>
606
- * </e-presets>
607
- * </ejs-daterangepicker>
608
- * ```
609
- */
610
- var PresetDirective = /** @class */ (function (_super) {
611
- __extends(PresetDirective, _super);
612
- /**
613
- * @param {?} viewContainerRef
614
- */
615
- function PresetDirective(viewContainerRef) {
616
- var _this = _super.call(this) || this;
617
- _this.viewContainerRef = viewContainerRef;
618
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
619
- _this.registerEvents(outputs$3);
620
- _this.directivePropList = input;
621
- return _this;
622
- }
623
- return PresetDirective;
624
- }(ej2AngularBase.ComplexBase));
625
- PresetDirective.decorators = [
626
- { type: core.Directive, args: [{
627
- selector: 'e-presets>e-preset',
628
- inputs: input,
629
- outputs: outputs$3,
630
- queries: {}
631
- },] },
632
- ];
633
- /**
634
- * @nocollapse
635
- */
636
- PresetDirective.ctorParameters = function () { return [
637
- { type: core.ViewContainerRef, },
638
- ]; };
639
- /**
640
- * Preset Array Directive
641
- */
642
- var PresetsDirective = /** @class */ (function (_super) {
643
- __extends(PresetsDirective, _super);
644
- function PresetsDirective() {
645
- return _super.call(this, 'presets') || this;
646
- }
647
- return PresetsDirective;
648
- }(ej2AngularBase.ArrayBase));
649
- PresetsDirective.decorators = [
650
- { type: core.Directive, args: [{
651
- selector: 'ejs-daterangepicker>e-presets',
652
- queries: {
653
- children: new core.ContentChildren(PresetDirective)
654
- },
655
- },] },
656
- ];
657
- /**
658
- * @nocollapse
659
- */
660
- PresetsDirective.ctorParameters = function () { return []; };
661
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
662
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
663
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
664
- r = Reflect.decorate(decorators, target, key, desc);
665
- else
666
- for (var i = decorators.length - 1; i >= 0; i--)
667
- if (d = decorators[i])
668
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
669
- return c > 3 && r && Object.defineProperty(target, key, r), r;
670
- };
671
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
672
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
673
- return Reflect.metadata(k, v);
674
- };
675
- var inputs$3 = ['allowEdit', 'calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'endDate', 'firstDayOfWeek', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'keyConfigs', 'locale', 'max', 'maxDays', 'min', 'minDays', 'openOnFocus', 'placeholder', 'presets', 'readonly', 'separator', 'serverTimezoneOffset', 'showClearButton', 'start', 'startDate', 'strictMode', 'value', 'weekNumber', 'weekRule', 'width', 'zIndex'];
676
- var outputs$4 = ['blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell', 'select', 'startDateChange', 'endDateChange', 'valueChange'];
677
- var twoWays$3 = ['startDate', 'endDate', 'value'];
678
- /**
679
- * Represents the Essential JS 2 Angular DateRangePicker Component.
680
- * ```html
681
- * <ejs-daterangepicker [startDate]='date' [endDate]='date'></ejs-daterangepicker>
682
- * ```
683
- */
684
- exports.DateRangePickerComponent = DateRangePickerComponent_1 = /** @class */ (function (_super) {
685
- __extends(DateRangePickerComponent, _super);
686
- /**
687
- * @param {?} ngEle
688
- * @param {?} srenderer
689
- * @param {?} viewContainerRef
690
- * @param {?} injector
691
- * @param {?} cdr
692
- */
693
- function DateRangePickerComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
694
- var _this = _super.call(this) || this;
695
- _this.ngEle = ngEle;
696
- _this.srenderer = srenderer;
697
- _this.viewContainerRef = viewContainerRef;
698
- _this.injector = injector;
699
- _this.cdr = cdr;
700
- _this.tags = ['presets'];
701
- _this.skipFromEvent = true;
702
- _this.element = _this.ngEle.nativeElement;
703
- _this.injectedModules = _this.injectedModules || [];
704
- _this.registerEvents(outputs$4);
705
- _this.addTwoWay.call(_this, twoWays$3);
706
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
707
- _this.formContext = new ej2AngularBase.FormBase();
708
- _this.formCompContext = new ej2AngularBase.ComponentBase();
709
- return _this;
710
- }
711
- /**
712
- * @param {?} registerFunction
713
- * @return {?}
714
- */
715
- DateRangePickerComponent.prototype.registerOnChange = function (registerFunction) {
716
- };
717
- /**
718
- * @param {?} registerFunction
719
- * @return {?}
720
- */
721
- DateRangePickerComponent.prototype.registerOnTouched = function (registerFunction) {
722
- };
723
- /**
724
- * @param {?} value
725
- * @return {?}
726
- */
727
- DateRangePickerComponent.prototype.writeValue = function (value) {
728
- };
729
- /**
730
- * @param {?} disabled
731
- * @return {?}
732
- */
733
- DateRangePickerComponent.prototype.setDisabledState = function (disabled) {
734
- };
735
- /**
736
- * @return {?}
737
- */
738
- DateRangePickerComponent.prototype.ngOnInit = function () {
739
- this.formCompContext.ngOnInit(this);
740
- };
741
- /**
742
- * @return {?}
743
- */
744
- DateRangePickerComponent.prototype.ngAfterViewInit = function () {
745
- this.formContext.ngAfterViewInit(this);
746
- };
747
- /**
748
- * @return {?}
749
- */
750
- DateRangePickerComponent.prototype.ngOnDestroy = function () {
751
- this.formCompContext.ngOnDestroy(this);
752
- };
753
- /**
754
- * @return {?}
755
- */
756
- DateRangePickerComponent.prototype.ngAfterContentChecked = function () {
757
- this.tagObjects[0].instance = this.childPresets;
758
- this.formCompContext.ngAfterContentChecked(this);
759
- };
760
- return DateRangePickerComponent;
761
- }(ej2Calendars.DateRangePicker));
762
- exports.DateRangePickerComponent.decorators = [
763
- { type: core.Component, args: [{
764
- selector: 'ejs-daterangepicker',
765
- inputs: inputs$3,
766
- outputs: outputs$4,
767
- template: '',
768
- changeDetection: core.ChangeDetectionStrategy.OnPush,
769
- providers: [
770
- {
771
- provide: forms.NG_VALUE_ACCESSOR,
772
- useExisting: core.forwardRef(function () { return DateRangePickerComponent_1; }),
773
- multi: true
774
- }
775
- ],
776
- queries: {
777
- childPresets: new core.ContentChild(PresetsDirective)
778
- }
779
- },] },
780
- ];
781
- /**
782
- * @nocollapse
783
- */
784
- exports.DateRangePickerComponent.ctorParameters = function () { return [
785
- { type: core.ElementRef, },
786
- { type: core.Renderer2, },
787
- { type: core.ViewContainerRef, },
788
- { type: core.Injector, },
789
- { type: core.ChangeDetectorRef, },
790
- ]; };
791
- exports.DateRangePickerComponent.propDecorators = {
792
- 'start': [{ type: core.ContentChild, args: ['start',] },],
793
- 'end': [{ type: core.ContentChild, args: ['end',] },],
794
- };
795
- __decorate$3([
796
- ej2AngularBase.Template(),
797
- __metadata$3("design:type", Object)
798
- ], exports.DateRangePickerComponent.prototype, "start", void 0);
799
- __decorate$3([
800
- ej2AngularBase.Template(),
801
- __metadata$3("design:type", Object)
802
- ], exports.DateRangePickerComponent.prototype, "end", void 0);
803
- exports.DateRangePickerComponent = DateRangePickerComponent_1 = __decorate$3([
804
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
805
- __metadata$3("design:paramtypes", [core.ElementRef,
806
- core.Renderer2,
807
- core.ViewContainerRef,
808
- core.Injector,
809
- core.ChangeDetectorRef])
810
- ], exports.DateRangePickerComponent);
811
- var DateRangePickerComponent_1;
812
- /**
813
- * NgModule definition for the DateRangePicker component.
814
- */
815
- var DateRangePickerModule = /** @class */ (function () {
816
- function DateRangePickerModule() {
817
- }
818
- return DateRangePickerModule;
819
- }());
820
- DateRangePickerModule.decorators = [
821
- { type: core.NgModule, args: [{
822
- imports: [common.CommonModule],
823
- declarations: [
824
- exports.DateRangePickerComponent,
825
- PresetDirective,
826
- PresetsDirective
827
- ],
828
- exports: [
829
- exports.DateRangePickerComponent,
830
- PresetDirective,
831
- PresetsDirective
832
- ]
833
- },] },
834
- ];
835
- /**
836
- * @nocollapse
837
- */
838
- DateRangePickerModule.ctorParameters = function () { return []; };
839
- /**
840
- * NgModule definition for the DateRangePicker component with providers.
841
- */
842
- var DateRangePickerAllModule = /** @class */ (function () {
843
- function DateRangePickerAllModule() {
844
- }
845
- return DateRangePickerAllModule;
846
- }());
847
- DateRangePickerAllModule.decorators = [
848
- { type: core.NgModule, args: [{
849
- imports: [common.CommonModule, DateRangePickerModule],
850
- exports: [
851
- DateRangePickerModule
852
- ],
853
- providers: []
854
- },] },
855
- ];
856
- /**
857
- * @nocollapse
858
- */
859
- DateRangePickerAllModule.ctorParameters = function () { return []; };
860
- var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
861
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
862
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
863
- r = Reflect.decorate(decorators, target, key, desc);
864
- else
865
- for (var i = decorators.length - 1; i >= 0; i--)
866
- if (d = decorators[i])
867
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
868
- return c > 3 && r && Object.defineProperty(target, key, r), r;
869
- };
870
- var __metadata$4 = (this && this.__metadata) || function (k, v) {
871
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
872
- return Reflect.metadata(k, v);
873
- };
874
- var inputs$4 = ['allowEdit', 'calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'fullScreenMode', 'htmlAttributes', 'isMultiSelection', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'scrollTo', 'serverTimezoneOffset', 'showClearButton', 'showTodayButton', 'start', 'step', 'strictMode', 'timeFormat', 'value', 'values', 'weekNumber', 'weekRule', 'width', 'zIndex'];
875
- var outputs$5 = ['blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell', 'valueChange'];
876
- var twoWays$4 = ['value'];
877
- /**
878
- * Represents the Essential JS 2 Angular DateTimePicker Component.
879
- * ```html
880
- * <ejs-datetimepicker [value]='dateTime'></ejs-datetimepicker>
881
- * ```
882
- */
883
- exports.DateTimePickerComponent = DateTimePickerComponent_1 = /** @class */ (function (_super) {
884
- __extends(DateTimePickerComponent, _super);
885
- /**
886
- * @param {?} ngEle
887
- * @param {?} srenderer
888
- * @param {?} viewContainerRef
889
- * @param {?} injector
890
- * @param {?} cdr
891
- */
892
- function DateTimePickerComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
893
- var _this = _super.call(this) || this;
894
- _this.ngEle = ngEle;
895
- _this.srenderer = srenderer;
896
- _this.viewContainerRef = viewContainerRef;
897
- _this.injector = injector;
898
- _this.cdr = cdr;
899
- _this.skipFromEvent = true;
900
- _this.element = _this.ngEle.nativeElement;
901
- _this.injectedModules = _this.injectedModules || [];
902
- try {
903
- var mod = _this.injector.get('CalendarsIslamic');
904
- if (_this.injectedModules.indexOf(mod) === -1) {
905
- _this.injectedModules.push(mod);
906
- }
907
- }
908
- catch (_a) { }
909
- try {
910
- var mod = _this.injector.get('CalendarsMaskedDateTime');
911
- if (_this.injectedModules.indexOf(mod) === -1) {
912
- _this.injectedModules.push(mod);
913
- }
914
- }
915
- catch (_b) { }
916
- _this.registerEvents(outputs$5);
917
- _this.addTwoWay.call(_this, twoWays$4);
918
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
919
- _this.formContext = new ej2AngularBase.FormBase();
920
- _this.formCompContext = new ej2AngularBase.ComponentBase();
921
- return _this;
922
- }
923
- /**
924
- * @param {?} registerFunction
925
- * @return {?}
926
- */
927
- DateTimePickerComponent.prototype.registerOnChange = function (registerFunction) {
928
- };
929
- /**
930
- * @param {?} registerFunction
931
- * @return {?}
932
- */
933
- DateTimePickerComponent.prototype.registerOnTouched = function (registerFunction) {
934
- };
935
- /**
936
- * @param {?} value
937
- * @return {?}
938
- */
939
- DateTimePickerComponent.prototype.writeValue = function (value) {
940
- };
941
- /**
942
- * @param {?} disabled
943
- * @return {?}
944
- */
945
- DateTimePickerComponent.prototype.setDisabledState = function (disabled) {
946
- };
947
- /**
948
- * @return {?}
949
- */
950
- DateTimePickerComponent.prototype.ngOnInit = function () {
951
- this.formCompContext.ngOnInit(this);
952
- };
953
- /**
954
- * @return {?}
955
- */
956
- DateTimePickerComponent.prototype.ngAfterViewInit = function () {
957
- this.formContext.ngAfterViewInit(this);
958
- };
959
- /**
960
- * @return {?}
961
- */
962
- DateTimePickerComponent.prototype.ngOnDestroy = function () {
963
- this.formCompContext.ngOnDestroy(this);
964
- };
965
- /**
966
- * @return {?}
967
- */
968
- DateTimePickerComponent.prototype.ngAfterContentChecked = function () {
969
- this.formCompContext.ngAfterContentChecked(this);
970
- };
971
- return DateTimePickerComponent;
972
- }(ej2Calendars.DateTimePicker));
973
- exports.DateTimePickerComponent.decorators = [
974
- { type: core.Component, args: [{
975
- selector: 'ejs-datetimepicker',
976
- inputs: inputs$4,
977
- outputs: outputs$5,
978
- template: '',
979
- changeDetection: core.ChangeDetectionStrategy.OnPush,
980
- providers: [
981
- {
982
- provide: forms.NG_VALUE_ACCESSOR,
983
- useExisting: core.forwardRef(function () { return DateTimePickerComponent_1; }),
984
- multi: true
985
- }
986
- ],
987
- queries: {}
988
- },] },
989
- ];
990
- /**
991
- * @nocollapse
992
- */
993
- exports.DateTimePickerComponent.ctorParameters = function () { return [
994
- { type: core.ElementRef, },
995
- { type: core.Renderer2, },
996
- { type: core.ViewContainerRef, },
997
- { type: core.Injector, },
998
- { type: core.ChangeDetectorRef, },
999
- ]; };
1000
- exports.DateTimePickerComponent = DateTimePickerComponent_1 = __decorate$4([
1001
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
1002
- __metadata$4("design:paramtypes", [core.ElementRef,
1003
- core.Renderer2,
1004
- core.ViewContainerRef,
1005
- core.Injector,
1006
- core.ChangeDetectorRef])
1007
- ], exports.DateTimePickerComponent);
1008
- var DateTimePickerComponent_1;
1009
- /**
1010
- * NgModule definition for the DateTimePicker component.
1011
- */
1012
- var DateTimePickerModule = /** @class */ (function () {
1013
- function DateTimePickerModule() {
1014
- }
1015
- return DateTimePickerModule;
1016
- }());
1017
- DateTimePickerModule.decorators = [
1018
- { type: core.NgModule, args: [{
1019
- imports: [common.CommonModule],
1020
- declarations: [
1021
- exports.DateTimePickerComponent
1022
- ],
1023
- exports: [
1024
- exports.DateTimePickerComponent
1025
- ]
1026
- },] },
1027
- ];
1028
- /**
1029
- * @nocollapse
1030
- */
1031
- DateTimePickerModule.ctorParameters = function () { return []; };
1032
- /**
1033
- * NgModule definition for the DateTimePicker component with providers.
1034
- */
1035
- var DateTimePickerAllModule = /** @class */ (function () {
1036
- function DateTimePickerAllModule() {
1037
- }
1038
- return DateTimePickerAllModule;
1039
- }());
1040
- DateTimePickerAllModule.decorators = [
1041
- { type: core.NgModule, args: [{
1042
- imports: [common.CommonModule, DateTimePickerModule],
1043
- exports: [
1044
- DateTimePickerModule
1045
- ],
1046
- providers: []
1047
- },] },
1048
- ];
1049
- /**
1050
- * @nocollapse
1051
- */
1052
- DateTimePickerAllModule.ctorParameters = function () { return []; };
1053
-
1054
- exports.CalendarModule = CalendarModule;
1055
- exports.CalendarAllModule = CalendarAllModule;
1056
- exports.IslamicService = IslamicService;
1057
- exports.DatePickerModule = DatePickerModule;
1058
- exports.DatePickerAllModule = DatePickerAllModule;
1059
- exports.MaskedDateTimeService = MaskedDateTimeService;
1060
- exports.TimePickerModule = TimePickerModule;
1061
- exports.TimePickerAllModule = TimePickerAllModule;
1062
- exports.PresetDirective = PresetDirective;
1063
- exports.PresetsDirective = PresetsDirective;
1064
- exports.DateRangePickerModule = DateRangePickerModule;
1065
- exports.DateRangePickerAllModule = DateRangePickerAllModule;
1066
- exports.DateTimePickerModule = DateTimePickerModule;
1067
- exports.DateTimePickerAllModule = DateTimePickerAllModule;
1068
- exports.ɵa = inputs;
1069
- exports.ɵb = outputs;
1070
- exports.ɵc = inputs$1;
1071
- exports.ɵd = outputs$1;
1072
- exports.ɵg = inputs$3;
1073
- exports.ɵh = outputs$4;
1074
- exports.ɵi = inputs$4;
1075
- exports.ɵj = outputs$5;
1076
- exports.ɵe = inputs$2;
1077
- exports.ɵf = outputs$2;
1078
- exports.CalendarBase = ej2Calendars.CalendarBase;
1079
- exports.Calendar = ej2Calendars.Calendar;
1080
- exports.Islamic = ej2Calendars.Islamic;
1081
- exports.DatePicker = ej2Calendars.DatePicker;
1082
- exports.Presets = ej2Calendars.Presets;
1083
- exports.DateRangePicker = ej2Calendars.DateRangePicker;
1084
- exports.TimePickerBase = ej2Calendars.TimePickerBase;
1085
- exports.TimeMaskPlaceholder = ej2Calendars.TimeMaskPlaceholder;
1086
- exports.TimePicker = ej2Calendars.TimePicker;
1087
- exports.DateTimePicker = ej2Calendars.DateTimePicker;
1088
- exports.MaskedDateTime = ej2Calendars.MaskedDateTime;
1089
-
1090
- Object.defineProperty(exports, '__esModule', { value: true });
1091
-
1092
- })));
1093
- //# sourceMappingURL=ej2-angular-calendars.umd.js.map