@anglr/datetime 2.0.0-beta.20220221103100 → 2.0.0-beta.20220221120606

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 (463) hide show
  1. package/changelog.md +12 -0
  2. package/date-fns/datetime-date-fns.d.ts +64 -0
  3. package/date-fns/datetime-date-fns.internal.d.ts +64 -0
  4. package/date-fns/package.json +7 -7
  5. package/date-fns/src/{date-fns.d.ts → index.d.ts} +4 -4
  6. package/date-fns/src/index.d.ts.map +1 -0
  7. package/date-fns/src/misc/tokens.d.ts +10 -10
  8. package/date-fns/src/services/dateFnsDateApi.service.d.ts +36 -33
  9. package/date-fns/src/services/dateFnsDateApi.service.d.ts.map +1 -1
  10. package/date-fns/src/services/dateFnsLocale.service.d.ts +10 -10
  11. package/date-fns/temp/datetime-date-fns.api.md +47 -0
  12. package/datetime.d.ts +1913 -5
  13. package/datetime.internal.d.ts +2090 -0
  14. package/es2015/date-fns/src/index.js +4 -0
  15. package/es2015/date-fns/src/index.js.map +1 -0
  16. package/es2015/date-fns/src/misc/tokens.js +20 -0
  17. package/es2015/date-fns/src/misc/tokens.js.map +1 -0
  18. package/es2015/date-fns/src/services/dateFnsDateApi.service.js +438 -0
  19. package/es2015/date-fns/src/services/dateFnsDateApi.service.js.map +1 -0
  20. package/es2015/date-fns/src/services/dateFnsLocale.service.js +2 -0
  21. package/es2015/date-fns/src/services/dateFnsLocale.service.js.map +1 -0
  22. package/es2015/karma.conf.js +57 -0
  23. package/es2015/karma.conf.js.map +1 -0
  24. package/{moment/src/moment.d.ts → es2015/moment/src/index.js} +3 -3
  25. package/es2015/moment/src/index.js.map +1 -0
  26. package/es2015/moment/src/misc/tokens.js +15 -0
  27. package/es2015/moment/src/misc/tokens.js.map +1 -0
  28. package/es2015/moment/src/services/momentDateApi.service.js +398 -0
  29. package/es2015/moment/src/services/momentDateApi.service.js.map +1 -0
  30. package/{src/datetime.d.ts → es2015/src/index.js} +19 -19
  31. package/es2015/src/index.js.map +1 -0
  32. package/es2015/src/misc/constants.js +33 -0
  33. package/es2015/src/misc/constants.js.map +1 -0
  34. package/es2015/src/misc/datetime.interface.js +2 -0
  35. package/es2015/src/misc/datetime.interface.js.map +1 -0
  36. package/es2015/src/misc/tokens.js +19 -0
  37. package/es2015/src/misc/tokens.js.map +1 -0
  38. package/es2015/src/misc/validators.js +58 -0
  39. package/es2015/src/misc/validators.js.map +1 -0
  40. package/es2015/src/modules/datePipes.module.js +33 -0
  41. package/es2015/src/modules/datePipes.module.js.map +1 -0
  42. package/es2015/src/picker/components/dayPicker/dayPicker.component.js +172 -0
  43. package/es2015/src/picker/components/dayPicker/dayPicker.component.js.map +1 -0
  44. package/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js +2 -0
  45. package/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js.map +1 -0
  46. package/es2015/src/picker/components/monthPicker/monthPicker.component.js +114 -0
  47. package/es2015/src/picker/components/monthPicker/monthPicker.component.js.map +1 -0
  48. package/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js +2 -0
  49. package/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js.map +1 -0
  50. package/es2015/src/picker/components/picker/picker.component.animations.js +71 -0
  51. package/es2015/src/picker/components/picker/picker.component.animations.js.map +1 -0
  52. package/es2015/src/picker/components/picker/picker.component.js +241 -0
  53. package/es2015/src/picker/components/picker/picker.component.js.map +1 -0
  54. package/es2015/src/picker/components/pickerBase.component.js +243 -0
  55. package/es2015/src/picker/components/pickerBase.component.js.map +1 -0
  56. package/es2015/src/picker/components/yearPicker/yearPicker.component.js +126 -0
  57. package/es2015/src/picker/components/yearPicker/yearPicker.component.js.map +1 -0
  58. package/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js +2 -0
  59. package/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js.map +1 -0
  60. package/es2015/src/picker/interfaces.js +5 -0
  61. package/es2015/src/picker/interfaces.js.map +1 -0
  62. package/es2015/src/picker/misc/datetimePicker.interface.js +2 -0
  63. package/es2015/src/picker/misc/datetimePicker.interface.js.map +1 -0
  64. package/es2015/src/picker/misc/tokens.js +6 -0
  65. package/es2015/src/picker/misc/tokens.js.map +1 -0
  66. package/es2015/src/picker/modules/picker.module.js +46 -0
  67. package/es2015/src/picker/modules/picker.module.js.map +1 -0
  68. package/es2015/src/picker/types.js +8 -0
  69. package/es2015/src/picker/types.js.map +1 -0
  70. package/es2015/src/pipes/asRequiredType.js +22 -0
  71. package/es2015/src/pipes/asRequiredType.js.map +1 -0
  72. package/es2015/src/pipes/dateConvert.pipe.js +35 -0
  73. package/es2015/src/pipes/dateConvert.pipe.js.map +1 -0
  74. package/es2015/src/pipes/dateFormat.pipe.js +45 -0
  75. package/es2015/src/pipes/dateFormat.pipe.js.map +1 -0
  76. package/es2015/src/selector/components/inputDateTime/inputDateTime.component.js +421 -0
  77. package/es2015/src/selector/components/inputDateTime/inputDateTime.component.js.map +1 -0
  78. package/es2015/src/selector/components/selector/selector.component.animations.js +15 -0
  79. package/es2015/src/selector/components/selector/selector.component.animations.js.map +1 -0
  80. package/es2015/src/selector/components/selector/selector.component.js +344 -0
  81. package/es2015/src/selector/components/selector/selector.component.js.map +1 -0
  82. package/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +317 -0
  83. package/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js.map +1 -0
  84. package/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +51 -0
  85. package/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js.map +1 -0
  86. package/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +51 -0
  87. package/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js.map +1 -0
  88. package/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +47 -0
  89. package/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js.map +1 -0
  90. package/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +119 -0
  91. package/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js.map +1 -0
  92. package/es2015/src/selector/interfaces.js +2 -0
  93. package/es2015/src/selector/interfaces.js.map +1 -0
  94. package/es2015/src/selector/misc/datetimeSelector.interface.js +2 -0
  95. package/es2015/src/selector/misc/datetimeSelector.interface.js.map +1 -0
  96. package/es2015/src/selector/misc/tokens.js +6 -0
  97. package/es2015/src/selector/misc/tokens.js.map +1 -0
  98. package/es2015/src/selector/modules/basicSelector.module.js +20 -0
  99. package/es2015/src/selector/modules/basicSelector.module.js.map +1 -0
  100. package/es2015/src/selector/modules/selector.module.js +60 -0
  101. package/es2015/src/selector/modules/selector.module.js.map +1 -0
  102. package/es2015/src/selector/types.js +10 -0
  103. package/es2015/src/selector/types.js.map +1 -0
  104. package/es2015/src/services/dateApi.interface.js +2 -0
  105. package/es2015/src/services/dateApi.interface.js.map +1 -0
  106. package/es2015/src/services/datePositionParser.interface.js +2 -0
  107. package/es2015/src/services/datePositionParser.interface.js.map +1 -0
  108. package/es2015/src/services/datePositionParser.service.js +227 -0
  109. package/es2015/src/services/datePositionParser.service.js.map +1 -0
  110. package/es2015/src/services/dateTimeRelativeParser.service.js +66 -0
  111. package/es2015/src/services/dateTimeRelativeParser.service.js.map +1 -0
  112. package/es2015/src/services/dateValueProvider.service.js +58 -0
  113. package/es2015/src/services/dateValueProvider.service.js.map +1 -0
  114. package/es2015/src/services/formatProvider.interface.js +2 -0
  115. package/es2015/src/services/formatProvider.interface.js.map +1 -0
  116. package/es2015/src/services/index.js +4 -0
  117. package/es2015/src/services/index.js.map +1 -0
  118. package/es2020/date-fns/src/index.js +4 -0
  119. package/es2020/date-fns/src/index.js.map +1 -0
  120. package/es2020/date-fns/src/misc/tokens.js +20 -0
  121. package/es2020/date-fns/src/misc/tokens.js.map +1 -0
  122. package/es2020/date-fns/src/services/dateFnsDateApi.service.js +437 -0
  123. package/es2020/date-fns/src/services/dateFnsDateApi.service.js.map +1 -0
  124. package/es2020/date-fns/src/services/dateFnsLocale.service.js +2 -0
  125. package/es2020/date-fns/src/services/dateFnsLocale.service.js.map +1 -0
  126. package/es2020/karma.conf.js +57 -0
  127. package/es2020/karma.conf.js.map +1 -0
  128. package/es2020/moment/src/index.js +3 -0
  129. package/es2020/moment/src/index.js.map +1 -0
  130. package/es2020/moment/src/misc/tokens.js +15 -0
  131. package/es2020/moment/src/misc/tokens.js.map +1 -0
  132. package/es2020/moment/src/services/momentDateApi.service.js +398 -0
  133. package/es2020/moment/src/services/momentDateApi.service.js.map +1 -0
  134. package/es2020/src/index.js +19 -0
  135. package/es2020/src/index.js.map +1 -0
  136. package/es2020/src/misc/constants.js +33 -0
  137. package/es2020/src/misc/constants.js.map +1 -0
  138. package/es2020/src/misc/datetime.interface.js +2 -0
  139. package/es2020/src/misc/datetime.interface.js.map +1 -0
  140. package/es2020/src/misc/tokens.js +19 -0
  141. package/es2020/src/misc/tokens.js.map +1 -0
  142. package/es2020/src/misc/validators.js +58 -0
  143. package/es2020/src/misc/validators.js.map +1 -0
  144. package/es2020/src/modules/datePipes.module.js +33 -0
  145. package/es2020/src/modules/datePipes.module.js.map +1 -0
  146. package/es2020/src/picker/components/dayPicker/dayPicker.component.js +172 -0
  147. package/es2020/src/picker/components/dayPicker/dayPicker.component.js.map +1 -0
  148. package/es2020/src/picker/components/dayPicker/dayPicker.interfaces.js +2 -0
  149. package/es2020/src/picker/components/dayPicker/dayPicker.interfaces.js.map +1 -0
  150. package/es2020/src/picker/components/monthPicker/monthPicker.component.js +114 -0
  151. package/es2020/src/picker/components/monthPicker/monthPicker.component.js.map +1 -0
  152. package/es2020/src/picker/components/monthPicker/monthPicker.interfaces.js +2 -0
  153. package/es2020/src/picker/components/monthPicker/monthPicker.interfaces.js.map +1 -0
  154. package/es2020/src/picker/components/picker/picker.component.animations.js +71 -0
  155. package/es2020/src/picker/components/picker/picker.component.animations.js.map +1 -0
  156. package/es2020/src/picker/components/picker/picker.component.js +236 -0
  157. package/es2020/src/picker/components/picker/picker.component.js.map +1 -0
  158. package/es2020/src/picker/components/pickerBase.component.js +243 -0
  159. package/es2020/src/picker/components/pickerBase.component.js.map +1 -0
  160. package/es2020/src/picker/components/yearPicker/yearPicker.component.js +126 -0
  161. package/es2020/src/picker/components/yearPicker/yearPicker.component.js.map +1 -0
  162. package/es2020/src/picker/components/yearPicker/yearPicker.interfaces.js +2 -0
  163. package/es2020/src/picker/components/yearPicker/yearPicker.interfaces.js.map +1 -0
  164. package/es2020/src/picker/interfaces.js +5 -0
  165. package/es2020/src/picker/interfaces.js.map +1 -0
  166. package/es2020/src/picker/misc/datetimePicker.interface.js +2 -0
  167. package/es2020/src/picker/misc/datetimePicker.interface.js.map +1 -0
  168. package/es2020/src/picker/misc/tokens.js +6 -0
  169. package/es2020/src/picker/misc/tokens.js.map +1 -0
  170. package/es2020/src/picker/modules/picker.module.js +46 -0
  171. package/es2020/src/picker/modules/picker.module.js.map +1 -0
  172. package/es2020/src/picker/types.js +8 -0
  173. package/es2020/src/picker/types.js.map +1 -0
  174. package/es2020/src/pipes/asRequiredType.js +22 -0
  175. package/es2020/src/pipes/asRequiredType.js.map +1 -0
  176. package/es2020/src/pipes/dateConvert.pipe.js +35 -0
  177. package/es2020/src/pipes/dateConvert.pipe.js.map +1 -0
  178. package/es2020/src/pipes/dateFormat.pipe.js +45 -0
  179. package/es2020/src/pipes/dateFormat.pipe.js.map +1 -0
  180. package/es2020/src/selector/components/inputDateTime/inputDateTime.component.js +417 -0
  181. package/es2020/src/selector/components/inputDateTime/inputDateTime.component.js.map +1 -0
  182. package/es2020/src/selector/components/selector/selector.component.animations.js +15 -0
  183. package/es2020/src/selector/components/selector/selector.component.animations.js.map +1 -0
  184. package/es2020/src/selector/components/selector/selector.component.js +334 -0
  185. package/es2020/src/selector/components/selector/selector.component.js.map +1 -0
  186. package/es2020/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +314 -0
  187. package/es2020/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js.map +1 -0
  188. package/es2020/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +51 -0
  189. package/es2020/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js.map +1 -0
  190. package/es2020/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +51 -0
  191. package/es2020/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js.map +1 -0
  192. package/es2020/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +47 -0
  193. package/es2020/src/selector/directives/datetimeValidator/datetimeValidator.directive.js.map +1 -0
  194. package/es2020/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +118 -0
  195. package/es2020/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js.map +1 -0
  196. package/es2020/src/selector/interfaces.js +2 -0
  197. package/es2020/src/selector/interfaces.js.map +1 -0
  198. package/es2020/src/selector/misc/datetimeSelector.interface.js +2 -0
  199. package/es2020/src/selector/misc/datetimeSelector.interface.js.map +1 -0
  200. package/es2020/src/selector/misc/tokens.js +6 -0
  201. package/es2020/src/selector/misc/tokens.js.map +1 -0
  202. package/es2020/src/selector/modules/basicSelector.module.js +20 -0
  203. package/es2020/src/selector/modules/basicSelector.module.js.map +1 -0
  204. package/es2020/src/selector/modules/selector.module.js +60 -0
  205. package/es2020/src/selector/modules/selector.module.js.map +1 -0
  206. package/es2020/src/selector/types.js +10 -0
  207. package/es2020/src/selector/types.js.map +1 -0
  208. package/es2020/src/services/dateApi.interface.js +2 -0
  209. package/es2020/src/services/dateApi.interface.js.map +1 -0
  210. package/es2020/src/services/datePositionParser.interface.js +2 -0
  211. package/es2020/src/services/datePositionParser.interface.js.map +1 -0
  212. package/es2020/src/services/datePositionParser.service.js +227 -0
  213. package/es2020/src/services/datePositionParser.service.js.map +1 -0
  214. package/es2020/src/services/dateTimeRelativeParser.service.js +65 -0
  215. package/es2020/src/services/dateTimeRelativeParser.service.js.map +1 -0
  216. package/es2020/src/services/dateValueProvider.service.js +58 -0
  217. package/es2020/src/services/dateValueProvider.service.js.map +1 -0
  218. package/es2020/src/services/formatProvider.interface.js +2 -0
  219. package/es2020/src/services/formatProvider.interface.js.map +1 -0
  220. package/es2020/src/services/index.js +4 -0
  221. package/es2020/src/services/index.js.map +1 -0
  222. package/karma.conf.d.ts +2 -0
  223. package/karma.conf.d.ts.map +1 -0
  224. package/moment/datetime-moment.d.ts +47 -0
  225. package/moment/datetime-moment.internal.d.ts +47 -0
  226. package/moment/package.json +7 -7
  227. package/moment/src/index.d.ts +3 -0
  228. package/moment/src/index.d.ts.map +1 -0
  229. package/moment/src/misc/tokens.d.ts +5 -5
  230. package/moment/src/services/momentDateApi.service.d.ts +35 -32
  231. package/moment/src/services/momentDateApi.service.d.ts.map +1 -1
  232. package/moment/temp/datetime-moment.api.md +36 -0
  233. package/package.json +91 -48
  234. package/src/index.d.ts +19 -0
  235. package/src/index.d.ts.map +1 -0
  236. package/src/misc/constants.d.ts +32 -32
  237. package/src/misc/datetime.interface.d.ts +34 -34
  238. package/src/misc/tokens.d.ts +10 -10
  239. package/src/misc/validators.d.ts +25 -25
  240. package/src/modules/datePipes.module.d.ts +12 -5
  241. package/src/modules/datePipes.module.d.ts.map +1 -1
  242. package/src/picker/components/dayPicker/dayPicker.component.d.ts +68 -65
  243. package/src/picker/components/dayPicker/dayPicker.component.d.ts.map +1 -1
  244. package/src/picker/components/dayPicker/dayPicker.component.html +7 -7
  245. package/src/picker/components/dayPicker/dayPicker.interfaces.d.ts +10 -10
  246. package/src/picker/components/monthPicker/monthPicker.component.d.ts +52 -49
  247. package/src/picker/components/monthPicker/monthPicker.component.d.ts.map +1 -1
  248. package/src/picker/components/monthPicker/monthPicker.component.html +6 -6
  249. package/src/picker/components/monthPicker/monthPicker.interfaces.d.ts +6 -6
  250. package/src/picker/components/picker/picker.component.animations.d.ts +4 -4
  251. package/src/picker/components/picker/picker.component.d.ts +104 -101
  252. package/src/picker/components/picker/picker.component.d.ts.map +1 -1
  253. package/src/picker/components/pickerBase.component.d.ts +169 -166
  254. package/src/picker/components/pickerBase.component.d.ts.map +1 -1
  255. package/src/picker/components/yearPicker/yearPicker.component.d.ts +57 -54
  256. package/src/picker/components/yearPicker/yearPicker.component.d.ts.map +1 -1
  257. package/src/picker/components/yearPicker/yearPicker.component.html +6 -6
  258. package/src/picker/components/yearPicker/yearPicker.interfaces.d.ts +6 -6
  259. package/src/picker/interfaces.d.ts +4 -4
  260. package/src/picker/misc/datetimePicker.interface.d.ts +188 -188
  261. package/src/picker/misc/tokens.d.ts +6 -6
  262. package/src/picker/modules/picker.module.d.ts +16 -5
  263. package/src/picker/modules/picker.module.d.ts.map +1 -1
  264. package/src/picker/types.d.ts +7 -7
  265. package/src/pipes/asRequiredType.d.ts +21 -0
  266. package/src/pipes/asRequiredType.d.ts.map +1 -0
  267. package/src/pipes/dateConvert.pipe.d.ts +18 -15
  268. package/src/pipes/dateConvert.pipe.d.ts.map +1 -1
  269. package/src/pipes/dateFormat.pipe.d.ts +20 -17
  270. package/src/pipes/dateFormat.pipe.d.ts.map +1 -1
  271. package/src/selector/components/inputDateTime/inputDateTime.component.d.ts +187 -184
  272. package/src/selector/components/inputDateTime/inputDateTime.component.d.ts.map +1 -1
  273. package/src/selector/components/selector/selector.component.animations.d.ts +4 -4
  274. package/src/selector/components/selector/selector.component.d.ts +155 -152
  275. package/src/selector/components/selector/selector.component.d.ts.map +1 -1
  276. package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.d.ts +170 -167
  277. package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.d.ts.map +1 -1
  278. package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.d.ts +22 -19
  279. package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.d.ts.map +1 -1
  280. package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.d.ts +22 -19
  281. package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.d.ts.map +1 -1
  282. package/src/selector/directives/datetimeValidator/datetimeValidator.directive.d.ts +21 -18
  283. package/src/selector/directives/datetimeValidator/datetimeValidator.directive.d.ts.map +1 -1
  284. package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.d.ts +53 -50
  285. package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.d.ts.map +1 -1
  286. package/src/selector/interfaces.d.ts +1 -1
  287. package/src/selector/misc/datetimeSelector.interface.d.ts +82 -82
  288. package/src/selector/misc/tokens.d.ts +6 -6
  289. package/src/selector/modules/basicSelector.module.d.ts +10 -5
  290. package/src/selector/modules/basicSelector.module.d.ts.map +1 -1
  291. package/src/selector/modules/selector.module.d.ts +18 -5
  292. package/src/selector/modules/selector.module.d.ts.map +1 -1
  293. package/src/selector/types.d.ts +9 -9
  294. package/src/services/dateApi.interface.d.ts +275 -275
  295. package/src/services/datePositionParser.interface.d.ts +40 -40
  296. package/src/services/datePositionParser.service.d.ts +60 -57
  297. package/src/services/datePositionParser.service.d.ts.map +1 -1
  298. package/src/services/dateTimeRelativeParser.service.d.ts +21 -18
  299. package/src/services/dateTimeRelativeParser.service.d.ts.map +1 -1
  300. package/src/services/dateValueProvider.service.d.ts +18 -15
  301. package/src/services/dateValueProvider.service.d.ts.map +1 -1
  302. package/src/services/formatProvider.interface.d.ts +17 -17
  303. package/src/services/index.d.ts +3 -3
  304. package/tsconfig.karma.json +5 -6
  305. package/version.bak +1 -1
  306. package/appveyor.yml +0 -70
  307. package/date-fns/dist/es2015/date-fns/index.js +0 -10
  308. package/date-fns/dist/es2015/date-fns/public_api.js +0 -7
  309. package/date-fns/dist/es2015/date-fns/src/date-fns.js +0 -9
  310. package/date-fns/dist/es2015/date-fns/src/misc/tokens.js +0 -32
  311. package/date-fns/dist/es2015/date-fns/src/services/dateFnsDateApi.service.js +0 -512
  312. package/date-fns/dist/es2015/date-fns/src/services/dateFnsLocale.service.js +0 -18
  313. package/date-fns/dist/es5/date-fns/index.js +0 -10
  314. package/date-fns/dist/es5/date-fns/public_api.js +0 -7
  315. package/date-fns/dist/es5/date-fns/src/date-fns.js +0 -9
  316. package/date-fns/dist/es5/date-fns/src/misc/tokens.js +0 -32
  317. package/date-fns/dist/es5/date-fns/src/services/dateFnsDateApi.service.js +0 -902
  318. package/date-fns/dist/es5/date-fns/src/services/dateFnsLocale.service.js +0 -18
  319. package/date-fns/index.d.ts +0 -5
  320. package/date-fns/index.d.ts.map +0 -1
  321. package/date-fns/index.metadata.json +0 -1
  322. package/date-fns/public_api.d.ts +0 -2
  323. package/date-fns/public_api.d.ts.map +0 -1
  324. package/date-fns/src/date-fns.d.ts.map +0 -1
  325. package/date-fns/src/services/dateFnsDateApi.service.ngfactory.d.ts.map +0 -1
  326. package/datetime.d.ts.map +0 -1
  327. package/datetime.metadata.json +0 -1
  328. package/dist/es2015/datetime.js +0 -10
  329. package/dist/es2015/public_api.js +0 -7
  330. package/dist/es2015/src/datetime.js +0 -24
  331. package/dist/es2015/src/misc/constants.js +0 -46
  332. package/dist/es2015/src/misc/datetime.interface.js +0 -52
  333. package/dist/es2015/src/misc/tokens.js +0 -29
  334. package/dist/es2015/src/misc/validators.js +0 -80
  335. package/dist/es2015/src/modules/datePipes.module.js +0 -26
  336. package/dist/es2015/src/picker/components/dayPicker/dayPicker.component.js +0 -215
  337. package/dist/es2015/src/picker/components/dayPicker/dayPicker.interfaces.js +0 -18
  338. package/dist/es2015/src/picker/components/monthPicker/monthPicker.component.js +0 -138
  339. package/dist/es2015/src/picker/components/monthPicker/monthPicker.interfaces.js +0 -11
  340. package/dist/es2015/src/picker/components/picker/picker.component.animations.js +0 -77
  341. package/dist/es2015/src/picker/components/picker/picker.component.js +0 -386
  342. package/dist/es2015/src/picker/components/pickerBase.component.js +0 -406
  343. package/dist/es2015/src/picker/components/yearPicker/yearPicker.component.js +0 -158
  344. package/dist/es2015/src/picker/components/yearPicker/yearPicker.interfaces.js +0 -11
  345. package/dist/es2015/src/picker/interfaces.js +0 -10
  346. package/dist/es2015/src/picker/misc/datetimePicker.interface.js +0 -245
  347. package/dist/es2015/src/picker/misc/tokens.js +0 -12
  348. package/dist/es2015/src/picker/modules/picker.module.js +0 -35
  349. package/dist/es2015/src/picker/types.js +0 -13
  350. package/dist/es2015/src/pipes/dateConvert.pipe.js +0 -50
  351. package/dist/es2015/src/pipes/dateFormat.pipe.js +0 -64
  352. package/dist/es2015/src/selector/components/inputDateTime/inputDateTime.component.js +0 -588
  353. package/dist/es2015/src/selector/components/selector/selector.component.animations.js +0 -21
  354. package/dist/es2015/src/selector/components/selector/selector.component.js +0 -514
  355. package/dist/es2015/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +0 -456
  356. package/dist/es2015/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +0 -73
  357. package/dist/es2015/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +0 -73
  358. package/dist/es2015/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +0 -70
  359. package/dist/es2015/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +0 -171
  360. package/dist/es2015/src/selector/interfaces.js +0 -7
  361. package/dist/es2015/src/selector/misc/datetimeSelector.interface.js +0 -106
  362. package/dist/es2015/src/selector/misc/tokens.js +0 -12
  363. package/dist/es2015/src/selector/modules/basicSelector.module.js +0 -20
  364. package/dist/es2015/src/selector/modules/selector.module.js +0 -45
  365. package/dist/es2015/src/selector/types.js +0 -15
  366. package/dist/es2015/src/services/dateApi.interface.js +0 -316
  367. package/dist/es2015/src/services/datePositionParser.interface.js +0 -56
  368. package/dist/es2015/src/services/datePositionParser.service.js +0 -297
  369. package/dist/es2015/src/services/dateTimeRelativeParser.service.js +0 -97
  370. package/dist/es2015/src/services/dateValueProvider.service.js +0 -79
  371. package/dist/es2015/src/services/formatProvider.interface.js +0 -28
  372. package/dist/es2015/src/services/index.js +0 -9
  373. package/dist/es5/datetime.js +0 -10
  374. package/dist/es5/public_api.js +0 -7
  375. package/dist/es5/src/datetime.js +0 -24
  376. package/dist/es5/src/misc/constants.js +0 -46
  377. package/dist/es5/src/misc/datetime.interface.js +0 -52
  378. package/dist/es5/src/misc/tokens.js +0 -29
  379. package/dist/es5/src/misc/validators.js +0 -124
  380. package/dist/es5/src/modules/datePipes.module.js +0 -30
  381. package/dist/es5/src/picker/components/dayPicker/dayPicker.component.js +0 -323
  382. package/dist/es5/src/picker/components/dayPicker/dayPicker.interfaces.js +0 -18
  383. package/dist/es5/src/picker/components/monthPicker/monthPicker.component.js +0 -233
  384. package/dist/es5/src/picker/components/monthPicker/monthPicker.interfaces.js +0 -11
  385. package/dist/es5/src/picker/components/picker/picker.component.animations.js +0 -77
  386. package/dist/es5/src/picker/components/picker/picker.component.js +0 -460
  387. package/dist/es5/src/picker/components/pickerBase.component.js +0 -561
  388. package/dist/es5/src/picker/components/yearPicker/yearPicker.component.js +0 -253
  389. package/dist/es5/src/picker/components/yearPicker/yearPicker.interfaces.js +0 -11
  390. package/dist/es5/src/picker/interfaces.js +0 -10
  391. package/dist/es5/src/picker/misc/datetimePicker.interface.js +0 -245
  392. package/dist/es5/src/picker/misc/tokens.js +0 -12
  393. package/dist/es5/src/picker/modules/picker.module.js +0 -39
  394. package/dist/es5/src/picker/types.js +0 -13
  395. package/dist/es5/src/pipes/dateConvert.pipe.js +0 -63
  396. package/dist/es5/src/pipes/dateFormat.pipe.js +0 -79
  397. package/dist/es5/src/selector/components/inputDateTime/inputDateTime.component.js +0 -808
  398. package/dist/es5/src/selector/components/selector/selector.component.animations.js +0 -21
  399. package/dist/es5/src/selector/components/selector/selector.component.js +0 -653
  400. package/dist/es5/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.js +0 -656
  401. package/dist/es5/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.js +0 -84
  402. package/dist/es5/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.js +0 -84
  403. package/dist/es5/src/selector/directives/datetimeValidator/datetimeValidator.directive.js +0 -82
  404. package/dist/es5/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.js +0 -230
  405. package/dist/es5/src/selector/interfaces.js +0 -7
  406. package/dist/es5/src/selector/misc/datetimeSelector.interface.js +0 -106
  407. package/dist/es5/src/selector/misc/tokens.js +0 -12
  408. package/dist/es5/src/selector/modules/basicSelector.module.js +0 -24
  409. package/dist/es5/src/selector/modules/selector.module.js +0 -49
  410. package/dist/es5/src/selector/types.js +0 -15
  411. package/dist/es5/src/services/dateApi.interface.js +0 -316
  412. package/dist/es5/src/services/datePositionParser.interface.js +0 -56
  413. package/dist/es5/src/services/datePositionParser.service.js +0 -366
  414. package/dist/es5/src/services/dateTimeRelativeParser.service.js +0 -108
  415. package/dist/es5/src/services/dateValueProvider.service.js +0 -92
  416. package/dist/es5/src/services/formatProvider.interface.js +0 -28
  417. package/dist/es5/src/services/index.js +0 -9
  418. package/moment/dist/es2015/moment/index.js +0 -10
  419. package/moment/dist/es2015/moment/public_api.js +0 -7
  420. package/moment/dist/es2015/moment/src/misc/tokens.js +0 -26
  421. package/moment/dist/es2015/moment/src/moment.js +0 -8
  422. package/moment/dist/es2015/moment/src/services/momentDateApi.service.js +0 -466
  423. package/moment/dist/es5/moment/index.js +0 -10
  424. package/moment/dist/es5/moment/public_api.js +0 -7
  425. package/moment/dist/es5/moment/src/misc/tokens.js +0 -26
  426. package/moment/dist/es5/moment/src/moment.js +0 -8
  427. package/moment/dist/es5/moment/src/services/momentDateApi.service.js +0 -858
  428. package/moment/index.d.ts +0 -5
  429. package/moment/index.d.ts.map +0 -1
  430. package/moment/index.metadata.json +0 -1
  431. package/moment/public_api.d.ts +0 -2
  432. package/moment/public_api.d.ts.map +0 -1
  433. package/moment/src/moment.d.ts.map +0 -1
  434. package/moment/src/services/momentDateApi.service.ngfactory.d.ts.map +0 -1
  435. package/public_api.d.ts +0 -2
  436. package/public_api.d.ts.map +0 -1
  437. package/src/datetime.d.ts.map +0 -1
  438. package/src/modules/datePipes.module.ngfactory.d.ts.map +0 -1
  439. package/src/picker/components/dayPicker/dayPicker.component.css.shim.ngstyle.d.ts.map +0 -1
  440. package/src/picker/components/dayPicker/dayPicker.component.ngfactory.d.ts.map +0 -1
  441. package/src/picker/components/monthPicker/monthPicker.component.css.shim.ngstyle.d.ts.map +0 -1
  442. package/src/picker/components/monthPicker/monthPicker.component.ngfactory.d.ts.map +0 -1
  443. package/src/picker/components/picker/picker.component.ngfactory.d.ts.map +0 -1
  444. package/src/picker/components/yearPicker/yearPicker.component.css.shim.ngstyle.d.ts.map +0 -1
  445. package/src/picker/components/yearPicker/yearPicker.component.ngfactory.d.ts.map +0 -1
  446. package/src/picker/modules/picker.module.ngfactory.d.ts.map +0 -1
  447. package/src/pipes/dateConvert.pipe.ngfactory.d.ts.map +0 -1
  448. package/src/pipes/dateFormat.pipe.ngfactory.d.ts.map +0 -1
  449. package/src/selector/components/inputDateTime/inputDateTime.component.css.shim.ngstyle.d.ts.map +0 -1
  450. package/src/selector/components/inputDateTime/inputDateTime.component.ngfactory.d.ts.map +0 -1
  451. package/src/selector/components/selector/selector.component.css.shim.ngstyle.d.ts.map +0 -1
  452. package/src/selector/components/selector/selector.component.ngfactory.d.ts.map +0 -1
  453. package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.css.shim.ngstyle.d.ts.map +0 -1
  454. package/src/selector/components/simpleInputDateTime/simpleInputDateTime.component.ngfactory.d.ts.map +0 -1
  455. package/src/selector/directives/datetimeMaxValidator/datetimeMaxValidator.directive.ngfactory.d.ts.map +0 -1
  456. package/src/selector/directives/datetimeMinValidator/datetimeMinValidator.directive.ngfactory.d.ts.map +0 -1
  457. package/src/selector/directives/datetimeValidator/datetimeValidator.directive.ngfactory.d.ts.map +0 -1
  458. package/src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.ngfactory.d.ts.map +0 -1
  459. package/src/selector/modules/basicSelector.module.ngfactory.d.ts.map +0 -1
  460. package/src/selector/modules/selector.module.ngfactory.d.ts.map +0 -1
  461. package/src/services/datePositionParser.service.ngfactory.d.ts.map +0 -1
  462. package/src/services/dateTimeRelativeParser.service.ngfactory.d.ts.map +0 -1
  463. package/src/services/dateValueProvider.service.ngfactory.d.ts.map +0 -1
