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

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 (600) hide show
  1. package/README.md +83 -94
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/calendar/calendar-all.module.mjs +29 -0
  4. package/esm2020/src/calendar/calendar.component.mjs +90 -0
  5. package/esm2020/src/calendar/calendar.module.mjs +25 -0
  6. package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
  7. package/esm2020/src/datepicker/datepicker.component.mjs +98 -0
  8. package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
  9. package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
  10. package/esm2020/src/daterangepicker/daterangepicker.component.mjs +102 -0
  11. package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
  12. package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
  13. package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
  14. package/esm2020/src/datetimepicker/datetimepicker.component.mjs +98 -0
  15. package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
  16. package/esm2020/src/index.mjs +18 -0
  17. package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
  18. package/esm2020/src/timepicker/timepicker.component.mjs +91 -0
  19. package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
  20. package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
  21. package/fesm2015/syncfusion-ej2-angular-calendars.mjs +732 -0
  22. package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  23. package/fesm2020/syncfusion-ej2-angular-calendars.mjs +732 -0
  24. package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
  25. package/package.json +63 -13
  26. package/schematics/utils/lib-details.ts +2 -2
  27. package/src/calendar/calendar-all.module.d.ts +6 -0
  28. package/src/calendar/calendar.component.d.ts +3 -0
  29. package/src/calendar/calendar.module.d.ts +6 -0
  30. package/src/datepicker/datepicker-all.module.d.ts +6 -0
  31. package/src/datepicker/datepicker.component.d.ts +3 -0
  32. package/src/datepicker/datepicker.module.d.ts +6 -0
  33. package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
  34. package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
  35. package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
  36. package/src/daterangepicker/presets.directive.d.ts +5 -0
  37. package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
  38. package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
  39. package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
  40. package/src/timepicker/timepicker-all.module.d.ts +6 -0
  41. package/src/timepicker/timepicker.component.d.ts +3 -0
  42. package/src/timepicker/timepicker.module.d.ts +6 -0
  43. package/styles/calendar/_all.scss +2 -0
  44. package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
  45. package/styles/calendar/_bootstrap-definition.scss +228 -0
  46. package/styles/calendar/_bootstrap4-definition.scss +228 -0
  47. package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
  48. package/styles/calendar/_bootstrap5-definition.scss +250 -0
  49. package/styles/calendar/_fabric-dark-definition.scss +192 -0
  50. package/styles/calendar/_fabric-definition.scss +190 -0
  51. package/styles/calendar/_fluent-dark-definition.scss +1 -0
  52. package/styles/calendar/_fluent-definition.scss +252 -0
  53. package/styles/calendar/_fusionnew-definition.scss +250 -0
  54. package/styles/calendar/_highcontrast-definition.scss +189 -0
  55. package/styles/calendar/_highcontrast-light-definition.scss +192 -0
  56. package/styles/calendar/_layout.scss +786 -0
  57. package/styles/calendar/_material-dark-definition.scss +194 -0
  58. package/styles/calendar/_material-definition.scss +189 -0
  59. package/styles/calendar/_material3-dark-definition.scss +1 -0
  60. package/styles/calendar/_material3-definition.scss +195 -0
  61. package/styles/calendar/_tailwind-dark-definition.scss +1 -0
  62. package/styles/calendar/_tailwind-definition.scss +262 -0
  63. package/styles/calendar/_theme.scss +534 -0
  64. package/styles/calendar/bootstrap-dark.scss +5 -1
  65. package/styles/calendar/bootstrap.scss +5 -1
  66. package/styles/calendar/bootstrap4.scss +5 -1
  67. package/styles/calendar/bootstrap5-dark.scss +5 -1
  68. package/styles/calendar/bootstrap5.scss +5 -1
  69. package/styles/calendar/fabric-dark.scss +5 -1
  70. package/styles/calendar/fabric.scss +5 -1
  71. package/styles/calendar/fluent-dark.scss +5 -1
  72. package/styles/calendar/fluent.scss +5 -1
  73. package/styles/calendar/highcontrast-light.scss +5 -1
  74. package/styles/calendar/highcontrast.scss +5 -1
  75. package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
  76. package/styles/calendar/icons/_bootstrap.scss +13 -0
  77. package/styles/calendar/icons/_bootstrap4.scss +13 -0
  78. package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
  79. package/styles/calendar/icons/_bootstrap5.scss +13 -0
  80. package/styles/calendar/icons/_fabric-dark.scss +13 -0
  81. package/styles/calendar/icons/_fabric.scss +13 -0
  82. package/styles/calendar/icons/_fluent-dark.scss +1 -0
  83. package/styles/calendar/icons/_fluent.scss +13 -0
  84. package/styles/calendar/icons/_fusionnew.scss +13 -0
  85. package/styles/calendar/icons/_highcontrast-light.scss +13 -0
  86. package/styles/calendar/icons/_highcontrast.scss +13 -0
  87. package/styles/calendar/icons/_material-dark.scss +13 -0
  88. package/styles/calendar/icons/_material.scss +13 -0
  89. package/styles/calendar/icons/_material3-dark.scss +1 -0
  90. package/styles/calendar/icons/_material3.scss +13 -0
  91. package/styles/calendar/icons/_tailwind-dark.scss +1 -0
  92. package/styles/calendar/icons/_tailwind.scss +13 -0
  93. package/styles/calendar/material-dark.scss +5 -1
  94. package/styles/calendar/material.scss +5 -1
  95. package/styles/calendar/material3-dark.scss +5 -1
  96. package/styles/calendar/material3.scss +5 -1
  97. package/styles/calendar/tailwind-dark.scss +5 -1
  98. package/styles/calendar/tailwind.scss +5 -1
  99. package/styles/datepicker/_all.scss +2 -0
  100. package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
  101. package/styles/datepicker/_bootstrap-definition.scss +96 -0
  102. package/styles/datepicker/_bootstrap4-definition.scss +101 -0
  103. package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
  104. package/styles/datepicker/_bootstrap5-definition.scss +107 -0
  105. package/styles/datepicker/_fabric-dark-definition.scss +98 -0
  106. package/styles/datepicker/_fabric-definition.scss +95 -0
  107. package/styles/datepicker/_fluent-dark-definition.scss +1 -0
  108. package/styles/datepicker/_fluent-definition.scss +107 -0
  109. package/styles/datepicker/_fusionnew-definition.scss +107 -0
  110. package/styles/datepicker/_highcontrast-definition.scss +96 -0
  111. package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
  112. package/styles/datepicker/_layout.scss +409 -0
  113. package/styles/datepicker/_material-dark-definition.scss +103 -0
  114. package/styles/datepicker/_material-definition.scss +100 -0
  115. package/styles/datepicker/_material3-dark-definition.scss +1 -0
  116. package/styles/datepicker/_material3-definition.scss +116 -0
  117. package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
  118. package/styles/datepicker/_tailwind-definition.scss +105 -0
  119. package/styles/datepicker/_theme.scss +53 -0
  120. package/styles/datepicker/bootstrap-dark.scss +7 -1
  121. package/styles/datepicker/bootstrap.scss +7 -1
  122. package/styles/datepicker/bootstrap4.scss +7 -1
  123. package/styles/datepicker/bootstrap5-dark.scss +7 -1
  124. package/styles/datepicker/bootstrap5.scss +7 -1
  125. package/styles/datepicker/fabric-dark.scss +7 -1
  126. package/styles/datepicker/fabric.scss +7 -1
  127. package/styles/datepicker/fluent-dark.scss +7 -1
  128. package/styles/datepicker/fluent.scss +7 -1
  129. package/styles/datepicker/highcontrast-light.scss +7 -1
  130. package/styles/datepicker/highcontrast.scss +7 -1
  131. package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
  132. package/styles/datepicker/icons/_bootstrap.scss +72 -0
  133. package/styles/datepicker/icons/_bootstrap4.scss +76 -0
  134. package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
  135. package/styles/datepicker/icons/_bootstrap5.scss +76 -0
  136. package/styles/datepicker/icons/_fabric-dark.scss +65 -0
  137. package/styles/datepicker/icons/_fabric.scss +65 -0
  138. package/styles/datepicker/icons/_fluent-dark.scss +1 -0
  139. package/styles/datepicker/icons/_fluent.scss +76 -0
  140. package/styles/datepicker/icons/_fusionnew.scss +76 -0
  141. package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
  142. package/styles/datepicker/icons/_highcontrast.scss +72 -0
  143. package/styles/datepicker/icons/_material-dark.scss +99 -0
  144. package/styles/datepicker/icons/_material.scss +99 -0
  145. package/styles/datepicker/icons/_material3-dark.scss +1 -0
  146. package/styles/datepicker/icons/_material3.scss +79 -0
  147. package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
  148. package/styles/datepicker/icons/_tailwind.scss +76 -0
  149. package/styles/datepicker/material-dark.scss +7 -1
  150. package/styles/datepicker/material.scss +7 -1
  151. package/styles/datepicker/material3-dark.scss +7 -1
  152. package/styles/datepicker/material3.scss +7 -1
  153. package/styles/datepicker/tailwind-dark.scss +7 -1
  154. package/styles/datepicker/tailwind.scss +7 -1
  155. package/styles/daterangepicker/_all.scss +2 -0
  156. package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
  157. package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
  158. package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
  159. package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
  160. package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
  161. package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
  162. package/styles/daterangepicker/_fabric-definition.scss +258 -0
  163. package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
  164. package/styles/daterangepicker/_fluent-definition.scss +305 -0
  165. package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
  166. package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
  167. package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
  168. package/styles/daterangepicker/_layout.scss +1030 -0
  169. package/styles/daterangepicker/_material-dark-definition.scss +266 -0
  170. package/styles/daterangepicker/_material-definition.scss +266 -0
  171. package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
  172. package/styles/daterangepicker/_material3-definition.scss +278 -0
  173. package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
  174. package/styles/daterangepicker/_tailwind-definition.scss +287 -0
  175. package/styles/daterangepicker/_theme.scss +455 -0
  176. package/styles/daterangepicker/bootstrap-dark.scss +7 -1
  177. package/styles/daterangepicker/bootstrap.scss +7 -1
  178. package/styles/daterangepicker/bootstrap4.scss +7 -1
  179. package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
  180. package/styles/daterangepicker/bootstrap5.scss +7 -1
  181. package/styles/daterangepicker/fabric-dark.scss +7 -1
  182. package/styles/daterangepicker/fabric.scss +7 -1
  183. package/styles/daterangepicker/fluent-dark.scss +7 -1
  184. package/styles/daterangepicker/fluent.scss +7 -1
  185. package/styles/daterangepicker/highcontrast-light.scss +7 -1
  186. package/styles/daterangepicker/highcontrast.scss +7 -1
  187. package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
  188. package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
  189. package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
  190. package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
  191. package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
  192. package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
  193. package/styles/daterangepicker/icons/_fabric.scss +85 -0
  194. package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
  195. package/styles/daterangepicker/icons/_fluent.scss +92 -0
  196. package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
  197. package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
  198. package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
  199. package/styles/daterangepicker/icons/_material-dark.scss +119 -0
  200. package/styles/daterangepicker/icons/_material.scss +119 -0
  201. package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
  202. package/styles/daterangepicker/icons/_material3.scss +129 -0
  203. package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
  204. package/styles/daterangepicker/icons/_tailwind.scss +92 -0
  205. package/styles/daterangepicker/material-dark.scss +7 -1
  206. package/styles/daterangepicker/material.scss +7 -1
  207. package/styles/daterangepicker/material3-dark.scss +7 -1
  208. package/styles/daterangepicker/material3.scss +7 -1
  209. package/styles/daterangepicker/tailwind-dark.scss +7 -1
  210. package/styles/daterangepicker/tailwind.scss +7 -1
  211. package/styles/datetimepicker/_all.scss +2 -0
  212. package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
  213. package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
  214. package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
  215. package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
  216. package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
  217. package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
  218. package/styles/datetimepicker/_fabric-definition.scss +57 -0
  219. package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
  220. package/styles/datetimepicker/_fluent-definition.scss +65 -0
  221. package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
  222. package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
  223. package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
  224. package/styles/datetimepicker/_layout.scss +238 -0
  225. package/styles/datetimepicker/_material-dark-definition.scss +64 -0
  226. package/styles/datetimepicker/_material-definition.scss +62 -0
  227. package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
  228. package/styles/datetimepicker/_material3-definition.scss +71 -0
  229. package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
  230. package/styles/datetimepicker/_tailwind-definition.scss +65 -0
  231. package/styles/datetimepicker/_theme.scss +70 -0
  232. package/styles/datetimepicker/bootstrap-dark.scss +8 -1
  233. package/styles/datetimepicker/bootstrap.scss +8 -1
  234. package/styles/datetimepicker/bootstrap4.scss +8 -1
  235. package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
  236. package/styles/datetimepicker/bootstrap5.scss +8 -1
  237. package/styles/datetimepicker/fabric-dark.scss +8 -1
  238. package/styles/datetimepicker/fabric.scss +8 -1
  239. package/styles/datetimepicker/fluent-dark.scss +8 -1
  240. package/styles/datetimepicker/fluent.scss +8 -1
  241. package/styles/datetimepicker/highcontrast-light.scss +8 -1
  242. package/styles/datetimepicker/highcontrast.scss +8 -1
  243. package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
  244. package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
  245. package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
  246. package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
  247. package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
  248. package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
  249. package/styles/datetimepicker/icons/_fabric.scss +11 -0
  250. package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
  251. package/styles/datetimepicker/icons/_fluent.scss +11 -0
  252. package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
  253. package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
  254. package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
  255. package/styles/datetimepicker/icons/_material-dark.scss +53 -0
  256. package/styles/datetimepicker/icons/_material.scss +62 -0
  257. package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
  258. package/styles/datetimepicker/icons/_material3.scss +11 -0
  259. package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
  260. package/styles/datetimepicker/icons/_tailwind.scss +11 -0
  261. package/styles/datetimepicker/material-dark.scss +8 -1
  262. package/styles/datetimepicker/material.scss +8 -1
  263. package/styles/datetimepicker/material3-dark.scss +8 -1
  264. package/styles/datetimepicker/material3.scss +8 -1
  265. package/styles/datetimepicker/tailwind-dark.scss +8 -1
  266. package/styles/datetimepicker/tailwind.scss +8 -1
  267. package/styles/material3-dark.css +0 -224
  268. package/styles/material3-dark.scss +1 -0
  269. package/styles/material3.css +0 -444
  270. package/styles/material3.scss +1 -0
  271. package/styles/timepicker/_all.scss +2 -0
  272. package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
  273. package/styles/timepicker/_bootstrap-definition.scss +77 -0
  274. package/styles/timepicker/_bootstrap4-definition.scss +85 -0
  275. package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
  276. package/styles/timepicker/_bootstrap5-definition.scss +86 -0
  277. package/styles/timepicker/_fabric-dark-definition.scss +80 -0
  278. package/styles/timepicker/_fabric-definition.scss +77 -0
  279. package/styles/timepicker/_fluent-dark-definition.scss +1 -0
  280. package/styles/timepicker/_fluent-definition.scss +86 -0
  281. package/styles/timepicker/_fusionnew-definition.scss +86 -0
  282. package/styles/timepicker/_highcontrast-definition.scss +77 -0
  283. package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
  284. package/styles/timepicker/_layout.scss +287 -0
  285. package/styles/timepicker/_material-dark-definition.scss +84 -0
  286. package/styles/timepicker/_material-definition.scss +81 -0
  287. package/styles/timepicker/_material3-dark-definition.scss +1 -0
  288. package/styles/timepicker/_material3-definition.scss +99 -0
  289. package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
  290. package/styles/timepicker/_tailwind-definition.scss +84 -0
  291. package/styles/timepicker/_theme.scss +113 -0
  292. package/styles/timepicker/bootstrap-dark.scss +6 -1
  293. package/styles/timepicker/bootstrap.scss +6 -1
  294. package/styles/timepicker/bootstrap4.scss +6 -1
  295. package/styles/timepicker/bootstrap5-dark.scss +6 -1
  296. package/styles/timepicker/bootstrap5.scss +6 -1
  297. package/styles/timepicker/fabric-dark.scss +6 -1
  298. package/styles/timepicker/fabric.scss +6 -1
  299. package/styles/timepicker/fluent-dark.scss +6 -1
  300. package/styles/timepicker/fluent.scss +6 -1
  301. package/styles/timepicker/highcontrast-light.scss +6 -1
  302. package/styles/timepicker/highcontrast.scss +6 -1
  303. package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
  304. package/styles/timepicker/icons/_bootstrap.scss +24 -0
  305. package/styles/timepicker/icons/_bootstrap4.scss +24 -0
  306. package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
  307. package/styles/timepicker/icons/_bootstrap5.scss +24 -0
  308. package/styles/timepicker/icons/_fabric-dark.scss +24 -0
  309. package/styles/timepicker/icons/_fabric.scss +24 -0
  310. package/styles/timepicker/icons/_fluent-dark.scss +1 -0
  311. package/styles/timepicker/icons/_fluent.scss +24 -0
  312. package/styles/timepicker/icons/_fusionnew.scss +24 -0
  313. package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
  314. package/styles/timepicker/icons/_highcontrast.scss +24 -0
  315. package/styles/timepicker/icons/_material-dark.scss +52 -0
  316. package/styles/timepicker/icons/_material.scss +54 -0
  317. package/styles/timepicker/icons/_material3-dark.scss +1 -0
  318. package/styles/timepicker/icons/_material3.scss +24 -0
  319. package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
  320. package/styles/timepicker/icons/_tailwind.scss +24 -0
  321. package/styles/timepicker/material-dark.scss +6 -1
  322. package/styles/timepicker/material.scss +6 -1
  323. package/styles/timepicker/material3-dark.scss +6 -1
  324. package/styles/timepicker/material3.scss +6 -1
  325. package/styles/timepicker/tailwind-dark.scss +6 -1
  326. package/styles/timepicker/tailwind.scss +6 -1
  327. package/syncfusion-ej2-angular-calendars.d.ts +5 -0
  328. package/@syncfusion/ej2-angular-calendars.es5.js +0 -1028
  329. package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
  330. package/@syncfusion/ej2-angular-calendars.js +0 -961
  331. package/@syncfusion/ej2-angular-calendars.js.map +0 -1
  332. package/CHANGELOG.md +0 -1352
  333. package/dist/ej2-angular-calendars.umd.js +0 -1073
  334. package/dist/ej2-angular-calendars.umd.js.map +0 -1
  335. package/dist/ej2-angular-calendars.umd.min.js +0 -11
  336. package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
  337. package/ej2-angular-calendars.d.ts +0 -9
  338. package/ej2-angular-calendars.metadata.json +0 -1
  339. package/postinstall/tagchange.js +0 -18
  340. package/schematics/collection.json +0 -150
  341. package/schematics/generators/calendar-daterange/index.d.ts +0 -3
  342. package/schematics/generators/calendar-daterange/index.js +0 -8
  343. package/schematics/generators/calendar-daterange/sample-details.d.ts +0 -5
  344. package/schematics/generators/calendar-daterange/sample-details.js +0 -7
  345. package/schematics/generators/calendar-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  346. package/schematics/generators/calendar-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  347. package/schematics/generators/calendar-daterange/schema.d.ts +0 -3
  348. package/schematics/generators/calendar-daterange/schema.js +0 -2
  349. package/schematics/generators/calendar-daterange/schema.json +0 -125
  350. package/schematics/generators/calendar-disableddates/index.d.ts +0 -3
  351. package/schematics/generators/calendar-disableddates/index.js +0 -8
  352. package/schematics/generators/calendar-disableddates/sample-details.d.ts +0 -5
  353. package/schematics/generators/calendar-disableddates/sample-details.js +0 -7
  354. package/schematics/generators/calendar-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  355. package/schematics/generators/calendar-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  356. package/schematics/generators/calendar-disableddates/schema.d.ts +0 -3
  357. package/schematics/generators/calendar-disableddates/schema.js +0 -2
  358. package/schematics/generators/calendar-disableddates/schema.json +0 -125
  359. package/schematics/generators/calendar-multiselection/index.d.ts +0 -3
  360. package/schematics/generators/calendar-multiselection/index.js +0 -8
  361. package/schematics/generators/calendar-multiselection/sample-details.d.ts +0 -5
  362. package/schematics/generators/calendar-multiselection/sample-details.js +0 -7
  363. package/schematics/generators/calendar-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -61
  364. package/schematics/generators/calendar-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  365. package/schematics/generators/calendar-multiselection/schema.d.ts +0 -3
  366. package/schematics/generators/calendar-multiselection/schema.js +0 -2
  367. package/schematics/generators/calendar-multiselection/schema.json +0 -125
  368. package/schematics/generators/calendar-views/index.d.ts +0 -3
  369. package/schematics/generators/calendar-views/index.js +0 -8
  370. package/schematics/generators/calendar-views/sample-details.d.ts +0 -5
  371. package/schematics/generators/calendar-views/sample-details.js +0 -7
  372. package/schematics/generators/calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  373. package/schematics/generators/calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  374. package/schematics/generators/calendar-views/schema.d.ts +0 -3
  375. package/schematics/generators/calendar-views/schema.js +0 -2
  376. package/schematics/generators/calendar-views/schema.json +0 -125
  377. package/schematics/generators/calendar-weeknumber/index.d.ts +0 -3
  378. package/schematics/generators/calendar-weeknumber/index.js +0 -8
  379. package/schematics/generators/calendar-weeknumber/sample-details.d.ts +0 -5
  380. package/schematics/generators/calendar-weeknumber/sample-details.js +0 -7
  381. package/schematics/generators/calendar-weeknumber/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  382. package/schematics/generators/calendar-weeknumber/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  383. package/schematics/generators/calendar-weeknumber/schema.d.ts +0 -3
  384. package/schematics/generators/calendar-weeknumber/schema.js +0 -2
  385. package/schematics/generators/calendar-weeknumber/schema.json +0 -125
  386. package/schematics/generators/datepicker-daterange/index.d.ts +0 -3
  387. package/schematics/generators/datepicker-daterange/index.js +0 -8
  388. package/schematics/generators/datepicker-daterange/sample-details.d.ts +0 -5
  389. package/schematics/generators/datepicker-daterange/sample-details.js +0 -7
  390. package/schematics/generators/datepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  391. package/schematics/generators/datepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  392. package/schematics/generators/datepicker-daterange/schema.d.ts +0 -3
  393. package/schematics/generators/datepicker-daterange/schema.js +0 -2
  394. package/schematics/generators/datepicker-daterange/schema.json +0 -125
  395. package/schematics/generators/datepicker-disableddates/index.d.ts +0 -3
  396. package/schematics/generators/datepicker-disableddates/index.js +0 -8
  397. package/schematics/generators/datepicker-disableddates/sample-details.d.ts +0 -5
  398. package/schematics/generators/datepicker-disableddates/sample-details.js +0 -7
  399. package/schematics/generators/datepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  400. package/schematics/generators/datepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  401. package/schematics/generators/datepicker-disableddates/schema.d.ts +0 -3
  402. package/schematics/generators/datepicker-disableddates/schema.js +0 -2
  403. package/schematics/generators/datepicker-disableddates/schema.json +0 -125
  404. package/schematics/generators/datepicker-format/index.d.ts +0 -3
  405. package/schematics/generators/datepicker-format/index.js +0 -8
  406. package/schematics/generators/datepicker-format/sample-details.d.ts +0 -5
  407. package/schematics/generators/datepicker-format/sample-details.js +0 -7
  408. package/schematics/generators/datepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
  409. package/schematics/generators/datepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -27
  410. package/schematics/generators/datepicker-format/schema.d.ts +0 -3
  411. package/schematics/generators/datepicker-format/schema.js +0 -2
  412. package/schematics/generators/datepicker-format/schema.json +0 -125
  413. package/schematics/generators/datepicker-multiselection/index.d.ts +0 -3
  414. package/schematics/generators/datepicker-multiselection/index.js +0 -8
  415. package/schematics/generators/datepicker-multiselection/sample-details.d.ts +0 -5
  416. package/schematics/generators/datepicker-multiselection/sample-details.js +0 -7
  417. package/schematics/generators/datepicker-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  418. package/schematics/generators/datepicker-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  419. package/schematics/generators/datepicker-multiselection/schema.d.ts +0 -3
  420. package/schematics/generators/datepicker-multiselection/schema.js +0 -2
  421. package/schematics/generators/datepicker-multiselection/schema.json +0 -125
  422. package/schematics/generators/datepicker-strictmode/index.d.ts +0 -3
  423. package/schematics/generators/datepicker-strictmode/index.js +0 -8
  424. package/schematics/generators/datepicker-strictmode/sample-details.d.ts +0 -5
  425. package/schematics/generators/datepicker-strictmode/sample-details.js +0 -7
  426. package/schematics/generators/datepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  427. package/schematics/generators/datepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  428. package/schematics/generators/datepicker-strictmode/schema.d.ts +0 -3
  429. package/schematics/generators/datepicker-strictmode/schema.js +0 -2
  430. package/schematics/generators/datepicker-strictmode/schema.json +0 -125
  431. package/schematics/generators/datepicker-views/index.d.ts +0 -3
  432. package/schematics/generators/datepicker-views/index.js +0 -8
  433. package/schematics/generators/datepicker-views/sample-details.d.ts +0 -5
  434. package/schematics/generators/datepicker-views/sample-details.js +0 -7
  435. package/schematics/generators/datepicker-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  436. package/schematics/generators/datepicker-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  437. package/schematics/generators/datepicker-views/schema.d.ts +0 -3
  438. package/schematics/generators/datepicker-views/schema.js +0 -2
  439. package/schematics/generators/datepicker-views/schema.json +0 -125
  440. package/schematics/generators/daterangepicker-daterange/index.d.ts +0 -3
  441. package/schematics/generators/daterangepicker-daterange/index.js +0 -8
  442. package/schematics/generators/daterangepicker-daterange/sample-details.d.ts +0 -5
  443. package/schematics/generators/daterangepicker-daterange/sample-details.js +0 -7
  444. package/schematics/generators/daterangepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  445. package/schematics/generators/daterangepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  446. package/schematics/generators/daterangepicker-daterange/schema.d.ts +0 -3
  447. package/schematics/generators/daterangepicker-daterange/schema.js +0 -2
  448. package/schematics/generators/daterangepicker-daterange/schema.json +0 -125
  449. package/schematics/generators/daterangepicker-dayspan/index.d.ts +0 -3
  450. package/schematics/generators/daterangepicker-dayspan/index.js +0 -8
  451. package/schematics/generators/daterangepicker-dayspan/sample-details.d.ts +0 -5
  452. package/schematics/generators/daterangepicker-dayspan/sample-details.js +0 -7
  453. package/schematics/generators/daterangepicker-dayspan/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  454. package/schematics/generators/daterangepicker-dayspan/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  455. package/schematics/generators/daterangepicker-dayspan/schema.d.ts +0 -3
  456. package/schematics/generators/daterangepicker-dayspan/schema.js +0 -2
  457. package/schematics/generators/daterangepicker-dayspan/schema.json +0 -125
  458. package/schematics/generators/daterangepicker-disableddates/index.d.ts +0 -3
  459. package/schematics/generators/daterangepicker-disableddates/index.js +0 -8
  460. package/schematics/generators/daterangepicker-disableddates/sample-details.d.ts +0 -5
  461. package/schematics/generators/daterangepicker-disableddates/sample-details.js +0 -7
  462. package/schematics/generators/daterangepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  463. package/schematics/generators/daterangepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  464. package/schematics/generators/daterangepicker-disableddates/schema.d.ts +0 -3
  465. package/schematics/generators/daterangepicker-disableddates/schema.js +0 -2
  466. package/schematics/generators/daterangepicker-disableddates/schema.json +0 -125
  467. package/schematics/generators/daterangepicker-format/index.d.ts +0 -3
  468. package/schematics/generators/daterangepicker-format/index.js +0 -8
  469. package/schematics/generators/daterangepicker-format/sample-details.d.ts +0 -5
  470. package/schematics/generators/daterangepicker-format/sample-details.js +0 -7
  471. package/schematics/generators/daterangepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
  472. package/schematics/generators/daterangepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -28
  473. package/schematics/generators/daterangepicker-format/schema.d.ts +0 -3
  474. package/schematics/generators/daterangepicker-format/schema.js +0 -2
  475. package/schematics/generators/daterangepicker-format/schema.json +0 -125
  476. package/schematics/generators/daterangepicker-presets/index.d.ts +0 -3
  477. package/schematics/generators/daterangepicker-presets/index.js +0 -8
  478. package/schematics/generators/daterangepicker-presets/sample-details.d.ts +0 -5
  479. package/schematics/generators/daterangepicker-presets/sample-details.js +0 -7
  480. package/schematics/generators/daterangepicker-presets/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  481. package/schematics/generators/daterangepicker-presets/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -12
  482. package/schematics/generators/daterangepicker-presets/schema.d.ts +0 -3
  483. package/schematics/generators/daterangepicker-presets/schema.js +0 -2
  484. package/schematics/generators/daterangepicker-presets/schema.json +0 -125
  485. package/schematics/generators/daterangepicker-strictmode/index.d.ts +0 -3
  486. package/schematics/generators/daterangepicker-strictmode/index.js +0 -8
  487. package/schematics/generators/daterangepicker-strictmode/sample-details.d.ts +0 -5
  488. package/schematics/generators/daterangepicker-strictmode/sample-details.js +0 -7
  489. package/schematics/generators/daterangepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  490. package/schematics/generators/daterangepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  491. package/schematics/generators/daterangepicker-strictmode/schema.d.ts +0 -3
  492. package/schematics/generators/daterangepicker-strictmode/schema.js +0 -2
  493. package/schematics/generators/daterangepicker-strictmode/schema.json +0 -125
  494. package/schematics/generators/datetimepicker-daterange/index.d.ts +0 -3
  495. package/schematics/generators/datetimepicker-daterange/index.js +0 -8
  496. package/schematics/generators/datetimepicker-daterange/sample-details.d.ts +0 -5
  497. package/schematics/generators/datetimepicker-daterange/sample-details.js +0 -7
  498. package/schematics/generators/datetimepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  499. package/schematics/generators/datetimepicker-daterange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  500. package/schematics/generators/datetimepicker-daterange/schema.d.ts +0 -3
  501. package/schematics/generators/datetimepicker-daterange/schema.js +0 -2
  502. package/schematics/generators/datetimepicker-daterange/schema.json +0 -125
  503. package/schematics/generators/datetimepicker-disableddates/index.d.ts +0 -3
  504. package/schematics/generators/datetimepicker-disableddates/index.js +0 -8
  505. package/schematics/generators/datetimepicker-disableddates/sample-details.d.ts +0 -5
  506. package/schematics/generators/datetimepicker-disableddates/sample-details.js +0 -7
  507. package/schematics/generators/datetimepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  508. package/schematics/generators/datetimepicker-disableddates/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  509. package/schematics/generators/datetimepicker-disableddates/schema.d.ts +0 -3
  510. package/schematics/generators/datetimepicker-disableddates/schema.js +0 -2
  511. package/schematics/generators/datetimepicker-disableddates/schema.json +0 -125
  512. package/schematics/generators/datetimepicker-format/index.d.ts +0 -3
  513. package/schematics/generators/datetimepicker-format/index.js +0 -8
  514. package/schematics/generators/datetimepicker-format/sample-details.d.ts +0 -5
  515. package/schematics/generators/datetimepicker-format/sample-details.js +0 -7
  516. package/schematics/generators/datetimepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
  517. package/schematics/generators/datetimepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -27
  518. package/schematics/generators/datetimepicker-format/schema.d.ts +0 -3
  519. package/schematics/generators/datetimepicker-format/schema.js +0 -2
  520. package/schematics/generators/datetimepicker-format/schema.json +0 -125
  521. package/schematics/generators/datetimepicker-multiselection/index.d.ts +0 -3
  522. package/schematics/generators/datetimepicker-multiselection/index.js +0 -8
  523. package/schematics/generators/datetimepicker-multiselection/sample-details.d.ts +0 -5
  524. package/schematics/generators/datetimepicker-multiselection/sample-details.js +0 -7
  525. package/schematics/generators/datetimepicker-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  526. package/schematics/generators/datetimepicker-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  527. package/schematics/generators/datetimepicker-multiselection/schema.d.ts +0 -3
  528. package/schematics/generators/datetimepicker-multiselection/schema.js +0 -2
  529. package/schematics/generators/datetimepicker-multiselection/schema.json +0 -125
  530. package/schematics/generators/datetimepicker-strictmode/index.d.ts +0 -3
  531. package/schematics/generators/datetimepicker-strictmode/index.js +0 -8
  532. package/schematics/generators/datetimepicker-strictmode/sample-details.d.ts +0 -5
  533. package/schematics/generators/datetimepicker-strictmode/sample-details.js +0 -7
  534. package/schematics/generators/datetimepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  535. package/schematics/generators/datetimepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  536. package/schematics/generators/datetimepicker-strictmode/schema.d.ts +0 -3
  537. package/schematics/generators/datetimepicker-strictmode/schema.js +0 -2
  538. package/schematics/generators/datetimepicker-strictmode/schema.json +0 -125
  539. package/schematics/generators/datetimepicker-views/index.d.ts +0 -3
  540. package/schematics/generators/datetimepicker-views/index.js +0 -8
  541. package/schematics/generators/datetimepicker-views/sample-details.d.ts +0 -5
  542. package/schematics/generators/datetimepicker-views/sample-details.js +0 -7
  543. package/schematics/generators/datetimepicker-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  544. package/schematics/generators/datetimepicker-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  545. package/schematics/generators/datetimepicker-views/schema.d.ts +0 -3
  546. package/schematics/generators/datetimepicker-views/schema.js +0 -2
  547. package/schematics/generators/datetimepicker-views/schema.json +0 -125
  548. package/schematics/generators/timepicker-format/index.d.ts +0 -3
  549. package/schematics/generators/timepicker-format/index.js +0 -8
  550. package/schematics/generators/timepicker-format/sample-details.d.ts +0 -5
  551. package/schematics/generators/timepicker-format/sample-details.js +0 -7
  552. package/schematics/generators/timepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  553. package/schematics/generators/timepicker-format/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  554. package/schematics/generators/timepicker-format/schema.d.ts +0 -3
  555. package/schematics/generators/timepicker-format/schema.js +0 -2
  556. package/schematics/generators/timepicker-format/schema.json +0 -125
  557. package/schematics/generators/timepicker-scrollto/index.d.ts +0 -3
  558. package/schematics/generators/timepicker-scrollto/index.js +0 -8
  559. package/schematics/generators/timepicker-scrollto/sample-details.d.ts +0 -5
  560. package/schematics/generators/timepicker-scrollto/sample-details.js +0 -7
  561. package/schematics/generators/timepicker-scrollto/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  562. package/schematics/generators/timepicker-scrollto/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  563. package/schematics/generators/timepicker-scrollto/schema.d.ts +0 -3
  564. package/schematics/generators/timepicker-scrollto/schema.js +0 -2
  565. package/schematics/generators/timepicker-scrollto/schema.json +0 -125
  566. package/schematics/generators/timepicker-step/index.d.ts +0 -3
  567. package/schematics/generators/timepicker-step/index.js +0 -8
  568. package/schematics/generators/timepicker-step/sample-details.d.ts +0 -5
  569. package/schematics/generators/timepicker-step/sample-details.js +0 -7
  570. package/schematics/generators/timepicker-step/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  571. package/schematics/generators/timepicker-step/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  572. package/schematics/generators/timepicker-step/schema.d.ts +0 -3
  573. package/schematics/generators/timepicker-step/schema.js +0 -2
  574. package/schematics/generators/timepicker-step/schema.json +0 -125
  575. package/schematics/generators/timepicker-strictmode/index.d.ts +0 -3
  576. package/schematics/generators/timepicker-strictmode/index.js +0 -8
  577. package/schematics/generators/timepicker-strictmode/sample-details.d.ts +0 -5
  578. package/schematics/generators/timepicker-strictmode/sample-details.js +0 -7
  579. package/schematics/generators/timepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  580. package/schematics/generators/timepicker-strictmode/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  581. package/schematics/generators/timepicker-strictmode/schema.d.ts +0 -3
  582. package/schematics/generators/timepicker-strictmode/schema.js +0 -2
  583. package/schematics/generators/timepicker-strictmode/schema.json +0 -125
  584. package/schematics/generators/timepicker-timerange/index.d.ts +0 -3
  585. package/schematics/generators/timepicker-timerange/index.js +0 -8
  586. package/schematics/generators/timepicker-timerange/sample-details.d.ts +0 -5
  587. package/schematics/generators/timepicker-timerange/sample-details.js +0 -7
  588. package/schematics/generators/timepicker-timerange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -8
  589. package/schematics/generators/timepicker-timerange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  590. package/schematics/generators/timepicker-timerange/schema.d.ts +0 -3
  591. package/schematics/generators/timepicker-timerange/schema.js +0 -2
  592. package/schematics/generators/timepicker-timerange/schema.json +0 -125
  593. package/schematics/ng-add/index.d.ts +0 -3
  594. package/schematics/ng-add/index.js +0 -9
  595. package/schematics/ng-add/schema.d.ts +0 -13
  596. package/schematics/ng-add/schema.js +0 -2
  597. package/schematics/ng-add/schema.json +0 -34
  598. package/schematics/tsconfig.json +0 -25
  599. package/schematics/utils/lib-details.d.ts +0 -4
  600. package/schematics/utils/lib-details.js +0 -6
