@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,70 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/directives/datetimeValidator/datetimeValidator.directive.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { NG_VALIDATORS } from '@angular/forms';
7
- import { forwardRef, Directive } from '@angular/core';
8
- import { Validators } from '../../../misc/validators';
9
- import { DateTimeSelectorComponent } from '../../components/selector/selector.component';
10
- /**
11
- * Validator that is injected with directive DatetimeValidatorDirective
12
- * @type {?}
13
- */
14
- const DATETIME_VALIDATOR = (/** @type {?} */ ({
15
- provide: NG_VALIDATORS,
16
- useExisting: forwardRef((/**
17
- * @return {?}
18
- */
19
- () => DatetimeValidatorDirective)),
20
- multi: true
21
- }));
22
- /**
23
- * Directive injecting datetime validator, validating datetime
24
- * @template TDate
25
- */
26
- export class DatetimeValidatorDirective {
27
- //######################### constructor #########################
28
- /**
29
- * @param {?} datetimeSelector
30
- */
31
- constructor(datetimeSelector) {
32
- //######################### private fields #########################
33
- /**
34
- * Function used for validations
35
- */
36
- this._validator = (/**
37
- * @return {?}
38
- */
39
- () => null);
40
- this._validator = Validators.datetime(datetimeSelector);
41
- }
42
- //######################### public methods - implementation of Validator #########################
43
- /**
44
- * Validates input and returns validation result
45
- * @param {?} control - Control that is being validated
46
- * @return {?} validation results
47
- */
48
- validate(control) {
49
- return this._validator(control);
50
- }
51
- }
52
- DatetimeValidatorDirective.decorators = [
53
- { type: Directive, args: [{
54
- selector: "date-time-selector[validate][formControlName]:not([range]),date-time-selector[validate][formControl]:not([range]),date-time-selector[validate][ngModel]:not([range])",
55
- providers: [DATETIME_VALIDATOR]
56
- },] }
57
- ];
58
- /** @nocollapse */
59
- DatetimeValidatorDirective.ctorParameters = () => [
60
- { type: DateTimeSelectorComponent }
61
- ];
62
- if (false) {
63
- /**
64
- * Function used for validations
65
- * @type {?}
66
- * @private
67
- */
68
- DatetimeValidatorDirective.prototype._validator;
69
- }
70
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVWYWxpZGF0b3IuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL3NlbGVjdG9yL2RpcmVjdGl2ZXMvZGF0ZXRpbWVWYWxpZGF0b3IvZGF0ZXRpbWVWYWxpZGF0b3IuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLGFBQWEsRUFBNEQsTUFBTSxnQkFBZ0IsQ0FBQztBQUN4RyxPQUFPLEVBQW1CLFVBQVUsRUFBRSxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdEUsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3BELE9BQU8sRUFBQyx5QkFBeUIsRUFBQyxNQUFNLDhDQUE4QyxDQUFDOzs7OztNQUtqRixrQkFBa0IsR0FBRyxtQkFDM0I7SUFDSSxPQUFPLEVBQUUsYUFBYTtJQUN0QixXQUFXLEVBQUUsVUFBVTs7O0lBQUMsR0FBRyxFQUFFLENBQUMsMEJBQTBCLEVBQUM7SUFDekQsS0FBSyxFQUFFLElBQUk7Q0FDZCxFQUFBOzs7OztBQVVELE1BQU0sT0FBTywwQkFBMEI7Ozs7O0lBVW5DLFlBQVksZ0JBQWtEOzs7OztRQUh0RCxlQUFVOzs7UUFBZ0IsR0FBRyxFQUFFLENBQUMsSUFBSSxFQUFDO1FBS3pDLElBQUksQ0FBQyxVQUFVLEdBQUcsVUFBVSxDQUFDLFFBQVEsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO0lBQzVELENBQUM7Ozs7Ozs7SUFTTSxRQUFRLENBQUMsT0FBd0I7UUFFcEMsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3BDLENBQUM7OztZQTlCSixTQUFTLFNBQ1Y7Z0JBQ0ksUUFBUSxFQUFFLHNLQUFzSztnQkFDaEwsU0FBUyxFQUFFLENBQUMsa0JBQWtCLENBQUM7YUFDbEM7Ozs7WUFuQk8seUJBQXlCOzs7Ozs7OztJQTJCN0IsZ0RBQTZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOR19WQUxJREFUT1JTLCBBYnN0cmFjdENvbnRyb2wsIFZhbGlkYXRvciwgVmFsaWRhdG9yRm4sIFZhbGlkYXRpb25FcnJvcnN9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHtFeGlzdGluZ1Byb3ZpZGVyLCBmb3J3YXJkUmVmLCBEaXJlY3RpdmV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHtWYWxpZGF0b3JzfSBmcm9tICcuLi8uLi8uLi9taXNjL3ZhbGlkYXRvcnMnO1xyXG5pbXBvcnQge0RhdGVUaW1lU2VsZWN0b3JDb21wb25lbnR9IGZyb20gJy4uLy4uL2NvbXBvbmVudHMvc2VsZWN0b3Ivc2VsZWN0b3IuY29tcG9uZW50JztcclxuXHJcbi8qKlxyXG4gKiBWYWxpZGF0b3IgdGhhdCBpcyBpbmplY3RlZCB3aXRoIGRpcmVjdGl2ZSBEYXRldGltZVZhbGlkYXRvckRpcmVjdGl2ZVxyXG4gKi9cclxuY29uc3QgREFURVRJTUVfVkFMSURBVE9SID0gPEV4aXN0aW5nUHJvdmlkZXI+XHJcbntcclxuICAgIHByb3ZpZGU6IE5HX1ZBTElEQVRPUlMsXHJcbiAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBEYXRldGltZVZhbGlkYXRvckRpcmVjdGl2ZSksXHJcbiAgICBtdWx0aTogdHJ1ZVxyXG59O1xyXG5cclxuLyoqXHJcbiAqIERpcmVjdGl2ZSBpbmplY3RpbmcgZGF0ZXRpbWUgdmFsaWRhdG9yLCB2YWxpZGF0aW5nIGRhdGV0aW1lXHJcbiAqL1xyXG5ARGlyZWN0aXZlKFxyXG57XHJcbiAgICBzZWxlY3RvcjogXCJkYXRlLXRpbWUtc2VsZWN0b3JbdmFsaWRhdGVdW2Zvcm1Db250cm9sTmFtZV06bm90KFtyYW5nZV0pLGRhdGUtdGltZS1zZWxlY3Rvclt2YWxpZGF0ZV1bZm9ybUNvbnRyb2xdOm5vdChbcmFuZ2VdKSxkYXRlLXRpbWUtc2VsZWN0b3JbdmFsaWRhdGVdW25nTW9kZWxdOm5vdChbcmFuZ2VdKVwiLFxyXG4gICAgcHJvdmlkZXJzOiBbREFURVRJTUVfVkFMSURBVE9SXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGF0ZXRpbWVWYWxpZGF0b3JEaXJlY3RpdmU8VERhdGUgPSBhbnk+IGltcGxlbWVudHMgVmFsaWRhdG9yXHJcbntcclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwcml2YXRlIGZpZWxkcyAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjXHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBGdW5jdGlvbiB1c2VkIGZvciB2YWxpZGF0aW9uc1xyXG4gICAgICovXHJcbiAgICBwcml2YXRlIF92YWxpZGF0b3I6IFZhbGlkYXRvckZuID0gKCkgPT4gbnVsbDtcclxuXHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgY29uc3RydWN0b3IgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG4gICAgY29uc3RydWN0b3IoZGF0ZXRpbWVTZWxlY3RvcjogRGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudDxURGF0ZT4pXHJcbiAgICB7XHJcbiAgICAgICAgdGhpcy5fdmFsaWRhdG9yID0gVmFsaWRhdG9ycy5kYXRldGltZShkYXRldGltZVNlbGVjdG9yKTtcclxuICAgIH1cclxuXHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgcHVibGljIG1ldGhvZHMgLSBpbXBsZW1lbnRhdGlvbiBvZiBWYWxpZGF0b3IgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogVmFsaWRhdGVzIGlucHV0IGFuZCByZXR1cm5zIHZhbGlkYXRpb24gcmVzdWx0XHJcbiAgICAgKiBAcGFyYW0gY29udHJvbCAtIENvbnRyb2wgdGhhdCBpcyBiZWluZyB2YWxpZGF0ZWRcclxuICAgICAqIEByZXR1cm5zIHZhbGlkYXRpb24gcmVzdWx0c1xyXG4gICAgICovXHJcbiAgICBwdWJsaWMgdmFsaWRhdGUoY29udHJvbDogQWJzdHJhY3RDb250cm9sKTogVmFsaWRhdGlvbkVycm9yc3xudWxsXHJcbiAgICB7XHJcbiAgICAgICAgcmV0dXJuIHRoaXMuX3ZhbGlkYXRvcihjb250cm9sKTtcclxuICAgIH1cclxufSJdfQ==
@@ -1,171 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/directives/selectorControlValueAccessor/selectorControlValueAccessor.directive.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { Directive, forwardRef, Input } from '@angular/core';
7
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
8
- import { Subscription } from 'rxjs';
9
- import { DateTimeSelectorComponent } from '../../components/selector/selector.component';
10
- /**
11
- * Value accessor provider for date time selector
12
- * @type {?}
13
- */
14
- const DATE_TIME_SELECTOR_VALUE_ACCESSOR = (/** @type {?} */ ({
15
- provide: NG_VALUE_ACCESSOR,
16
- useExisting: forwardRef((/**
17
- * @return {?}
18
- */
19
- () => DateTimeSelectorControlValueAccessor)),
20
- multi: true
21
- }));
22
- /**
23
- * Value accessor for getting and setting values for date time selector
24
- * @template TDate
25
- */
26
- export class DateTimeSelectorControlValueAccessor {
27
- //######################### constructor #########################
28
- /**
29
- * @param {?} _selector
30
- */
31
- constructor(_selector) {
32
- this._selector = _selector;
33
- //######################### protected fields #########################
34
- /**
35
- * Subscriptions that are destroyed on directive destruction
36
- */
37
- this._subscriptions = new Subscription();
38
- //######################### public properties - inputs #########################
39
- /**
40
- * Indication whether value for selector is represented as range {from, to}
41
- */
42
- this.range = false;
43
- /**
44
- * Indication whether value for selector is represented as formatted string value, if both 'formatted' and 'range' are set, 'range' takes precedence
45
- */
46
- this.formatted = false;
47
- }
48
- //######################### public methods - implementation of OnDestroy #########################
49
- /**
50
- * Called when component is destroyed
51
- * @return {?}
52
- */
53
- ngOnDestroy() {
54
- var _a;
55
- (_a = this._subscriptions) === null || _a === void 0 ? void 0 : _a.unsubscribe();
56
- }
57
- //######################### public methods - implementation of ControlValueAccessor #########################
58
- /**
59
- * Sets value to datetime selector
60
- * @param {?} value
61
- * @return {?}
62
- */
63
- writeValue(value) {
64
- if (this.range) {
65
- this._selector.value = (/** @type {?} */ (value));
66
- }
67
- else if (this.formatted) {
68
- this._selector.formattedValue = (/** @type {?} */ (value));
69
- }
70
- else {
71
- this._selector.value =
72
- {
73
- from: (/** @type {?} */ (value)),
74
- to: (/** @type {?} */ (value))
75
- };
76
- }
77
- }
78
- /**
79
- * Registers callback that is called when value of datetime selector value changes
80
- * @param {?} fn
81
- * @return {?}
82
- */
83
- registerOnChange(fn) {
84
- this._subscriptions.add(this._selector.valueChange.subscribe((/**
85
- * @return {?}
86
- */
87
- () => this._emitValue(fn))));
88
- }
89
- /**
90
- * Registers callback that is called when datetime selector was touched by user
91
- * @param {?} fn
92
- * @return {?}
93
- */
94
- registerOnTouched(fn) {
95
- this._subscriptions.add(this._selector.touched.subscribe((/**
96
- * @return {?}
97
- */
98
- () => fn())));
99
- }
100
- /**
101
- * Used for setting control as disabled
102
- * @param {?} isDisabled - disabled status to set on the element
103
- * @return {?}
104
- */
105
- setDisabledState(isDisabled) {
106
- this._selector.setDisabled(isDisabled);
107
- }
108
- //######################### protected methods #########################
109
- /**
110
- * Used for emitting value that was changed
111
- * @protected
112
- * @param {?} fn - Function that is used for emitting changed value
113
- * @return {?}
114
- */
115
- _emitValue(fn) {
116
- if (this.range) {
117
- fn(this._selector.value);
118
- }
119
- else if (this.formatted) {
120
- fn(this._selector.formattedValue);
121
- }
122
- else {
123
- /** @type {?} */
124
- let value = this._selector.value;
125
- if (!value) {
126
- fn(null);
127
- }
128
- else {
129
- fn(value.from);
130
- }
131
- }
132
- }
133
- }
134
- DateTimeSelectorControlValueAccessor.decorators = [
135
- { type: Directive, args: [{
136
- selector: 'date-time-selector[formControlName],date-time-selector[formControl],date-time-selector[ngModel]',
137
- providers: [DATE_TIME_SELECTOR_VALUE_ACCESSOR]
138
- },] }
139
- ];
140
- /** @nocollapse */
141
- DateTimeSelectorControlValueAccessor.ctorParameters = () => [
142
- { type: DateTimeSelectorComponent }
143
- ];
144
- DateTimeSelectorControlValueAccessor.propDecorators = {
145
- range: [{ type: Input }],
146
- formatted: [{ type: Input }]
147
- };
148
- if (false) {
149
- /**
150
- * Subscriptions that are destroyed on directive destruction
151
- * @type {?}
152
- * @protected
153
- */
154
- DateTimeSelectorControlValueAccessor.prototype._subscriptions;
155
- /**
156
- * Indication whether value for selector is represented as range {from, to}
157
- * @type {?}
158
- */
159
- DateTimeSelectorControlValueAccessor.prototype.range;
160
- /**
161
- * Indication whether value for selector is represented as formatted string value, if both 'formatted' and 'range' are set, 'range' takes precedence
162
- * @type {?}
163
- */
164
- DateTimeSelectorControlValueAccessor.prototype.formatted;
165
- /**
166
- * @type {?}
167
- * @protected
168
- */
169
- DateTimeSelectorControlValueAccessor.prototype._selector;
170
- }
171
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0b3JDb250cm9sVmFsdWVBY2Nlc3Nvci5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvc2VsZWN0b3IvZGlyZWN0aXZlcy9zZWxlY3RvckNvbnRyb2xWYWx1ZUFjY2Vzc29yL3NlbGVjdG9yQ29udHJvbFZhbHVlQWNjZXNzb3IuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBb0IsVUFBVSxFQUFFLEtBQUssRUFBWSxNQUFNLGVBQWUsQ0FBQztBQUN4RixPQUFPLEVBQUMsaUJBQWlCLEVBQXVCLE1BQU0sZ0JBQWdCLENBQUM7QUFDdkUsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLE1BQU0sQ0FBQztBQUdsQyxPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQzs7Ozs7TUFLakYsaUNBQWlDLEdBQUcsbUJBQzFDO0lBQ0ksT0FBTyxFQUFFLGlCQUFpQjtJQUMxQixXQUFXLEVBQUUsVUFBVTs7O0lBQUMsR0FBRyxFQUFFLENBQUMsb0NBQW9DLEVBQUM7SUFDbkUsS0FBSyxFQUFFLElBQUk7Q0FDZCxFQUFBOzs7OztBQVVELE1BQU0sT0FBTyxvQ0FBb0M7Ozs7O0lBd0I3QyxZQUFzQixTQUEyQztRQUEzQyxjQUFTLEdBQVQsU0FBUyxDQUFrQzs7Ozs7UUFqQnZELG1CQUFjLEdBQWlCLElBQUksWUFBWSxFQUFFLENBQUM7Ozs7O1FBUXJELFVBQUssR0FBWSxLQUFLLENBQUM7Ozs7UUFNdkIsY0FBUyxHQUFZLEtBQUssQ0FBQztJQUtsQyxDQUFDOzs7Ozs7SUFPTSxXQUFXOztRQUVkLE1BQUEsSUFBSSxDQUFDLGNBQWMsMENBQUUsV0FBVyxHQUFHO0lBQ3ZDLENBQUM7Ozs7Ozs7SUFPTSxVQUFVLENBQUMsS0FBNkM7UUFFM0QsSUFBRyxJQUFJLENBQUMsS0FBSyxFQUNiO1lBQ0ksSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEdBQUcsbUJBQUEsS0FBSyxFQUF3QixDQUFDO1NBQ3hEO2FBQ0ksSUFBRyxJQUFJLENBQUMsU0FBUyxFQUN0QjtZQUNJLElBQUksQ0FBQyxTQUFTLENBQUMsY0FBYyxHQUFHLG1CQUFBLEtBQUssRUFBVSxDQUFDO1NBQ25EO2FBRUQ7WUFDSSxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUs7Z0JBQ3BCO29CQUNJLElBQUksRUFBRSxtQkFBQSxLQUFLLEVBQVM7b0JBQ3BCLEVBQUUsRUFBRSxtQkFBQSxLQUFLLEVBQVM7aUJBQ3JCLENBQUM7U0FDTDtJQUNMLENBQUM7Ozs7OztJQUtNLGdCQUFnQixDQUFDLEVBQXlEO1FBRTdFLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFDLFNBQVM7OztRQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsRUFBRSxDQUFDLEVBQUMsQ0FBQyxDQUFDO0lBQzdGLENBQUM7Ozs7OztJQUtNLGlCQUFpQixDQUFDLEVBQWE7UUFFbEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsU0FBUzs7O1FBQUMsR0FBRyxFQUFFLENBQUMsRUFBRSxFQUFFLEVBQUMsQ0FBQyxDQUFDO0lBQzFFLENBQUM7Ozs7OztJQU1NLGdCQUFnQixDQUFDLFVBQW1CO1FBRXZDLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzNDLENBQUM7Ozs7Ozs7O0lBUVMsVUFBVSxDQUFDLEVBQTBEO1FBRTNFLElBQUcsSUFBSSxDQUFDLEtBQUssRUFDYjtZQUNJLEVBQUUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxDQUFDO1NBQzVCO2FBQ0ksSUFBRyxJQUFJLENBQUMsU0FBUyxFQUN0QjtZQUNJLEVBQUUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxDQUFDO1NBQ3JDO2FBRUQ7O2dCQUNRLEtBQUssR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLEtBQUs7WUFFaEMsSUFBRyxDQUFDLEtBQUssRUFDVDtnQkFDSSxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUM7YUFDWjtpQkFFRDtnQkFDSSxFQUFFLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDO2FBQ2xCO1NBQ0o7SUFDTCxDQUFDOzs7WUExSEosU0FBUyxTQUNWO2dCQUNJLFFBQVEsRUFBRSxpR0FBaUc7Z0JBQzNHLFNBQVMsRUFBRSxDQUFDLGlDQUFpQyxDQUFDO2FBQ2pEOzs7O1lBbkJPLHlCQUF5Qjs7O29CQWtDNUIsS0FBSzt3QkFNTCxLQUFLOzs7Ozs7OztJQWJOLDhEQUE0RDs7Ozs7SUFPNUQscURBQzhCOzs7OztJQUs5Qix5REFDa0M7Ozs7O0lBR3RCLHlEQUFxRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RGlyZWN0aXZlLCBFeGlzdGluZ1Byb3ZpZGVyLCBmb3J3YXJkUmVmLCBJbnB1dCwgT25EZXN0cm95fSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtOR19WQUxVRV9BQ0NFU1NPUiwgQ29udHJvbFZhbHVlQWNjZXNzb3J9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHtTdWJzY3JpcHRpb259IGZyb20gJ3J4anMnO1xyXG5cclxuaW1wb3J0IHtEYXRlVGltZVZhbHVlfSBmcm9tICcuLi8uLi8uLi9taXNjL2RhdGV0aW1lLmludGVyZmFjZSc7XHJcbmltcG9ydCB7RGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9zZWxlY3Rvci9zZWxlY3Rvci5jb21wb25lbnQnO1xyXG5cclxuLyoqXHJcbiAqIFZhbHVlIGFjY2Vzc29yIHByb3ZpZGVyIGZvciBkYXRlIHRpbWUgc2VsZWN0b3JcclxuICovXHJcbmNvbnN0IERBVEVfVElNRV9TRUxFQ1RPUl9WQUxVRV9BQ0NFU1NPUiA9IDxFeGlzdGluZ1Byb3ZpZGVyPlxyXG57XHJcbiAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUiwgXHJcbiAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBEYXRlVGltZVNlbGVjdG9yQ29udHJvbFZhbHVlQWNjZXNzb3IpLCBcclxuICAgIG11bHRpOiB0cnVlXHJcbn07XHJcblxyXG4vKipcclxuICogVmFsdWUgYWNjZXNzb3IgZm9yIGdldHRpbmcgYW5kIHNldHRpbmcgdmFsdWVzIGZvciBkYXRlIHRpbWUgc2VsZWN0b3JcclxuICovXHJcbkBEaXJlY3RpdmUoXHJcbntcclxuICAgIHNlbGVjdG9yOiAnZGF0ZS10aW1lLXNlbGVjdG9yW2Zvcm1Db250cm9sTmFtZV0sZGF0ZS10aW1lLXNlbGVjdG9yW2Zvcm1Db250cm9sXSxkYXRlLXRpbWUtc2VsZWN0b3JbbmdNb2RlbF0nLFxyXG4gICAgcHJvdmlkZXJzOiBbREFURV9USU1FX1NFTEVDVE9SX1ZBTFVFX0FDQ0VTU09SXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGF0ZVRpbWVTZWxlY3RvckNvbnRyb2xWYWx1ZUFjY2Vzc29yPFREYXRlPiBpbXBsZW1lbnRzIENvbnRyb2xWYWx1ZUFjY2Vzc29yLCBPbkRlc3Ryb3lcclxue1xyXG4gICAgLy8jIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIHByb3RlY3RlZCBmaWVsZHMgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU3Vic2NyaXB0aW9ucyB0aGF0IGFyZSBkZXN0cm95ZWQgb24gZGlyZWN0aXZlIGRlc3RydWN0aW9uXHJcbiAgICAgKi9cclxuICAgIHByb3RlY3RlZCBfc3Vic2NyaXB0aW9uczogU3Vic2NyaXB0aW9uID0gbmV3IFN1YnNjcmlwdGlvbigpO1xyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwdWJsaWMgcHJvcGVydGllcyAtIGlucHV0cyAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjXHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBJbmRpY2F0aW9uIHdoZXRoZXIgdmFsdWUgZm9yIHNlbGVjdG9yIGlzIHJlcHJlc2VudGVkIGFzIHJhbmdlIHtmcm9tLCB0b31cclxuICAgICAqL1xyXG4gICAgQElucHV0KClcclxuICAgIHB1YmxpYyByYW5nZTogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB3aGV0aGVyIHZhbHVlIGZvciBzZWxlY3RvciBpcyByZXByZXNlbnRlZCBhcyBmb3JtYXR0ZWQgc3RyaW5nIHZhbHVlLCBpZiBib3RoICdmb3JtYXR0ZWQnIGFuZCAncmFuZ2UnIGFyZSBzZXQsICdyYW5nZScgdGFrZXMgcHJlY2VkZW5jZVxyXG4gICAgICovXHJcbiAgICBASW5wdXQoKVxyXG4gICAgcHVibGljIGZvcm1hdHRlZDogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBjb25zdHJ1Y3RvciAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjXHJcbiAgICBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgX3NlbGVjdG9yOiBEYXRlVGltZVNlbGVjdG9yQ29tcG9uZW50PFREYXRlPilcclxuICAgIHtcclxuICAgIH1cclxuXHJcbiAgICAvLyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMgcHVibGljIG1ldGhvZHMgLSBpbXBsZW1lbnRhdGlvbiBvZiBPbkRlc3Ryb3kgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjI1xyXG4gICAgXHJcbiAgICAvKipcclxuICAgICAqIENhbGxlZCB3aGVuIGNvbXBvbmVudCBpcyBkZXN0cm95ZWRcclxuICAgICAqL1xyXG4gICAgcHVibGljIG5nT25EZXN0cm95KClcclxuICAgIHtcclxuICAgICAgICB0aGlzLl9zdWJzY3JpcHRpb25zPy51bnN1YnNjcmliZSgpO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwdWJsaWMgbWV0aG9kcyAtIGltcGxlbWVudGF0aW9uIG9mIENvbnRyb2xWYWx1ZUFjY2Vzc29yICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyNcclxuXHJcbiAgICAvKipcclxuICAgICAqIFNldHMgdmFsdWUgdG8gZGF0ZXRpbWUgc2VsZWN0b3JcclxuICAgICAqL1xyXG4gICAgcHVibGljIHdyaXRlVmFsdWUodmFsdWU6IHN0cmluZ3xEYXRlVGltZVZhbHVlPFREYXRlPnxURGF0ZXxudWxsKTogdm9pZFxyXG4gICAge1xyXG4gICAgICAgIGlmKHRoaXMucmFuZ2UpXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICB0aGlzLl9zZWxlY3Rvci52YWx1ZSA9IHZhbHVlIGFzIERhdGVUaW1lVmFsdWU8VERhdGU+O1xyXG4gICAgICAgIH1cclxuICAgICAgICBlbHNlIGlmKHRoaXMuZm9ybWF0dGVkKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgdGhpcy5fc2VsZWN0b3IuZm9ybWF0dGVkVmFsdWUgPSB2YWx1ZSBhcyBzdHJpbmc7XHJcbiAgICAgICAgfVxyXG4gICAgICAgIGVsc2VcclxuICAgICAgICB7XHJcbiAgICAgICAgICAgIHRoaXMuX3NlbGVjdG9yLnZhbHVlID1cclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgZnJvbTogdmFsdWUgYXMgVERhdGUsXHJcbiAgICAgICAgICAgICAgICB0bzogdmFsdWUgYXMgVERhdGVcclxuICAgICAgICAgICAgfTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBSZWdpc3RlcnMgY2FsbGJhY2sgdGhhdCBpcyBjYWxsZWQgd2hlbiB2YWx1ZSBvZiBkYXRldGltZSBzZWxlY3RvciB2YWx1ZSBjaGFuZ2VzXHJcbiAgICAgKi9cclxuICAgIHB1YmxpYyByZWdpc3Rlck9uQ2hhbmdlKGZuOiAoZGF0YTogc3RyaW5nfERhdGVUaW1lVmFsdWU8VERhdGU+fFREYXRlfG51bGwpID0+IGFueSk6IHZvaWRcclxuICAgIHtcclxuICAgICAgICB0aGlzLl9zdWJzY3JpcHRpb25zLmFkZCh0aGlzLl9zZWxlY3Rvci52YWx1ZUNoYW5nZS5zdWJzY3JpYmUoKCkgPT4gdGhpcy5fZW1pdFZhbHVlKGZuKSkpO1xyXG4gICAgfVxyXG5cclxuICAgIC8qKlxyXG4gICAgICogUmVnaXN0ZXJzIGNhbGxiYWNrIHRoYXQgaXMgY2FsbGVkIHdoZW4gZGF0ZXRpbWUgc2VsZWN0b3Igd2FzIHRvdWNoZWQgYnkgdXNlclxyXG4gICAgICovXHJcbiAgICBwdWJsaWMgcmVnaXN0ZXJPblRvdWNoZWQoZm46ICgpID0+IGFueSk6IHZvaWRcclxuICAgIHtcclxuICAgICAgICB0aGlzLl9zdWJzY3JpcHRpb25zLmFkZCh0aGlzLl9zZWxlY3Rvci50b3VjaGVkLnN1YnNjcmliZSgoKSA9PiBmbigpKSk7XHJcbiAgICB9XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBVc2VkIGZvciBzZXR0aW5nIGNvbnRyb2wgYXMgZGlzYWJsZWRcclxuICAgICAqIEBwYXJhbSBpc0Rpc2FibGVkIC0gZGlzYWJsZWQgc3RhdHVzIHRvIHNldCBvbiB0aGUgZWxlbWVudFxyXG4gICAgICovXHJcbiAgICBwdWJsaWMgc2V0RGlzYWJsZWRTdGF0ZShpc0Rpc2FibGVkOiBib29sZWFuKTogdm9pZFxyXG4gICAge1xyXG4gICAgICAgIHRoaXMuX3NlbGVjdG9yLnNldERpc2FibGVkKGlzRGlzYWJsZWQpO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyBwcm90ZWN0ZWQgbWV0aG9kcyAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjXHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBVc2VkIGZvciBlbWl0dGluZyB2YWx1ZSB0aGF0IHdhcyBjaGFuZ2VkXHJcbiAgICAgKiBAcGFyYW0gZm4gLSBGdW5jdGlvbiB0aGF0IGlzIHVzZWQgZm9yIGVtaXR0aW5nIGNoYW5nZWQgdmFsdWVcclxuICAgICAqL1xyXG4gICAgcHJvdGVjdGVkIF9lbWl0VmFsdWUoZm46ICh2YWx1ZTogc3RyaW5nfERhdGVUaW1lVmFsdWU8VERhdGU+fFREYXRlfG51bGwpID0+IGFueSlcclxuICAgIHtcclxuICAgICAgICBpZih0aGlzLnJhbmdlKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgZm4odGhpcy5fc2VsZWN0b3IudmFsdWUpO1xyXG4gICAgICAgIH1cclxuICAgICAgICBlbHNlIGlmKHRoaXMuZm9ybWF0dGVkKVxyXG4gICAgICAgIHtcclxuICAgICAgICAgICAgZm4odGhpcy5fc2VsZWN0b3IuZm9ybWF0dGVkVmFsdWUpO1xyXG4gICAgICAgIH1cclxuICAgICAgICBlbHNlXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgICBsZXQgdmFsdWUgPSB0aGlzLl9zZWxlY3Rvci52YWx1ZTtcclxuXHJcbiAgICAgICAgICAgIGlmKCF2YWx1ZSlcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgZm4obnVsbCk7XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgZWxzZVxyXG4gICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBmbih2YWx1ZS5mcm9tKTtcclxuICAgICAgICAgICAgfVxyXG4gICAgICAgIH1cclxuICAgIH1cclxufVxyXG4iXX0=
@@ -1,7 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/interfaces.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- export {} from './misc/datetimeSelector.interface';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW50ZXJmYWNlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9zZWxlY3Rvci9pbnRlcmZhY2VzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsZUFBYyxtQ0FBbUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbWlzYy9kYXRldGltZVNlbGVjdG9yLmludGVyZmFjZSc7Il19
@@ -1,106 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/misc/datetimeSelector.interface.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- /**
7
- * Defintion of datetime selector component options
8
- * @record
9
- * @template TSelector, TPicker
10
- */
11
- export function DateTimeSelectorOptions() { }
12
- if (false) {
13
- /**
14
- * Definition of type that is used for selector
15
- * @type {?}
16
- */
17
- DateTimeSelectorOptions.prototype.selectorComponent;
18
- /**
19
- * Indication whether close picker on value selection
20
- * @type {?|undefined}
21
- */
22
- DateTimeSelectorOptions.prototype.pickerCloseOnValueSelect;
23
- /**
24
- * Indication whether picker is disabled
25
- * @type {?|undefined}
26
- */
27
- DateTimeSelectorOptions.prototype.pickerDisabled;
28
- }
29
- /**
30
- * Describes datetime selector component used for displaying and selecting value
31
- * @record
32
- * @template TDate
33
- */
34
- export function DateTimeSelector() { }
35
- if (false) {
36
- /**
37
- * Currently used format for displaying data
38
- * @type {?}
39
- */
40
- DateTimeSelector.prototype.format;
41
- /**
42
- * Placeholder that is displayed when there is no value selected
43
- * @type {?|undefined}
44
- */
45
- DateTimeSelector.prototype.placeholder;
46
- /**
47
- * Gets current value of datetime
48
- * @type {?}
49
- */
50
- DateTimeSelector.prototype.value;
51
- /**
52
- * Gets formatted value
53
- * @type {?}
54
- */
55
- DateTimeSelector.prototype.formattedValue;
56
- /**
57
- * Gets indication whether is current value valid
58
- * @type {?}
59
- */
60
- DateTimeSelector.prototype.valid;
61
- /**
62
- * Occurs when value changes
63
- * @type {?}
64
- */
65
- DateTimeSelector.prototype.valueChange;
66
- /**
67
- * Occurs when selector is touched by user
68
- * @type {?}
69
- */
70
- DateTimeSelector.prototype.touched;
71
- /**
72
- * Occurs when selector requires picker to be displayed or hidden
73
- * @type {?}
74
- */
75
- DateTimeSelector.prototype.pickerRequest;
76
- /**
77
- * Sets minimal possible value for picker, that can be picked
78
- * @param {?} value - Minimal possible value that can be picked
79
- * @return {?}
80
- */
81
- DateTimeSelector.prototype.setMinValue = function (value) { };
82
- /**
83
- * Sets maximal possible value for picker, that can be picked
84
- * @param {?} value - Maximal possible value that can be picked
85
- * @return {?}
86
- */
87
- DateTimeSelector.prototype.setMaxValue = function (value) { };
88
- /**
89
- * Sets value of datetime selector
90
- * @param {?} value - Value to be set to this selector
91
- * @return {?}
92
- */
93
- DateTimeSelector.prototype.setValue = function (value) { };
94
- /**
95
- * Sets as 'control' disabled
96
- * @param {?=} disabled - Indication whether sets value as disabled, if omitted it is same as disabled set to true
97
- * @return {?}
98
- */
99
- DateTimeSelector.prototype.setDisabled = function (disabled) { };
100
- /**
101
- * Explicitly runs invalidation of content (change detection)
102
- * @return {?}
103
- */
104
- DateTimeSelector.prototype.invalidateVisuals = function () { };
105
- }
106
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVTZWxlY3Rvci5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvc2VsZWN0b3IvbWlzYy9kYXRldGltZVNlbGVjdG9yLmludGVyZmFjZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7O0FBU0EsNkNBZ0JDOzs7Ozs7SUFYRyxvREFBbUM7Ozs7O0lBS25DLDJEQUFtQzs7Ozs7SUFLbkMsaURBQXlCOzs7Ozs7O0FBTTdCLHNDQXNFQzs7Ozs7O0lBakVHLGtDQUFlOzs7OztJQUtmLHVDQUFxQjs7Ozs7SUFLckIsaUNBQTBDOzs7OztJQUsxQywwQ0FBcUM7Ozs7O0lBS3JDLGlDQUF3Qjs7Ozs7SUFLeEIsdUNBQXVDOzs7OztJQUt2QyxtQ0FBbUM7Ozs7O0lBS25DLHlDQUE0Qzs7Ozs7O0lBTTVDLDhEQUFxQzs7Ozs7O0lBTXJDLDhEQUFxQzs7Ozs7O0lBTXJDLDJEQUFpRDs7Ozs7O0lBTWpELGlFQUFzQzs7Ozs7SUFLdEMsK0RBQTBCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtUeXBlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtPYnNlcnZhYmxlfSBmcm9tICdyeGpzJztcclxuXHJcbmltcG9ydCB7RGF0ZVRpbWVWYWx1ZX0gZnJvbSAnLi4vLi4vbWlzYy9kYXRldGltZS5pbnRlcmZhY2UnO1xyXG5pbXBvcnQge0RhdGVUaW1lUGlja2VyT3B0aW9uc30gZnJvbSAnLi4vLi4vcGlja2VyL21pc2MvZGF0ZXRpbWVQaWNrZXIuaW50ZXJmYWNlJztcclxuXHJcbi8qKlxyXG4gKiBEZWZpbnRpb24gb2YgZGF0ZXRpbWUgc2VsZWN0b3IgY29tcG9uZW50IG9wdGlvbnNcclxuICovXHJcbmV4cG9ydCBpbnRlcmZhY2UgRGF0ZVRpbWVTZWxlY3Rvck9wdGlvbnM8VFNlbGVjdG9yID0gYW55LCBUUGlja2VyID0gYW55PiBleHRlbmRzIERhdGVUaW1lUGlja2VyT3B0aW9uczxUUGlja2VyPlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIERlZmluaXRpb24gb2YgdHlwZSB0aGF0IGlzIHVzZWQgZm9yIHNlbGVjdG9yXHJcbiAgICAgKi9cclxuICAgIHNlbGVjdG9yQ29tcG9uZW50OiBUeXBlPFRTZWxlY3Rvcj47XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBJbmRpY2F0aW9uIHdoZXRoZXIgY2xvc2UgcGlja2VyIG9uIHZhbHVlIHNlbGVjdGlvblxyXG4gICAgICovXHJcbiAgICBwaWNrZXJDbG9zZU9uVmFsdWVTZWxlY3Q/OiBib29sZWFuO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogSW5kaWNhdGlvbiB3aGV0aGVyIHBpY2tlciBpcyBkaXNhYmxlZFxyXG4gICAgICovXHJcbiAgICBwaWNrZXJEaXNhYmxlZD86IGJvb2xlYW47XHJcbn1cclxuXHJcbi8qKlxyXG4gKiBEZXNjcmliZXMgZGF0ZXRpbWUgc2VsZWN0b3IgY29tcG9uZW50IHVzZWQgZm9yIGRpc3BsYXlpbmcgYW5kIHNlbGVjdGluZyB2YWx1ZVxyXG4gKi9cclxuZXhwb3J0IGludGVyZmFjZSBEYXRlVGltZVNlbGVjdG9yPFREYXRlID0gYW55PlxyXG57XHJcbiAgICAvKipcclxuICAgICAqIEN1cnJlbnRseSB1c2VkIGZvcm1hdCBmb3IgZGlzcGxheWluZyBkYXRhXHJcbiAgICAgKi9cclxuICAgIGZvcm1hdDogc3RyaW5nO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogUGxhY2Vob2xkZXIgdGhhdCBpcyBkaXNwbGF5ZWQgd2hlbiB0aGVyZSBpcyBubyB2YWx1ZSBzZWxlY3RlZFxyXG4gICAgICovXHJcbiAgICBwbGFjZWhvbGRlcj86IHN0cmluZztcclxuXHJcbiAgICAvKipcclxuICAgICAqIEdldHMgY3VycmVudCB2YWx1ZSBvZiBkYXRldGltZVxyXG4gICAgICovXHJcbiAgICByZWFkb25seSB2YWx1ZTogRGF0ZVRpbWVWYWx1ZTxURGF0ZT58bnVsbDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEdldHMgZm9ybWF0dGVkIHZhbHVlXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IGZvcm1hdHRlZFZhbHVlOiBzdHJpbmd8bnVsbDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEdldHMgaW5kaWNhdGlvbiB3aGV0aGVyIGlzIGN1cnJlbnQgdmFsdWUgdmFsaWRcclxuICAgICAqL1xyXG4gICAgcmVhZG9ubHkgdmFsaWQ6IGJvb2xlYW47XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBPY2N1cnMgd2hlbiB2YWx1ZSBjaGFuZ2VzXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHZhbHVlQ2hhbmdlOiBPYnNlcnZhYmxlPHZvaWQ+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogT2NjdXJzIHdoZW4gc2VsZWN0b3IgaXMgdG91Y2hlZCBieSB1c2VyXHJcbiAgICAgKi9cclxuICAgIHJlYWRvbmx5IHRvdWNoZWQ6IE9ic2VydmFibGU8dm9pZD47XHJcblxyXG4gICAgLyoqXHJcbiAgICAgKiBPY2N1cnMgd2hlbiBzZWxlY3RvciByZXF1aXJlcyBwaWNrZXIgdG8gYmUgZGlzcGxheWVkIG9yIGhpZGRlblxyXG4gICAgICovXHJcbiAgICByZWFkb25seSBwaWNrZXJSZXF1ZXN0OiBPYnNlcnZhYmxlPGJvb2xlYW4+O1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyBtaW5pbWFsIHBvc3NpYmxlIHZhbHVlIGZvciBwaWNrZXIsIHRoYXQgY2FuIGJlIHBpY2tlZFxyXG4gICAgICogQHBhcmFtIHZhbHVlIC0gTWluaW1hbCBwb3NzaWJsZSB2YWx1ZSB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqL1xyXG4gICAgc2V0TWluVmFsdWUodmFsdWU6IFREYXRlfG51bGwpOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyBtYXhpbWFsIHBvc3NpYmxlIHZhbHVlIGZvciBwaWNrZXIsIHRoYXQgY2FuIGJlIHBpY2tlZFxyXG4gICAgICogQHBhcmFtIHZhbHVlIC0gTWF4aW1hbCBwb3NzaWJsZSB2YWx1ZSB0aGF0IGNhbiBiZSBwaWNrZWRcclxuICAgICAqL1xyXG4gICAgc2V0TWF4VmFsdWUodmFsdWU6IFREYXRlfG51bGwpOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyB2YWx1ZSBvZiBkYXRldGltZSBzZWxlY3RvclxyXG4gICAgICogQHBhcmFtIHZhbHVlIC0gVmFsdWUgdG8gYmUgc2V0IHRvIHRoaXMgc2VsZWN0b3JcclxuICAgICAqL1xyXG4gICAgc2V0VmFsdWUodmFsdWU6IERhdGVUaW1lVmFsdWU8VERhdGU+fG51bGwpOiB2b2lkO1xyXG5cclxuICAgIC8qKlxyXG4gICAgICogU2V0cyBhcyAnY29udHJvbCcgZGlzYWJsZWRcclxuICAgICAqIEBwYXJhbSBkaXNhYmxlZCAtIEluZGljYXRpb24gd2hldGhlciBzZXRzIHZhbHVlIGFzIGRpc2FibGVkLCBpZiBvbWl0dGVkIGl0IGlzIHNhbWUgYXMgZGlzYWJsZWQgc2V0IHRvIHRydWVcclxuICAgICAqL1xyXG4gICAgc2V0RGlzYWJsZWQoZGlzYWJsZWQ/OiBib29sZWFuKTogdm9pZDtcclxuXHJcbiAgICAvKipcclxuICAgICAqIEV4cGxpY2l0bHkgcnVucyBpbnZhbGlkYXRpb24gb2YgY29udGVudCAoY2hhbmdlIGRldGVjdGlvbilcclxuICAgICAqL1xyXG4gICAgaW52YWxpZGF0ZVZpc3VhbHMoKTogdm9pZDtcclxufSJdfQ==
@@ -1,12 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/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 selector configuration
9
- * @type {?}
10
- */
11
- export const DATE_TIME_SELECTOR_CONFIGURATION = new InjectionToken('DATE_TIME_SELECTOR_CONFIGURATION');
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3NlbGVjdG9yL21pc2MvdG9rZW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFPN0MsTUFBTSxPQUFPLGdDQUFnQyxHQUFpRCxJQUFJLGNBQWMsQ0FBK0Isa0NBQWtDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGlvblRva2VufSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7RGF0ZVRpbWVTZWxlY3Rvck9wdGlvbnN9IGZyb20gJy4vZGF0ZXRpbWVTZWxlY3Rvci5pbnRlcmZhY2UnO1xyXG5cclxuLyoqXHJcbiAqIEluamVjdGlvbiB0b2tlbiB1c2VkIGZvciBvYnRhaW5pbmcgZGF0ZXRpbWUgc2VsZWN0b3IgY29uZmlndXJhdGlvblxyXG4gKi9cclxuZXhwb3J0IGNvbnN0IERBVEVfVElNRV9TRUxFQ1RPUl9DT05GSUdVUkFUSU9OOiBJbmplY3Rpb25Ub2tlbjxEYXRlVGltZVNlbGVjdG9yT3B0aW9uczxhbnk+PiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxEYXRlVGltZVNlbGVjdG9yT3B0aW9uczxhbnk+PignREFURV9USU1FX1NFTEVDVE9SX0NPTkZJR1VSQVRJT04nKTsiXX0=
@@ -1,20 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/modules/basicSelector.module.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- import { NgModule } from '@angular/core';
7
- import { SimpleInputDateTimeSelectorComponent } from '../components/simpleInputDateTime/simpleInputDateTime.component';
8
- /**
9
- * Angular module for date time basic input selector component
10
- */
11
- export class DateTimeBasicSelectorModule {
12
- }
13
- DateTimeBasicSelectorModule.decorators = [
14
- { type: NgModule, args: [{
15
- declarations: [
16
- SimpleInputDateTimeSelectorComponent
17
- ]
18
- },] }
19
- ];
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzaWNTZWxlY3Rvci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvc2VsZWN0b3IvbW9kdWxlcy9iYXNpY1NlbGVjdG9yLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFdkMsT0FBTyxFQUFDLG9DQUFvQyxFQUFDLE1BQU0saUVBQWlFLENBQUM7Ozs7QUFZckgsTUFBTSxPQUFPLDJCQUEyQjs7O1lBUHZDLFFBQVEsU0FDVDtnQkFDSSxZQUFZLEVBQ1o7b0JBQ0ksb0NBQW9DO2lCQUN2QzthQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQge1NpbXBsZUlucHV0RGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudH0gZnJvbSAnLi4vY29tcG9uZW50cy9zaW1wbGVJbnB1dERhdGVUaW1lL3NpbXBsZUlucHV0RGF0ZVRpbWUuY29tcG9uZW50JztcclxuXHJcbi8qKlxyXG4gKiBBbmd1bGFyIG1vZHVsZSBmb3IgZGF0ZSB0aW1lIGJhc2ljIGlucHV0IHNlbGVjdG9yIGNvbXBvbmVudFxyXG4gKi9cclxuQE5nTW9kdWxlKFxyXG57XHJcbiAgICBkZWNsYXJhdGlvbnM6XHJcbiAgICBbXHJcbiAgICAgICAgU2ltcGxlSW5wdXREYXRlVGltZVNlbGVjdG9yQ29tcG9uZW50XHJcbiAgICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBEYXRlVGltZUJhc2ljU2VsZWN0b3JNb2R1bGVcclxue1xyXG59Il19
@@ -1,45 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/modules/selector.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 { DateTimePickerModule } from '../../picker/modules/picker.module';
10
- import { DateTimeSelectorComponent } from '../components/selector/selector.component';
11
- import { InputDateTimeSelectorComponent } from '../components/inputDateTime/inputDateTime.component';
12
- import { DateTimeSelectorControlValueAccessor } from '../directives/selectorControlValueAccessor/selectorControlValueAccessor.directive';
13
- import { DatetimeValidatorDirective } from '../directives/datetimeValidator/datetimeValidator.directive';
14
- import { DatetimeMinValidatorDirective } from '../directives/datetimeMinValidator/datetimeMinValidator.directive';
15
- import { DatetimeMaxValidatorDirective } from '../directives/datetimeMaxValidator/datetimeMaxValidator.directive';
16
- /**
17
- * Angular module for date time selector components
18
- */
19
- export class DateTimeSelectorModule {
20
- }
21
- DateTimeSelectorModule.decorators = [
22
- { type: NgModule, args: [{
23
- imports: [
24
- AngularCommonModule,
25
- CommonModule,
26
- DateTimePickerModule
27
- ],
28
- declarations: [
29
- DateTimeSelectorComponent,
30
- InputDateTimeSelectorComponent,
31
- DateTimeSelectorControlValueAccessor,
32
- DatetimeValidatorDirective,
33
- DatetimeMinValidatorDirective,
34
- DatetimeMaxValidatorDirective
35
- ],
36
- exports: [
37
- DateTimeSelectorComponent,
38
- DateTimeSelectorControlValueAccessor,
39
- DatetimeValidatorDirective,
40
- DatetimeMinValidatorDirective,
41
- DatetimeMaxValidatorDirective
42
- ]
43
- },] }
44
- ];
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0b3IubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3NlbGVjdG9yL21vZHVsZXMvc2VsZWN0b3IubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxJQUFJLG1CQUFtQixFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDcEUsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQUMsb0JBQW9CLEVBQUMsTUFBTSxvQ0FBb0MsQ0FBQztBQUN4RSxPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSwyQ0FBMkMsQ0FBQztBQUNwRixPQUFPLEVBQUMsOEJBQThCLEVBQUMsTUFBTSxxREFBcUQsQ0FBQztBQUNuRyxPQUFPLEVBQUMsb0NBQW9DLEVBQUMsTUFBTSxtRkFBbUYsQ0FBQztBQUN2SSxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSw2REFBNkQsQ0FBQztBQUN2RyxPQUFPLEVBQUMsNkJBQTZCLEVBQUMsTUFBTSxtRUFBbUUsQ0FBQztBQUNoSCxPQUFPLEVBQUMsNkJBQTZCLEVBQUMsTUFBTSxtRUFBbUUsQ0FBQzs7OztBQStCaEgsTUFBTSxPQUFPLHNCQUFzQjs7O1lBMUJsQyxRQUFRLFNBQ1Q7Z0JBQ0ksT0FBTyxFQUNQO29CQUNJLG1CQUFtQjtvQkFDbkIsWUFBWTtvQkFDWixvQkFBb0I7aUJBQ3ZCO2dCQUNELFlBQVksRUFDWjtvQkFDSSx5QkFBeUI7b0JBQ3pCLDhCQUE4QjtvQkFDOUIsb0NBQW9DO29CQUNwQywwQkFBMEI7b0JBQzFCLDZCQUE2QjtvQkFDN0IsNkJBQTZCO2lCQUNoQztnQkFDRCxPQUFPLEVBQ1A7b0JBQ0kseUJBQXlCO29CQUN6QixvQ0FBb0M7b0JBQ3BDLDBCQUEwQjtvQkFDMUIsNkJBQTZCO29CQUM3Qiw2QkFBNkI7aUJBQ2hDO2FBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtDb21tb25Nb2R1bGUgYXMgQW5ndWxhckNvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmdsci9jb21tb24nO1xyXG5cclxuaW1wb3J0IHtEYXRlVGltZVBpY2tlck1vZHVsZX0gZnJvbSAnLi4vLi4vcGlja2VyL21vZHVsZXMvcGlja2VyLm1vZHVsZSc7XHJcbmltcG9ydCB7RGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudH0gZnJvbSAnLi4vY29tcG9uZW50cy9zZWxlY3Rvci9zZWxlY3Rvci5jb21wb25lbnQnO1xyXG5pbXBvcnQge0lucHV0RGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudH0gZnJvbSAnLi4vY29tcG9uZW50cy9pbnB1dERhdGVUaW1lL2lucHV0RGF0ZVRpbWUuY29tcG9uZW50JztcclxuaW1wb3J0IHtEYXRlVGltZVNlbGVjdG9yQ29udHJvbFZhbHVlQWNjZXNzb3J9IGZyb20gJy4uL2RpcmVjdGl2ZXMvc2VsZWN0b3JDb250cm9sVmFsdWVBY2Nlc3Nvci9zZWxlY3RvckNvbnRyb2xWYWx1ZUFjY2Vzc29yLmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7RGF0ZXRpbWVWYWxpZGF0b3JEaXJlY3RpdmV9IGZyb20gJy4uL2RpcmVjdGl2ZXMvZGF0ZXRpbWVWYWxpZGF0b3IvZGF0ZXRpbWVWYWxpZGF0b3IuZGlyZWN0aXZlJztcclxuaW1wb3J0IHtEYXRldGltZU1pblZhbGlkYXRvckRpcmVjdGl2ZX0gZnJvbSAnLi4vZGlyZWN0aXZlcy9kYXRldGltZU1pblZhbGlkYXRvci9kYXRldGltZU1pblZhbGlkYXRvci5kaXJlY3RpdmUnO1xyXG5pbXBvcnQge0RhdGV0aW1lTWF4VmFsaWRhdG9yRGlyZWN0aXZlfSBmcm9tICcuLi9kaXJlY3RpdmVzL2RhdGV0aW1lTWF4VmFsaWRhdG9yL2RhdGV0aW1lTWF4VmFsaWRhdG9yLmRpcmVjdGl2ZSc7XHJcblxyXG4vKipcclxuICogQW5ndWxhciBtb2R1bGUgZm9yIGRhdGUgdGltZSBzZWxlY3RvciBjb21wb25lbnRzXHJcbiAqL1xyXG5ATmdNb2R1bGUoXHJcbntcclxuICAgIGltcG9ydHM6XHJcbiAgICBbXHJcbiAgICAgICAgQW5ndWxhckNvbW1vbk1vZHVsZSxcclxuICAgICAgICBDb21tb25Nb2R1bGUsXHJcbiAgICAgICAgRGF0ZVRpbWVQaWNrZXJNb2R1bGVcclxuICAgIF0sXHJcbiAgICBkZWNsYXJhdGlvbnM6XHJcbiAgICBbXHJcbiAgICAgICAgRGF0ZVRpbWVTZWxlY3RvckNvbXBvbmVudCxcclxuICAgICAgICBJbnB1dERhdGVUaW1lU2VsZWN0b3JDb21wb25lbnQsXHJcbiAgICAgICAgRGF0ZVRpbWVTZWxlY3RvckNvbnRyb2xWYWx1ZUFjY2Vzc29yLFxyXG4gICAgICAgIERhdGV0aW1lVmFsaWRhdG9yRGlyZWN0aXZlLFxyXG4gICAgICAgIERhdGV0aW1lTWluVmFsaWRhdG9yRGlyZWN0aXZlLFxyXG4gICAgICAgIERhdGV0aW1lTWF4VmFsaWRhdG9yRGlyZWN0aXZlXHJcbiAgICBdLFxyXG4gICAgZXhwb3J0czpcclxuICAgIFtcclxuICAgICAgICBEYXRlVGltZVNlbGVjdG9yQ29tcG9uZW50LFxyXG4gICAgICAgIERhdGVUaW1lU2VsZWN0b3JDb250cm9sVmFsdWVBY2Nlc3NvcixcclxuICAgICAgICBEYXRldGltZVZhbGlkYXRvckRpcmVjdGl2ZSxcclxuICAgICAgICBEYXRldGltZU1pblZhbGlkYXRvckRpcmVjdGl2ZSxcclxuICAgICAgICBEYXRldGltZU1heFZhbGlkYXRvckRpcmVjdGl2ZVxyXG4gICAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGF0ZVRpbWVTZWxlY3Rvck1vZHVsZVxyXG57XHJcbn0iXX0=
@@ -1,15 +0,0 @@
1
- /**
2
- * @fileoverview added by tsickle
3
- * Generated from: src/selector/types.ts
4
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
5
- */
6
- export { InputDateTimeSelectorComponent } from './components/inputDateTime/inputDateTime.component';
7
- export { DateTimeSelectorComponent } from './components/selector/selector.component';
8
- export { enterLeaveAnimateChildTrigger } from './components/selector/selector.component.animations';
9
- export { SimpleInputDateTimeSelectorComponent } from './components/simpleInputDateTime/simpleInputDateTime.component';
10
- export { DatetimeMaxValidatorDirective } from './directives/datetimeMaxValidator/datetimeMaxValidator.directive';
11
- export { DatetimeMinValidatorDirective } from './directives/datetimeMinValidator/datetimeMinValidator.directive';
12
- export { DatetimeValidatorDirective } from './directives/datetimeValidator/datetimeValidator.directive';
13
- export { DateTimeSelectorControlValueAccessor } from './directives/selectorControlValueAccessor/selectorControlValueAccessor.directive';
14
- export { DATE_TIME_SELECTOR_CONFIGURATION } from './misc/tokens';
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvc2VsZWN0b3IvdHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSwrQ0FBYyxvREFBb0QsQ0FBQztBQUNuRSwwQ0FBYywwQ0FBMEMsQ0FBQztBQUN6RCw4Q0FBYyxxREFBcUQsQ0FBQztBQUNwRSxxREFBYyxnRUFBZ0UsQ0FBQztBQUMvRSw4Q0FBYyxrRUFBa0UsQ0FBQztBQUNqRiw4Q0FBYyxrRUFBa0UsQ0FBQztBQUNqRiwyQ0FBYyw0REFBNEQsQ0FBQztBQUMzRSxxREFBYyxrRkFBa0YsQ0FBQztBQUNqRyxpREFBYyxlQUFlLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvaW5wdXREYXRlVGltZS9pbnB1dERhdGVUaW1lLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9zZWxlY3Rvci9zZWxlY3Rvci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvc2VsZWN0b3Ivc2VsZWN0b3IuY29tcG9uZW50LmFuaW1hdGlvbnMnO1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvc2ltcGxlSW5wdXREYXRlVGltZS9zaW1wbGVJbnB1dERhdGVUaW1lLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9kYXRldGltZU1heFZhbGlkYXRvci9kYXRldGltZU1heFZhbGlkYXRvci5kaXJlY3RpdmUnO1xyXG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvZGF0ZXRpbWVNaW5WYWxpZGF0b3IvZGF0ZXRpbWVNaW5WYWxpZGF0b3IuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL2RhdGV0aW1lVmFsaWRhdG9yL2RhdGV0aW1lVmFsaWRhdG9yLmRpcmVjdGl2ZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9zZWxlY3RvckNvbnRyb2xWYWx1ZUFjY2Vzc29yL3NlbGVjdG9yQ29udHJvbFZhbHVlQWNjZXNzb3IuZGlyZWN0aXZlJztcclxuZXhwb3J0ICogZnJvbSAnLi9taXNjL3Rva2Vucyc7Il19