@@ -1,245 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/picker/misc/datetimePicker.interface.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- /**
7
- * Shared css classes for all pickers
8
- * @record
9
- */
10
- export function CommonPickerCssClasses() { }
11
- if (false) {
12
- /**
13
- * Period selection element wrapping displayed period and previous, next buttons
14
- * @type {?|undefined}
15
- */
16
- CommonPickerCssClasses.prototype.periodSelection;
17
- /**
18
- * Element used for switching period to previous one
19
- * @type {?|undefined}
20
- */
21
- CommonPickerCssClasses.prototype.previousPeriod;
22
- /**
23
- * Element used for switching period to next one
24
- * @type {?|undefined}
25
- */
26
- CommonPickerCssClasses.prototype.nextPeriod;
27
- /**
28
- * Element representing currently displayed period
29
- * @type {?|undefined}
30
- */
31
- CommonPickerCssClasses.prototype.periodValue;
32
- /**
33
- * Element wrapping displayed period data
34
- * @type {?|undefined}
35
- */
36
- CommonPickerCssClasses.prototype.periodData;
37
- /**
38
- * Element representing single datum for period item
39
- * @type {?|undefined}
40
- */
41
- CommonPickerCssClasses.prototype.periodDatum;
42
- }
43
- /**
44
- * Css classes applied to datetime picker
45
- * @record
46
- */
47
- export function DateTimePickerCssClasses() { }
48
- if (false) {
49
- /**
50
- * Shared css classes for all pickers
51
- * @type {?|undefined}
52
- */
53
- DateTimePickerCssClasses.prototype.pickerShared;
54
- /**
55
- * Custom css classes specific for each picker type
56
- * @type {?|undefined}
57
- */
58
- DateTimePickerCssClasses.prototype.pickerCustom;
59
- }
60
- /**
61
- * Defintion of datetime picker component options
62
- * @record
63
- * @template TPicker
64
- */
65
- export function DateTimePickerOptions() { }
66
- if (false) {
67
- /**
68
- * Order of pickers, it's possible use less pickers as is defined in pickerPeriodsDefinition for example 'month,year'
69
- * @type {?|undefined}
70
- */
71
- DateTimePickerOptions.prototype.pickerPeriodsOrder;
72
- /**
73
- * Definition of types for each period type for picker
74
- * @type {?|undefined}
75
- */
76
- DateTimePickerOptions.prototype.pickerPeriodsDefinition;
77
- /**
78
- * Name of default period for picker that is displayed
79
- * @type {?|undefined}
80
- */
81
- DateTimePickerOptions.prototype.defaultPeriod;
82
- /**
83
- * Css classes for date time picker
84
- * @type {?|undefined}
85
- */
86
- DateTimePickerOptions.prototype.cssClasses;
87
- }
88
- /**
89
- * Describes datetime picker component used for displaying and selecting value
90
- * @record
91
- * @template TDate, TCssClasses
92
- */
93
- export function DateTimePicker() { }
94
- if (false) {
95
- /**
96
- * Gets current value of datetime
97
- * @type {?}
98
- */
99
- DateTimePicker.prototype.value;
100
- /**
101
- * Occurs when value changes
102
- * @type {?}
103
- */
104
- DateTimePicker.prototype.valueChange;
105
- /**
106
- * Occurs when user scales up
107
- * @type {?}
108
- */
109
- DateTimePicker.prototype.scaleUp;
110
- /**
111
- * Occurs when user scales down
112
- * @type {?}
113
- */
114
- DateTimePicker.prototype.scaleDown;
115
- /**
116
- * Sets css classes for picker, allowing to override defaults
117
- * @param {?} cssClasses - Css classes to be set for picker
118
- * @return {?}
119
- */
120
- DateTimePicker.prototype.setCssClasses = function (cssClasses) { };
121
- /**
122
- * Sets minimal possible value for picker, that can be picked
123
- * @param {?} value - Minimal possible value that can be picked
124
- * @return {?}
125
- */
126
- DateTimePicker.prototype.setMinValue = function (value) { };
127
- /**
128
- * Sets maximal possible value for picker, that can be picked
129
- * @param {?} value - Maximal possible value that can be picked
130
- * @return {?}
131
- */
132
- DateTimePicker.prototype.setMaxValue = function (value) { };
133
- /**
134
- * Sets value of datetime picker
135
- * @param {?} value - Value to be set to this picker
136
- * @return {?}
137
- */
138
- DateTimePicker.prototype.setValue = function (value) { };
139
- /**
140
- * Set displays date to be displayed
141
- * @param {?} value - Value that identifies period that is going to be displayed
142
- * @return {?}
143
- */
144
- DateTimePicker.prototype.display = function (value) { };
145
- /**
146
- * Sets indication whether can go down
147
- * @param {?} value - Indication whether can go down in period
148
- * @return {?}
149
- */
150
- DateTimePicker.prototype.setCanGoDown = function (value) { };
151
- /**
152
- * Sets indication whether can go up
153
- * @param {?} value - Indication whether can go up in period
154
- * @return {?}
155
- */
156
- DateTimePicker.prototype.setCanGoUp = function (value) { };
157
- /**
158
- * Explicitly runs invalidation of content (change detection)
159
- * @return {?}
160
- */
161
- DateTimePicker.prototype.invalidateVisuals = function () { };
162
- }
163
- /**
164
- * Data that represents data for any picker type
165
- * @record
166
- * @template TDate
167
- */
168
- export function PeriodData() { }
169
- if (false) {
170
- /**
171
- * Indication that this period item is active and selected
172
- * @type {?}
173
- */
174
- PeriodData.prototype.active;
175
- /**
176
- * Indication that this period item is disabled
177
- * @type {?}
178
- */
179
- PeriodData.prototype.disabled;
180
- /**
181
- * Date for this period item
182
- * @type {?}
183
- */
184
- PeriodData.prototype.date;
185
- }
186
- /**
187
- * Data that represents day in date picker
188
- * @record
189
- * @template TDate
190
- */
191
- export function DayData() { }
192
- if (false) {
193
- /**
194
- * Indication that range is selected and this day is between selected dates
195
- * @type {?}
196
- */
197
- DayData.prototype.betweenActive;
198
- /**
199
- * Indication that this day is out of currently selected month
200
- * @type {?}
201
- */
202
- DayData.prototype.otherMonth;
203
- /**
204
- * Indication that this day is today
205
- * @type {?}
206
- */
207
- DayData.prototype.today;
208
- /**
209
- * Indication that this day is weekend day
210
- * @type {?}
211
- */
212
- DayData.prototype.weekend;
213
- /**
214
- * Day number of month
215
- * @type {?}
216
- */
217
- DayData.prototype.day;
218
- }
219
- /**
220
- * Data that represents month in date picker
221
- * @record
222
- * @template TDate
223
- */
224
- export function MonthData() { }
225
- if (false) {
226
- /**
227
- * Name of month
228
- * @type {?}
229
- */
230
- MonthData.prototype.name;
231
- }
232
- /**
233
- * Data that represents year in date picker
234
- * @record
235
- * @template TDate
236
- */
237
- export function YearData() { }
238
- if (false) {
239
- /**
240
- * Value of year
241
- * @type {?}
242
- */
243
- YearData.prototype.value;
244
- }
245
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVQaWNrZXIuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BpY2tlci9taXNjL2RhdGV0aW1lUGlja2VyLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFVQSw0Q0ErQkM7Ozs7OztJQTFCRyxpREFBeUI7Ozs7O0lBS3pCLGdEQUF3Qjs7Ozs7SUFLeEIsNENBQW9COzs7OztJQUtwQiw2Q0FBcUI7Ozs7O0lBS3JCLDRDQUFvQjs7Ozs7SUFLcEIsNkNBQXFCOzs7Ozs7QUFNekIsOENBV0M7Ozs7OztJQU5HLGdEQUFzQzs7Ozs7SUFLdEMsZ0RBQWtDOzs7Ozs7O0FBTXRDLDJDQXFCQzs7Ozs7O0lBaEJHLG1EQUFzQzs7Ozs7SUFLdEMsd0RBQW9EOzs7OztJQUtwRCw4Q0FBdUI7Ozs7O0lBS3ZCLDJDQUFzQzs7Ozs7OztBQU0xQyxvQ0FvRUM7Ozs7OztJQS9ERywrQkFBMEM7Ozs7O0lBSzFDLHFDQUF1Qzs7Ozs7SUFLdkMsaUNBQW9DOzs7OztJQUtwQyxtQ0FBc0M7Ozs7OztJQU10QyxtRUFBNkM7Ozs7OztJQU03Qyw0REFBcUM7Ozs7OztJQU1yQyw0REFBcUM7Ozs7OztJQU1yQyx5REFBaUQ7Ozs7OztJQU1qRCx3REFBMkM7Ozs7OztJQU0zQyw2REFBbUM7Ozs7OztJQU1uQywyREFBaUM7Ozs7O0lBS2pDLDZEQUEwQjs7Ozs7OztBQU05QixnQ0FnQkM7Ozs7OztJQVhHLDRCQUFnQjs7Ozs7SUFLaEIsOEJBQWtCOzs7OztJQUtsQiwwQkFBWTs7Ozs7OztBQU1oQiw2QkEwQkM7Ozs7OztJQXJCRyxnQ0FBdUI7Ozs7O0lBS3ZCLDZCQUFvQjs7Ozs7SUFLcEIsd0JBQWU7Ozs7O0lBS2YsMEJBQWlCOzs7OztJQUtqQixzQkFBWTs7Ozs7OztBQU1oQiwrQkFNQzs7Ozs7O0lBREcseUJBQWE7Ozs7Ozs7QUFNakIsOEJBTUM7Ozs7OztJQURHLHlCQUFjIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtUeXBlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtEaWN0aW9uYXJ5fSBmcm9tICdAanNjcnB0L2NvbW1vbic7XHJcbmltcG9ydCB7T2JzZXJ2YWJsZX0gZnJvbSAncnhqcyc7XHJcblxyXG5pbXBvcnQge0RhdGVUaW1lVmFsdWV9IGZyb20gJy4uLy4uL21pc2MvZGF0ZXRpbWUuaW50ZXJmYWNlJztcclxuaW1wb3J0IHtEYXRlQXBpT2JqZWN0fSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9kYXRlQXBpLmludGVyZmFjZSc7XHJcblxyXG4vKipcclxuICogU2hhcmVkIGNzcyBjbGFzc2VzIGZvciBhbGwgcGlja2Vyc1xyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBDb21tb25QaWNrZXJDc3NDbGFzc2VzXHJcbntcclxuICAgIC8qKlxyXG4gICAgICogUGVyaW9kIHNlbGVjdGlvbiBlbGVtZW50IHdyYXBwaW5nIGRpc3BsYXllZCBwZXJpb2QgYW5kIHByZXZpb3VzLCBuZXh0IGJ1dHRvbnNcclxuICAgICAqL1xyXG4gICAgcGVyaW9kU2VsZWN0aW9uPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCB1c2VkIGZvciBzd2l0Y2hpbmcgcGVyaW9kIHRvIHByZXZpb3VzIG9uZVxyXG4gICAgICovXHJcbiAgICBwcmV2aW91c1BlcmlvZD86IHN0cmluZztcclxuXHJcbiAgICAvKipcclxuICAgICAqIEVsZW1lbnQgdXNlZCBmb3Igc3dpdGNoaW5nIHBlcmlvZCB0byBuZXh0IG9uZVxyXG4gICAgICovXHJcbiAgICBuZXh0UGVyaW9kPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCByZXByZXNlbnRpbmcgY3VycmVudGx5IGRpc3BsYXllZCBwZXJpb2RcclxuICAgICAqL1xyXG4gICAgcGVyaW9kVmFsdWU/OiBzdHJpbmc7XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBFbGVtZW50IHdyYXBwaW5nIGRpc3BsYXllZCBwZXJpb2QgZGF0YVxyXG4gICAgICovXHJcbiAgICBwZXJpb2REYXRhPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRWxlbWVudCByZXByZXNlbnRpbmcgc2luZ2xlIGRhdHVtIGZvciBwZXJpb2QgaXRlbVxyXG4gICAgICovXHJcbiAgICBwZXJpb2REYXR1bT86IHN0cmluZztcclxufVxyXG5cclxuLyoqXHJcbiAqIENzcyBjbGFzc2VzIGFwcGxpZWQgdG8gZGF0ZXRpbWUgcGlja2VyXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIERhdGVUaW1lUGlja2VyQ3NzQ2xhc3Nlc1xyXG57XHJcbiAgICAvKipcclxuICAgICAqIFNoYXJlZCBjc3MgY2xhc3NlcyBmb3IgYWxsIHBpY2tlcnNcclxuICAgICAqL1xyXG4gICAgcGlja2VyU2hhcmVkPzogQ29tbW9uUGlja2VyQ3NzQ2xhc3NlcztcclxuXHJcbiAgICAvKipcclxuICAgICAqIEN1c3RvbSBjc3MgY2xhc3NlcyBzcGVjaWZpYyBmb3IgZWFjaCBwaWNrZXIgdHlwZVxyXG4gICAgICovXHJcbiAgICBwaWNrZXJDdXN0b20/OiBEaWN0aW9uYXJ5PG9iamVjdD47XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBEZWZpbnRpb24gb2YgZGF0ZXRpbWUgcGlja2VyIGNvbXBvbmVudCBvcHRpb25zXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIERhdGVUaW1lUGlja2VyT3B0aW9uczxUUGlja2VyID0gYW55PlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIE9yZGVyIG9mIHBpY2tlcnMsIGl0J3MgcG9zc2libGUgdXNlIGxlc3MgcGlja2VycyBhcyBpcyBkZWZpbmVkIGluIHBpY2tlclBlcmlvZHNEZWZpbml0aW9uIGZvciBleGFtcGxlICdtb250aCx5ZWFyJ1xyXG4gICAgICovXHJcbiAgICBwaWNrZXJQZXJpb2RzT3JkZXI/OiBzdHJpbmdbXSB8IHN0cmluZ1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRGVmaW5pdGlvbiBvZiB0eXBlcyBmb3IgZWFjaCBwZXJpb2QgdHlwZSBmb3IgcGlja2VyXHJcbiAgICAgKi9cclxuICAgIHBpY2tlclBlcmlvZHNEZWZpbml0aW9uPzogRGljdGlvbmFyeTxUeXBlPFRQaWNrZXI+PjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIE5hbWUgb2YgZGVmYXVsdCBwZXJpb2QgZm9yIHBpY2tlciB0aGF0IGlzIGRpc3BsYXllZFxyXG4gICAgICovXHJcbiAgICBkZWZhdWx0UGVyaW9kPzogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogQ3NzIGNsYXNzZXMgZm9yIGRhdGUgdGltZSBwaWNrZXJcclxuICAgICAqL1xyXG4gICAgY3NzQ2xhc3Nlcz86IERhdGVUaW1lUGlja2VyQ3NzQ2xhc3NlcztcclxufVxyXG5cclxuLyoqXHJcbiAqIERlc2NyaWJlcyBkYXRldGltZSBwaWNrZXIgY29tcG9uZW50IHVzZWQgZm9yIGRpc3BsYXlpbmcgYW5kIHNlbGVjdGluZyB2YWx1ZVxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBEYXRlVGltZVBpY2tlcjxURGF0ZSA9IGFueSwgVENzc0NsYXNzZXMgPSBvYmplY3Q+XHJcbntcclxuICAgIC8qKlxyXG4gICAgICogR2V0cyBjdXJyZW50IHZhbHVlIG9mIGRhdGV0aW1lXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHZhbHVlOiBEYXRlVGltZVZhbHVlPFREYXRlPnxudWxsO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogT2NjdXJzIHdoZW4gdmFsdWUgY2hhbmdlc1xyXG4gICAgICovXHJcbiAgICByZWFkb25seSB2YWx1ZUNoYW5nZTogT2JzZXJ2YWJsZTx2b2lkPjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIE9jY3VycyB3aGVuIHVzZXIgc2NhbGVzIHVwXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHNjYWxlVXA6IE9ic2VydmFibGU8VERhdGU+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogT2NjdXJzIHdoZW4gdXNlciBzY2FsZXMgZG93blxyXG4gICAgICovXHJcbiAgICByZWFkb25seSBzY2FsZURvd246IE9ic2VydmFibGU8VERhdGU+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyBjc3MgY2xhc3NlcyBmb3IgcGlja2VyLCBhbGxvd2luZyB0byBvdmVycmlkZSBkZWZhdWx0c1xyXG4gICAgICogQHBhcmFtIGNzc0NsYXNzZXMgLSBDc3MgY2xhc3NlcyB0byBiZSBzZXQgZm9yIHBpY2tlclxyXG4gICAgICovXHJcbiAgICBzZXRDc3NDbGFzc2VzKGNzc0NsYXNzZXM6IFRDc3NDbGFzc2VzKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgbWluaW1hbCBwb3NzaWJsZSB2YWx1ZSBmb3IgcGlja2VyLCB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIE1pbmltYWwgcG9zc2libGUgdmFsdWUgdGhhdCBjYW4gYmUgcGlja2VkXHJcbiAgICAgKi9cclxuICAgIHNldE1pblZhbHVlKHZhbHVlOiBURGF0ZXxudWxsKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgbWF4aW1hbCBwb3NzaWJsZSB2YWx1ZSBmb3IgcGlja2VyLCB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIE1heGltYWwgcG9zc2libGUgdmFsdWUgdGhhdCBjYW4gYmUgcGlja2VkXHJcbiAgICAgKi9cclxuICAgIHNldE1heFZhbHVlKHZhbHVlOiBURGF0ZXxudWxsKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgdmFsdWUgb2YgZGF0ZXRpbWUgcGlja2VyXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBWYWx1ZSB0byBiZSBzZXQgdG8gdGhpcyBwaWNrZXJcclxuICAgICAqL1xyXG4gICAgc2V0VmFsdWUodmFsdWU6IERhdGVUaW1lVmFsdWU8VERhdGU+fG51bGwpOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0IGRpc3BsYXlzIGRhdGUgdG8gYmUgZGlzcGxheWVkXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBWYWx1ZSB0aGF0IGlkZW50aWZpZXMgcGVyaW9kIHRoYXQgaXMgZ29pbmcgdG8gYmUgZGlzcGxheWVkXHJcbiAgICAgKi9cclxuICAgIGRpc3BsYXkodmFsdWU6IERhdGVBcGlPYmplY3Q8VERhdGU+KTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgaW5kaWNhdGlvbiB3aGV0aGVyIGNhbiBnbyBkb3duXHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSBJbmRpY2F0aW9uIHdoZXRoZXIgY2FuIGdvIGRvd24gaW4gcGVyaW9kXHJcbiAgICAgKi9cclxuICAgIHNldENhbkdvRG93bih2YWx1ZTogYm9vbGVhbik6IHZvaWQ7XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBTZXRzIGluZGljYXRpb24gd2hldGhlciBjYW4gZ28gdXBcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIEluZGljYXRpb24gd2hldGhlciBjYW4gZ28gdXAgaW4gcGVyaW9kXHJcbiAgICAgKi9cclxuICAgIHNldENhbkdvVXAodmFsdWU6IGJvb2xlYW4pOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRXhwbGljaXRseSBydW5zIGludmFsaWRhdGlvbiBvZiBjb250ZW50IChjaGFuZ2UgZGV0ZWN0aW9uKVxyXG4gICAgICovXHJcbiAgICBpbnZhbGlkYXRlVmlzdWFscygpOiB2b2lkO1xyXG59XHJcblxyXG4vKipcclxuICogRGF0YSB0aGF0IHJlcHJlc2VudHMgZGF0YSBmb3IgYW55IHBpY2tlciB0eXBlXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIFBlcmlvZERhdGE8VERhdGUgPSBhbnk+XHJcbntcclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB0aGF0IHRoaXMgcGVyaW9kIGl0ZW0gaXMgYWN0aXZlIGFuZCBzZWxlY3RlZFxyXG4gICAgICovXHJcbiAgICBhY3RpdmU6IGJvb2xlYW47XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBJbmRpY2F0aW9uIHRoYXQgdGhpcyBwZXJpb2QgaXRlbSBpcyBkaXNhYmxlZFxyXG4gICAgICovXHJcbiAgICBkaXNhYmxlZDogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIERhdGUgZm9yIHRoaXMgcGVyaW9kIGl0ZW1cclxuICAgICAqL1xyXG4gICAgZGF0ZTogVERhdGU7XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBEYXRhIHRoYXQgcmVwcmVzZW50cyBkYXkgaW4gZGF0ZSBwaWNrZXJcclxuICovXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGF5RGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCByYW5nZSBpcyBzZWxlY3RlZCBhbmQgdGhpcyBkYXkgaXMgYmV0d2VlbiBzZWxlY3RlZCBkYXRlc1xyXG4gICAgICovXHJcbiAgICBiZXR3ZWVuQWN0aXZlOiBib29sZWFuO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB0aGF0IHRoaXMgZGF5IGlzIG91dCBvZiBjdXJyZW50bHkgc2VsZWN0ZWQgbW9udGhcclxuICAgICAqL1xyXG4gICAgb3RoZXJNb250aDogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCB0aGlzIGRheSBpcyB0b2RheVxyXG4gICAgICovXHJcbiAgICB0b2RheTogYm9vbGVhbjtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEluZGljYXRpb24gdGhhdCB0aGlzIGRheSBpcyB3ZWVrZW5kIGRheVxyXG4gICAgICovXHJcbiAgICB3ZWVrZW5kOiBib29sZWFuO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogRGF5IG51bWJlciBvZiBtb250aFxyXG4gICAgICovXHJcbiAgICBkYXk6IG51bWJlcjtcclxufVxyXG5cclxuLyoqXHJcbiAqIERhdGEgdGhhdCByZXByZXNlbnRzIG1vbnRoIGluIGRhdGUgcGlja2VyXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIE1vbnRoRGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIE5hbWUgb2YgbW9udGhcclxuICAgICAqL1xyXG4gICAgbmFtZTogc3RyaW5nO1xyXG59XHJcblxyXG4vKipcclxuICogRGF0YSB0aGF0IHJlcHJlc2VudHMgeWVhciBpbiBkYXRlIHBpY2tlclxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBZZWFyRGF0YTxURGF0ZSA9IGFueT4gZXh0ZW5kcyBQZXJpb2REYXRhPFREYXRlPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIFZhbHVlIG9mIHllYXJcclxuICAgICAqL1xyXG4gICAgdmFsdWU6IG51bWJlcjtcclxufVxyXG4iXX0=
@@ -1,12 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/picker/misc/tokens.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { InjectionToken } from '@angular/core';
7
- /**
8
- * Injection token used for obtaining datetime picker configuration
9
- * @type {?}
10
- */
11
- export const DATE_TIME_PICKER_CONFIGURATION = new InjectionToken('DATE_TIME_PICKER_CONFIGURATION');
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3BpY2tlci9taXNjL3Rva2Vucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSxlQUFlLENBQUM7Ozs7O0FBTzdDLE1BQU0sT0FBTyw4QkFBOEIsR0FBK0MsSUFBSSxjQUFjLENBQTZCLGdDQUFnQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3Rpb25Ub2tlbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQge0RhdGVUaW1lUGlja2VyT3B0aW9uc30gZnJvbSAnLi9kYXRldGltZVBpY2tlci5pbnRlcmZhY2UnO1xyXG5cclxuLyoqXHJcbiAqIEluamVjdGlvbiB0b2tlbiB1c2VkIGZvciBvYnRhaW5pbmcgZGF0ZXRpbWUgcGlja2VyIGNvbmZpZ3VyYXRpb25cclxuICovXHJcbmV4cG9ydCBjb25zdCBEQVRFX1RJTUVfUElDS0VSX0NPTkZJR1VSQVRJT046IEluamVjdGlvblRva2VuPERhdGVUaW1lUGlja2VyT3B0aW9uczxhbnk+PiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxEYXRlVGltZVBpY2tlck9wdGlvbnM8YW55Pj4oJ0RBVEVfVElNRV9QSUNLRVJfQ09ORklHVVJBVElPTicpOyJdfQ==
@@ -1,35 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/picker/modules/picker.module.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { NgModule } from '@angular/core';
7
- import { CommonModule as AngularCommonModule } from '@angular/common';
8
- import { CommonModule } from '@anglr/common';
9
- import { DateTimePickerComponent } from '../components/picker/picker.component';
10
- import { DateTimeDayPickerComponent } from '../components/dayPicker/dayPicker.component';
11
- import { DateTimeMonthPickerComponent } from '../components/monthPicker/monthPicker.component';
12
- import { DateTimeYearPickerComponent } from '../components/yearPicker/yearPicker.component';
13
- /**
14
- * Angular module for date time picker components
15
- */
16
- export class DateTimePickerModule {
17
- }
18
- DateTimePickerModule.decorators = [
19
- { type: NgModule, args: [{
20
- imports: [
21
- AngularCommonModule,
22
- CommonModule
23
- ],
24
- declarations: [
25
- DateTimePickerComponent,
26
- DateTimeDayPickerComponent,
27
- DateTimeMonthPickerComponent,
28
- DateTimeYearPickerComponent
29
- ],
30
- exports: [
31
- DateTimePickerComponent
32
- ]
33
- },] }
34
- ];
35
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGlja2VyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9waWNrZXIvbW9kdWxlcy9waWNrZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxJQUFJLG1CQUFtQixFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDcEUsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSx1Q0FBdUMsQ0FBQztBQUM5RSxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSw2Q0FBNkMsQ0FBQztBQUN2RixPQUFPLEVBQUMsNEJBQTRCLEVBQUMsTUFBTSxpREFBaUQsQ0FBQztBQUM3RixPQUFPLEVBQUMsMkJBQTJCLEVBQUMsTUFBTSwrQ0FBK0MsQ0FBQzs7OztBQXdCMUYsTUFBTSxPQUFPLG9CQUFvQjs7O1lBbkJoQyxRQUFRLFNBQ1Q7Z0JBQ0ksT0FBTyxFQUNQO29CQUNJLG1CQUFtQjtvQkFDbkIsWUFBWTtpQkFDZjtnQkFDRCxZQUFZLEVBQ1o7b0JBQ0ksdUJBQXVCO29CQUN2QiwwQkFBMEI7b0JBQzFCLDRCQUE0QjtvQkFDNUIsMkJBQTJCO2lCQUM5QjtnQkFDRCxPQUFPLEVBQ1A7b0JBQ0ksdUJBQXVCO2lCQUMxQjthQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlIGFzIEFuZ3VsYXJDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tICdAYW5nbHIvY29tbW9uJztcclxuXHJcbmltcG9ydCB7RGF0ZVRpbWVQaWNrZXJDb21wb25lbnR9IGZyb20gJy4uL2NvbXBvbmVudHMvcGlja2VyL3BpY2tlci5jb21wb25lbnQnO1xyXG5pbXBvcnQge0RhdGVUaW1lRGF5UGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL2RheVBpY2tlci9kYXlQaWNrZXIuY29tcG9uZW50JztcclxuaW1wb3J0IHtEYXRlVGltZU1vbnRoUGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL21vbnRoUGlja2VyL21vbnRoUGlja2VyLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7RGF0ZVRpbWVZZWFyUGlja2VyQ29tcG9uZW50fSBmcm9tICcuLi9jb21wb25lbnRzL3llYXJQaWNrZXIveWVhclBpY2tlci5jb21wb25lbnQnO1xyXG5cclxuLyoqXHJcbiAqIEFuZ3VsYXIgbW9kdWxlIGZvciBkYXRlIHRpbWUgcGlja2VyIGNvbXBvbmVudHNcclxuICovXHJcbkBOZ01vZHVsZShcclxue1xyXG4gICAgaW1wb3J0czpcclxuICAgIFtcclxuICAgICAgICBBbmd1bGFyQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIENvbW1vbk1vZHVsZVxyXG4gICAgXSxcclxuICAgIGRlY2xhcmF0aW9uczpcclxuICAgIFtcclxuICAgICAgICBEYXRlVGltZVBpY2tlckNvbXBvbmVudCxcclxuICAgICAgICBEYXRlVGltZURheVBpY2tlckNvbXBvbmVudCxcclxuICAgICAgICBEYXRlVGltZU1vbnRoUGlja2VyQ29tcG9uZW50LFxyXG4gICAgICAgIERhdGVUaW1lWWVhclBpY2tlckNvbXBvbmVudFxyXG4gICAgXSxcclxuICAgIGV4cG9ydHM6XHJcbiAgICBbXHJcbiAgICAgICAgRGF0ZVRpbWVQaWNrZXJDb21wb25lbnRcclxuICAgIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIERhdGVUaW1lUGlja2VyTW9kdWxlXHJcbntcclxufSJdfQ==
@@ -1,13 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/picker/types.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- export { DateTimePickerComponent } from './components/picker/picker.component';
7
- export { scaleUpDownTrigger } from './components/picker/picker.component.animations';
8
- export { DateTimeDayPickerComponent } from './components/dayPicker/dayPicker.component';
9
- export { DateTimeMonthPickerComponent } from './components/monthPicker/monthPicker.component';
10
- export { DateTimeYearPickerComponent } from './components/yearPicker/yearPicker.component';
11
- export { PickerBaseComponent } from './components/pickerBase.component';
12
- export { DATE_TIME_PICKER_CONFIGURATION } from './misc/tokens';
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcGlja2VyL3R5cGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsd0NBQWMsc0NBQXNDLENBQUM7QUFDckQsbUNBQWMsaURBQWlELENBQUM7QUFDaEUsMkNBQWMsNENBQTRDLENBQUM7QUFDM0QsNkNBQWMsZ0RBQWdELENBQUM7QUFDL0QsNENBQWMsOENBQThDLENBQUM7QUFDN0Qsb0NBQWMsbUNBQW1DLENBQUM7QUFDbEQsK0NBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3BpY2tlci9waWNrZXIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3BpY2tlci9waWNrZXIuY29tcG9uZW50LmFuaW1hdGlvbnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvZGF5UGlja2VyL2RheVBpY2tlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvbW9udGhQaWNrZXIvbW9udGhQaWNrZXIuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3llYXJQaWNrZXIveWVhclBpY2tlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvcGlja2VyQmFzZS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL21pc2MvdG9rZW5zJzsiXX0=
@@ -1,50 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/pipes/dateConvert.pipe.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Inject, Pipe } from '@angular/core';
7
- import { DATE_API } from '../misc/tokens';
8
- /**
9
- * Pipe that is used for converting date
10
- * @template TDate
11
- */
12
- export class DateConvertPipe {
13
- //######################### constructors #########################
14
- /**
15
- * @param {?} _dateApi
16
- */
17
- constructor(_dateApi) {
18
- this._dateApi = _dateApi;
19
- }
20
- //######################### public methods - implementation of PipeTransform #########################
21
- /**
22
- * Transforms value into date object
23
- * @param {?} value - value to be transformed
24
- * @param {?=} parseFormat - format used for parsing string date
25
- * @return {?}
26
- */
27
- transform(value, parseFormat) {
28
- /** @type {?} */
29
- let dateObj = this._dateApi.getValue(value, parseFormat);
30
- if (dateObj.isValid()) {
31
- return dateObj.value;
32
- }
33
- return null;
34
- }
35
- }
36
- DateConvertPipe.decorators = [
37
- { type: Pipe, args: [{ name: 'dateConvert' },] }
38
- ];
39
- /** @nocollapse */
40
- DateConvertPipe.ctorParameters = () => [
41
- { type: undefined, decorators: [{ type: Inject, args: [DATE_API,] }] }
42
- ];
43
- if (false) {
44
- /**
45
- * @type {?}
46
- * @private
47
- */
48
- DateConvertPipe.prototype._dateApi;
49
- }
50
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZUNvbnZlcnQucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9waXBlcy9kYXRlQ29udmVydC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLE1BQU0sRUFBRSxJQUFJLEVBQWdCLE1BQU0sZUFBZSxDQUFDO0FBRTFELE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7QUFPeEMsTUFBTSxPQUFPLGVBQWU7Ozs7O0lBR3hCLFlBQXNDLFFBQXdCO1FBQXhCLGFBQVEsR0FBUixRQUFRLENBQWdCO0lBRTlELENBQUM7Ozs7Ozs7O0lBU00sU0FBUyxDQUFDLEtBQXNCLEVBQUUsV0FBb0I7O1lBRXJELE9BQU8sR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsV0FBVyxDQUFDO1FBRXhELElBQUcsT0FBTyxDQUFDLE9BQU8sRUFBRSxFQUNwQjtZQUNJLE9BQU8sT0FBTyxDQUFDLEtBQUssQ0FBQztTQUN4QjtRQUVELE9BQU8sSUFBSSxDQUFDO0lBQ2hCLENBQUM7OztZQXpCSixJQUFJLFNBQUMsRUFBQyxJQUFJLEVBQUUsYUFBYSxFQUFDOzs7OzRDQUlWLE1BQU0sU0FBQyxRQUFROzs7Ozs7O0lBQWhCLG1DQUFrRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SW5qZWN0LCBQaXBlLCBQaXBlVHJhbnNmb3JtfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7REFURV9BUEl9IGZyb20gJy4uL21pc2MvdG9rZW5zJztcclxuaW1wb3J0IHtEYXRlQXBpLCBEYXRlVmFsdWV9IGZyb20gJy4uL3NlcnZpY2VzJztcclxuXHJcbi8qKlxyXG4gKiBQaXBlIHRoYXQgaXMgdXNlZCBmb3IgY29udmVydGluZyBkYXRlXHJcbiAqL1xyXG5AUGlwZSh7bmFtZTogJ2RhdGVDb252ZXJ0J30pXHJcbmV4cG9ydCBjbGFzcyBEYXRlQ29udmVydFBpcGU8VERhdGUgPSBhbnk+IGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybVxyXG57XHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgY29uc3RydWN0b3JzICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoREFURV9BUEkpIHByaXZhdGUgX2RhdGVBcGk6IERhdGVBcGk8VERhdGU+KVxyXG4gICAge1xyXG4gICAgfVxyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwdWJsaWMgbWV0aG9kcyAtIGltcGxlbWVudGF0aW9uIG9mIFBpcGVUcmFuc2Zvcm0gIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogVHJhbnNmb3JtcyB2YWx1ZSBpbnRvIGRhdGUgb2JqZWN0XHJcbiAgICAgKiBAcGFyYW0gdmFsdWUgLSB2YWx1ZSB0byBiZSB0cmFuc2Zvcm1lZFxyXG4gICAgICogQHBhcmFtIHBhcnNlRm9ybWF0IC0gZm9ybWF0IHVzZWQgZm9yIHBhcnNpbmcgc3RyaW5nIGRhdGVcclxuICAgICAqL1xyXG4gICAgcHVibGljIHRyYW5zZm9ybSh2YWx1ZTogVERhdGV8RGF0ZVZhbHVlLCBwYXJzZUZvcm1hdD86IHN0cmluZyk6IFREYXRlfG51bGxcclxuICAgIHtcclxuICAgICAgICBsZXQgZGF0ZU9iaiA9IHRoaXMuX2RhdGVBcGkuZ2V0VmFsdWUodmFsdWUsIHBhcnNlRm9ybWF0KTtcclxuXHJcbiAgICAgICAgaWYoZGF0ZU9iai5pc1ZhbGlkKCkpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICByZXR1cm4gZGF0ZU9iai52YWx1ZTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHJldHVybiBudWxsO1xyXG4gICAgfVxyXG59Il19
@@ -1,64 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/pipes/dateFormat.pipe.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Inject, Pipe } from '@angular/core';
7
- import { nameof } from '@jscrpt/common';
8
- import { DATE_API, FORMAT_PROVIDER } from '../misc/tokens';
9
- /**
10
- * Pipe that is used for formatting date
11
- * @template TDate
12
- */
13
- export class DateFormatPipe {
14
- //######################### constructors #########################
15
- /**
16
- * @param {?} _formatProvider
17
- * @param {?} _dateApi
18
- */
19
- constructor(_formatProvider, _dateApi) {
20
- this._formatProvider = _formatProvider;
21
- this._dateApi = _dateApi;
22
- }
23
- //######################### public methods - implementation of PipeTransform #########################
24
- /**
25
- * Formats provided date into formatted string
26
- * @param {?} value - value to be transformed
27
- * @param {?=} format - Format that is used for formatting, can be also 'FormatProvider' key
28
- * @param {?=} parseFormat - format used for parsing string date
29
- * @return {?}
30
- */
31
- transform(value, format = nameof('date'), parseFormat) {
32
- //format provider value
33
- if (format in this._formatProvider) {
34
- format = ((/** @type {?} */ (this._formatProvider)))[format];
35
- }
36
- /** @type {?} */
37
- let dateObj = this._dateApi.getValue(value, parseFormat);
38
- if (dateObj.isValid()) {
39
- return dateObj.format(this._dateApi.getFormat(format));
40
- }
41
- return '';
42
- }
43
- }
44
- DateFormatPipe.decorators = [
45
- { type: Pipe, args: [{ name: 'dateFormat' },] }
46
- ];
47
- /** @nocollapse */
48
- DateFormatPipe.ctorParameters = () => [
49
- { type: undefined, decorators: [{ type: Inject, args: [FORMAT_PROVIDER,] }] },
50
- { type: undefined, decorators: [{ type: Inject, args: [DATE_API,] }] }
51
- ];
52
- if (false) {
53
- /**
54
- * @type {?}
55
- * @private
56
- */
57
- DateFormatPipe.prototype._formatProvider;
58
- /**
59
- * @type {?}
60
- * @private
61
- */
62
- DateFormatPipe.prototype._dateApi;
63
- }
64
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZUZvcm1hdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3BpcGVzL2RhdGVGb3JtYXQucGlwZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBQyxNQUFNLEVBQUUsSUFBSSxFQUFnQixNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUMsTUFBTSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFFdEMsT0FBTyxFQUFDLFFBQVEsRUFBRSxlQUFlLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7QUFPekQsTUFBTSxPQUFPLGNBQWM7Ozs7OztJQUd2QixZQUE2QyxlQUErQixFQUN0QyxRQUF3QjtRQURqQixvQkFBZSxHQUFmLGVBQWUsQ0FBZ0I7UUFDdEMsYUFBUSxHQUFSLFFBQVEsQ0FBZ0I7SUFFOUQsQ0FBQzs7Ozs7Ozs7O0lBVU0sU0FBUyxDQUFDLEtBQXNCLEVBQUUsU0FBc0MsTUFBTSxDQUFpQixNQUFNLENBQUMsRUFBRSxXQUFvQjtRQUUvSCx1QkFBdUI7UUFDdkIsSUFBRyxNQUFNLElBQUksSUFBSSxDQUFDLGVBQWUsRUFDakM7WUFDSSxNQUFNLEdBQUcsQ0FBQyxtQkFBSyxJQUFJLENBQUMsZUFBZSxFQUFBLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUNoRDs7WUFFRyxPQUFPLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsS0FBSyxFQUFFLFdBQVcsQ0FBQztRQUV4RCxJQUFHLE9BQU8sQ0FBQyxPQUFPLEVBQUUsRUFDcEI7WUFDSSxPQUFPLE9BQU8sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztTQUMxRDtRQUVELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQzs7O1lBakNKLElBQUksU0FBQyxFQUFDLElBQUksRUFBRSxZQUFZLEVBQUM7Ozs7NENBSVQsTUFBTSxTQUFDLGVBQWU7NENBQ3RCLE1BQU0sU0FBQyxRQUFROzs7Ozs7O0lBRGhCLHlDQUFnRTs7Ozs7SUFDaEUsa0NBQWtEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3QsIFBpcGUsIFBpcGVUcmFuc2Zvcm19IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge25hbWVvZn0gZnJvbSAnQGpzY3JwdC9jb21tb24nO1xyXG5cclxuaW1wb3J0IHtEQVRFX0FQSSwgRk9STUFUX1BST1ZJREVSfSBmcm9tICcuLi9taXNjL3Rva2Vucyc7XHJcbmltcG9ydCB7RGF0ZUFwaSwgRGF0ZVZhbHVlLCBGb3JtYXRQcm92aWRlcn0gZnJvbSAnLi4vc2VydmljZXMnO1xyXG5cclxuLyoqXHJcbiAqIFBpcGUgdGhhdCBpcyB1c2VkIGZvciBmb3JtYXR0aW5nIGRhdGVcclxuICovXHJcbkBQaXBlKHtuYW1lOiAnZGF0ZUZvcm1hdCd9KVxyXG5leHBvcnQgY2xhc3MgRGF0ZUZvcm1hdFBpcGU8VERhdGUgPSBhbnk+IGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybVxyXG57XHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgY29uc3RydWN0b3JzICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuICAgIGNvbnN0cnVjdG9yKEBJbmplY3QoRk9STUFUX1BST1ZJREVSKSBwcml2YXRlIF9mb3JtYXRQcm92aWRlcjogRm9ybWF0UHJvdmlkZXIsXHJcbiAgICAgICAgICAgICAgICBASW5qZWN0KERBVEVfQVBJKSBwcml2YXRlIF9kYXRlQXBpOiBEYXRlQXBpPFREYXRlPilcclxuICAgIHtcclxuICAgIH1cclxuXHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgcHVibGljIG1ldGhvZHMgLSBpbXBsZW1lbnRhdGlvbiBvZiBQaXBlVHJhbnNmb3JtICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuXHJcbiAgICAvKipcclxuICAgICAqIEZvcm1hdHMgcHJvdmlkZWQgZGF0ZSBpbnRvIGZvcm1hdHRlZCBzdHJpbmdcclxuICAgICAqIEBwYXJhbSB2YWx1ZSAtIHZhbHVlIHRvIGJlIHRyYW5zZm9ybWVkXHJcbiAgICAgKiBAcGFyYW0gZm9ybWF0IC0gRm9ybWF0IHRoYXQgaXMgdXNlZCBmb3IgZm9ybWF0dGluZywgY2FuIGJlIGFsc28gJ0Zvcm1hdFByb3ZpZGVyJyBrZXlcclxuICAgICAqIEBwYXJhbSBwYXJzZUZvcm1hdCAtIGZvcm1hdCB1c2VkIGZvciBwYXJzaW5nIHN0cmluZyBkYXRlXHJcbiAgICAgKi9cclxuICAgIHB1YmxpYyB0cmFuc2Zvcm0odmFsdWU6IFREYXRlfERhdGVWYWx1ZSwgZm9ybWF0OiBzdHJpbmd8a2V5b2YgRm9ybWF0UHJvdmlkZXIgPSBuYW1lb2Y8Rm9ybWF0UHJvdmlkZXI+KCdkYXRlJyksIHBhcnNlRm9ybWF0Pzogc3RyaW5nKTogc3RyaW5nXHJcbiAgICB7XHJcbiAgICAgICAgLy9mb3JtYXQgcHJvdmlkZXIgdmFsdWVcclxuICAgICAgICBpZihmb3JtYXQgaW4gdGhpcy5fZm9ybWF0UHJvdmlkZXIpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBmb3JtYXQgPSAoPGFueT50aGlzLl9mb3JtYXRQcm92aWRlcilbZm9ybWF0XTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIGxldCBkYXRlT2JqID0gdGhpcy5fZGF0ZUFwaS5nZXRWYWx1ZSh2YWx1ZSwgcGFyc2VGb3JtYXQpO1xyXG5cclxuICAgICAgICBpZihkYXRlT2JqLmlzVmFsaWQoKSlcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIHJldHVybiBkYXRlT2JqLmZvcm1hdCh0aGlzLl9kYXRlQXBpLmdldEZvcm1hdChmb3JtYXQpKTtcclxuICAgICAgICB9XHJcblxyXG4gICAgICAgIHJldHVybiAnJztcclxuICAgIH1cclxufSJdfQ==