package/README.md CHANGED
@@ -1,24 +1,36 @@
1
- # Angular Calendars Components
1
+ # ej2-angular-calendars
2
2
 
3
- The [Angular Calendars](https://www.syncfusion.com/angular-components/angular-calendar?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) package contains date and time components such as calendar, date picker, date range picker, date time picker, and time picker. These components come with options to disable dates, restrict selection, and show custom events.
3
+ The calendar package contains date and time components such as calendar, date picker, date range picker, date time picker, and time picker. These components come with options to disable dates, restrict selection, and show custom events. It also has documentation and support available under commercial and community licenses. Please visit [www.syncfusion.com](https://www.syncfusion.com/) to get started.
4
4
 
5
- ## What's Included in the Angular Calendars Package
5
+ <p align="center" style="width:400px; margin:0 auto;">
6
+ <img src="https://ej2.syncfusion.com/products/images/calendar/readme.gif" alt="Calendar components">
7
+ </p>
6
8
 
7
- The [Angular Calendars](https://www.syncfusion.com/angular-components/angular-calendar?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) package includes the following list of components.
9
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials).
8
10
 
9
- ### Angular Calendar
11
+ > A free community license (https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
10
12
 
11
- The [Angular Calendar](https://www.syncfusion.com/angular-components/angular-calendar?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) component is a graphical user interface component that displays a Gregorian or Islamic Calendar and allows selection of a date.
13
+ ## Setup
12
14
 
13
- <p align="center">
14
- <a href="https://ej2.syncfusion.com/angular/documentation/calendar/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Getting Started</a> .
15
- <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/calendar/default">Online demos</a> .
16
- <a href="https://www.syncfusion.com/angular-components/angular-calendar?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Learn more</a>
17
- </p>
15
+ To install `Calendar` and its dependent packages, use the following command.
18
16
 
19
- <p align="center">
20
- <img alt="Angular Calendar Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-calendar.png">
21
- </p>
17
+ ```sh
18
+ npm install @syncfusion/ej2-angular-calendars
19
+ ```
20
+
21
+ ## Components
22
+
23
+ List of components available in the package:
24
+
25
+ * [Calendar](#calendar)
26
+ * [DatePicker](#datepicker)
27
+ * [TimePicker](#timepicker)
28
+ * [DateTimePicker](#datetimepicker)
29
+ * [DateRangePicker](#daterangepicker)
30
+
31
+ ### Calendar
32
+
33
+ The `calendar` is a graphical user interface component that displays a Gregorian Calendar and allows selection of a date.
22
34
 
23
35
  #### Key features
24
36
 
@@ -32,42 +44,34 @@ The [Angular Calendar](https://www.syncfusion.com/angular-components/angular-cal
32
44
  * [Highlight weekends](https://ej2.syncfusion.com/angular/documentation/calendar/customization#highlight-weekends) - The calendar supports to highlighting every weekend in a month.
33
45
  * [Globalization](https://ej2.syncfusion.com/angular/documentation/calendar/globalization#globalization) - Supports globalization (internationalization and localization) to translate the names of months, days, and the today button text to any supported language.
34
46
 
35
- ### Angular DatePicker
47
+ #### Resources
36
48
 
37
- The [Angular DatePicker](https://www.syncfusion.com/angular-components/angular-datepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) component is a graphical user interface component that allows selection or entry of a date value.
49
+ * [Getting started](https://ej2.syncfusion.com/angular/documentation/calendar/getting-started?utm_source=npm&utm_campaign=calendar#getting-started)
50
+ * [API reference](https://ej2.syncfusion.com/angular/documentation/api/calendar?utm_source=npm&utm_campaign=calendar)
51
+ * [View online demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=calendar#/material/calendar/default)
52
+ * [Product page](https://www.syncfusion.com/products/angular-ui-components/calendar)
38
53
 
39
- <p align="center">
40
- <a href="https://ej2.syncfusion.com/angular/documentation/datepicker/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Getting Started</a> .
41
- <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/datepicker/default">Online demos</a> .
42
- <a href="https://www.syncfusion.com/angular-components/angular-datepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Learn more</a>
43
- </p>
54
+ ### DatePicker
44
55
 
45
- <p align="center">
46
- <img alt="Angular DatePicker Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-datepicker.png">
47
- </p>
56
+ The `date picker` is a graphical user interface component that allows selection or entry of a date value.
48
57
 
49
58
  #### Key features
50
59
 
51
- * [Placeholders](https://ej2.syncfusion.com/angular/documentation/datepicker/how-to/disable-placeholder-readonly?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) - Placeholder is a hint text that is displayed in the DatePicker; it is used to indicate the format of the date that the user should enter, such as mm/dd/yyyy or dd/mm/yyyy.
52
- * [Mask date input](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/datepicker/input-mask) - The mask date input restricts the user from typing unwanted characters in the text input, allowing only eligible date format to be typed.
53
- * [Disabled date](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/datepicker/disabled) - To disable a specific date in the picker calendar and restrict it from being set or selected in the DatePicker.
54
- * [Date format](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/datepicker/date-format) - The DatePicker control’s input value can be custom formatted apart from the default culture’s specific date format.
55
- * [Incomplete date validation](https://ej2.syncfusion.com/angular/documentation/datepicker/strict-mode?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) - The strictMode is an act that allows entry only of valid dates within the specified min or max range in a text box.
56
- * [Globalization](https://ej2.syncfusion.com/angular/documentation/datepicker/globalization?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) - Support globalization (also known as internationalization and localization) to allow you to translate the names of months, days, and other text elements in the calendar to any supported language. This can be useful in cases where you want to display the calendar in a language other than the default language.
60
+ The date picker is inherited from the calendar component. So, all the key features of calendar can be accessed in the date picker component. Additionally, it has some specific features such as `date format` and `strict mode`.
57
61
 
58
- ### Angular TimePicker
62
+ * [Date format](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=datepicker#/material/datepicker/date-format) - The date picker control’s input value can be custom formatted apart from the default culture’s specific date format.
63
+ * [Strict mode](https://ej2.syncfusion.com/angular/documentation/datepicker/strict-mode?utm_source=npm&utm_campaign=datepicker#strict-mode) - The strictMode is an act that allows entry only of valid dates within the specified min or max range in a text box.
59
64
 
60
- The [Angular TimePicker](https://www.syncfusion.com/angular-components/angular-timepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) component is a simple and intuitive interface component that allows selection of a time value from the popup list or setting a desired time value.
65
+ #### Resources
61
66
 
62
- <p align="center">
63
- <a href="https://ej2.syncfusion.com/angular/documentation/timepicker/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Getting Started</a> .
64
- <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/timepicker/default">Online demos</a> .
65
- <a href="https://www.syncfusion.com/angular-components/angular-timepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Learn more</a>
66
- </p>
67
+ * [Getting started](https://ej2.syncfusion.com/angular/documentation/datepicker/getting-started?utm_source=npm&utm_campaign=datepicker#getting-started)
68
+ * [API reference](https://ej2.syncfusion.com/angular/documentation/api/datepicker?utm_source=npm&utm_campaign=datepicker)
69
+ * [View online demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=datepicker#/material/datepicker/default)
70
+ * [Product page](https://www.syncfusion.com/products/angular-ui-components/datepicker)
67
71
 
68
- <p align="center">
69
- <img alt="Angular TimePicker Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-timepicker.png">
70
- </p>
72
+ ### TimePicker
73
+
74
+ `Time picker` is a simple and intuitive interface component that allows selection of a time value from the popup list or setting a desired time value.
71
75
 
72
76
  #### Key features
73
77
 
@@ -78,42 +82,36 @@ The [Angular TimePicker](https://www.syncfusion.com/angular-components/angular-t
78
82
  * [Time intervals](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=timepicker#/material/timepicker/list-formatting) - Allows populating the time list with intervals between the times in the popup list to enable selection of proper time value.
79
83
  * [Customization](https://ej2.syncfusion.com/angular/documentation/timepicker/how-to/css-customization#css-customization) - The appearance of the time picker can be customized completely.
80
84
  * [Time list with duration](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=timepicker#/material/timepicker/list-formatting) - Supports customization of the control’s popup list items with time duration.
81
- * [Mask time input](https://ej2.syncfusion.com/angular/demos/#/material/timepicker/input-mask) - The mask time input restricts the user from typing unwanted characters in the text input, allowing only eligible time format to be typed.
82
85
  * [Globalization](https://ej2.syncfusion.com/angular/documentation/timepicker/globalization#globalization) - Supports globalization (internationalization and localization) to update time popup list values to match any specified culture.
83
86
 
84
- ### Angular DateTimePicker
87
+ #### Resources
85
88
 
86
- The [Angular DateTimePicker](https://www.syncfusion.com/angular-components/angular-datetime-picker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) component is a graphical user interface component that allows an end user to enter or select a date and time values from a pop-up calendar and time list pop-up.
89
+ * [Getting started](https://ej2.syncfusion.com/angular/documentation/timepicker/getting-started?utm_source=npm&utm_campaign=timepicker#getting-started)
90
+ * [API reference](https://ej2.syncfusion.com/angular/documentation/api/timepicker?utm_source=npm&utm_campaign=timepicker)
91
+ * [View online demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=timepicker#/material/timepicker/default)
92
+ * [Product page](https://www.syncfusion.com/products/angular-ui-components/timepicker)
87
93
 
88
- <p align="center">
89
- <a href="https://ej2.syncfusion.com/angular/documentation/datetimepicker/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Getting Started</a> .
90
- <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/datetimepicker/default">Online demos</a> .
91
- <a href="https://www.syncfusion.com/angular-components/angular-datetime-picker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Learn more</a>
92
- </p>
94
+ ### DateTimePicker
93
95
 
94
- <p align="center">
95
- <img alt="Angular DateTimePicker Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-datetimepicker.png">
96
- </p>
96
+ The `date time picker` is a graphical user interface component that allows an end user to enter or select a date and time values from a pop-up calendar and time list pop-up.
97
97
 
98
98
  #### Key features
99
99
 
100
+ The date time picker is inherited from the date picker and time picker component. So, all the key features of the date picker and time picker component can be accessed in the date time picker component. Additionally, it has some specific features such as `Date time range` and `Date time format`, which are described below.
101
+
100
102
  * [Date time range](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=datetimepicker#/material/datetimepicker/range) - Restricts the entry or selection of values within a specific range of dates and times by using `min` and `max` properties.
101
103
  * [Date time format](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=datetimepicker#/material/datetimepicker/date-time-format) - The control’s input value can be custom formatted apart from the default culture’s specific date time format.
102
- * [Mask date time input](https://ej2.syncfusion.com/angular/demos/#/material/datetimepicker/input-mask) - The mask date time input restricts the user from typing unwanted characters in the text input, allowing only eligible date and time format to be typed.
103
104
 
104
- ### Angular DateRangePicker
105
+ #### Resources
105
106
 
106
- The [Angular DateRangePicker](https://www.syncfusion.com/angular-components/angular-daterangepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm) component is a graphical user interface control that allows an end user to select start and end date values as a range from a calendar pop-up or by entering the value directly in the input element.
107
+ * [Getting started](https://ej2.syncfusion.com/angular/documentation/datetimepicker/getting-started?utm_source=npm&utm_campaign=datetimepicker#getting-started)
108
+ * [API reference](https://ej2.syncfusion.com/angular/documentation/api/datetimepicker?utm_source=npm&utm_campaign=datetimepicker)
109
+ * [View online demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=datetimepicker#/material/datetimepicker/default)
110
+ * [Product page](https://www.syncfusion.com/products/angular-ui-components/datetimepicker)
107
111
 
108
- <p align="center">
109
- <a href="https://ej2.syncfusion.com/angular/documentation/daterangepicker/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Getting Started</a> .
110
- <a href="https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm#/material/daterangepicker/default">Online demos</a> .
111
- <a href="https://www.syncfusion.com/angular-components/angular-daterangepicker?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm">Learn more</a>
112
- </p>
112
+ ### DateRangePicker
113
113
 
114
- <p align="center">
115
- <img alt="Angular DateRangePicker Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-daterangepicker.png">
116
- </p>
114
+ The `date range picker` is a graphical user interface control that allows an end user to select start and end date values as a range from a calendar pop-up or by entering the value directly in the input element.
117
115
 
118
116
  #### Key features
119
117
 
@@ -126,54 +124,45 @@ The [Angular DateRangePicker](https://www.syncfusion.com/angular-components/angu
126
124
  * [Format](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=daterangepicker#/material/daterangepicker/date-format) - The control’s input value can be custom formatted apart from the default culture’s specific date range format.
127
125
  * [Globalization](https://ej2.syncfusion.com/angular/documentation/daterangepicker/globalization#globalization) - Supports globalization (internationalization and localization) to translate the names of months, days, and button text to any supported language.
128
126
 
129
- <p align="center">
130
- Trusted by the world's leading companies
131
- <a href="https://www.syncfusion.com/">
132
- <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Syncfusion logo">
133
- </a>
134
- </p>
127
+ #### Resources
135
128
 
136
- ## Setup
129
+ * [Getting started](https://ej2.syncfusion.com/angular/documentation/daterangepicker/getting-started?utm_source=npm&utm_campaign=daterangepicker#getting-started)
130
+ * [API reference](https://ej2.syncfusion.com/angular/documentation/api/daterangepicker?utm_source=npm&utm_campaign=daterangepicker)
131
+ * [View online demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_campaign=daterangepicker#/material/daterangepicker/default)
132
+ * [Product page](https://www.syncfusion.com/products/angular-ui-components/daterangepicker)
137
133
 
138
- To install `calendars` and its dependent packages, use the following command.
134
+ ## Supported Frameworks
139
135
 
140
- ```sh
141
- npm install @syncfusion/ej2-angular-calendars
142
- ```
136
+ Date time components are also offered in the following list of frameworks.
143
137
 
144
- ## Supported frameworks
138
+ * [React](https://github.com/syncfusion/ej2-react-ui-components/tree/master/components/calendars?utm_source=npm&utm_campaign=calendars)
139
+ * [VueJS](https://github.com/syncfusion/ej2-vue-ui-components/tree/master/components/calendars?utm_source=npm&utm_campaign=calendars)
140
+ * [ASP.NET Core](https://www.syncfusion.com/products/aspnet-core-ui-controls/calendar)
141
+ * [ASP.NET MVC](https://www.syncfusion.com/products/aspnet-mvc-ui-controls/calendar)
142
+ * [JavaScript](https://www.syncfusion.com/products/javascript-ui-controls/calendar)
145
143
 
146
- Calendar components are also offered in the following list of frameworks.
144
+ ## Showcase samples
147
145
 
148
- | [<img src="https://ej2.syncfusion.com/github/images/js.svg" height="50" />](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[JavaScript](https://www.syncfusion.com/javascript-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/react-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/vue-ui-components?utm_medium=listing&utm_source=github)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/aspnet-core-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls?utm_medium=listing&utm_source=github)&nbsp;&nbsp; |
149
- | :-----: | :-----: | :-----: | :-----: | :-----: |
146
+ 1. Expanse tracker ([Source](https://github.com/syncfusion/ej2-showcase-angular-expensetracker), [Live Demo](https://ej2.syncfusion.com/showcase/angular/expensetracker/#/dashboard?utm_source=npm&utm_campaign=daterangepicker)) - Date range picker component is used in this showcase sample to depict total expenses.
150
147
 
151
- ## Showcase samples
148
+ 2. Loan calculator ([Source](https://github.com/syncfusion/ej2-showcase-angular-loancalculator), [Live Demo](https://ej2.syncfusion.com/showcase/angular/loancalculator/?utm_source=npm&utm_campaign=datepicker)) - Date picker component in this showcase sample displays the balance from monthly payment.
152
149
 
153
- * Expanse Tracker - [Source](https://github.com/syncfusion/ej2-showcase-angular-expensetracker), [Live Demo](https://ej2.syncfusion.com/showcase/angular/expensetracker/#/dashboard?utm_source=npm&utm_campaign=daterangepicker)
154
- * Loan calculator - [Source](https://github.com/syncfusion/ej2-showcase-angular-loancalculator), [Live Demo](https://ej2.syncfusion.com/showcase/angular/loancalculator/?utm_source=npm&utm_campaign=datepicker)
155
- * Stock chart - [Live Demo](https://ej2.syncfusion.com/showcase/angular/stockchart/#/stockChart?utm_source=npm&utm_campaign=daterangepicker)
150
+ 3. Stock chart ([Live Demo](https://ej2.syncfusion.com/showcase/angular/stockchart/#/stockChart?utm_source=npm&utm_campaign=daterangepicker)) - Date range picker component in this showcase sample to display the stock analysis.
156
151
 
157
152
  ## Support
158
153
 
159
154
  Product support is available through the following mediums.
160
155
 
161
- * [Support ticket](https://support.syncfusion.com/support/tickets/create) - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
162
- * [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm)
163
- * [GitHub issues](https://github.com/syncfusion/ej2-angular-ui-components/issues/new)
164
- * [Request feature or report bug](https://www.syncfusion.com/feedback/angular?utm_source=npm&utm_medium=listing&utm_campaign=angular-calendar-npm)
165
- * Live chat
156
+ * Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=calendar) support system or [Community forum](https://www.syncfusion.com/forums/angular-js2?utm_source=npm&utm_campaign=calendar).
157
+ * New [GitHub issue](https://github.com/syncfusion/ej2-angular-ui-components/issues/new).
158
+ * Ask your queries in Stack Overflow with tag `syncfusion`, `ej2`, and so on.
166
159
 
167
- ## Changelog
168
-
169
- Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/calendars/CHANGELOG.md). Get minor improvements and bug fixes every week to stay up to date with frequent updates.
160
+ ## License
170
161
 
171
- ## License and copyright
162
+ Check the license details [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license).
172
163
 
173
- > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
174
-
175
- > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
164
+ ## Changelog
176
165
 
177
- See [LICENSE FILE](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license) for more info.
166
+ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/calendars/CHANGELOG.md).
178
167
 
179
168
  © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -0,0 +1,3 @@
1
+ // Mapping root file for package generation
2
+ export * from './src/index';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsMkNBQTJDO0FBQzNDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gTWFwcGluZyByb290IGZpbGUgZm9yIHBhY2thZ2UgZ2VuZXJhdGlvblxuZXhwb3J0ICogZnJvbSAnLi9zcmMvaW5kZXgnOyJdfQ==
@@ -0,0 +1,29 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { CalendarModule } from './calendar.module';
4
+ import { Islamic } from '@syncfusion/ej2-calendars';
5
+ import * as i0 from "@angular/core";
6
+ export const IslamicService = { provide: 'CalendarsIslamic', useValue: Islamic };
7
+ /**
8
+ * NgModule definition for the Calendar component with providers.
9
+ */
10
+ export class CalendarAllModule {
11
+ }
12
+ CalendarAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
13
+ CalendarAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarAllModule, imports: [CommonModule, CalendarModule], exports: [CalendarModule] });
14
+ CalendarAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarAllModule, providers: [
15
+ IslamicService
16
+ ], imports: [[CommonModule, CalendarModule], CalendarModule] });
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarAllModule, decorators: [{
18
+ type: NgModule,
19
+ args: [{
20
+ imports: [CommonModule, CalendarModule],
21
+ exports: [
22
+ CalendarModule
23
+ ],
24
+ providers: [
25
+ IslamicService
26
+ ]
27
+ }]
28
+ }] });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXItYWxsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jYWxlbmRhci9jYWxlbmRhci1hbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDbkQsT0FBTyxFQUFDLE9BQU8sRUFBQyxNQUFNLDJCQUEyQixDQUFBOztBQUdqRCxNQUFNLENBQUMsTUFBTSxjQUFjLEdBQWtCLEVBQUUsT0FBTyxFQUFFLGtCQUFrQixFQUFFLFFBQVEsRUFBRSxPQUFPLEVBQUMsQ0FBQztBQUUvRjs7R0FFRztBQVVILE1BQU0sT0FBTyxpQkFBaUI7OzhHQUFqQixpQkFBaUI7K0dBQWpCLGlCQUFpQixZQVJoQixZQUFZLEVBQUUsY0FBYyxhQUVsQyxjQUFjOytHQU1ULGlCQUFpQixhQUpoQjtRQUNOLGNBQWM7S0FDakIsWUFOUSxDQUFDLFlBQVksRUFBRSxjQUFjLENBQUMsRUFFbkMsY0FBYzsyRkFNVCxpQkFBaUI7a0JBVDdCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGNBQWMsQ0FBQztvQkFDdkMsT0FBTyxFQUFFO3dCQUNMLGNBQWM7cUJBQ2pCO29CQUNELFNBQVMsRUFBQzt3QkFDTixjQUFjO3FCQUNqQjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlLCBWYWx1ZVByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2FsZW5kYXJDb21wb25lbnQgfSBmcm9tICcuL2NhbGVuZGFyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDYWxlbmRhck1vZHVsZSB9IGZyb20gJy4vY2FsZW5kYXIubW9kdWxlJztcbmltcG9ydCB7SXNsYW1pY30gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWNhbGVuZGFycydcblxuXG5leHBvcnQgY29uc3QgSXNsYW1pY1NlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdDYWxlbmRhcnNJc2xhbWljJywgdXNlVmFsdWU6IElzbGFtaWN9O1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBDYWxlbmRhciBjb21wb25lbnQgd2l0aCBwcm92aWRlcnMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQ2FsZW5kYXJNb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgQ2FsZW5kYXJNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIElzbGFtaWNTZXJ2aWNlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBDYWxlbmRhckFsbE1vZHVsZSB7IH0iXX0=
@@ -0,0 +1,90 @@
1
+ var CalendarComponent_1;
2
+ import { __decorate } from "tslib";
3
+ import { Component, ChangeDetectionStrategy, forwardRef } from '@angular/core';
4
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
5
+ import { ComponentBase, ComponentMixins, FormBase, setValue } from '@syncfusion/ej2-angular-base';
6
+ import { Calendar } from '@syncfusion/ej2-calendars';
7
+ import * as i0 from "@angular/core";
8
+ export const inputs = ['calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'isMultiSelection', 'keyConfigs', 'locale', 'max', 'min', 'serverTimezoneOffset', 'showTodayButton', 'start', 'value', 'values', 'weekNumber', 'weekRule'];
9
+ export const outputs = ['focus', 'blur', 'change', 'created', 'destroyed', 'navigated', 'renderDayCell', 'valueChange', 'valuesChange'];
10
+ export const twoWays = ['value', 'values'];
11
+ /**
12
+ * Represents the Essential JS 2 Angular Calendar Component.
13
+ * ```html
14
+ * <ejs-calendar [value]='date'></ejs-calendar>
15
+ * ```
16
+ */
17
+ let CalendarComponent = CalendarComponent_1 = class CalendarComponent extends Calendar {
18
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
19
+ super();
20
+ this.ngEle = ngEle;
21
+ this.srenderer = srenderer;
22
+ this.viewContainerRef = viewContainerRef;
23
+ this.injector = injector;
24
+ this.element = this.ngEle.nativeElement;
25
+ this.injectedModules = this.injectedModules || [];
26
+ try {
27
+ let mod = this.injector.get('CalendarsIslamic');
28
+ if (this.injectedModules.indexOf(mod) === -1) {
29
+ this.injectedModules.push(mod);
30
+ }
31
+ }
32
+ catch { }
33
+ this.registerEvents(outputs);
34
+ this.addTwoWay.call(this, twoWays);
35
+ setValue('currentInstance', this, this.viewContainerRef);
36
+ this.formContext = new FormBase();
37
+ this.formCompContext = new ComponentBase();
38
+ }
39
+ registerOnChange(registerFunction) {
40
+ }
41
+ registerOnTouched(registerFunction) {
42
+ }
43
+ writeValue(value) {
44
+ }
45
+ setDisabledState(disabled) {
46
+ }
47
+ ngOnInit() {
48
+ this.formCompContext.ngOnInit(this);
49
+ }
50
+ ngAfterViewInit() {
51
+ this.formContext.ngAfterViewInit(this);
52
+ }
53
+ ngOnDestroy() {
54
+ this.formCompContext.ngOnDestroy(this);
55
+ }
56
+ ngAfterContentChecked() {
57
+ this.formCompContext.ngAfterContentChecked(this);
58
+ }
59
+ };
60
+ CalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
61
+ CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: CalendarComponent, selector: "ejs-calendar", inputs: { calendarMode: "calendarMode", cssClass: "cssClass", dayHeaderFormat: "dayHeaderFormat", depth: "depth", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", firstDayOfWeek: "firstDayOfWeek", isMultiSelection: "isMultiSelection", keyConfigs: "keyConfigs", locale: "locale", max: "max", min: "min", serverTimezoneOffset: "serverTimezoneOffset", showTodayButton: "showTodayButton", start: "start", value: "value", values: "values", weekNumber: "weekNumber", weekRule: "weekRule" }, outputs: { focus: "focus", blur: "blur", change: "change", created: "created", destroyed: "destroyed", navigated: "navigated", renderDayCell: "renderDayCell", valueChange: "valueChange", valuesChange: "valuesChange" }, providers: [
62
+ {
63
+ provide: NG_VALUE_ACCESSOR,
64
+ useExisting: forwardRef(() => CalendarComponent_1),
65
+ multi: true
66
+ }
67
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
68
+ CalendarComponent = CalendarComponent_1 = __decorate([
69
+ ComponentMixins([ComponentBase, FormBase])
70
+ ], CalendarComponent);
71
+ export { CalendarComponent };
72
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarComponent, decorators: [{
73
+ type: Component,
74
+ args: [{
75
+ selector: 'ejs-calendar',
76
+ inputs: inputs,
77
+ outputs: outputs,
78
+ template: '',
79
+ changeDetection: ChangeDetectionStrategy.OnPush,
80
+ providers: [
81
+ {
82
+ provide: NG_VALUE_ACCESSOR,
83
+ useExisting: forwardRef(() => CalendarComponent),
84
+ multi: true
85
+ }
86
+ ],
87
+ queries: {}
88
+ }]
89
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
90
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2NhbGVuZGFyL2NhbGVuZGFyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQW9FLHVCQUF1QixFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNqSixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNuRCxPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxRQUFRLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUN2SixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBSXJELE1BQU0sQ0FBQyxNQUFNLE1BQU0sR0FBYSxDQUFDLGNBQWMsRUFBQyxVQUFVLEVBQUMsaUJBQWlCLEVBQUMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLFdBQVcsRUFBQyxTQUFTLEVBQUMsZ0JBQWdCLEVBQUMsa0JBQWtCLEVBQUMsWUFBWSxFQUFDLFFBQVEsRUFBQyxLQUFLLEVBQUMsS0FBSyxFQUFDLHNCQUFzQixFQUFDLGlCQUFpQixFQUFDLE9BQU8sRUFBQyxPQUFPLEVBQUMsUUFBUSxFQUFDLFlBQVksRUFBQyxVQUFVLENBQUMsQ0FBQztBQUNoUyxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxPQUFPLEVBQUUsTUFBTSxFQUFFLFFBQVEsRUFBQyxTQUFTLEVBQUMsV0FBVyxFQUFDLFdBQVcsRUFBQyxlQUFlLEVBQUMsYUFBYSxFQUFDLGNBQWMsQ0FBQyxDQUFDO0FBQzVJLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBYSxDQUFDLE9BQU8sRUFBRSxRQUFRLENBQUMsQ0FBQztBQUVyRDs7Ozs7R0FLRztJQW1CVSxpQkFBaUIsK0JBQWpCLGlCQUFrQixTQUFRLFFBQVE7SUFnQjNDLFlBQW9CLEtBQWlCLEVBQVUsU0FBb0Is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IFZpZXdDb250YWluZXJSZWYsIFZhbHVlUHJvdmlkZXIsIFJlbmRlcmVyMiwgSW5qZWN0b3IsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBmb3J3YXJkUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBOR19WQUxVRV9BQ0NFU1NPUiB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IENvbXBvbmVudEJhc2UsIElDb21wb25lbnRCYXNlLCBhcHBseU1peGlucywgQ29tcG9uZW50TWl4aW5zLCBQcm9wZXJ0eUNvbGxlY3Rpb25JbmZvLCBGb3JtQmFzZSwgc2V0VmFsdWUgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYW5ndWxhci1iYXNlJztcbmltcG9ydCB7IENhbGVuZGFyIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWNhbGVuZGFycyc7XG5cblxuXG5leHBvcnQgY29uc3QgaW5wdXRzOiBzdHJpbmdbXSA9IFsnY2FsZW5kYXJNb2RlJywnY3NzQ2xhc3MnLCdkYXlIZWFkZXJGb3JtYXQnLCdkZXB0aCcsJ2VuYWJsZVBlcnNpc3RlbmNlJywnZW5hYmxlUnRsJywnZW5hYmxlZCcsJ2ZpcnN0RGF5T2ZXZWVrJywnaXNNdWx0aVNlbGVjdGlvbicsJ2tleUNvbmZpZ3MnLCdsb2NhbGUnLCdtYXgnLCdtaW4nLCdzZXJ2ZXJUaW1lem9uZU9mZnNldCcsJ3Nob3dUb2RheUJ1dHRvbicsJ3N0YXJ0JywndmFsdWUnLCd2YWx1ZXMnLCd3ZWVrTnVtYmVyJywnd2Vla1J1bGUnXTtcbmV4cG9ydCBjb25zdCBvdXRwdXRzOiBzdHJpbmdbXSA9IFsnZm9jdXMnLCAnYmx1cicsICdjaGFuZ2UnLCdjcmVhdGVkJywnZGVzdHJveWVkJywnbmF2aWdhdGVkJywncmVuZGVyRGF5Q2VsbCcsJ3ZhbHVlQ2hhbmdlJywndmFsdWVzQ2hhbmdlJ107XG5leHBvcnQgY29uc3QgdHdvV2F5czogc3RyaW5nW10gPSBbJ3ZhbHVlJywgJ3ZhbHVlcyddO1xuXG4vKipcbiAqIFJlcHJlc2VudHMgdGhlIEVzc2VudGlhbCBKUyAyIEFuZ3VsYXIgQ2FsZW5kYXIgQ29tcG9uZW50LlxuICogYGBgaHRtbFxuICogPGVqcy1jYWxlbmRhciBbdmFsdWVdPSdkYXRlJz48L2Vqcy1jYWxlbmRhcj5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2Vqcy1jYWxlbmRhcicsXG4gICAgaW5wdXRzOiBpbnB1dHMsXG4gICAgb3V0cHV0czogb3V0cHV0cyxcbiAgICB0ZW1wbGF0ZTogJycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gQ2FsZW5kYXJDb21wb25lbnQpLFxuICAgICAgICAgICAgbXVsdGk6IHRydWVcbiAgICAgICAgfVxuICAgIF0sXG4gICAgcXVlcmllczoge1xuXG4gICAgfVxufSlcbkBDb21wb25lbnRNaXhpbnMoW0NvbXBvbmVudEJhc2UsIEZvcm1CYXNlXSlcbmV4cG9ydCBjbGFzcyBDYWxlbmRhckNvbXBvbmVudCBleHRlbmRzIENhbGVuZGFyIGltcGxlbWVudHMgSUNvbXBvbmVudEJhc2Uge1xuICAgIHB1YmxpYyBmb3JtQ29tcENvbnRleHQgOiBhbnk7XG4gICAgcHVibGljIGZvcm1Db250ZXh0IDogYW55O1xuICAgIHB1YmxpYyB0YWdPYmplY3RzOiBhbnk7XG5cdGNoYW5nZTogYW55O1xuXHRjcmVhdGVkOiBhbnk7XG5cdGRlc3Ryb3llZDogYW55O1xuXHRuYXZpZ2F0ZWQ6IGFueTtcblx0cmVuZGVyRGF5Q2VsbDogYW55O1xuXHR2YWx1ZUNoYW5nZTogYW55O1xuXHRwdWJsaWMgdmFsdWVzQ2hhbmdlOiBhbnk7XG5cblxuXG4gICAgcHVibGljIGZvY3VzOiBhbnk7XG4gICAgcHVibGljIGJsdXI6IGFueTtcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIG5nRWxlOiBFbGVtZW50UmVmLCBwcml2YXRlIHNyZW5kZXJlcjogUmVuZGVyZXIyLCBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZiwgcHJpdmF0ZSBpbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5lbGVtZW50ID0gdGhpcy5uZ0VsZS5uYXRpdmVFbGVtZW50O1xuICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcyA9IHRoaXMuaW5qZWN0ZWRNb2R1bGVzIHx8IFtdO1xuICAgICAgICB0cnkge1xuICAgICAgICAgICAgICAgIGxldCBtb2QgPSB0aGlzLmluamVjdG9yLmdldCgnQ2FsZW5kYXJzSXNsYW1pYycpO1xuICAgICAgICAgICAgICAgIGlmKHRoaXMuaW5qZWN0ZWRNb2R1bGVzLmluZGV4T2YobW9kKSA9PT0gLTEpIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5pbmplY3RlZE1vZHVsZXMucHVzaChtb2QpXG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSBjYXRjaCB7IH1cblxyXG4gICAgICAgIHRoaXMucmVnaXN0ZXJFdmVudHMob3V0cHV0cyk7XG4gICAgICAgIHRoaXMuYWRkVHdvV2F5LmNhbGwodGhpcywgdHdvV2F5cyk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLmZvcm1Db250ZXh0ICA9IG5ldyBGb3JtQmFzZSgpO1xuICAgICAgICB0aGlzLmZvcm1Db21wQ29udGV4dCAgPSBuZXcgQ29tcG9uZW50QmFzZSgpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3Rlck9uQ2hhbmdlKHJlZ2lzdGVyRnVuY3Rpb246IChfOiBhbnkpID0+IHZvaWQpOiB2b2lkIHtcbiAgICB9XG5cbiAgICBwdWJsaWMgcmVnaXN0ZXJPblRvdWNoZWQocmVnaXN0ZXJGdW5jdGlvbjogKCkgPT4gdm9pZCk6IHZvaWQge1xuICAgIH1cblxuICAgIHB1YmxpYyB3cml0ZVZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICB9XG4gICAgXG4gICAgcHVibGljIHNldERpc2FibGVkU3RhdGUoZGlzYWJsZWQ6IGJvb2xlYW4pOiB2b2lkIHtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIHRoaXMuZm9ybUNvbXBDb250ZXh0Lm5nT25Jbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ0FmdGVyVmlld0luaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZm9ybUNvbnRleHQubmdBZnRlclZpZXdJbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5mb3JtQ29tcENvbnRleHQubmdPbkRlc3Ryb3kodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nQWZ0ZXJDb250ZW50Q2hlY2tlZCgpOiB2b2lkIHtcbiAgICAgICAgXG4gICAgICAgIHRoaXMuZm9ybUNvbXBDb250ZXh0Lm5nQWZ0ZXJDb250ZW50Q2hlY2tlZCh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgcmVnaXN0ZXJFdmVudHM6IChldmVudExpc3Q6IHN0cmluZ1tdKSA9PiB2b2lkO1xuICAgIHB1YmxpYyBhZGRUd29XYXk6IChwcm9wTGlzdDogc3RyaW5nW10pID0+IHZvaWQ7XG59XG5cbiJdfQ==
@@ -0,0 +1,25 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { CalendarComponent } from './calendar.component';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * NgModule definition for the Calendar component.
7
+ */
8
+ export class CalendarModule {
9
+ }
10
+ CalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ CalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarModule, declarations: [CalendarComponent], imports: [CommonModule], exports: [CalendarComponent] });
12
+ CalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarModule, imports: [[CommonModule]] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: CalendarModule, decorators: [{
14
+ type: NgModule,
15
+ args: [{
16
+ imports: [CommonModule],
17
+ declarations: [
18
+ CalendarComponent
19
+ ],
20
+ exports: [
21
+ CalendarComponent
22
+ ]
23
+ }]
24
+ }] });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2NhbGVuZGFyL2NhbGVuZGFyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFekQ7O0dBRUc7QUFVSCxNQUFNLE9BQU8sY0FBYzs7MkdBQWQsY0FBYzs0R0FBZCxjQUFjLGlCQU5uQixpQkFBaUIsYUFGWCxZQUFZLGFBS2xCLGlCQUFpQjs0R0FHWixjQUFjLFlBUmQsQ0FBQyxZQUFZLENBQUM7MkZBUWQsY0FBYztrQkFUMUIsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRTt3QkFDVixpQkFBaUI7cUJBQ3BCO29CQUNELE9BQU8sRUFBRTt3QkFDTCxpQkFBaUI7cUJBQ3BCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDYWxlbmRhckNvbXBvbmVudCB9IGZyb20gJy4vY2FsZW5kYXIuY29tcG9uZW50JztcblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgQ2FsZW5kYXIgY29tcG9uZW50LlxuICovXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIGRlY2xhcmF0aW9uczogW1xuICAgICAgICBDYWxlbmRhckNvbXBvbmVudFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBDYWxlbmRhckNvbXBvbmVudFxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgQ2FsZW5kYXJNb2R1bGUgeyB9Il19
@@ -0,0 +1,29 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { DatePickerModule } from './datepicker.module';
4
+ import { MaskedDateTime } from '@syncfusion/ej2-calendars';
5
+ import * as i0 from "@angular/core";
6
+ export const MaskedDateTimeService = { provide: 'CalendarsMaskedDateTime', useValue: MaskedDateTime };
7
+ /**
8
+ * NgModule definition for the DatePicker component with providers.
9
+ */
10
+ export class DatePickerAllModule {
11
+ }
12
+ DatePickerAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
13
+ DatePickerAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerAllModule, imports: [CommonModule, DatePickerModule], exports: [DatePickerModule] });
14
+ DatePickerAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerAllModule, providers: [
15
+ MaskedDateTimeService
16
+ ], imports: [[CommonModule, DatePickerModule], DatePickerModule] });
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerAllModule, decorators: [{
18
+ type: NgModule,
19
+ args: [{
20
+ imports: [CommonModule, DatePickerModule],
21
+ exports: [
22
+ DatePickerModule
23
+ ],
24
+ providers: [
25
+ MaskedDateTimeService
26
+ ]
27
+ }]
28
+ }] });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXBpY2tlci1hbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2RhdGVwaWNrZXIvZGF0ZXBpY2tlci1hbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN2RCxPQUFPLEVBQUMsY0FBYyxFQUFDLE1BQU0sMkJBQTJCLENBQUE7O0FBR3hELE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFrQixFQUFFLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxRQUFRLEVBQUUsY0FBYyxFQUFDLENBQUM7QUFFcEg7O0dBRUc7QUFVSCxNQUFNLE9BQU8sbUJBQW1COztnSEFBbkIsbUJBQW1CO2lIQUFuQixtQkFBbUIsWUFSbEIsWUFBWSxFQUFFLGdCQUFnQixhQUVwQyxnQkFBZ0I7aUhBTVgsbUJBQW1CLGFBSmxCO1FBQ04scUJBQXFCO0tBQ3hCLFlBTlEsQ0FBQyxZQUFZLEVBQUUsZ0JBQWdCLENBQUMsRUFFckMsZ0JBQWdCOzJGQU1YLG1CQUFtQjtrQkFUL0IsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsZ0JBQWdCLENBQUM7b0JBQ3pDLE9BQU8sRUFBRTt3QkFDTCxnQkFBZ0I7cUJBQ25CO29CQUNELFNBQVMsRUFBQzt3QkFDTixxQkFBcUI7cUJBQ3hCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUsIFZhbHVlUHJvdmlkZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBEYXRlUGlja2VyQ29tcG9uZW50IH0gZnJvbSAnLi9kYXRlcGlja2VyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYXRlUGlja2VyTW9kdWxlIH0gZnJvbSAnLi9kYXRlcGlja2VyLm1vZHVsZSc7XG5pbXBvcnQge01hc2tlZERhdGVUaW1lfSBmcm9tICdAc3luY2Z1c2lvbi9lajItY2FsZW5kYXJzJ1xuXG5cbmV4cG9ydCBjb25zdCBNYXNrZWREYXRlVGltZVNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdDYWxlbmRhcnNNYXNrZWREYXRlVGltZScsIHVzZVZhbHVlOiBNYXNrZWREYXRlVGltZX07XG5cbi8qKlxuICogTmdNb2R1bGUgZGVmaW5pdGlvbiBmb3IgdGhlIERhdGVQaWNrZXIgY29tcG9uZW50IHdpdGggcHJvdmlkZXJzLlxuICovXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIERhdGVQaWNrZXJNb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgRGF0ZVBpY2tlck1vZHVsZVxuICAgIF0sXG4gICAgcHJvdmlkZXJzOltcbiAgICAgICAgTWFza2VkRGF0ZVRpbWVTZXJ2aWNlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBEYXRlUGlja2VyQWxsTW9kdWxlIHsgfSJdfQ==
@@ -0,0 +1,98 @@
1
+ var DatePickerComponent_1;
2
+ import { __decorate } from "tslib";
3
+ import { Component, ChangeDetectionStrategy, forwardRef } from '@angular/core';
4
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
5
+ import { ComponentBase, ComponentMixins, FormBase, setValue } from '@syncfusion/ej2-angular-base';
6
+ import { DatePicker } from '@syncfusion/ej2-calendars';
7
+ import * as i0 from "@angular/core";
8
+ export const inputs = ['allowEdit', 'calendarMode', 'cssClass', 'dayHeaderFormat', 'depth', 'enableMask', 'enablePersistence', 'enableRtl', 'enabled', 'firstDayOfWeek', 'floatLabelType', 'format', 'htmlAttributes', 'isMultiSelection', 'keyConfigs', 'locale', 'maskPlaceholder', 'max', 'min', 'openOnFocus', 'placeholder', 'readonly', 'serverTimezoneOffset', 'showClearButton', 'showTodayButton', 'start', 'strictMode', 'value', 'values', 'weekNumber', 'weekRule', 'width', 'zIndex'];
9
+ export const outputs = ['blur', 'change', 'cleared', 'close', 'created', 'destroyed', 'focus', 'navigated', 'open', 'renderDayCell', 'valueChange'];
10
+ export const twoWays = ['value'];
11
+ /**
12
+ * Represents the Essential JS 2 Angular DatePicker Component.
13
+ * ```html
14
+ * <ejs-datepicker [value]='date'></ejs-datepicker>
15
+ * ```
16
+ */
17
+ let DatePickerComponent = DatePickerComponent_1 = class DatePickerComponent extends DatePicker {
18
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
19
+ super();
20
+ this.ngEle = ngEle;
21
+ this.srenderer = srenderer;
22
+ this.viewContainerRef = viewContainerRef;
23
+ this.injector = injector;
24
+ this.skipFromEvent = true;
25
+ this.element = this.ngEle.nativeElement;
26
+ this.injectedModules = this.injectedModules || [];
27
+ try {
28
+ let mod = this.injector.get('CalendarsIslamic');
29
+ if (this.injectedModules.indexOf(mod) === -1) {
30
+ this.injectedModules.push(mod);
31
+ }
32
+ }
33
+ catch { }
34
+ try {
35
+ let mod = this.injector.get('CalendarsMaskedDateTime');
36
+ if (this.injectedModules.indexOf(mod) === -1) {
37
+ this.injectedModules.push(mod);
38
+ }
39
+ }
40
+ catch { }
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
+ registerOnChange(registerFunction) {
48
+ }
49
+ registerOnTouched(registerFunction) {
50
+ }
51
+ writeValue(value) {
52
+ }
53
+ setDisabledState(disabled) {
54
+ }
55
+ ngOnInit() {
56
+ this.formCompContext.ngOnInit(this);
57
+ }
58
+ ngAfterViewInit() {
59
+ this.formContext.ngAfterViewInit(this);
60
+ }
61
+ ngOnDestroy() {
62
+ this.formCompContext.ngOnDestroy(this);
63
+ }
64
+ ngAfterContentChecked() {
65
+ this.formCompContext.ngAfterContentChecked(this);
66
+ }
67
+ };
68
+ DatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
69
+ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DatePickerComponent, selector: "ejs-datepicker", inputs: { allowEdit: "allowEdit", calendarMode: "calendarMode", cssClass: "cssClass", dayHeaderFormat: "dayHeaderFormat", depth: "depth", enableMask: "enableMask", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", firstDayOfWeek: "firstDayOfWeek", floatLabelType: "floatLabelType", format: "format", htmlAttributes: "htmlAttributes", isMultiSelection: "isMultiSelection", keyConfigs: "keyConfigs", locale: "locale", maskPlaceholder: "maskPlaceholder", max: "max", min: "min", openOnFocus: "openOnFocus", placeholder: "placeholder", readonly: "readonly", serverTimezoneOffset: "serverTimezoneOffset", showClearButton: "showClearButton", showTodayButton: "showTodayButton", start: "start", strictMode: "strictMode", value: "value", values: "values", weekNumber: "weekNumber", weekRule: "weekRule", width: "width", zIndex: "zIndex" }, outputs: { blur: "blur", change: "change", cleared: "cleared", close: "close", created: "created", destroyed: "destroyed", focus: "focus", navigated: "navigated", open: "open", renderDayCell: "renderDayCell", valueChange: "valueChange" }, providers: [
70
+ {
71
+ provide: NG_VALUE_ACCESSOR,
72
+ useExisting: forwardRef(() => DatePickerComponent_1),
73
+ multi: true
74
+ }
75
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76
+ DatePickerComponent = DatePickerComponent_1 = __decorate([
77
+ ComponentMixins([ComponentBase, FormBase])
78
+ ], DatePickerComponent);
79
+ export { DatePickerComponent };
80
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DatePickerComponent, decorators: [{
81
+ type: Component,
82
+ args: [{
83
+ selector: 'ejs-datepicker',
84
+ inputs: inputs,
85
+ outputs: outputs,
86
+ template: '',
87
+ changeDetection: ChangeDetectionStrategy.OnPush,
88
+ providers: [
89
+ {
90
+ provide: NG_VALUE_ACCESSOR,
91
+ useExisting: forwardRef(() => DatePickerComponent),
92
+ multi: true
93
+ }
94
+ ],
95
+ queries: {}
96
+ }]
97
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
98
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXBpY2tlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZGF0ZXBpY2tlci9kYXRlcGlja2VyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQW9FLHVCQUF1QixFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNqSixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNuRCxPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxRQUFRLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUN2SixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBSXZELE1BQU0sQ0FBQyxNQUFNLE1BQU0sR0FBYSxDQUFDLFdBQVcsRUFBQyxjQUFjLEVBQUMsVUFBVSxFQUFDLGlCQUFpQixFQUFDLE9BQU8sRUFBQyxZQUFZLEVBQUMsbUJBQW1CLEVBQUMsV0FBVyxFQUFDLFNBQVMsRUFBQyxnQkFBZ0IsRUFBQyxnQkFBZ0IsRUFBQyxRQUFRLEVBQUMsZ0JBQWdCLEVBQUMsa0JBQWtCLEVBQUMsWUFBWSxFQUFDLFFBQVEsRUFBQyxpQkFBaUIsRUFBQyxLQUFLLEVBQUMsS0FBSyxFQUFDLGFBQWEsRUFBQyxhQUFhLEVBQUMsVUFBVSxFQUFDLHNCQUFzQixFQUFDLGlCQUFpQixFQUFDLGlCQUFpQixFQUFDLE9BQU8sRUFBQyxZQUFZLEVBQUMsT0FBTyxFQUFDLFFBQVEsRUFBQyxZQUFZLEVBQUMsVUFBVSxFQUFDLE9BQU8sRUFBQyxRQUFRLENBQUMsQ0FBQztBQUM3YyxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxNQUFNLEVBQUMsUUFBUSxFQUFDLFNBQVMsRUFBQyxPQUFPLEVBQUMsU0FBUyxFQUFDLFdBQVcsRUFBQyxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sRUFBQyxlQUFlLEVBQUMsYUFBYSxDQUFDLENBQUM7QUFDcEosTUFBTSxDQUFDLE1BQU0sT0FBTyxHQUFhLENBQUMsT0FBTyxDQUFDLENBQUM7QUFFM0M7Ozs7O0dBS0c7SUFtQlUsbUJBQW1CLGlDQUFuQixtQkFBb0IsU0FBUSxVQUFVO0lBbUIvQyxZQUFvQixLQUFpQixFQUFVLFNBQW9CLEVBQVUsZ0JBQWlDLEVBQVUsUUFBa0I7UUFDdEksS0FBSyxFQUFFLENBQUM7UUFEUSxVQUFLLEdBQUwsS0FBSyxDQUFZO1FBQVUsY0FBUyxHQUFULFNBQVMsQ0FBVztRQUFVLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBaUI7UUFBVSxhQUFRLEdBQVIsUUFBUSxDQUFVO1FBRGxJLGtCQUFhLEdBQVcsSUFBSSxDQUFDO1FBR2pDLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUM7UUFDeEMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUMsZUFBZSxJQUFJLEVBQUUsQ0FBQztRQUNsRCxJQUFJO1lBQ0ksSUFBSSxHQUFHLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsa0JBQWtCLENBQUMsQ0FBQztZQUNoRCxJQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUFFO2dCQUN6QyxJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQTthQUNqQztTQUNKO1FBQUMsTUFBTSxHQUFHO1FBRWYsSUFBSTtZQUNJLElBQUksR0FBRyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDLHlCQUF5QixDQUFDLENBQUM7WUFDdkQsSUFBRyxJQUFJLENBQUMsZUFBZSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRTtnQkFDekMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUE7YUFDakM7U0FDSjtRQUFDLE1BQU0sR0FBRztRQUVmLElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDN0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDO1FBQ25DLFFBQVEsQ0FBQyxpQkFBaUIsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUM7UUFDekQsSUFBSSxDQUFDLFdBQVcsR0FBSSxJQUFJLFFBQVEsRUFBRSxDQUFDO1FBQ25DLElBQUksQ0FBQyxlQUFlLEdBQUksSUFBSSxhQUFhLEVBQUUsQ0FBQztJQUNoRCxDQUFDO0lBRU0sZ0JBQWdCLENBQUMsZ0JBQWtDO0lBQzFELENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxnQkFBNEI7SUFDckQsQ0FBQztJQUVNLFVBQVUsQ0FBQyxLQUFVO0lBQzVCLENBQUM7SUFFTSxnQkFBZ0IsQ0FBQyxRQUFpQjtJQUN6QyxDQUFDO0lBRU0sUUFBUTtRQUNYLElBQUksQ0FBQyxlQUFlLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3hDLENBQUM7SUFFTSxlQUFlO1FBQ2xCLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzNDLENBQUM7SUFFTSxXQUFXO1FBQ2QsSUFBSSxDQUFDLGVBQWUsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVNLHFCQUFxQjtRQUV4QixJQUFJLENBQUMsZUFBZSxDQUFDLHFCQUFxQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3JELENBQUM7Q0FJSixDQUFBO2dIQTNFWSxtQkFBbUI7b0dBQW5CLG1CQUFtQiwwbkNBWmpCO1FBQ1A7WUFDSSxPQUFPLEVBQUUsaUJBQWlCO1lBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMscUJBQW1CLENBQUM7WUFDbEQsS0FBSyxFQUFFLElBQUk7U0FDZDtLQUNKLGlEQVJTLEVBQUU7QUFjSCxtQkFBbUI7SUFEL0IsZUFBZSxDQUFDLENBQUMsYUFBYSxFQUFFLFFBQVEsQ0FBQyxDQUFDO0dBQzlCLG1CQUFtQixDQTJFL0I7U0EzRVksbUJBQW1COzJGQUFuQixtQkFBbUI7a0JBbEIvQixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLE1BQU0sRUFBRSxNQUFNO29CQUNkLE9BQU8sRUFBRSxPQUFPO29CQUNoQixRQUFRLEVBQUUsRUFBRTtvQkFDWixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsU0FBUyxFQUFFO3dCQUNQOzRCQUNJLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFdBQVcsRUFBRSxVQUFVLENBQUMsR0FBRyxFQUFFLG9CQUFvQixDQUFDOzRCQUNsRCxLQUFLLEVBQUUsSUFBSTt5QkFDZDtxQkFDSjtvQkFDRCxPQUFPLEVBQUUsRUFFUjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiwgVmFsdWVQcm92aWRlciwgUmVuZGVyZXIyLCBJbmplY3RvciwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIGZvcndhcmRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSwgSUNvbXBvbmVudEJhc2UsIGFwcGx5TWl4aW5zLCBDb21wb25lbnRNaXhpbnMsIFByb3BlcnR5Q29sbGVjdGlvbkluZm8sIEZvcm1CYXNlLCBzZXRWYWx1ZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWJhc2UnO1xuaW1wb3J0IHsgRGF0ZVBpY2tlciB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1jYWxlbmRhcnMnO1xuXG5cblxuZXhwb3J0IGNvbnN0IGlucHV0czogc3RyaW5nW10gPSBbJ2FsbG93RWRpdCcsJ2NhbGVuZGFyTW9kZScsJ2Nzc0NsYXNzJywnZGF5SGVhZGVyRm9ybWF0JywnZGVwdGgnLCdlbmFibGVNYXNrJywnZW5hYmxlUGVyc2lzdGVuY2UnLCdlbmFibGVSdGwnLCdlbmFibGVkJywnZmlyc3REYXlPZldlZWsnLCdmbG9hdExhYmVsVHlwZScsJ2Zvcm1hdCcsJ2h0bWxBdHRyaWJ1dGVzJywnaXNNdWx0aVNlbGVjdGlvbicsJ2tleUNvbmZpZ3MnLCdsb2NhbGUnLCdtYXNrUGxhY2Vob2xkZXInLCdtYXgnLCdtaW4nLCdvcGVuT25Gb2N1cycsJ3BsYWNlaG9sZGVyJywncmVhZG9ubHknLCdzZXJ2ZXJUaW1lem9uZU9mZnNldCcsJ3Nob3dDbGVhckJ1dHRvbicsJ3Nob3dUb2RheUJ1dHRvbicsJ3N0YXJ0Jywnc3RyaWN0TW9kZScsJ3ZhbHVlJywndmFsdWVzJywnd2Vla051bWJlcicsJ3dlZWtSdWxlJywnd2lkdGgnLCd6SW5kZXgnXTtcbmV4cG9ydCBjb25zdCBvdXRwdXRzOiBzdHJpbmdbXSA9IFsnYmx1cicsJ2NoYW5nZScsJ2NsZWFyZWQnLCdjbG9zZScsJ2NyZWF0ZWQnLCdkZXN0cm95ZWQnLCdmb2N1cycsJ25hdmlnYXRlZCcsJ29wZW4nLCdyZW5kZXJEYXlDZWxsJywndmFsdWVDaGFuZ2UnXTtcbmV4cG9ydCBjb25zdCB0d29XYXlzOiBzdHJpbmdbXSA9IFsndmFsdWUnXTtcblxuLyoqXG4gKiBSZXByZXNlbnRzIHRoZSBFc3NlbnRpYWwgSlMgMiBBbmd1bGFyIERhdGVQaWNrZXIgQ29tcG9uZW50LlxuICogYGBgaHRtbFxuICogPGVqcy1kYXRlcGlja2VyIFt2YWx1ZV09J2RhdGUnPjwvZWpzLWRhdGVwaWNrZXI+XG4gKiBgYGBcbiAqL1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdlanMtZGF0ZXBpY2tlcicsXG4gICAgaW5wdXRzOiBpbnB1dHMsXG4gICAgb3V0cHV0czogb3V0cHV0cyxcbiAgICB0ZW1wbGF0ZTogJycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgcHJvdmlkZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gRGF0ZVBpY2tlckNvbXBvbmVudCksXG4gICAgICAgICAgICBtdWx0aTogdHJ1ZVxuICAgICAgICB9XG4gICAgXSxcbiAgICBxdWVyaWVzOiB7XG5cbiAgICB9XG59KVxuQENvbXBvbmVudE1peGlucyhbQ29tcG9uZW50QmFzZSwgRm9ybUJhc2VdKVxuZXhwb3J0IGNsYXNzIERhdGVQaWNrZXJDb21wb25lbnQgZXh0ZW5kcyBEYXRlUGlja2VyIGltcGxlbWVudHMgSUNvbXBvbmVudEJhc2Uge1xuICAgIHB1YmxpYyBmb3JtQ29tcENvbnRleHQgOiBhbnk7XG4gICAgcHVibGljIGZvcm1Db250ZXh0IDogYW55O1xuICAgIHB1YmxpYyB0YWdPYmplY3RzOiBhbnk7XG5cdGJsdXI6IGFueTtcblx0Y2hhbmdlOiBhbnk7XG5cdGNsZWFyZWQ6IGFueTtcblx0Y2xvc2U6IGFueTtcblx0Y3JlYXRlZDogYW55O1xuXHRkZXN0cm95ZWQ6IGFueTtcblx0Zm9jdXM6IGFueTtcblx0bmF2aWdhdGVkOiBhbnk7XG5cdG9wZW46IGFueTtcblx0cmVuZGVyRGF5Q2VsbDogYW55O1xuXHRwdWJsaWMgdmFsdWVDaGFuZ2U6IGFueTtcblxuXG5cbiAgICBwcml2YXRlIHNraXBGcm9tRXZlbnQ6Ym9vbGVhbiA9IHRydWU7XG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSBuZ0VsZTogRWxlbWVudFJlZiwgcHJpdmF0ZSBzcmVuZGVyZXI6IFJlbmRlcmVyMiwgcHJpdmF0ZSB2aWV3Q29udGFpbmVyUmVmOlZpZXdDb250YWluZXJSZWYsIHByaXZhdGUgaW5qZWN0b3I6IEluamVjdG9yKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHRoaXMuZWxlbWVudCA9IHRoaXMubmdFbGUubmF0aXZlRWxlbWVudDtcbiAgICAgICAgdGhpcy5pbmplY3RlZE1vZHVsZXMgPSB0aGlzLmluamVjdGVkTW9kdWxlcyB8fCBbXTtcbiAgICAgICAgdHJ5IHtcbiAgICAgICAgICAgICAgICBsZXQgbW9kID0gdGhpcy5pbmplY3Rvci5nZXQoJ0NhbGVuZGFyc0lzbGFtaWMnKTtcbiAgICAgICAgICAgICAgICBpZih0aGlzLmluamVjdGVkTW9kdWxlcy5pbmRleE9mKG1vZCkgPT09IC0xKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaW5qZWN0ZWRNb2R1bGVzLnB1c2gobW9kKVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0gY2F0Y2ggeyB9XG5cciAgICAgICAgdHJ5IHtcbiAgICAgICAgICAgICAgICBsZXQgbW9kID0gdGhpcy5pbmplY3Rvci5nZXQoJ0NhbGVuZGFyc01hc2tlZERhdGVUaW1lJyk7XG4gICAgICAgICAgICAgICAgaWYodGhpcy5pbmplY3RlZE1vZHVsZXMuaW5kZXhPZihtb2QpID09PSAtMSkge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcy5wdXNoKG1vZClcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICB9IGNhdGNoIHsgfVxuXHJcbiAgICAgICAgdGhpcy5yZWdpc3RlckV2ZW50cyhvdXRwdXRzKTtcbiAgICAgICAgdGhpcy5hZGRUd29XYXkuY2FsbCh0aGlzLCB0d29XYXlzKTtcbiAgICAgICAgc2V0VmFsdWUoJ2N1cnJlbnRJbnN0YW5jZScsIHRoaXMsIHRoaXMudmlld0NvbnRhaW5lclJlZik7XG4gICAgICAgIHRoaXMuZm9ybUNvbnRleHQgID0gbmV3IEZvcm1CYXNlKCk7XG4gICAgICAgIHRoaXMuZm9ybUNvbXBDb250ZXh0ICA9IG5ldyBDb21wb25lbnRCYXNlKCk7XG4gICAgfVxuXG4gICAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UocmVnaXN0ZXJGdW5jdGlvbjogKF86IGFueSkgPT4gdm9pZCk6IHZvaWQge1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3Rlck9uVG91Y2hlZChyZWdpc3RlckZ1bmN0aW9uOiAoKSA9PiB2b2lkKTogdm9pZCB7XG4gICAgfVxuXG4gICAgcHVibGljIHdyaXRlVmFsdWUodmFsdWU6IGFueSk6IHZvaWQge1xuICAgIH1cbiAgICBcbiAgICBwdWJsaWMgc2V0RGlzYWJsZWRTdGF0ZShkaXNhYmxlZDogYm9vbGVhbik6IHZvaWQge1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uSW5pdCgpIHtcbiAgICAgICAgdGhpcy5mb3JtQ29tcENvbnRleHQubmdPbkluaXQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5mb3JtQ29udGV4dC5uZ0FmdGVyVmlld0luaXQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmZvcm1Db21wQ29udGV4dC5uZ09uRGVzdHJveSh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdBZnRlckNvbnRlbnRDaGVja2VkKCk6IHZvaWQge1xuICAgICAgICBcbiAgICAgICAgdGhpcy5mb3JtQ29tcENvbnRleHQubmdBZnRlckNvbnRlbnRDaGVja2VkKHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3RlckV2ZW50czogKGV2ZW50TGlzdDogc3RyaW5nW10pID0+IHZvaWQ7XG4gICAgcHVibGljIGFkZFR3b1dheTogKHByb3BMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbn1cblxuIl19