@kokoccc/vuetify 1.0.1

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 (909) hide show
  1. package/package.json +116 -0
  2. package/src/components/VAlert/VAlert.sass +190 -0
  3. package/src/components/VAlert/VAlert.ts +256 -0
  4. package/src/components/VAlert/__tests__/VAlert.spec.ts +222 -0
  5. package/src/components/VAlert/__tests__/__snapshots__/VAlert.spec.ts.snap +69 -0
  6. package/src/components/VAlert/_variables.scss +16 -0
  7. package/src/components/VAlert/index.ts +4 -0
  8. package/src/components/VApp/VApp.sass +44 -0
  9. package/src/components/VApp/VApp.ts +60 -0
  10. package/src/components/VApp/__tests__/VApp.spec.ts +78 -0
  11. package/src/components/VApp/__tests__/__snapshots__/VApp.spec.ts.snap +21 -0
  12. package/src/components/VApp/index.ts +4 -0
  13. package/src/components/VAppBar/VAppBar.sass +55 -0
  14. package/src/components/VAppBar/VAppBar.ts +293 -0
  15. package/src/components/VAppBar/VAppBarNavIcon.ts +26 -0
  16. package/src/components/VAppBar/VAppBarTitle.ts +82 -0
  17. package/src/components/VAppBar/__tests__/VAppBar.spec.ts +521 -0
  18. package/src/components/VAppBar/__tests__/VAppBarNavIcon.spec.ts +26 -0
  19. package/src/components/VAppBar/__tests__/__snapshots__/VAppBar.spec.ts.snap +35 -0
  20. package/src/components/VAppBar/__tests__/__snapshots__/VAppBarNavIcon.spec.ts.snap +14 -0
  21. package/src/components/VAppBar/_variables.scss +7 -0
  22. package/src/components/VAppBar/index.ts +13 -0
  23. package/src/components/VAutocomplete/VAutocomplete.sass +41 -0
  24. package/src/components/VAutocomplete/VAutocomplete.ts +480 -0
  25. package/src/components/VAutocomplete/__tests__/VAutocomplete.spec.ts +585 -0
  26. package/src/components/VAutocomplete/__tests__/VAutocomplete2.spec.ts +498 -0
  27. package/src/components/VAutocomplete/__tests__/VAutocomplete3.spec.ts +318 -0
  28. package/src/components/VAutocomplete/_variables.scss +5 -0
  29. package/src/components/VAutocomplete/index.ts +4 -0
  30. package/src/components/VAvatar/VAvatar.sass +22 -0
  31. package/src/components/VAvatar/VAvatar.ts +60 -0
  32. package/src/components/VAvatar/__tests__/VAvatar.spec.ts +97 -0
  33. package/src/components/VAvatar/__tests__/__snapshots__/VAvatar.spec.ts.snap +8 -0
  34. package/src/components/VAvatar/_variables.scss +3 -0
  35. package/src/components/VAvatar/index.ts +4 -0
  36. package/src/components/VBadge/VBadge.sass +108 -0
  37. package/src/components/VBadge/VBadge.ts +206 -0
  38. package/src/components/VBadge/__tests__/VBadge.spec.ts +150 -0
  39. package/src/components/VBadge/__tests__/__snapshots__/VBadge.spec.ts.snap +42 -0
  40. package/src/components/VBadge/_variables.scss +21 -0
  41. package/src/components/VBadge/index.ts +4 -0
  42. package/src/components/VBanner/VBanner.sass +148 -0
  43. package/src/components/VBanner/VBanner.ts +175 -0
  44. package/src/components/VBanner/__tests__/VBanner.spec.ts +227 -0
  45. package/src/components/VBanner/__tests__/__snapshots__/VBanner.spec.ts.snap +126 -0
  46. package/src/components/VBanner/_variables.scss +19 -0
  47. package/src/components/VBanner/index.ts +4 -0
  48. package/src/components/VBottomNavigation/VBottomNavigation.sass +89 -0
  49. package/src/components/VBottomNavigation/VBottomNavigation.ts +168 -0
  50. package/src/components/VBottomNavigation/__tests__/VBottomNavigation.spec.ts +144 -0
  51. package/src/components/VBottomNavigation/__tests__/__snapshots__/VBottomNavigation.spec.ts.snap +53 -0
  52. package/src/components/VBottomNavigation/_variables.scss +7 -0
  53. package/src/components/VBottomNavigation/index.ts +4 -0
  54. package/src/components/VBottomSheet/VBottomSheet.sass +23 -0
  55. package/src/components/VBottomSheet/VBottomSheet.ts +30 -0
  56. package/src/components/VBottomSheet/_variables.scss +3 -0
  57. package/src/components/VBottomSheet/index.ts +4 -0
  58. package/src/components/VBreadcrumbs/VBreadcrumbs.sass +45 -0
  59. package/src/components/VBreadcrumbs/VBreadcrumbs.ts +82 -0
  60. package/src/components/VBreadcrumbs/VBreadcrumbsDivider.ts +3 -0
  61. package/src/components/VBreadcrumbs/VBreadcrumbsItem.ts +48 -0
  62. package/src/components/VBreadcrumbs/__tests__/VBreadcrumbs.spec.ts +213 -0
  63. package/src/components/VBreadcrumbs/__tests__/VBreadcrumbsItem.spec.ts +44 -0
  64. package/src/components/VBreadcrumbs/__tests__/__snapshots__/VBreadcrumbs.spec.ts.snap +108 -0
  65. package/src/components/VBreadcrumbs/__tests__/__snapshots__/VBreadcrumbsItem.spec.ts.snap +17 -0
  66. package/src/components/VBreadcrumbs/_variables.scss +8 -0
  67. package/src/components/VBreadcrumbs/index.ts +13 -0
  68. package/src/components/VBtn/VBtn.sass +249 -0
  69. package/src/components/VBtn/VBtn.ts +223 -0
  70. package/src/components/VBtn/__tests__/VBtn.spec.ts +306 -0
  71. package/src/components/VBtn/__tests__/__snapshots__/VBtn.spec.ts.snap +61 -0
  72. package/src/components/VBtn/_variables.scss +73 -0
  73. package/src/components/VBtn/index.ts +4 -0
  74. package/src/components/VBtnToggle/VBtnToggle.sass +99 -0
  75. package/src/components/VBtnToggle/VBtnToggle.ts +55 -0
  76. package/src/components/VBtnToggle/__tests__/VBtnToggle.spec.ts +40 -0
  77. package/src/components/VBtnToggle/_variables.scss +11 -0
  78. package/src/components/VBtnToggle/index.ts +4 -0
  79. package/src/components/VCalendar/VCalendar.ts +383 -0
  80. package/src/components/VCalendar/VCalendarCategory.sass +100 -0
  81. package/src/components/VCalendar/VCalendarCategory.ts +143 -0
  82. package/src/components/VCalendar/VCalendarDaily.sass +140 -0
  83. package/src/components/VCalendar/VCalendarDaily.ts +250 -0
  84. package/src/components/VCalendar/VCalendarMonthly.ts +30 -0
  85. package/src/components/VCalendar/VCalendarWeekly.sass +118 -0
  86. package/src/components/VCalendar/VCalendarWeekly.ts +225 -0
  87. package/src/components/VCalendar/__tests__/VCalendar.spec.ts +129 -0
  88. package/src/components/VCalendar/__tests__/VCalendarCategory.spec.ts +112 -0
  89. package/src/components/VCalendar/__tests__/VCalendarDaily.spec.ts +187 -0
  90. package/src/components/VCalendar/__tests__/__snapshots__/VCalendar.spec.ts.snap +3378 -0
  91. package/src/components/VCalendar/__tests__/__snapshots__/VCalendarDaily.spec.ts.snap +9127 -0
  92. package/src/components/VCalendar/_variables.scss +34 -0
  93. package/src/components/VCalendar/index.ts +17 -0
  94. package/src/components/VCalendar/mixins/__tests__/__snapshots__/calendar-base.spec.ts.snap +225 -0
  95. package/src/components/VCalendar/mixins/__tests__/__snapshots__/calendar-with-events.spec.ts.snap +3 -0
  96. package/src/components/VCalendar/mixins/__tests__/__snapshots__/calendar-with-intervals.spec.ts.snap +4566 -0
  97. package/src/components/VCalendar/mixins/__tests__/__snapshots__/times.spec.ts.snap +19 -0
  98. package/src/components/VCalendar/mixins/__tests__/calendar-base.spec.ts +179 -0
  99. package/src/components/VCalendar/mixins/__tests__/calendar-with-events.spec.ts +228 -0
  100. package/src/components/VCalendar/mixins/__tests__/calendar-with-intervals.spec.ts +360 -0
  101. package/src/components/VCalendar/mixins/__tests__/times.spec.ts +80 -0
  102. package/src/components/VCalendar/mixins/calendar-base.ts +118 -0
  103. package/src/components/VCalendar/mixins/calendar-with-events.sass +67 -0
  104. package/src/components/VCalendar/mixins/calendar-with-events.ts +511 -0
  105. package/src/components/VCalendar/mixins/calendar-with-intervals.ts +164 -0
  106. package/src/components/VCalendar/mixins/times.ts +74 -0
  107. package/src/components/VCalendar/modes/__tests__/__snapshots__/common.spec.ts.snap +185 -0
  108. package/src/components/VCalendar/modes/__tests__/common.spec.ts +77 -0
  109. package/src/components/VCalendar/modes/column.ts +21 -0
  110. package/src/components/VCalendar/modes/common.ts +140 -0
  111. package/src/components/VCalendar/modes/index.ts +8 -0
  112. package/src/components/VCalendar/modes/stack.ts +255 -0
  113. package/src/components/VCalendar/util/__tests__/__snapshots__/events.spec.ts.snap +231 -0
  114. package/src/components/VCalendar/util/__tests__/__snapshots__/timestamp.spec.ts.snap +396 -0
  115. package/src/components/VCalendar/util/__tests__/events.spec.ts +85 -0
  116. package/src/components/VCalendar/util/__tests__/props.spec.ts +15 -0
  117. package/src/components/VCalendar/util/__tests__/timestamp.spec.ts +512 -0
  118. package/src/components/VCalendar/util/events.ts +52 -0
  119. package/src/components/VCalendar/util/parser.ts +30 -0
  120. package/src/components/VCalendar/util/props.ts +261 -0
  121. package/src/components/VCalendar/util/timestamp.ts +480 -0
  122. package/src/components/VCard/VCard.sass +155 -0
  123. package/src/components/VCard/VCard.ts +92 -0
  124. package/src/components/VCard/__tests__/VCard.spec.ts +122 -0
  125. package/src/components/VCard/__tests__/__snapshots__/VCard.spec.ts.snap +61 -0
  126. package/src/components/VCard/_variables.scss +29 -0
  127. package/src/components/VCard/index.ts +25 -0
  128. package/src/components/VCarousel/VCarousel.sass +61 -0
  129. package/src/components/VCarousel/VCarousel.ts +232 -0
  130. package/src/components/VCarousel/VCarouselItem.ts +73 -0
  131. package/src/components/VCarousel/__tests__/VCarousel.spec.ts +227 -0
  132. package/src/components/VCarousel/__tests__/VCarouselItem.spec.ts +33 -0
  133. package/src/components/VCarousel/__tests__/__snapshots__/VCarousel.spec.ts.snap +31 -0
  134. package/src/components/VCarousel/_variables.scss +8 -0
  135. package/src/components/VCarousel/index.ts +11 -0
  136. package/src/components/VCheckbox/VCheckbox.sass +9 -0
  137. package/src/components/VCheckbox/VCheckbox.ts +124 -0
  138. package/src/components/VCheckbox/VSimpleCheckbox.sass +16 -0
  139. package/src/components/VCheckbox/VSimpleCheckbox.ts +148 -0
  140. package/src/components/VCheckbox/__tests__/VCheckbox.spec.ts +379 -0
  141. package/src/components/VCheckbox/__tests__/VSimpleCheckbox.spec.ts +65 -0
  142. package/src/components/VCheckbox/__tests__/__snapshots__/VCheckbox.spec.ts.snap +170 -0
  143. package/src/components/VCheckbox/_variables.scss +4 -0
  144. package/src/components/VCheckbox/index.ts +10 -0
  145. package/src/components/VChip/VChip.sass +204 -0
  146. package/src/components/VChip/VChip.ts +204 -0
  147. package/src/components/VChip/__tests__/VChip.spec.ts +169 -0
  148. package/src/components/VChip/__tests__/__snapshots__/VChip.spec.ts.snap +22 -0
  149. package/src/components/VChip/_variables.scss +52 -0
  150. package/src/components/VChip/index.ts +4 -0
  151. package/src/components/VChipGroup/VChipGroup.sass +27 -0
  152. package/src/components/VChipGroup/VChipGroup.ts +55 -0
  153. package/src/components/VChipGroup/__tests__/VChipGroup.spec.ts +65 -0
  154. package/src/components/VChipGroup/__tests__/__snapshots__/VChipGroup.spec.ts.snap +53 -0
  155. package/src/components/VChipGroup/_variables.scss +6 -0
  156. package/src/components/VChipGroup/index.ts +4 -0
  157. package/src/components/VColorPicker/VColorPicker.sass +32 -0
  158. package/src/components/VColorPicker/VColorPicker.ts +178 -0
  159. package/src/components/VColorPicker/VColorPickerCanvas.sass +23 -0
  160. package/src/components/VColorPicker/VColorPickerCanvas.ts +173 -0
  161. package/src/components/VColorPicker/VColorPickerEdit.sass +31 -0
  162. package/src/components/VColorPicker/VColorPickerEdit.ts +185 -0
  163. package/src/components/VColorPicker/VColorPickerPreview.sass +66 -0
  164. package/src/components/VColorPicker/VColorPickerPreview.ts +113 -0
  165. package/src/components/VColorPicker/VColorPickerSwatches.sass +34 -0
  166. package/src/components/VColorPicker/VColorPickerSwatches.ts +113 -0
  167. package/src/components/VColorPicker/__tests__/VColorPicker.spec.ts +198 -0
  168. package/src/components/VColorPicker/__tests__/VColorPickerCanvas.spec.ts +111 -0
  169. package/src/components/VColorPicker/__tests__/VColorPickerEdit.spec.ts +147 -0
  170. package/src/components/VColorPicker/__tests__/VColorPickerPreview.spec.ts +143 -0
  171. package/src/components/VColorPicker/__tests__/__snapshots__/VColorPicker.spec.ts.snap +2247 -0
  172. package/src/components/VColorPicker/__tests__/__snapshots__/VColorPickerCanvas.spec.ts.snap +82 -0
  173. package/src/components/VColorPicker/__tests__/__snapshots__/VColorPickerEdit.spec.ts.snap +314 -0
  174. package/src/components/VColorPicker/_variables.scss +25 -0
  175. package/src/components/VColorPicker/index.ts +6 -0
  176. package/src/components/VColorPicker/util/__tests__/index.spec.ts +81 -0
  177. package/src/components/VColorPicker/util/index.ts +168 -0
  178. package/src/components/VCombobox/VCombobox.ts +302 -0
  179. package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +722 -0
  180. package/src/components/VCombobox/__tests__/VCombobox.spec.ts +385 -0
  181. package/src/components/VCombobox/index.ts +4 -0
  182. package/src/components/VContent/VContent.ts +36 -0
  183. package/src/components/VContent/index.ts +5 -0
  184. package/src/components/VCounter/VCounter.sass +11 -0
  185. package/src/components/VCounter/VCounter.ts +40 -0
  186. package/src/components/VCounter/__tests__/VCounter.spec.ts +41 -0
  187. package/src/components/VCounter/__tests__/__snapshots__/VCounter.spec.ts.snap +7 -0
  188. package/src/components/VCounter/_variables.scss +5 -0
  189. package/src/components/VCounter/index.ts +4 -0
  190. package/src/components/VData/VData.ts +394 -0
  191. package/src/components/VData/__tests__/VData.spec.ts +578 -0
  192. package/src/components/VData/__tests__/__snapshots__/VData.spec.ts.snap +159 -0
  193. package/src/components/VData/index.ts +5 -0
  194. package/src/components/VDataIterator/VDataFooter.sass +71 -0
  195. package/src/components/VDataIterator/VDataFooter.ts +224 -0
  196. package/src/components/VDataIterator/VDataIterator.ts +370 -0
  197. package/src/components/VDataIterator/__tests__/VDataFooter.spec.ts +200 -0
  198. package/src/components/VDataIterator/__tests__/VDataIterator.spec.ts +318 -0
  199. package/src/components/VDataIterator/__tests__/__snapshots__/VDataFooter.spec.ts.snap +460 -0
  200. package/src/components/VDataIterator/__tests__/__snapshots__/VDataIterator.spec.ts.snap +438 -0
  201. package/src/components/VDataIterator/_variables.scss +13 -0
  202. package/src/components/VDataIterator/index.ts +10 -0
  203. package/src/components/VDataTable/MobileRow.ts +66 -0
  204. package/src/components/VDataTable/Row.ts +66 -0
  205. package/src/components/VDataTable/RowGroup.ts +67 -0
  206. package/src/components/VDataTable/VDataTable.sass +98 -0
  207. package/src/components/VDataTable/VDataTable.ts +661 -0
  208. package/src/components/VDataTable/VDataTableHeader.sass +80 -0
  209. package/src/components/VDataTable/VDataTableHeader.ts +42 -0
  210. package/src/components/VDataTable/VDataTableHeaderDesktop.ts +125 -0
  211. package/src/components/VDataTable/VDataTableHeaderMobile.ts +97 -0
  212. package/src/components/VDataTable/VEditDialog.sass +22 -0
  213. package/src/components/VDataTable/VEditDialog.ts +133 -0
  214. package/src/components/VDataTable/VSimpleTable.sass +179 -0
  215. package/src/components/VDataTable/VSimpleTable.ts +52 -0
  216. package/src/components/VDataTable/VVirtualTable.sass +13 -0
  217. package/src/components/VDataTable/VVirtualTable.ts +163 -0
  218. package/src/components/VDataTable/__tests__/MobileRow.spec.ts +127 -0
  219. package/src/components/VDataTable/__tests__/Row.spec.ts +129 -0
  220. package/src/components/VDataTable/__tests__/RowGroup.spec.ts +38 -0
  221. package/src/components/VDataTable/__tests__/VDataTable.spec.ts +1058 -0
  222. package/src/components/VDataTable/__tests__/VDataTableHeader.spec.ts +167 -0
  223. package/src/components/VDataTable/__tests__/VEditDialog.spec.ts +231 -0
  224. package/src/components/VDataTable/__tests__/VSimpleTable.spec.ts +146 -0
  225. package/src/components/VDataTable/__tests__/VVirtualTable.spec.ts +51 -0
  226. package/src/components/VDataTable/__tests__/__snapshots__/MobileRow.spec.ts.snap +139 -0
  227. package/src/components/VDataTable/__tests__/__snapshots__/Row.spec.ts.snap +77 -0
  228. package/src/components/VDataTable/__tests__/__snapshots__/RowGroup.spec.ts.snap +13 -0
  229. package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +13237 -0
  230. package/src/components/VDataTable/__tests__/__snapshots__/VDataTableHeader.spec.ts.snap +841 -0
  231. package/src/components/VDataTable/__tests__/__snapshots__/VEditDialog.spec.ts.snap +48 -0
  232. package/src/components/VDataTable/__tests__/__snapshots__/VSimpleTable.spec.ts.snap +95 -0
  233. package/src/components/VDataTable/__tests__/__snapshots__/VVirtualTable.spec.ts.snap +77 -0
  234. package/src/components/VDataTable/_variables.scss +24 -0
  235. package/src/components/VDataTable/index.ts +22 -0
  236. package/src/components/VDataTable/mixins/__tests__/__snapshots__/header.spec.ts.snap +78 -0
  237. package/src/components/VDataTable/mixins/__tests__/header.spec.ts +109 -0
  238. package/src/components/VDataTable/mixins/header.ts +74 -0
  239. package/src/components/VDatePicker/VDatePicker.ts +539 -0
  240. package/src/components/VDatePicker/VDatePickerDateTable.ts +154 -0
  241. package/src/components/VDatePicker/VDatePickerHeader.sass +46 -0
  242. package/src/components/VDatePicker/VDatePickerHeader.ts +164 -0
  243. package/src/components/VDatePicker/VDatePickerMonthTable.ts +58 -0
  244. package/src/components/VDatePicker/VDatePickerTable.sass +84 -0
  245. package/src/components/VDatePicker/VDatePickerTitle.sass +37 -0
  246. package/src/components/VDatePicker/VDatePickerTitle.ts +121 -0
  247. package/src/components/VDatePicker/VDatePickerYears.sass +30 -0
  248. package/src/components/VDatePicker/VDatePickerYears.ts +116 -0
  249. package/src/components/VDatePicker/__tests__/VDatePicker.date.spec.ts +782 -0
  250. package/src/components/VDatePicker/__tests__/VDatePicker.month.spec.ts +377 -0
  251. package/src/components/VDatePicker/__tests__/VDatePickerDateTable.spec.ts +304 -0
  252. package/src/components/VDatePicker/__tests__/VDatePickerHeader.spec.ts +228 -0
  253. package/src/components/VDatePicker/__tests__/VDatePickerMonthTable.spec.ts +242 -0
  254. package/src/components/VDatePicker/__tests__/VDatePickerTitle.spec.ts +148 -0
  255. package/src/components/VDatePicker/__tests__/VDatePickerYears.spec.ts +89 -0
  256. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.date.spec.ts.snap +4664 -0
  257. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePicker.month.spec.ts.snap +1151 -0
  258. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerDateTable.spec.ts.snap +3387 -0
  259. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerHeader.spec.ts.snap +165 -0
  260. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerMonthTable.spec.ts.snap +783 -0
  261. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerTitle.spec.ts.snap +73 -0
  262. package/src/components/VDatePicker/__tests__/__snapshots__/VDatePickerYears.spec.ts.snap +609 -0
  263. package/src/components/VDatePicker/_variables.scss +42 -0
  264. package/src/components/VDatePicker/index.ts +26 -0
  265. package/src/components/VDatePicker/mixins/date-picker-table.ts +273 -0
  266. package/src/components/VDatePicker/util/__tests__/createNativeLocaleFormatter.spec.ts +34 -0
  267. package/src/components/VDatePicker/util/__tests__/monthChange.spec.ts +10 -0
  268. package/src/components/VDatePicker/util/__tests__/pad.spec.ts +18 -0
  269. package/src/components/VDatePicker/util/__tests__/sanitizeDateString.spec.ts +10 -0
  270. package/src/components/VDatePicker/util/createNativeLocaleFormatter.ts +43 -0
  271. package/src/components/VDatePicker/util/eventHelpers.ts +41 -0
  272. package/src/components/VDatePicker/util/index.ts +17 -0
  273. package/src/components/VDatePicker/util/isDateAllowed.ts +7 -0
  274. package/src/components/VDatePicker/util/monthChange.ts +17 -0
  275. package/src/components/VDatePicker/util/pad.ts +16 -0
  276. package/src/components/VDatePicker/util/sanitizeDateString.ts +8 -0
  277. package/src/components/VDialog/VDialog.sass +106 -0
  278. package/src/components/VDialog/VDialog.ts +335 -0
  279. package/src/components/VDialog/__tests__/VDialog.spec.ts +359 -0
  280. package/src/components/VDialog/__tests__/__snapshots__/VDialog.spec.ts.snap +51 -0
  281. package/src/components/VDialog/_variables.scss +13 -0
  282. package/src/components/VDialog/index.ts +4 -0
  283. package/src/components/VDivider/VDivider.sass +40 -0
  284. package/src/components/VDivider/VDivider.ts +40 -0
  285. package/src/components/VDivider/__tests__/VDivider.spec.ts +98 -0
  286. package/src/components/VDivider/__tests__/__snapshots__/VDivider.spec.ts.snap +8 -0
  287. package/src/components/VDivider/_variables.scss +5 -0
  288. package/src/components/VDivider/index.ts +4 -0
  289. package/src/components/VExpansionPanel/VExpansionPanel.sass +211 -0
  290. package/src/components/VExpansionPanel/VExpansionPanel.ts +98 -0
  291. package/src/components/VExpansionPanel/VExpansionPanelContent.ts +73 -0
  292. package/src/components/VExpansionPanel/VExpansionPanelHeader.ts +120 -0
  293. package/src/components/VExpansionPanel/VExpansionPanels.ts +79 -0
  294. package/src/components/VExpansionPanel/__tests__/VExpansionPanel.spec.ts +178 -0
  295. package/src/components/VExpansionPanel/__tests__/VExpansionPanelHeader.spec.ts +41 -0
  296. package/src/components/VExpansionPanel/__tests__/VExpansionPanels.spec.ts +48 -0
  297. package/src/components/VExpansionPanel/__tests__/__snapshots__/VExpansionPanel.spec.ts.snap +37 -0
  298. package/src/components/VExpansionPanel/_variables.scss +13 -0
  299. package/src/components/VExpansionPanel/index.ts +15 -0
  300. package/src/components/VFileInput/VFileInput.sass +60 -0
  301. package/src/components/VFileInput/VFileInput.ts +302 -0
  302. package/src/components/VFileInput/__tests__/VFileInput.spec.ts +333 -0
  303. package/src/components/VFileInput/__tests__/__snapshots__/VFileInput.spec.ts.snap +627 -0
  304. package/src/components/VFileInput/_variables.scss +6 -0
  305. package/src/components/VFileInput/index.ts +4 -0
  306. package/src/components/VFooter/VFooter.sass +39 -0
  307. package/src/components/VFooter/VFooter.ts +116 -0
  308. package/src/components/VFooter/__tests__/VFooter.spec.ts +76 -0
  309. package/src/components/VFooter/_variables.scss +10 -0
  310. package/src/components/VFooter/index.ts +4 -0
  311. package/src/components/VForm/VForm.ts +170 -0
  312. package/src/components/VForm/__tests__/VForm.spec.ts +276 -0
  313. package/src/components/VForm/index.ts +4 -0
  314. package/src/components/VGrid/VCol.ts +139 -0
  315. package/src/components/VGrid/VContainer.ts +68 -0
  316. package/src/components/VGrid/VFlex.ts +5 -0
  317. package/src/components/VGrid/VGrid.sass +41 -0
  318. package/src/components/VGrid/VLayout.ts +5 -0
  319. package/src/components/VGrid/VRow.ts +138 -0
  320. package/src/components/VGrid/VSpacer.ts +4 -0
  321. package/src/components/VGrid/__tests__/VCol.spec.ts +151 -0
  322. package/src/components/VGrid/__tests__/VContainer.spec.ts +83 -0
  323. package/src/components/VGrid/__tests__/VFlex.spec.ts +28 -0
  324. package/src/components/VGrid/__tests__/VGrid.spec.ts +74 -0
  325. package/src/components/VGrid/__tests__/VLayout.spec.ts +28 -0
  326. package/src/components/VGrid/__tests__/__snapshots__/VContainer.spec.ts.snap +6 -0
  327. package/src/components/VGrid/__tests__/__snapshots__/VFlex.spec.ts.snap +6 -0
  328. package/src/components/VGrid/__tests__/__snapshots__/VLayout.spec.ts.snap +6 -0
  329. package/src/components/VGrid/_grid.sass +117 -0
  330. package/src/components/VGrid/_mixins.sass +72 -0
  331. package/src/components/VGrid/grid.ts +55 -0
  332. package/src/components/VGrid/index.ts +26 -0
  333. package/src/components/VHover/VHover.ts +79 -0
  334. package/src/components/VHover/__tests__/VHover.spec.ts +119 -0
  335. package/src/components/VHover/index.ts +4 -0
  336. package/src/components/VIcon/VIcon.sass +73 -0
  337. package/src/components/VIcon/VIcon.ts +298 -0
  338. package/src/components/VIcon/__tests__/VIcon.spec.ts +328 -0
  339. package/src/components/VIcon/__tests__/__snapshots__/VIcon.spec.ts.snap +74 -0
  340. package/src/components/VIcon/_variables.scss +4 -0
  341. package/src/components/VIcon/index.ts +4 -0
  342. package/src/components/VImg/VImg.sass +30 -0
  343. package/src/components/VImg/VImg.ts +312 -0
  344. package/src/components/VImg/__tests__/VImg.spec.ts +196 -0
  345. package/src/components/VImg/__tests__/__snapshots__/VImg.spec.ts.snap +203 -0
  346. package/src/components/VImg/_variables.scss +3 -0
  347. package/src/components/VImg/index.ts +4 -0
  348. package/src/components/VInput/VInput.sass +132 -0
  349. package/src/components/VInput/VInput.ts +348 -0
  350. package/src/components/VInput/__tests__/VInput.spec.ts +215 -0
  351. package/src/components/VInput/__tests__/__snapshots__/VInput.spec.ts.snap +193 -0
  352. package/src/components/VInput/_variables.scss +14 -0
  353. package/src/components/VInput/index.ts +4 -0
  354. package/src/components/VItemGroup/VItem.sass +4 -0
  355. package/src/components/VItemGroup/VItem.ts +88 -0
  356. package/src/components/VItemGroup/VItemGroup.sass +7 -0
  357. package/src/components/VItemGroup/VItemGroup.ts +285 -0
  358. package/src/components/VItemGroup/__tests__/VItem.spec.ts +72 -0
  359. package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +408 -0
  360. package/src/components/VItemGroup/__tests__/__snapshots__/VItem.spec.ts.snap +13 -0
  361. package/src/components/VItemGroup/_variables.scss +3 -0
  362. package/src/components/VItemGroup/index.ts +14 -0
  363. package/src/components/VLabel/VLabel.sass +14 -0
  364. package/src/components/VLabel/VLabel.ts +65 -0
  365. package/src/components/VLabel/__tests__/VLabel.spec.ts +277 -0
  366. package/src/components/VLabel/_variables.scss +5 -0
  367. package/src/components/VLabel/index.ts +4 -0
  368. package/src/components/VLazy/VLazy.ts +88 -0
  369. package/src/components/VLazy/__tests__/VLazy.spec.ts +70 -0
  370. package/src/components/VLazy/__tests__/__snapshots__/VLazy.spec.ts.snap +15 -0
  371. package/src/components/VLazy/index.ts +4 -0
  372. package/src/components/VList/VList.sass +98 -0
  373. package/src/components/VList/VList.ts +102 -0
  374. package/src/components/VList/VListGroup.sass +111 -0
  375. package/src/components/VList/VListGroup.ts +228 -0
  376. package/src/components/VList/VListItem.sass +268 -0
  377. package/src/components/VList/VListItem.ts +232 -0
  378. package/src/components/VList/VListItemAction.ts +23 -0
  379. package/src/components/VList/VListItemAvatar.ts +35 -0
  380. package/src/components/VList/VListItemGroup.sass +5 -0
  381. package/src/components/VList/VListItemGroup.ts +45 -0
  382. package/src/components/VList/VListItemIcon.ts +17 -0
  383. package/src/components/VList/__tests__/VList.spec.ts +86 -0
  384. package/src/components/VList/__tests__/VListGroup.spec.ts +201 -0
  385. package/src/components/VList/__tests__/VListItem.spec.ts +328 -0
  386. package/src/components/VList/__tests__/VListItemAction.spec.ts +80 -0
  387. package/src/components/VList/__tests__/VListItemAvatar.spec.ts +33 -0
  388. package/src/components/VList/__tests__/VListItemGroup.spec.ts +30 -0
  389. package/src/components/VList/__tests__/__snapshots__/VList.spec.ts.snap +36 -0
  390. package/src/components/VList/__tests__/__snapshots__/VListGroup.spec.ts.snap +18 -0
  391. package/src/components/VList/__tests__/__snapshots__/VListItem.spec.ts.snap +16 -0
  392. package/src/components/VList/__tests__/__snapshots__/VListItemAction.spec.ts.snap +43 -0
  393. package/src/components/VList/__tests__/__snapshots__/VListItemAvatar.spec.ts.snap +8 -0
  394. package/src/components/VList/_mixins.sass +18 -0
  395. package/src/components/VList/_variables.scss +67 -0
  396. package/src/components/VList/index.ts +40 -0
  397. package/src/components/VMain/VMain.sass +22 -0
  398. package/src/components/VMain/VMain.ts +54 -0
  399. package/src/components/VMain/__tests__/VMain.spec.ts +95 -0
  400. package/src/components/VMain/__tests__/__snapshots__/VMain.spec.ts.snap +10 -0
  401. package/src/components/VMain/_variables.scss +6 -0
  402. package/src/components/VMain/index.ts +5 -0
  403. package/src/components/VMenu/VMenu.sass +70 -0
  404. package/src/components/VMenu/VMenu.ts +535 -0
  405. package/src/components/VMenu/__tests__/VMenu.spec.ts +445 -0
  406. package/src/components/VMenu/__tests__/__snapshots__/VMenu.spec.ts.snap +37 -0
  407. package/src/components/VMenu/_variables.scss +4 -0
  408. package/src/components/VMenu/index.ts +4 -0
  409. package/src/components/VMessages/VMessages.sass +25 -0
  410. package/src/components/VMessages/VMessages.ts +59 -0
  411. package/src/components/VMessages/__tests__/VMessages.spec.ts +117 -0
  412. package/src/components/VMessages/__tests__/__snapshots__/VMessages.spec.ts.snap +59 -0
  413. package/src/components/VMessages/_variables.scss +5 -0
  414. package/src/components/VMessages/index.ts +4 -0
  415. package/src/components/VNavigationDrawer/VNavigationDrawer.sass +127 -0
  416. package/src/components/VNavigationDrawer/VNavigationDrawer.ts +477 -0
  417. package/src/components/VNavigationDrawer/__tests__/VNavigationDrawer.spec.ts +552 -0
  418. package/src/components/VNavigationDrawer/_variables.scss +4 -0
  419. package/src/components/VNavigationDrawer/index.ts +4 -0
  420. package/src/components/VOtpInput/VOtpInput.sass +37 -0
  421. package/src/components/VOtpInput/VOtpInput.ts +357 -0
  422. package/src/components/VOtpInput/__tests__/VOtpInput.spec.ts +267 -0
  423. package/src/components/VOtpInput/_variables.scss +4 -0
  424. package/src/components/VOtpInput/index.ts +4 -0
  425. package/src/components/VOverflowBtn/VOverflowBtn.sass +151 -0
  426. package/src/components/VOverflowBtn/VOverflowBtn.ts +117 -0
  427. package/src/components/VOverflowBtn/__tests__/VOverflowBtn.spec.ts +129 -0
  428. package/src/components/VOverflowBtn/__tests__/__snapshots__/VOverflowBtn.spec.ts.snap +189 -0
  429. package/src/components/VOverflowBtn/_variables.scss +24 -0
  430. package/src/components/VOverflowBtn/index.ts +4 -0
  431. package/src/components/VOverlay/VOverlay.sass +42 -0
  432. package/src/components/VOverlay/VOverlay.ts +109 -0
  433. package/src/components/VOverlay/__tests__/VOverlay.spec.ts +38 -0
  434. package/src/components/VOverlay/_variables.scss +3 -0
  435. package/src/components/VOverlay/index.ts +5 -0
  436. package/src/components/VPagination/VPagination.sass +82 -0
  437. package/src/components/VPagination/VPagination.ts +272 -0
  438. package/src/components/VPagination/__tests__/VPagination.spec.ts +312 -0
  439. package/src/components/VPagination/__tests__/__snapshots__/VPagination.spec.ts.snap +584 -0
  440. package/src/components/VPagination/_variables.scss +16 -0
  441. package/src/components/VPagination/index.ts +4 -0
  442. package/src/components/VParallax/VParallax.sass +37 -0
  443. package/src/components/VParallax/VParallax.ts +108 -0
  444. package/src/components/VParallax/__tests__/VParallax.spec.ts +52 -0
  445. package/src/components/VParallax/__tests__/__snapshots__/VParallax.spec.ts.snap +46 -0
  446. package/src/components/VParallax/_variables.scss +4 -0
  447. package/src/components/VParallax/index.ts +4 -0
  448. package/src/components/VPicker/VPicker.sass +94 -0
  449. package/src/components/VPicker/VPicker.ts +95 -0
  450. package/src/components/VPicker/__tests__/VPicker.spec.ts +99 -0
  451. package/src/components/VPicker/__tests__/__snapshots__/VPicker.spec.ts.snap +81 -0
  452. package/src/components/VPicker/_variables.scss +8 -0
  453. package/src/components/VPicker/index.ts +4 -0
  454. package/src/components/VProgressCircular/VProgressCircular.sass +67 -0
  455. package/src/components/VProgressCircular/VProgressCircular.ts +164 -0
  456. package/src/components/VProgressCircular/__tests__/VProgressCircular.spec.ts +158 -0
  457. package/src/components/VProgressCircular/__tests__/__snapshots__/VProgressCircular.spec.ts.snap +298 -0
  458. package/src/components/VProgressCircular/_variables.scss +7 -0
  459. package/src/components/VProgressCircular/index.ts +4 -0
  460. package/src/components/VProgressLinear/VProgressLinear.sass +273 -0
  461. package/src/components/VProgressLinear/VProgressLinear.ts +291 -0
  462. package/src/components/VProgressLinear/__tests__/VProgressLinear.spec.ts +603 -0
  463. package/src/components/VProgressLinear/__tests__/__snapshots__/VProgressLinear.spec.ts.snap +328 -0
  464. package/src/components/VProgressLinear/_variables.scss +16 -0
  465. package/src/components/VProgressLinear/index.ts +4 -0
  466. package/src/components/VRadioGroup/VRadio.sass +21 -0
  467. package/src/components/VRadioGroup/VRadio.ts +193 -0
  468. package/src/components/VRadioGroup/VRadioGroup.sass +39 -0
  469. package/src/components/VRadioGroup/VRadioGroup.ts +111 -0
  470. package/src/components/VRadioGroup/__tests__/VRadio.spec.ts +156 -0
  471. package/src/components/VRadioGroup/__tests__/VRadioGroup.spec.ts +40 -0
  472. package/src/components/VRadioGroup/__tests__/__snapshots__/VRadio.spec.ts.snap +118 -0
  473. package/src/components/VRadioGroup/__tests__/__snapshots__/VRadioGroup.spec.ts.snap +57 -0
  474. package/src/components/VRadioGroup/_variables.scss +4 -0
  475. package/src/components/VRadioGroup/index.ts +11 -0
  476. package/src/components/VRangeSlider/VRangeSlider.sass +19 -0
  477. package/src/components/VRangeSlider/VRangeSlider.ts +272 -0
  478. package/src/components/VRangeSlider/__tests__/VRangeSlider.spec.ts +216 -0
  479. package/src/components/VRangeSlider/__tests__/__snapshots__/VRangeSlider.spec.ts.snap +123 -0
  480. package/src/components/VRangeSlider/index.ts +4 -0
  481. package/src/components/VRating/VRating.sass +28 -0
  482. package/src/components/VRating/VRating.ts +262 -0
  483. package/src/components/VRating/__tests__/VRating.spec.ts +284 -0
  484. package/src/components/VRating/__tests__/__snapshots__/VRating.spec.ts.snap +21 -0
  485. package/src/components/VRating/_variables.scss +5 -0
  486. package/src/components/VRating/index.ts +4 -0
  487. package/src/components/VResponsive/VResponsive.sass +23 -0
  488. package/src/components/VResponsive/VResponsive.ts +60 -0
  489. package/src/components/VResponsive/__tests__/VResponsive.spec.ts +52 -0
  490. package/src/components/VResponsive/__tests__/__snapshots__/VResponsive.spec.ts.snap +31 -0
  491. package/src/components/VResponsive/_variables.scss +3 -0
  492. package/src/components/VResponsive/index.ts +4 -0
  493. package/src/components/VSelect/VSelect.sass +164 -0
  494. package/src/components/VSelect/VSelect.ts +951 -0
  495. package/src/components/VSelect/VSelectList.ts +282 -0
  496. package/src/components/VSelect/__tests__/VSelect.spec.ts +567 -0
  497. package/src/components/VSelect/__tests__/VSelect2.spec.ts +560 -0
  498. package/src/components/VSelect/__tests__/VSelect3.spec.ts +510 -0
  499. package/src/components/VSelect/__tests__/VSelect4.spec.ts +438 -0
  500. package/src/components/VSelect/__tests__/VSelectList.spec.ts +144 -0
  501. package/src/components/VSelect/__tests__/__snapshots__/VSelect.spec.ts.snap +367 -0
  502. package/src/components/VSelect/__tests__/__snapshots__/VSelect2.spec.ts.snap +209 -0
  503. package/src/components/VSelect/__tests__/__snapshots__/VSelect3.spec.ts.snap +47 -0
  504. package/src/components/VSelect/__tests__/__snapshots__/VSelectList.spec.ts.snap +115 -0
  505. package/src/components/VSelect/_variables.scss +22 -0
  506. package/src/components/VSelect/index.ts +4 -0
  507. package/src/components/VSheet/VSheet.sass +15 -0
  508. package/src/components/VSheet/VSheet.ts +69 -0
  509. package/src/components/VSheet/__tests__/VSheet.spec.ts +48 -0
  510. package/src/components/VSheet/__tests__/__snapshots__/VSheet.spec.ts.snap +11 -0
  511. package/src/components/VSheet/_variables.scss +6 -0
  512. package/src/components/VSheet/index.ts +4 -0
  513. package/src/components/VSkeletonLoader/VSkeletonLoader.sass +377 -0
  514. package/src/components/VSkeletonLoader/VSkeletonLoader.ts +204 -0
  515. package/src/components/VSkeletonLoader/__tests__/VSkeletonLoader.spec.ts +145 -0
  516. package/src/components/VSkeletonLoader/__tests__/__snapshots__/VSkeletonLoader.spec.ts.snap +1039 -0
  517. package/src/components/VSkeletonLoader/_variables.scss +54 -0
  518. package/src/components/VSkeletonLoader/index.ts +4 -0
  519. package/src/components/VSlideGroup/VSlideGroup.sass +51 -0
  520. package/src/components/VSlideGroup/VSlideGroup.ts +542 -0
  521. package/src/components/VSlideGroup/VSlideItem.ts +16 -0
  522. package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +398 -0
  523. package/src/components/VSlideGroup/__tests__/__snapshots__/VSlideGroup.spec.ts.snap +26 -0
  524. package/src/components/VSlideGroup/_variables.scss +3 -0
  525. package/src/components/VSlideGroup/index.ts +14 -0
  526. package/src/components/VSlider/VSlider.sass +305 -0
  527. package/src/components/VSlider/VSlider.ts +611 -0
  528. package/src/components/VSlider/__tests__/VSlider.spec.ts +553 -0
  529. package/src/components/VSlider/__tests__/__snapshots__/VSlider.spec.ts.snap +802 -0
  530. package/src/components/VSlider/_variables.scss +26 -0
  531. package/src/components/VSlider/index.ts +4 -0
  532. package/src/components/VSnackbar/VSnackbar.sass +142 -0
  533. package/src/components/VSnackbar/VSnackbar.ts +214 -0
  534. package/src/components/VSnackbar/__tests__/VSnackbar.spec.ts +143 -0
  535. package/src/components/VSnackbar/_variables.scss +40 -0
  536. package/src/components/VSnackbar/index.ts +4 -0
  537. package/src/components/VSparkline/VSparkline.ts +384 -0
  538. package/src/components/VSparkline/__tests__/VSparkline.spec.ts +278 -0
  539. package/src/components/VSparkline/__tests__/__snapshots__/VSparkline.spec.ts.snap +1141 -0
  540. package/src/components/VSparkline/helpers/core.ts +51 -0
  541. package/src/components/VSparkline/helpers/math.ts +31 -0
  542. package/src/components/VSparkline/helpers/path.ts +38 -0
  543. package/src/components/VSparkline/index.ts +5 -0
  544. package/src/components/VSpeedDial/VSpeedDial.sass +79 -0
  545. package/src/components/VSpeedDial/VSpeedDial.ts +99 -0
  546. package/src/components/VSpeedDial/__tests__/VSpeedDial.spec.ts +93 -0
  547. package/src/components/VSpeedDial/__tests__/__snapshots__/VSpeedDial.spec.ts.snap +25 -0
  548. package/src/components/VSpeedDial/_variables.scss +5 -0
  549. package/src/components/VSpeedDial/index.ts +4 -0
  550. package/src/components/VStepper/VStepper.sass +236 -0
  551. package/src/components/VStepper/VStepper.ts +143 -0
  552. package/src/components/VStepper/VStepperContent.ts +167 -0
  553. package/src/components/VStepper/VStepperStep.ts +160 -0
  554. package/src/components/VStepper/__tests__/VStepper.spec.ts +34 -0
  555. package/src/components/VStepper/__tests__/VStepperContent.spec.ts +311 -0
  556. package/src/components/VStepper/__tests__/VStepperStep.spec.ts +162 -0
  557. package/src/components/VStepper/__tests__/__snapshots__/VStepperStep.spec.ts.snap +90 -0
  558. package/src/components/VStepper/_variables.scss +31 -0
  559. package/src/components/VStepper/index.ts +25 -0
  560. package/src/components/VSubheader/VSubheader.sass +15 -0
  561. package/src/components/VSubheader/VSubheader.ts +33 -0
  562. package/src/components/VSubheader/__tests__/VSubheader.spec.ts +62 -0
  563. package/src/components/VSubheader/__tests__/__snapshots__/VSubheader.spec.ts.snap +21 -0
  564. package/src/components/VSubheader/_variables.scss +6 -0
  565. package/src/components/VSubheader/index.ts +4 -0
  566. package/src/components/VSwitch/VSwitch.sass +133 -0
  567. package/src/components/VSwitch/VSwitch.ts +138 -0
  568. package/src/components/VSwitch/__tests__/VSwitch.spec.ts +106 -0
  569. package/src/components/VSwitch/__tests__/__snapshots__/VSwitch.spec.ts.snap +52 -0
  570. package/src/components/VSwitch/_variables.scss +30 -0
  571. package/src/components/VSwitch/index.ts +4 -0
  572. package/src/components/VSystemBar/VSystemBar.sass +44 -0
  573. package/src/components/VSystemBar/VSystemBar.ts +76 -0
  574. package/src/components/VSystemBar/__tests__/VSystemBar.spec.ts +128 -0
  575. package/src/components/VSystemBar/_variables.scss +9 -0
  576. package/src/components/VSystemBar/index.ts +4 -0
  577. package/src/components/VTabs/VTab.ts +136 -0
  578. package/src/components/VTabs/VTabItem.ts +24 -0
  579. package/src/components/VTabs/VTabs.sass +228 -0
  580. package/src/components/VTabs/VTabs.ts +338 -0
  581. package/src/components/VTabs/VTabsBar.ts +105 -0
  582. package/src/components/VTabs/VTabsItems.ts +39 -0
  583. package/src/components/VTabs/VTabsSlider.ts +20 -0
  584. package/src/components/VTabs/__tests__/VTab.spec.ts +127 -0
  585. package/src/components/VTabs/__tests__/VTabs.spec.ts +318 -0
  586. package/src/components/VTabs/__tests__/VTabsBar.spec.ts +102 -0
  587. package/src/components/VTabs/__tests__/VTabsSlider.spec.ts +32 -0
  588. package/src/components/VTabs/__tests__/__snapshots__/VTabs.spec.ts.snap +19 -0
  589. package/src/components/VTabs/_variables.scss +18 -0
  590. package/src/components/VTabs/index.ts +17 -0
  591. package/src/components/VTextField/VTextField.sass +526 -0
  592. package/src/components/VTextField/VTextField.ts +546 -0
  593. package/src/components/VTextField/__tests__/VTextField.spec.ts +992 -0
  594. package/src/components/VTextField/__tests__/__snapshots__/VTextField.spec.ts.snap +301 -0
  595. package/src/components/VTextField/_mixins.sass +18 -0
  596. package/src/components/VTextField/_variables.scss +51 -0
  597. package/src/components/VTextField/index.ts +4 -0
  598. package/src/components/VTextarea/VTextarea.sass +113 -0
  599. package/src/components/VTextarea/VTextarea.ts +117 -0
  600. package/src/components/VTextarea/__tests__/VTextarea.spec.ts +275 -0
  601. package/src/components/VTextarea/__tests__/__snapshots__/VTextarea.spec.ts.snap +121 -0
  602. package/src/components/VTextarea/_variables.scss +15 -0
  603. package/src/components/VTextarea/index.ts +4 -0
  604. package/src/components/VThemeProvider/VThemeProvider.ts +29 -0
  605. package/src/components/VThemeProvider/__tests__/VThemeProvider.spec.ts +80 -0
  606. package/src/components/VThemeProvider/index.ts +4 -0
  607. package/src/components/VTimePicker/SelectingTimes.ts +7 -0
  608. package/src/components/VTimePicker/VTimePicker.ts +489 -0
  609. package/src/components/VTimePicker/VTimePickerClock.sass +148 -0
  610. package/src/components/VTimePicker/VTimePickerClock.ts +278 -0
  611. package/src/components/VTimePicker/VTimePickerTitle.sass +65 -0
  612. package/src/components/VTimePicker/VTimePickerTitle.ts +83 -0
  613. package/src/components/VTimePicker/__tests__/VTimePicker.spec.ts +828 -0
  614. package/src/components/VTimePicker/__tests__/VTimePickerClock.spec.ts +323 -0
  615. package/src/components/VTimePicker/__tests__/VTimePickerTitle.spec.ts +189 -0
  616. package/src/components/VTimePicker/__tests__/__snapshots__/VTimePicker.spec.ts.snap +2761 -0
  617. package/src/components/VTimePicker/__tests__/__snapshots__/VTimePickerClock.spec.ts.snap +286 -0
  618. package/src/components/VTimePicker/__tests__/__snapshots__/VTimePickerTitle.spec.ts.snap +185 -0
  619. package/src/components/VTimePicker/_variables.scss +28 -0
  620. package/src/components/VTimePicker/index.ts +13 -0
  621. package/src/components/VTimeline/VTimeline.sass +167 -0
  622. package/src/components/VTimeline/VTimeline.ts +45 -0
  623. package/src/components/VTimeline/VTimelineItem.ts +115 -0
  624. package/src/components/VTimeline/__tests__/VTimeline.spec.ts +10 -0
  625. package/src/components/VTimeline/__tests__/VTimelineItem.spec.ts +66 -0
  626. package/src/components/VTimeline/__tests__/__snapshots__/VTimeline.spec.ts.snap +6 -0
  627. package/src/components/VTimeline/__tests__/__snapshots__/VTimelineItem.spec.ts.snap +74 -0
  628. package/src/components/VTimeline/_mixins.sass +43 -0
  629. package/src/components/VTimeline/_variables.scss +18 -0
  630. package/src/components/VTimeline/index.ts +11 -0
  631. package/src/components/VToolbar/VToolbar.sass +160 -0
  632. package/src/components/VToolbar/VToolbar.ts +167 -0
  633. package/src/components/VToolbar/__tests__/VToolbar.spec.ts +129 -0
  634. package/src/components/VToolbar/__tests__/__snapshots__/VToolbar.spec.ts.snap +31 -0
  635. package/src/components/VToolbar/_variables.scss +19 -0
  636. package/src/components/VToolbar/index.ts +22 -0
  637. package/src/components/VTooltip/VTooltip.sass +36 -0
  638. package/src/components/VTooltip/VTooltip.ts +223 -0
  639. package/src/components/VTooltip/__tests__/VTooltip.spec.ts +246 -0
  640. package/src/components/VTooltip/__tests__/__snapshots__/VTooltip.spec.ts.snap +110 -0
  641. package/src/components/VTooltip/_variables.scss +11 -0
  642. package/src/components/VTooltip/index.ts +4 -0
  643. package/src/components/VTreeview/VTreeview.sass +144 -0
  644. package/src/components/VTreeview/VTreeview.ts +442 -0
  645. package/src/components/VTreeview/VTreeviewNode.ts +356 -0
  646. package/src/components/VTreeview/__tests__/VTreeview.spec.ts +872 -0
  647. package/src/components/VTreeview/__tests__/VTreeviewNode.spec.ts +185 -0
  648. package/src/components/VTreeview/__tests__/__snapshots__/VTreeview.spec.ts.snap +1058 -0
  649. package/src/components/VTreeview/__tests__/__snapshots__/VTreeviewNode.spec.ts.snap +148 -0
  650. package/src/components/VTreeview/_mixins.sass +18 -0
  651. package/src/components/VTreeview/_variables.scss +10 -0
  652. package/src/components/VTreeview/index.ts +11 -0
  653. package/src/components/VTreeview/util/__tests__/filterTreeItems.spec.ts +20 -0
  654. package/src/components/VTreeview/util/filterTreeItems.ts +39 -0
  655. package/src/components/VVirtualScroll/VVirtualScroll.sass +15 -0
  656. package/src/components/VVirtualScroll/VVirtualScroll.ts +124 -0
  657. package/src/components/VVirtualScroll/__tests__/VVirtualScroll.spec.ts +108 -0
  658. package/src/components/VVirtualScroll/__tests__/__snapshots__/VVirtualScroll.spec.ts.snap +76 -0
  659. package/src/components/VVirtualScroll/index.ts +4 -0
  660. package/src/components/VWindow/VWindow.sass +108 -0
  661. package/src/components/VWindow/VWindow.ts +288 -0
  662. package/src/components/VWindow/VWindowItem.ts +157 -0
  663. package/src/components/VWindow/__tests__/VWindow.spec.ts +479 -0
  664. package/src/components/VWindow/__tests__/VWindowItem.spec.ts +344 -0
  665. package/src/components/VWindow/__tests__/__snapshots__/VWindow.spec.ts.snap +59 -0
  666. package/src/components/VWindow/__tests__/__snapshots__/VWindowItem.spec.ts.snap +36 -0
  667. package/src/components/VWindow/_variables.scss +5 -0
  668. package/src/components/VWindow/index.ts +11 -0
  669. package/src/components/index.ts +81 -0
  670. package/src/components/transitions/createTransition.ts +124 -0
  671. package/src/components/transitions/expand-transition.ts +86 -0
  672. package/src/components/transitions/index.ts +59 -0
  673. package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +118 -0
  674. package/src/directives/click-outside/__tests__/click-outside.spec.ts +111 -0
  675. package/src/directives/click-outside/index.ts +119 -0
  676. package/src/directives/color/__tests__/color.spec.ts +154 -0
  677. package/src/directives/color/index.ts +108 -0
  678. package/src/directives/index.ts +7 -0
  679. package/src/directives/intersect/__tests__/intersect.spec.ts +53 -0
  680. package/src/directives/intersect/index.ts +112 -0
  681. package/src/directives/mutate/__tests__/mutate.spec.ts +155 -0
  682. package/src/directives/mutate/index.ts +84 -0
  683. package/src/directives/resize/__tests__/resize.spec.ts +30 -0
  684. package/src/directives/resize/index.ts +60 -0
  685. package/src/directives/ripple/VRipple.sass +39 -0
  686. package/src/directives/ripple/__tests__/ripple.spec.ts +160 -0
  687. package/src/directives/ripple/index.ts +342 -0
  688. package/src/directives/scroll/__tests__/scroll.spec.ts +130 -0
  689. package/src/directives/scroll/index.ts +68 -0
  690. package/src/directives/touch/__tests__/touch.spec.ts +103 -0
  691. package/src/directives/touch/index.ts +135 -0
  692. package/src/entry-lib.ts +4 -0
  693. package/src/framework.ts +80 -0
  694. package/src/globals.d.ts +163 -0
  695. package/src/index.ts +19 -0
  696. package/src/install.ts +79 -0
  697. package/src/locale/__tests__/index.spec.ts +24 -0
  698. package/src/locale/af.ts +75 -0
  699. package/src/locale/ar.ts +75 -0
  700. package/src/locale/az.ts +75 -0
  701. package/src/locale/bg.ts +75 -0
  702. package/src/locale/ca.ts +75 -0
  703. package/src/locale/ckb.ts +75 -0
  704. package/src/locale/cs.ts +75 -0
  705. package/src/locale/da.ts +75 -0
  706. package/src/locale/de.ts +75 -0
  707. package/src/locale/el.ts +75 -0
  708. package/src/locale/en.ts +75 -0
  709. package/src/locale/es.ts +75 -0
  710. package/src/locale/et.ts +75 -0
  711. package/src/locale/fa.ts +75 -0
  712. package/src/locale/fi.ts +75 -0
  713. package/src/locale/fr.ts +75 -0
  714. package/src/locale/he.ts +75 -0
  715. package/src/locale/hr.ts +75 -0
  716. package/src/locale/hu.ts +75 -0
  717. package/src/locale/id.ts +75 -0
  718. package/src/locale/index.ts +42 -0
  719. package/src/locale/it.ts +75 -0
  720. package/src/locale/ja.ts +75 -0
  721. package/src/locale/ko.ts +75 -0
  722. package/src/locale/lt.ts +75 -0
  723. package/src/locale/lv.ts +75 -0
  724. package/src/locale/nl.ts +75 -0
  725. package/src/locale/no.ts +75 -0
  726. package/src/locale/pl.ts +75 -0
  727. package/src/locale/pt.ts +75 -0
  728. package/src/locale/ro.ts +75 -0
  729. package/src/locale/ru.ts +75 -0
  730. package/src/locale/sk.ts +75 -0
  731. package/src/locale/sl.ts +75 -0
  732. package/src/locale/sr-Cyrl.ts +75 -0
  733. package/src/locale/sr-Latn.ts +75 -0
  734. package/src/locale/sv.ts +75 -0
  735. package/src/locale/th.ts +75 -0
  736. package/src/locale/tr.ts +75 -0
  737. package/src/locale/uk.ts +75 -0
  738. package/src/locale/vi.ts +75 -0
  739. package/src/locale/zh-Hans.ts +75 -0
  740. package/src/locale/zh-Hant.ts +75 -0
  741. package/src/mixins/activatable/__tests__/__snapshots__/activatable.spec.ts.snap +20 -0
  742. package/src/mixins/activatable/__tests__/activatable.spec.ts +191 -0
  743. package/src/mixins/activatable/index.ts +224 -0
  744. package/src/mixins/applicationable/__tests__/applicationable.spec.ts +131 -0
  745. package/src/mixins/applicationable/index.ts +79 -0
  746. package/src/mixins/binds-attrs/index.ts +33 -0
  747. package/src/mixins/bootable/__tests__/bootable.spec.ts +90 -0
  748. package/src/mixins/bootable/index.ts +56 -0
  749. package/src/mixins/button-group/index.ts +26 -0
  750. package/src/mixins/colorable/__tests__/colorable.spec.ts +112 -0
  751. package/src/mixins/colorable/index.ts +118 -0
  752. package/src/mixins/comparable/index.ts +13 -0
  753. package/src/mixins/delayable/index.ts +50 -0
  754. package/src/mixins/dependent/__tests__/dependent.spec.ts +136 -0
  755. package/src/mixins/dependent/index.ts +89 -0
  756. package/src/mixins/detachable/__tests__/detachable.spec.ts +121 -0
  757. package/src/mixins/detachable/index.ts +175 -0
  758. package/src/mixins/elevatable/__tests__/elevatable.spec.ts +51 -0
  759. package/src/mixins/elevatable/index.ts +22 -0
  760. package/src/mixins/filterable/index.ts +13 -0
  761. package/src/mixins/groupable/index.ts +85 -0
  762. package/src/mixins/intersectable/__tests__/intersectable.spec.ts +45 -0
  763. package/src/mixins/intersectable/index.ts +54 -0
  764. package/src/mixins/loadable/index.ts +47 -0
  765. package/src/mixins/localable/index.ts +15 -0
  766. package/src/mixins/measurable/index.ts +42 -0
  767. package/src/mixins/menuable/__tests__/menuable.spec.ts +142 -0
  768. package/src/mixins/menuable/index.ts +431 -0
  769. package/src/mixins/mobile/__tests__/mobile.spec.ts +56 -0
  770. package/src/mixins/mobile/index.ts +53 -0
  771. package/src/mixins/mouse/__tests__/mouse.spec.ts +104 -0
  772. package/src/mixins/mouse/index.ts +124 -0
  773. package/src/mixins/overlayable/__tests__/overlayable.spec.ts +119 -0
  774. package/src/mixins/overlayable/index.ts +264 -0
  775. package/src/mixins/picker/index.ts +76 -0
  776. package/src/mixins/picker-button/index.ts +38 -0
  777. package/src/mixins/positionable/index.ts +54 -0
  778. package/src/mixins/proxyable/__tests__/proxyable.spec.ts +65 -0
  779. package/src/mixins/proxyable/index.ts +57 -0
  780. package/src/mixins/registrable/__tests__/registrable.spec.ts +31 -0
  781. package/src/mixins/registrable/index.ts +48 -0
  782. package/src/mixins/returnable/index.ts +34 -0
  783. package/src/mixins/rippleable/__tests__/__snapshots__/rippleable.spec.ts.snap +6 -0
  784. package/src/mixins/rippleable/__tests__/rippleable.spec.ts +29 -0
  785. package/src/mixins/rippleable/index.ts +41 -0
  786. package/src/mixins/roundable/__tests__/roundable.spec.ts +40 -0
  787. package/src/mixins/roundable/index.ts +36 -0
  788. package/src/mixins/routable/__tests__/routable.spec.ts +105 -0
  789. package/src/mixins/routable/index.ts +162 -0
  790. package/src/mixins/scrollable/__tests__/scrollable.spec.ts +144 -0
  791. package/src/mixins/scrollable/index.ts +104 -0
  792. package/src/mixins/selectable/__tests__/selectable.spec.ts +53 -0
  793. package/src/mixins/selectable/index.ts +171 -0
  794. package/src/mixins/sizeable/index.ts +32 -0
  795. package/src/mixins/ssr-bootable/index.ts +27 -0
  796. package/src/mixins/stackable/index.ts +65 -0
  797. package/src/mixins/themeable/index.ts +107 -0
  798. package/src/mixins/toggleable/index.ts +33 -0
  799. package/src/mixins/transitionable/index.ts +11 -0
  800. package/src/mixins/translatable/index.ts +60 -0
  801. package/src/mixins/validatable/__tests__/validatable.spec.ts +531 -0
  802. package/src/mixins/validatable/index.ts +283 -0
  803. package/src/presets/default/index.ts +70 -0
  804. package/src/services/application/__tests__/application.spec.ts +29 -0
  805. package/src/services/application/index.ts +55 -0
  806. package/src/services/breakpoint/__tests__/breakpoint.spec.ts +300 -0
  807. package/src/services/breakpoint/index.ts +194 -0
  808. package/src/services/goto/__tests__/easing-patterns.spec.ts +23 -0
  809. package/src/services/goto/__tests__/goto.spec.ts +214 -0
  810. package/src/services/goto/easing-patterns.ts +28 -0
  811. package/src/services/goto/index.ts +92 -0
  812. package/src/services/goto/util.ts +89 -0
  813. package/src/services/icons/__tests__/__snapshots__/icons.spec.ts.snap +77 -0
  814. package/src/services/icons/__tests__/icons.spec.ts +31 -0
  815. package/src/services/icons/index.ts +39 -0
  816. package/src/services/icons/presets/fa-svg.ts +23 -0
  817. package/src/services/icons/presets/fa.ts +39 -0
  818. package/src/services/icons/presets/fa4.ts +39 -0
  819. package/src/services/icons/presets/index.ts +15 -0
  820. package/src/services/icons/presets/md.ts +39 -0
  821. package/src/services/icons/presets/mdi-svg.ts +39 -0
  822. package/src/services/icons/presets/mdi.ts +39 -0
  823. package/src/services/index.ts +7 -0
  824. package/src/services/lang/__tests__/lang.spec.ts +70 -0
  825. package/src/services/lang/index.ts +88 -0
  826. package/src/services/presets/__tests__/__snapshots__/presets.spec.ts.snap +11 -0
  827. package/src/services/presets/__tests__/presets.spec.ts +51 -0
  828. package/src/services/presets/index.ts +44 -0
  829. package/src/services/service/index.ts +11 -0
  830. package/src/services/theme/__tests__/__snapshots__/theme-utils.spec.ts.snap +231 -0
  831. package/src/services/theme/__tests__/__snapshots__/theme.spec.ts.snap +5705 -0
  832. package/src/services/theme/__tests__/theme-utils.spec.ts +55 -0
  833. package/src/services/theme/__tests__/theme.spec.ts +284 -0
  834. package/src/services/theme/index.ts +256 -0
  835. package/src/services/theme/utils.ts +145 -0
  836. package/src/styles/components/_index.sass +1 -0
  837. package/src/styles/components/_selection-controls.sass +119 -0
  838. package/src/styles/elements/_blockquote.sass +4 -0
  839. package/src/styles/elements/_code.sass +23 -0
  840. package/src/styles/elements/_global.sass +23 -0
  841. package/src/styles/elements/_headings.sass +8 -0
  842. package/src/styles/elements/_index.sass +6 -0
  843. package/src/styles/elements/_lists.sass +3 -0
  844. package/src/styles/elements/_typography.sass +88 -0
  845. package/src/styles/generic/_animations.scss +13 -0
  846. package/src/styles/generic/_colors.scss +44 -0
  847. package/src/styles/generic/_elevation.scss +10 -0
  848. package/src/styles/generic/_index.scss +5 -0
  849. package/src/styles/generic/_reset.scss +281 -0
  850. package/src/styles/generic/_transitions.scss +317 -0
  851. package/src/styles/main.sass +7 -0
  852. package/src/styles/settings/_colors.scss +422 -0
  853. package/src/styles/settings/_dark.scss +153 -0
  854. package/src/styles/settings/_elevations.scss +101 -0
  855. package/src/styles/settings/_index.sass +10 -0
  856. package/src/styles/settings/_light.scss +134 -0
  857. package/src/styles/settings/_theme.scss +1 -0
  858. package/src/styles/settings/_utilities.scss +432 -0
  859. package/src/styles/settings/_variables.scss +266 -0
  860. package/src/styles/styles.sass +2 -0
  861. package/src/styles/tools/_bootable.sass +3 -0
  862. package/src/styles/tools/_display.sass +8 -0
  863. package/src/styles/tools/_elevation.sass +5 -0
  864. package/src/styles/tools/_functions.sass +70 -0
  865. package/src/styles/tools/_index.sass +18 -0
  866. package/src/styles/tools/_radius.sass +6 -0
  867. package/src/styles/tools/_rtl.sass +7 -0
  868. package/src/styles/tools/_sheet.sass +14 -0
  869. package/src/styles/tools/_states.sass +17 -0
  870. package/src/styles/tools/_theme.sass +5 -0
  871. package/src/styles/tools/_utilities.sass +61 -0
  872. package/src/styles/utilities/_display.sass +6 -0
  873. package/src/styles/utilities/_index.sass +42 -0
  874. package/src/styles/utilities/_screenreaders.sass +13 -0
  875. package/src/styles/utilities/_text.sass +8 -0
  876. package/src/styles/utilities/_transition.sass +4 -0
  877. package/src/util/__tests__/__snapshots__/helpers.spec.ts.snap +11 -0
  878. package/src/util/__tests__/colorUtils.spec.ts +162 -0
  879. package/src/util/__tests__/console.spec.ts +132 -0
  880. package/src/util/__tests__/dateTimeUtils.spec.ts +24 -0
  881. package/src/util/__tests__/dom.spec.ts +45 -0
  882. package/src/util/__tests__/helpers.spec.ts +470 -0
  883. package/src/util/__tests__/mergeData.spec.ts +104 -0
  884. package/src/util/color/transformCIELAB.ts +36 -0
  885. package/src/util/color/transformSRGB.ts +66 -0
  886. package/src/util/colorUtils.ts +249 -0
  887. package/src/util/colors.ts +339 -0
  888. package/src/util/console.ts +133 -0
  889. package/src/util/dateTimeUtils.ts +54 -0
  890. package/src/util/dedupeModelListeners.ts +18 -0
  891. package/src/util/dom.ts +24 -0
  892. package/src/util/helpers.ts +579 -0
  893. package/src/util/legacyEventsMixin.ts +34 -0
  894. package/src/util/make-directive-activatable.ts +55 -0
  895. package/src/util/mergeData.ts +166 -0
  896. package/src/util/mixins.ts +28 -0
  897. package/src/util/rebuildFunctionalSlots.ts +13 -0
  898. package/types/alacarte.d.ts +46 -0
  899. package/types/colors.d.ts +107 -0
  900. package/types/index.d.ts +308 -0
  901. package/types/lib.d.ts +378 -0
  902. package/types/services/application.d.ts +24 -0
  903. package/types/services/breakpoint.d.ts +42 -0
  904. package/types/services/goto.d.ts +30 -0
  905. package/types/services/icons.d.ts +68 -0
  906. package/types/services/index.d.ts +17 -0
  907. package/types/services/lang.d.ts +19 -0
  908. package/types/services/presets.d.ts +65 -0
  909. package/types/services/theme.d.ts +80 -0
@@ -0,0 +1,4566 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`calendar-with-intervals.ts should generate days 1`] = `
4
+ Array [
5
+ Object {
6
+ "date": "2019-01-29",
7
+ "day": 29,
8
+ "future": false,
9
+ "hasDay": true,
10
+ "hasTime": false,
11
+ "hour": 0,
12
+ "minute": 0,
13
+ "month": 1,
14
+ "past": true,
15
+ "present": false,
16
+ "time": "",
17
+ "weekday": 2,
18
+ "year": 2019,
19
+ },
20
+ Object {
21
+ "date": "2019-01-30",
22
+ "day": 30,
23
+ "future": false,
24
+ "hasDay": true,
25
+ "hasTime": false,
26
+ "hour": 0,
27
+ "minute": 0,
28
+ "month": 1,
29
+ "past": true,
30
+ "present": false,
31
+ "time": "",
32
+ "weekday": 3,
33
+ "year": 2019,
34
+ },
35
+ Object {
36
+ "date": "2019-01-31",
37
+ "day": 31,
38
+ "future": false,
39
+ "hasDay": true,
40
+ "hasTime": false,
41
+ "hour": 0,
42
+ "minute": 0,
43
+ "month": 1,
44
+ "past": true,
45
+ "present": false,
46
+ "time": "",
47
+ "weekday": 4,
48
+ "year": 2019,
49
+ },
50
+ Object {
51
+ "date": "2019-02-01",
52
+ "day": 1,
53
+ "future": false,
54
+ "hasDay": true,
55
+ "hasTime": false,
56
+ "hour": 0,
57
+ "minute": 0,
58
+ "month": 2,
59
+ "past": true,
60
+ "present": false,
61
+ "time": "",
62
+ "weekday": 5,
63
+ "year": 2019,
64
+ },
65
+ Object {
66
+ "date": "2019-02-02",
67
+ "day": 2,
68
+ "future": false,
69
+ "hasDay": true,
70
+ "hasTime": false,
71
+ "hour": 0,
72
+ "minute": 0,
73
+ "month": 2,
74
+ "past": true,
75
+ "present": false,
76
+ "time": "",
77
+ "weekday": 6,
78
+ "year": 2019,
79
+ },
80
+ Object {
81
+ "date": "2019-02-03",
82
+ "day": 3,
83
+ "future": false,
84
+ "hasDay": true,
85
+ "hasTime": false,
86
+ "hour": 0,
87
+ "minute": 0,
88
+ "month": 2,
89
+ "past": true,
90
+ "present": false,
91
+ "time": "",
92
+ "weekday": 0,
93
+ "year": 2019,
94
+ },
95
+ Object {
96
+ "date": "2019-02-04",
97
+ "day": 4,
98
+ "future": false,
99
+ "hasDay": true,
100
+ "hasTime": false,
101
+ "hour": 0,
102
+ "minute": 0,
103
+ "month": 2,
104
+ "past": true,
105
+ "present": false,
106
+ "time": "",
107
+ "weekday": 1,
108
+ "year": 2019,
109
+ },
110
+ ]
111
+ `;
112
+
113
+ exports[`calendar-with-intervals.ts should generate days 2`] = `
114
+ Array [
115
+ Object {
116
+ "date": "2019-01-29",
117
+ "day": 29,
118
+ "future": false,
119
+ "hasDay": true,
120
+ "hasTime": false,
121
+ "hour": 0,
122
+ "minute": 0,
123
+ "month": 1,
124
+ "past": true,
125
+ "present": false,
126
+ "time": "",
127
+ "weekday": 2,
128
+ "year": 2019,
129
+ },
130
+ Object {
131
+ "date": "2019-01-30",
132
+ "day": 30,
133
+ "future": false,
134
+ "hasDay": true,
135
+ "hasTime": false,
136
+ "hour": 0,
137
+ "minute": 0,
138
+ "month": 1,
139
+ "past": true,
140
+ "present": false,
141
+ "time": "",
142
+ "weekday": 3,
143
+ "year": 2019,
144
+ },
145
+ Object {
146
+ "date": "2019-01-31",
147
+ "day": 31,
148
+ "future": false,
149
+ "hasDay": true,
150
+ "hasTime": false,
151
+ "hour": 0,
152
+ "minute": 0,
153
+ "month": 1,
154
+ "past": true,
155
+ "present": false,
156
+ "time": "",
157
+ "weekday": 4,
158
+ "year": 2019,
159
+ },
160
+ Object {
161
+ "date": "2019-02-01",
162
+ "day": 1,
163
+ "future": false,
164
+ "hasDay": true,
165
+ "hasTime": false,
166
+ "hour": 0,
167
+ "minute": 0,
168
+ "month": 2,
169
+ "past": true,
170
+ "present": false,
171
+ "time": "",
172
+ "weekday": 5,
173
+ "year": 2019,
174
+ },
175
+ Object {
176
+ "date": "2019-02-02",
177
+ "day": 2,
178
+ "future": false,
179
+ "hasDay": true,
180
+ "hasTime": false,
181
+ "hour": 0,
182
+ "minute": 0,
183
+ "month": 2,
184
+ "past": true,
185
+ "present": false,
186
+ "time": "",
187
+ "weekday": 6,
188
+ "year": 2019,
189
+ },
190
+ ]
191
+ `;
192
+
193
+ exports[`calendar-with-intervals.ts should generate intervals 1`] = `
194
+ Array [
195
+ Array [
196
+ Object {
197
+ "date": "2019-01-29",
198
+ "day": 29,
199
+ "future": false,
200
+ "hasDay": true,
201
+ "hasTime": true,
202
+ "hour": 0,
203
+ "minute": 0,
204
+ "month": 1,
205
+ "past": true,
206
+ "present": false,
207
+ "time": "00:00",
208
+ "weekday": 2,
209
+ "year": 2019,
210
+ },
211
+ Object {
212
+ "date": "2019-01-29",
213
+ "day": 29,
214
+ "future": false,
215
+ "hasDay": true,
216
+ "hasTime": true,
217
+ "hour": 1,
218
+ "minute": 0,
219
+ "month": 1,
220
+ "past": true,
221
+ "present": false,
222
+ "time": "01:00",
223
+ "weekday": 2,
224
+ "year": 2019,
225
+ },
226
+ Object {
227
+ "date": "2019-01-29",
228
+ "day": 29,
229
+ "future": false,
230
+ "hasDay": true,
231
+ "hasTime": true,
232
+ "hour": 2,
233
+ "minute": 0,
234
+ "month": 1,
235
+ "past": true,
236
+ "present": false,
237
+ "time": "02:00",
238
+ "weekday": 2,
239
+ "year": 2019,
240
+ },
241
+ Object {
242
+ "date": "2019-01-29",
243
+ "day": 29,
244
+ "future": false,
245
+ "hasDay": true,
246
+ "hasTime": true,
247
+ "hour": 3,
248
+ "minute": 0,
249
+ "month": 1,
250
+ "past": true,
251
+ "present": false,
252
+ "time": "03:00",
253
+ "weekday": 2,
254
+ "year": 2019,
255
+ },
256
+ Object {
257
+ "date": "2019-01-29",
258
+ "day": 29,
259
+ "future": false,
260
+ "hasDay": true,
261
+ "hasTime": true,
262
+ "hour": 4,
263
+ "minute": 0,
264
+ "month": 1,
265
+ "past": true,
266
+ "present": false,
267
+ "time": "04:00",
268
+ "weekday": 2,
269
+ "year": 2019,
270
+ },
271
+ Object {
272
+ "date": "2019-01-29",
273
+ "day": 29,
274
+ "future": false,
275
+ "hasDay": true,
276
+ "hasTime": true,
277
+ "hour": 5,
278
+ "minute": 0,
279
+ "month": 1,
280
+ "past": true,
281
+ "present": false,
282
+ "time": "05:00",
283
+ "weekday": 2,
284
+ "year": 2019,
285
+ },
286
+ Object {
287
+ "date": "2019-01-29",
288
+ "day": 29,
289
+ "future": false,
290
+ "hasDay": true,
291
+ "hasTime": true,
292
+ "hour": 6,
293
+ "minute": 0,
294
+ "month": 1,
295
+ "past": true,
296
+ "present": false,
297
+ "time": "06:00",
298
+ "weekday": 2,
299
+ "year": 2019,
300
+ },
301
+ Object {
302
+ "date": "2019-01-29",
303
+ "day": 29,
304
+ "future": false,
305
+ "hasDay": true,
306
+ "hasTime": true,
307
+ "hour": 7,
308
+ "minute": 0,
309
+ "month": 1,
310
+ "past": true,
311
+ "present": false,
312
+ "time": "07:00",
313
+ "weekday": 2,
314
+ "year": 2019,
315
+ },
316
+ Object {
317
+ "date": "2019-01-29",
318
+ "day": 29,
319
+ "future": false,
320
+ "hasDay": true,
321
+ "hasTime": true,
322
+ "hour": 8,
323
+ "minute": 0,
324
+ "month": 1,
325
+ "past": true,
326
+ "present": false,
327
+ "time": "08:00",
328
+ "weekday": 2,
329
+ "year": 2019,
330
+ },
331
+ Object {
332
+ "date": "2019-01-29",
333
+ "day": 29,
334
+ "future": false,
335
+ "hasDay": true,
336
+ "hasTime": true,
337
+ "hour": 9,
338
+ "minute": 0,
339
+ "month": 1,
340
+ "past": true,
341
+ "present": false,
342
+ "time": "09:00",
343
+ "weekday": 2,
344
+ "year": 2019,
345
+ },
346
+ Object {
347
+ "date": "2019-01-29",
348
+ "day": 29,
349
+ "future": false,
350
+ "hasDay": true,
351
+ "hasTime": true,
352
+ "hour": 10,
353
+ "minute": 0,
354
+ "month": 1,
355
+ "past": true,
356
+ "present": false,
357
+ "time": "10:00",
358
+ "weekday": 2,
359
+ "year": 2019,
360
+ },
361
+ Object {
362
+ "date": "2019-01-29",
363
+ "day": 29,
364
+ "future": false,
365
+ "hasDay": true,
366
+ "hasTime": true,
367
+ "hour": 11,
368
+ "minute": 0,
369
+ "month": 1,
370
+ "past": true,
371
+ "present": false,
372
+ "time": "11:00",
373
+ "weekday": 2,
374
+ "year": 2019,
375
+ },
376
+ Object {
377
+ "date": "2019-01-29",
378
+ "day": 29,
379
+ "future": false,
380
+ "hasDay": true,
381
+ "hasTime": true,
382
+ "hour": 12,
383
+ "minute": 0,
384
+ "month": 1,
385
+ "past": true,
386
+ "present": false,
387
+ "time": "12:00",
388
+ "weekday": 2,
389
+ "year": 2019,
390
+ },
391
+ Object {
392
+ "date": "2019-01-29",
393
+ "day": 29,
394
+ "future": false,
395
+ "hasDay": true,
396
+ "hasTime": true,
397
+ "hour": 13,
398
+ "minute": 0,
399
+ "month": 1,
400
+ "past": true,
401
+ "present": false,
402
+ "time": "13:00",
403
+ "weekday": 2,
404
+ "year": 2019,
405
+ },
406
+ Object {
407
+ "date": "2019-01-29",
408
+ "day": 29,
409
+ "future": false,
410
+ "hasDay": true,
411
+ "hasTime": true,
412
+ "hour": 14,
413
+ "minute": 0,
414
+ "month": 1,
415
+ "past": true,
416
+ "present": false,
417
+ "time": "14:00",
418
+ "weekday": 2,
419
+ "year": 2019,
420
+ },
421
+ Object {
422
+ "date": "2019-01-29",
423
+ "day": 29,
424
+ "future": false,
425
+ "hasDay": true,
426
+ "hasTime": true,
427
+ "hour": 15,
428
+ "minute": 0,
429
+ "month": 1,
430
+ "past": true,
431
+ "present": false,
432
+ "time": "15:00",
433
+ "weekday": 2,
434
+ "year": 2019,
435
+ },
436
+ Object {
437
+ "date": "2019-01-29",
438
+ "day": 29,
439
+ "future": false,
440
+ "hasDay": true,
441
+ "hasTime": true,
442
+ "hour": 16,
443
+ "minute": 0,
444
+ "month": 1,
445
+ "past": true,
446
+ "present": false,
447
+ "time": "16:00",
448
+ "weekday": 2,
449
+ "year": 2019,
450
+ },
451
+ Object {
452
+ "date": "2019-01-29",
453
+ "day": 29,
454
+ "future": false,
455
+ "hasDay": true,
456
+ "hasTime": true,
457
+ "hour": 17,
458
+ "minute": 0,
459
+ "month": 1,
460
+ "past": true,
461
+ "present": false,
462
+ "time": "17:00",
463
+ "weekday": 2,
464
+ "year": 2019,
465
+ },
466
+ Object {
467
+ "date": "2019-01-29",
468
+ "day": 29,
469
+ "future": false,
470
+ "hasDay": true,
471
+ "hasTime": true,
472
+ "hour": 18,
473
+ "minute": 0,
474
+ "month": 1,
475
+ "past": true,
476
+ "present": false,
477
+ "time": "18:00",
478
+ "weekday": 2,
479
+ "year": 2019,
480
+ },
481
+ Object {
482
+ "date": "2019-01-29",
483
+ "day": 29,
484
+ "future": false,
485
+ "hasDay": true,
486
+ "hasTime": true,
487
+ "hour": 19,
488
+ "minute": 0,
489
+ "month": 1,
490
+ "past": true,
491
+ "present": false,
492
+ "time": "19:00",
493
+ "weekday": 2,
494
+ "year": 2019,
495
+ },
496
+ Object {
497
+ "date": "2019-01-29",
498
+ "day": 29,
499
+ "future": false,
500
+ "hasDay": true,
501
+ "hasTime": true,
502
+ "hour": 20,
503
+ "minute": 0,
504
+ "month": 1,
505
+ "past": true,
506
+ "present": false,
507
+ "time": "20:00",
508
+ "weekday": 2,
509
+ "year": 2019,
510
+ },
511
+ Object {
512
+ "date": "2019-01-29",
513
+ "day": 29,
514
+ "future": false,
515
+ "hasDay": true,
516
+ "hasTime": true,
517
+ "hour": 21,
518
+ "minute": 0,
519
+ "month": 1,
520
+ "past": true,
521
+ "present": false,
522
+ "time": "21:00",
523
+ "weekday": 2,
524
+ "year": 2019,
525
+ },
526
+ Object {
527
+ "date": "2019-01-29",
528
+ "day": 29,
529
+ "future": false,
530
+ "hasDay": true,
531
+ "hasTime": true,
532
+ "hour": 22,
533
+ "minute": 0,
534
+ "month": 1,
535
+ "past": true,
536
+ "present": false,
537
+ "time": "22:00",
538
+ "weekday": 2,
539
+ "year": 2019,
540
+ },
541
+ Object {
542
+ "date": "2019-01-29",
543
+ "day": 29,
544
+ "future": false,
545
+ "hasDay": true,
546
+ "hasTime": true,
547
+ "hour": 23,
548
+ "minute": 0,
549
+ "month": 1,
550
+ "past": true,
551
+ "present": false,
552
+ "time": "23:00",
553
+ "weekday": 2,
554
+ "year": 2019,
555
+ },
556
+ ],
557
+ Array [
558
+ Object {
559
+ "date": "2019-01-30",
560
+ "day": 30,
561
+ "future": false,
562
+ "hasDay": true,
563
+ "hasTime": true,
564
+ "hour": 0,
565
+ "minute": 0,
566
+ "month": 1,
567
+ "past": true,
568
+ "present": false,
569
+ "time": "00:00",
570
+ "weekday": 3,
571
+ "year": 2019,
572
+ },
573
+ Object {
574
+ "date": "2019-01-30",
575
+ "day": 30,
576
+ "future": false,
577
+ "hasDay": true,
578
+ "hasTime": true,
579
+ "hour": 1,
580
+ "minute": 0,
581
+ "month": 1,
582
+ "past": true,
583
+ "present": false,
584
+ "time": "01:00",
585
+ "weekday": 3,
586
+ "year": 2019,
587
+ },
588
+ Object {
589
+ "date": "2019-01-30",
590
+ "day": 30,
591
+ "future": false,
592
+ "hasDay": true,
593
+ "hasTime": true,
594
+ "hour": 2,
595
+ "minute": 0,
596
+ "month": 1,
597
+ "past": true,
598
+ "present": false,
599
+ "time": "02:00",
600
+ "weekday": 3,
601
+ "year": 2019,
602
+ },
603
+ Object {
604
+ "date": "2019-01-30",
605
+ "day": 30,
606
+ "future": false,
607
+ "hasDay": true,
608
+ "hasTime": true,
609
+ "hour": 3,
610
+ "minute": 0,
611
+ "month": 1,
612
+ "past": true,
613
+ "present": false,
614
+ "time": "03:00",
615
+ "weekday": 3,
616
+ "year": 2019,
617
+ },
618
+ Object {
619
+ "date": "2019-01-30",
620
+ "day": 30,
621
+ "future": false,
622
+ "hasDay": true,
623
+ "hasTime": true,
624
+ "hour": 4,
625
+ "minute": 0,
626
+ "month": 1,
627
+ "past": true,
628
+ "present": false,
629
+ "time": "04:00",
630
+ "weekday": 3,
631
+ "year": 2019,
632
+ },
633
+ Object {
634
+ "date": "2019-01-30",
635
+ "day": 30,
636
+ "future": false,
637
+ "hasDay": true,
638
+ "hasTime": true,
639
+ "hour": 5,
640
+ "minute": 0,
641
+ "month": 1,
642
+ "past": true,
643
+ "present": false,
644
+ "time": "05:00",
645
+ "weekday": 3,
646
+ "year": 2019,
647
+ },
648
+ Object {
649
+ "date": "2019-01-30",
650
+ "day": 30,
651
+ "future": false,
652
+ "hasDay": true,
653
+ "hasTime": true,
654
+ "hour": 6,
655
+ "minute": 0,
656
+ "month": 1,
657
+ "past": true,
658
+ "present": false,
659
+ "time": "06:00",
660
+ "weekday": 3,
661
+ "year": 2019,
662
+ },
663
+ Object {
664
+ "date": "2019-01-30",
665
+ "day": 30,
666
+ "future": false,
667
+ "hasDay": true,
668
+ "hasTime": true,
669
+ "hour": 7,
670
+ "minute": 0,
671
+ "month": 1,
672
+ "past": true,
673
+ "present": false,
674
+ "time": "07:00",
675
+ "weekday": 3,
676
+ "year": 2019,
677
+ },
678
+ Object {
679
+ "date": "2019-01-30",
680
+ "day": 30,
681
+ "future": false,
682
+ "hasDay": true,
683
+ "hasTime": true,
684
+ "hour": 8,
685
+ "minute": 0,
686
+ "month": 1,
687
+ "past": true,
688
+ "present": false,
689
+ "time": "08:00",
690
+ "weekday": 3,
691
+ "year": 2019,
692
+ },
693
+ Object {
694
+ "date": "2019-01-30",
695
+ "day": 30,
696
+ "future": false,
697
+ "hasDay": true,
698
+ "hasTime": true,
699
+ "hour": 9,
700
+ "minute": 0,
701
+ "month": 1,
702
+ "past": true,
703
+ "present": false,
704
+ "time": "09:00",
705
+ "weekday": 3,
706
+ "year": 2019,
707
+ },
708
+ Object {
709
+ "date": "2019-01-30",
710
+ "day": 30,
711
+ "future": false,
712
+ "hasDay": true,
713
+ "hasTime": true,
714
+ "hour": 10,
715
+ "minute": 0,
716
+ "month": 1,
717
+ "past": true,
718
+ "present": false,
719
+ "time": "10:00",
720
+ "weekday": 3,
721
+ "year": 2019,
722
+ },
723
+ Object {
724
+ "date": "2019-01-30",
725
+ "day": 30,
726
+ "future": false,
727
+ "hasDay": true,
728
+ "hasTime": true,
729
+ "hour": 11,
730
+ "minute": 0,
731
+ "month": 1,
732
+ "past": true,
733
+ "present": false,
734
+ "time": "11:00",
735
+ "weekday": 3,
736
+ "year": 2019,
737
+ },
738
+ Object {
739
+ "date": "2019-01-30",
740
+ "day": 30,
741
+ "future": false,
742
+ "hasDay": true,
743
+ "hasTime": true,
744
+ "hour": 12,
745
+ "minute": 0,
746
+ "month": 1,
747
+ "past": true,
748
+ "present": false,
749
+ "time": "12:00",
750
+ "weekday": 3,
751
+ "year": 2019,
752
+ },
753
+ Object {
754
+ "date": "2019-01-30",
755
+ "day": 30,
756
+ "future": false,
757
+ "hasDay": true,
758
+ "hasTime": true,
759
+ "hour": 13,
760
+ "minute": 0,
761
+ "month": 1,
762
+ "past": true,
763
+ "present": false,
764
+ "time": "13:00",
765
+ "weekday": 3,
766
+ "year": 2019,
767
+ },
768
+ Object {
769
+ "date": "2019-01-30",
770
+ "day": 30,
771
+ "future": false,
772
+ "hasDay": true,
773
+ "hasTime": true,
774
+ "hour": 14,
775
+ "minute": 0,
776
+ "month": 1,
777
+ "past": true,
778
+ "present": false,
779
+ "time": "14:00",
780
+ "weekday": 3,
781
+ "year": 2019,
782
+ },
783
+ Object {
784
+ "date": "2019-01-30",
785
+ "day": 30,
786
+ "future": false,
787
+ "hasDay": true,
788
+ "hasTime": true,
789
+ "hour": 15,
790
+ "minute": 0,
791
+ "month": 1,
792
+ "past": true,
793
+ "present": false,
794
+ "time": "15:00",
795
+ "weekday": 3,
796
+ "year": 2019,
797
+ },
798
+ Object {
799
+ "date": "2019-01-30",
800
+ "day": 30,
801
+ "future": false,
802
+ "hasDay": true,
803
+ "hasTime": true,
804
+ "hour": 16,
805
+ "minute": 0,
806
+ "month": 1,
807
+ "past": true,
808
+ "present": false,
809
+ "time": "16:00",
810
+ "weekday": 3,
811
+ "year": 2019,
812
+ },
813
+ Object {
814
+ "date": "2019-01-30",
815
+ "day": 30,
816
+ "future": false,
817
+ "hasDay": true,
818
+ "hasTime": true,
819
+ "hour": 17,
820
+ "minute": 0,
821
+ "month": 1,
822
+ "past": true,
823
+ "present": false,
824
+ "time": "17:00",
825
+ "weekday": 3,
826
+ "year": 2019,
827
+ },
828
+ Object {
829
+ "date": "2019-01-30",
830
+ "day": 30,
831
+ "future": false,
832
+ "hasDay": true,
833
+ "hasTime": true,
834
+ "hour": 18,
835
+ "minute": 0,
836
+ "month": 1,
837
+ "past": true,
838
+ "present": false,
839
+ "time": "18:00",
840
+ "weekday": 3,
841
+ "year": 2019,
842
+ },
843
+ Object {
844
+ "date": "2019-01-30",
845
+ "day": 30,
846
+ "future": false,
847
+ "hasDay": true,
848
+ "hasTime": true,
849
+ "hour": 19,
850
+ "minute": 0,
851
+ "month": 1,
852
+ "past": true,
853
+ "present": false,
854
+ "time": "19:00",
855
+ "weekday": 3,
856
+ "year": 2019,
857
+ },
858
+ Object {
859
+ "date": "2019-01-30",
860
+ "day": 30,
861
+ "future": false,
862
+ "hasDay": true,
863
+ "hasTime": true,
864
+ "hour": 20,
865
+ "minute": 0,
866
+ "month": 1,
867
+ "past": true,
868
+ "present": false,
869
+ "time": "20:00",
870
+ "weekday": 3,
871
+ "year": 2019,
872
+ },
873
+ Object {
874
+ "date": "2019-01-30",
875
+ "day": 30,
876
+ "future": false,
877
+ "hasDay": true,
878
+ "hasTime": true,
879
+ "hour": 21,
880
+ "minute": 0,
881
+ "month": 1,
882
+ "past": true,
883
+ "present": false,
884
+ "time": "21:00",
885
+ "weekday": 3,
886
+ "year": 2019,
887
+ },
888
+ Object {
889
+ "date": "2019-01-30",
890
+ "day": 30,
891
+ "future": false,
892
+ "hasDay": true,
893
+ "hasTime": true,
894
+ "hour": 22,
895
+ "minute": 0,
896
+ "month": 1,
897
+ "past": true,
898
+ "present": false,
899
+ "time": "22:00",
900
+ "weekday": 3,
901
+ "year": 2019,
902
+ },
903
+ Object {
904
+ "date": "2019-01-30",
905
+ "day": 30,
906
+ "future": false,
907
+ "hasDay": true,
908
+ "hasTime": true,
909
+ "hour": 23,
910
+ "minute": 0,
911
+ "month": 1,
912
+ "past": true,
913
+ "present": false,
914
+ "time": "23:00",
915
+ "weekday": 3,
916
+ "year": 2019,
917
+ },
918
+ ],
919
+ Array [
920
+ Object {
921
+ "date": "2019-01-31",
922
+ "day": 31,
923
+ "future": false,
924
+ "hasDay": true,
925
+ "hasTime": true,
926
+ "hour": 0,
927
+ "minute": 0,
928
+ "month": 1,
929
+ "past": true,
930
+ "present": false,
931
+ "time": "00:00",
932
+ "weekday": 4,
933
+ "year": 2019,
934
+ },
935
+ Object {
936
+ "date": "2019-01-31",
937
+ "day": 31,
938
+ "future": false,
939
+ "hasDay": true,
940
+ "hasTime": true,
941
+ "hour": 1,
942
+ "minute": 0,
943
+ "month": 1,
944
+ "past": true,
945
+ "present": false,
946
+ "time": "01:00",
947
+ "weekday": 4,
948
+ "year": 2019,
949
+ },
950
+ Object {
951
+ "date": "2019-01-31",
952
+ "day": 31,
953
+ "future": false,
954
+ "hasDay": true,
955
+ "hasTime": true,
956
+ "hour": 2,
957
+ "minute": 0,
958
+ "month": 1,
959
+ "past": true,
960
+ "present": false,
961
+ "time": "02:00",
962
+ "weekday": 4,
963
+ "year": 2019,
964
+ },
965
+ Object {
966
+ "date": "2019-01-31",
967
+ "day": 31,
968
+ "future": false,
969
+ "hasDay": true,
970
+ "hasTime": true,
971
+ "hour": 3,
972
+ "minute": 0,
973
+ "month": 1,
974
+ "past": true,
975
+ "present": false,
976
+ "time": "03:00",
977
+ "weekday": 4,
978
+ "year": 2019,
979
+ },
980
+ Object {
981
+ "date": "2019-01-31",
982
+ "day": 31,
983
+ "future": false,
984
+ "hasDay": true,
985
+ "hasTime": true,
986
+ "hour": 4,
987
+ "minute": 0,
988
+ "month": 1,
989
+ "past": true,
990
+ "present": false,
991
+ "time": "04:00",
992
+ "weekday": 4,
993
+ "year": 2019,
994
+ },
995
+ Object {
996
+ "date": "2019-01-31",
997
+ "day": 31,
998
+ "future": false,
999
+ "hasDay": true,
1000
+ "hasTime": true,
1001
+ "hour": 5,
1002
+ "minute": 0,
1003
+ "month": 1,
1004
+ "past": true,
1005
+ "present": false,
1006
+ "time": "05:00",
1007
+ "weekday": 4,
1008
+ "year": 2019,
1009
+ },
1010
+ Object {
1011
+ "date": "2019-01-31",
1012
+ "day": 31,
1013
+ "future": false,
1014
+ "hasDay": true,
1015
+ "hasTime": true,
1016
+ "hour": 6,
1017
+ "minute": 0,
1018
+ "month": 1,
1019
+ "past": true,
1020
+ "present": false,
1021
+ "time": "06:00",
1022
+ "weekday": 4,
1023
+ "year": 2019,
1024
+ },
1025
+ Object {
1026
+ "date": "2019-01-31",
1027
+ "day": 31,
1028
+ "future": false,
1029
+ "hasDay": true,
1030
+ "hasTime": true,
1031
+ "hour": 7,
1032
+ "minute": 0,
1033
+ "month": 1,
1034
+ "past": true,
1035
+ "present": false,
1036
+ "time": "07:00",
1037
+ "weekday": 4,
1038
+ "year": 2019,
1039
+ },
1040
+ Object {
1041
+ "date": "2019-01-31",
1042
+ "day": 31,
1043
+ "future": false,
1044
+ "hasDay": true,
1045
+ "hasTime": true,
1046
+ "hour": 8,
1047
+ "minute": 0,
1048
+ "month": 1,
1049
+ "past": true,
1050
+ "present": false,
1051
+ "time": "08:00",
1052
+ "weekday": 4,
1053
+ "year": 2019,
1054
+ },
1055
+ Object {
1056
+ "date": "2019-01-31",
1057
+ "day": 31,
1058
+ "future": false,
1059
+ "hasDay": true,
1060
+ "hasTime": true,
1061
+ "hour": 9,
1062
+ "minute": 0,
1063
+ "month": 1,
1064
+ "past": true,
1065
+ "present": false,
1066
+ "time": "09:00",
1067
+ "weekday": 4,
1068
+ "year": 2019,
1069
+ },
1070
+ Object {
1071
+ "date": "2019-01-31",
1072
+ "day": 31,
1073
+ "future": false,
1074
+ "hasDay": true,
1075
+ "hasTime": true,
1076
+ "hour": 10,
1077
+ "minute": 0,
1078
+ "month": 1,
1079
+ "past": true,
1080
+ "present": false,
1081
+ "time": "10:00",
1082
+ "weekday": 4,
1083
+ "year": 2019,
1084
+ },
1085
+ Object {
1086
+ "date": "2019-01-31",
1087
+ "day": 31,
1088
+ "future": false,
1089
+ "hasDay": true,
1090
+ "hasTime": true,
1091
+ "hour": 11,
1092
+ "minute": 0,
1093
+ "month": 1,
1094
+ "past": true,
1095
+ "present": false,
1096
+ "time": "11:00",
1097
+ "weekday": 4,
1098
+ "year": 2019,
1099
+ },
1100
+ Object {
1101
+ "date": "2019-01-31",
1102
+ "day": 31,
1103
+ "future": false,
1104
+ "hasDay": true,
1105
+ "hasTime": true,
1106
+ "hour": 12,
1107
+ "minute": 0,
1108
+ "month": 1,
1109
+ "past": true,
1110
+ "present": false,
1111
+ "time": "12:00",
1112
+ "weekday": 4,
1113
+ "year": 2019,
1114
+ },
1115
+ Object {
1116
+ "date": "2019-01-31",
1117
+ "day": 31,
1118
+ "future": false,
1119
+ "hasDay": true,
1120
+ "hasTime": true,
1121
+ "hour": 13,
1122
+ "minute": 0,
1123
+ "month": 1,
1124
+ "past": true,
1125
+ "present": false,
1126
+ "time": "13:00",
1127
+ "weekday": 4,
1128
+ "year": 2019,
1129
+ },
1130
+ Object {
1131
+ "date": "2019-01-31",
1132
+ "day": 31,
1133
+ "future": false,
1134
+ "hasDay": true,
1135
+ "hasTime": true,
1136
+ "hour": 14,
1137
+ "minute": 0,
1138
+ "month": 1,
1139
+ "past": true,
1140
+ "present": false,
1141
+ "time": "14:00",
1142
+ "weekday": 4,
1143
+ "year": 2019,
1144
+ },
1145
+ Object {
1146
+ "date": "2019-01-31",
1147
+ "day": 31,
1148
+ "future": false,
1149
+ "hasDay": true,
1150
+ "hasTime": true,
1151
+ "hour": 15,
1152
+ "minute": 0,
1153
+ "month": 1,
1154
+ "past": true,
1155
+ "present": false,
1156
+ "time": "15:00",
1157
+ "weekday": 4,
1158
+ "year": 2019,
1159
+ },
1160
+ Object {
1161
+ "date": "2019-01-31",
1162
+ "day": 31,
1163
+ "future": false,
1164
+ "hasDay": true,
1165
+ "hasTime": true,
1166
+ "hour": 16,
1167
+ "minute": 0,
1168
+ "month": 1,
1169
+ "past": true,
1170
+ "present": false,
1171
+ "time": "16:00",
1172
+ "weekday": 4,
1173
+ "year": 2019,
1174
+ },
1175
+ Object {
1176
+ "date": "2019-01-31",
1177
+ "day": 31,
1178
+ "future": false,
1179
+ "hasDay": true,
1180
+ "hasTime": true,
1181
+ "hour": 17,
1182
+ "minute": 0,
1183
+ "month": 1,
1184
+ "past": true,
1185
+ "present": false,
1186
+ "time": "17:00",
1187
+ "weekday": 4,
1188
+ "year": 2019,
1189
+ },
1190
+ Object {
1191
+ "date": "2019-01-31",
1192
+ "day": 31,
1193
+ "future": false,
1194
+ "hasDay": true,
1195
+ "hasTime": true,
1196
+ "hour": 18,
1197
+ "minute": 0,
1198
+ "month": 1,
1199
+ "past": true,
1200
+ "present": false,
1201
+ "time": "18:00",
1202
+ "weekday": 4,
1203
+ "year": 2019,
1204
+ },
1205
+ Object {
1206
+ "date": "2019-01-31",
1207
+ "day": 31,
1208
+ "future": false,
1209
+ "hasDay": true,
1210
+ "hasTime": true,
1211
+ "hour": 19,
1212
+ "minute": 0,
1213
+ "month": 1,
1214
+ "past": true,
1215
+ "present": false,
1216
+ "time": "19:00",
1217
+ "weekday": 4,
1218
+ "year": 2019,
1219
+ },
1220
+ Object {
1221
+ "date": "2019-01-31",
1222
+ "day": 31,
1223
+ "future": false,
1224
+ "hasDay": true,
1225
+ "hasTime": true,
1226
+ "hour": 20,
1227
+ "minute": 0,
1228
+ "month": 1,
1229
+ "past": true,
1230
+ "present": false,
1231
+ "time": "20:00",
1232
+ "weekday": 4,
1233
+ "year": 2019,
1234
+ },
1235
+ Object {
1236
+ "date": "2019-01-31",
1237
+ "day": 31,
1238
+ "future": false,
1239
+ "hasDay": true,
1240
+ "hasTime": true,
1241
+ "hour": 21,
1242
+ "minute": 0,
1243
+ "month": 1,
1244
+ "past": true,
1245
+ "present": false,
1246
+ "time": "21:00",
1247
+ "weekday": 4,
1248
+ "year": 2019,
1249
+ },
1250
+ Object {
1251
+ "date": "2019-01-31",
1252
+ "day": 31,
1253
+ "future": false,
1254
+ "hasDay": true,
1255
+ "hasTime": true,
1256
+ "hour": 22,
1257
+ "minute": 0,
1258
+ "month": 1,
1259
+ "past": true,
1260
+ "present": false,
1261
+ "time": "22:00",
1262
+ "weekday": 4,
1263
+ "year": 2019,
1264
+ },
1265
+ Object {
1266
+ "date": "2019-01-31",
1267
+ "day": 31,
1268
+ "future": false,
1269
+ "hasDay": true,
1270
+ "hasTime": true,
1271
+ "hour": 23,
1272
+ "minute": 0,
1273
+ "month": 1,
1274
+ "past": true,
1275
+ "present": false,
1276
+ "time": "23:00",
1277
+ "weekday": 4,
1278
+ "year": 2019,
1279
+ },
1280
+ ],
1281
+ Array [
1282
+ Object {
1283
+ "date": "2019-02-01",
1284
+ "day": 1,
1285
+ "future": false,
1286
+ "hasDay": true,
1287
+ "hasTime": true,
1288
+ "hour": 0,
1289
+ "minute": 0,
1290
+ "month": 2,
1291
+ "past": true,
1292
+ "present": false,
1293
+ "time": "00:00",
1294
+ "weekday": 5,
1295
+ "year": 2019,
1296
+ },
1297
+ Object {
1298
+ "date": "2019-02-01",
1299
+ "day": 1,
1300
+ "future": false,
1301
+ "hasDay": true,
1302
+ "hasTime": true,
1303
+ "hour": 1,
1304
+ "minute": 0,
1305
+ "month": 2,
1306
+ "past": true,
1307
+ "present": false,
1308
+ "time": "01:00",
1309
+ "weekday": 5,
1310
+ "year": 2019,
1311
+ },
1312
+ Object {
1313
+ "date": "2019-02-01",
1314
+ "day": 1,
1315
+ "future": false,
1316
+ "hasDay": true,
1317
+ "hasTime": true,
1318
+ "hour": 2,
1319
+ "minute": 0,
1320
+ "month": 2,
1321
+ "past": true,
1322
+ "present": false,
1323
+ "time": "02:00",
1324
+ "weekday": 5,
1325
+ "year": 2019,
1326
+ },
1327
+ Object {
1328
+ "date": "2019-02-01",
1329
+ "day": 1,
1330
+ "future": false,
1331
+ "hasDay": true,
1332
+ "hasTime": true,
1333
+ "hour": 3,
1334
+ "minute": 0,
1335
+ "month": 2,
1336
+ "past": true,
1337
+ "present": false,
1338
+ "time": "03:00",
1339
+ "weekday": 5,
1340
+ "year": 2019,
1341
+ },
1342
+ Object {
1343
+ "date": "2019-02-01",
1344
+ "day": 1,
1345
+ "future": false,
1346
+ "hasDay": true,
1347
+ "hasTime": true,
1348
+ "hour": 4,
1349
+ "minute": 0,
1350
+ "month": 2,
1351
+ "past": true,
1352
+ "present": false,
1353
+ "time": "04:00",
1354
+ "weekday": 5,
1355
+ "year": 2019,
1356
+ },
1357
+ Object {
1358
+ "date": "2019-02-01",
1359
+ "day": 1,
1360
+ "future": false,
1361
+ "hasDay": true,
1362
+ "hasTime": true,
1363
+ "hour": 5,
1364
+ "minute": 0,
1365
+ "month": 2,
1366
+ "past": true,
1367
+ "present": false,
1368
+ "time": "05:00",
1369
+ "weekday": 5,
1370
+ "year": 2019,
1371
+ },
1372
+ Object {
1373
+ "date": "2019-02-01",
1374
+ "day": 1,
1375
+ "future": false,
1376
+ "hasDay": true,
1377
+ "hasTime": true,
1378
+ "hour": 6,
1379
+ "minute": 0,
1380
+ "month": 2,
1381
+ "past": true,
1382
+ "present": false,
1383
+ "time": "06:00",
1384
+ "weekday": 5,
1385
+ "year": 2019,
1386
+ },
1387
+ Object {
1388
+ "date": "2019-02-01",
1389
+ "day": 1,
1390
+ "future": false,
1391
+ "hasDay": true,
1392
+ "hasTime": true,
1393
+ "hour": 7,
1394
+ "minute": 0,
1395
+ "month": 2,
1396
+ "past": true,
1397
+ "present": false,
1398
+ "time": "07:00",
1399
+ "weekday": 5,
1400
+ "year": 2019,
1401
+ },
1402
+ Object {
1403
+ "date": "2019-02-01",
1404
+ "day": 1,
1405
+ "future": false,
1406
+ "hasDay": true,
1407
+ "hasTime": true,
1408
+ "hour": 8,
1409
+ "minute": 0,
1410
+ "month": 2,
1411
+ "past": true,
1412
+ "present": false,
1413
+ "time": "08:00",
1414
+ "weekday": 5,
1415
+ "year": 2019,
1416
+ },
1417
+ Object {
1418
+ "date": "2019-02-01",
1419
+ "day": 1,
1420
+ "future": false,
1421
+ "hasDay": true,
1422
+ "hasTime": true,
1423
+ "hour": 9,
1424
+ "minute": 0,
1425
+ "month": 2,
1426
+ "past": true,
1427
+ "present": false,
1428
+ "time": "09:00",
1429
+ "weekday": 5,
1430
+ "year": 2019,
1431
+ },
1432
+ Object {
1433
+ "date": "2019-02-01",
1434
+ "day": 1,
1435
+ "future": false,
1436
+ "hasDay": true,
1437
+ "hasTime": true,
1438
+ "hour": 10,
1439
+ "minute": 0,
1440
+ "month": 2,
1441
+ "past": true,
1442
+ "present": false,
1443
+ "time": "10:00",
1444
+ "weekday": 5,
1445
+ "year": 2019,
1446
+ },
1447
+ Object {
1448
+ "date": "2019-02-01",
1449
+ "day": 1,
1450
+ "future": false,
1451
+ "hasDay": true,
1452
+ "hasTime": true,
1453
+ "hour": 11,
1454
+ "minute": 0,
1455
+ "month": 2,
1456
+ "past": true,
1457
+ "present": false,
1458
+ "time": "11:00",
1459
+ "weekday": 5,
1460
+ "year": 2019,
1461
+ },
1462
+ Object {
1463
+ "date": "2019-02-01",
1464
+ "day": 1,
1465
+ "future": false,
1466
+ "hasDay": true,
1467
+ "hasTime": true,
1468
+ "hour": 12,
1469
+ "minute": 0,
1470
+ "month": 2,
1471
+ "past": true,
1472
+ "present": false,
1473
+ "time": "12:00",
1474
+ "weekday": 5,
1475
+ "year": 2019,
1476
+ },
1477
+ Object {
1478
+ "date": "2019-02-01",
1479
+ "day": 1,
1480
+ "future": false,
1481
+ "hasDay": true,
1482
+ "hasTime": true,
1483
+ "hour": 13,
1484
+ "minute": 0,
1485
+ "month": 2,
1486
+ "past": true,
1487
+ "present": false,
1488
+ "time": "13:00",
1489
+ "weekday": 5,
1490
+ "year": 2019,
1491
+ },
1492
+ Object {
1493
+ "date": "2019-02-01",
1494
+ "day": 1,
1495
+ "future": false,
1496
+ "hasDay": true,
1497
+ "hasTime": true,
1498
+ "hour": 14,
1499
+ "minute": 0,
1500
+ "month": 2,
1501
+ "past": true,
1502
+ "present": false,
1503
+ "time": "14:00",
1504
+ "weekday": 5,
1505
+ "year": 2019,
1506
+ },
1507
+ Object {
1508
+ "date": "2019-02-01",
1509
+ "day": 1,
1510
+ "future": false,
1511
+ "hasDay": true,
1512
+ "hasTime": true,
1513
+ "hour": 15,
1514
+ "minute": 0,
1515
+ "month": 2,
1516
+ "past": true,
1517
+ "present": false,
1518
+ "time": "15:00",
1519
+ "weekday": 5,
1520
+ "year": 2019,
1521
+ },
1522
+ Object {
1523
+ "date": "2019-02-01",
1524
+ "day": 1,
1525
+ "future": false,
1526
+ "hasDay": true,
1527
+ "hasTime": true,
1528
+ "hour": 16,
1529
+ "minute": 0,
1530
+ "month": 2,
1531
+ "past": true,
1532
+ "present": false,
1533
+ "time": "16:00",
1534
+ "weekday": 5,
1535
+ "year": 2019,
1536
+ },
1537
+ Object {
1538
+ "date": "2019-02-01",
1539
+ "day": 1,
1540
+ "future": false,
1541
+ "hasDay": true,
1542
+ "hasTime": true,
1543
+ "hour": 17,
1544
+ "minute": 0,
1545
+ "month": 2,
1546
+ "past": true,
1547
+ "present": false,
1548
+ "time": "17:00",
1549
+ "weekday": 5,
1550
+ "year": 2019,
1551
+ },
1552
+ Object {
1553
+ "date": "2019-02-01",
1554
+ "day": 1,
1555
+ "future": false,
1556
+ "hasDay": true,
1557
+ "hasTime": true,
1558
+ "hour": 18,
1559
+ "minute": 0,
1560
+ "month": 2,
1561
+ "past": true,
1562
+ "present": false,
1563
+ "time": "18:00",
1564
+ "weekday": 5,
1565
+ "year": 2019,
1566
+ },
1567
+ Object {
1568
+ "date": "2019-02-01",
1569
+ "day": 1,
1570
+ "future": false,
1571
+ "hasDay": true,
1572
+ "hasTime": true,
1573
+ "hour": 19,
1574
+ "minute": 0,
1575
+ "month": 2,
1576
+ "past": true,
1577
+ "present": false,
1578
+ "time": "19:00",
1579
+ "weekday": 5,
1580
+ "year": 2019,
1581
+ },
1582
+ Object {
1583
+ "date": "2019-02-01",
1584
+ "day": 1,
1585
+ "future": false,
1586
+ "hasDay": true,
1587
+ "hasTime": true,
1588
+ "hour": 20,
1589
+ "minute": 0,
1590
+ "month": 2,
1591
+ "past": true,
1592
+ "present": false,
1593
+ "time": "20:00",
1594
+ "weekday": 5,
1595
+ "year": 2019,
1596
+ },
1597
+ Object {
1598
+ "date": "2019-02-01",
1599
+ "day": 1,
1600
+ "future": false,
1601
+ "hasDay": true,
1602
+ "hasTime": true,
1603
+ "hour": 21,
1604
+ "minute": 0,
1605
+ "month": 2,
1606
+ "past": true,
1607
+ "present": false,
1608
+ "time": "21:00",
1609
+ "weekday": 5,
1610
+ "year": 2019,
1611
+ },
1612
+ Object {
1613
+ "date": "2019-02-01",
1614
+ "day": 1,
1615
+ "future": false,
1616
+ "hasDay": true,
1617
+ "hasTime": true,
1618
+ "hour": 22,
1619
+ "minute": 0,
1620
+ "month": 2,
1621
+ "past": true,
1622
+ "present": false,
1623
+ "time": "22:00",
1624
+ "weekday": 5,
1625
+ "year": 2019,
1626
+ },
1627
+ Object {
1628
+ "date": "2019-02-01",
1629
+ "day": 1,
1630
+ "future": false,
1631
+ "hasDay": true,
1632
+ "hasTime": true,
1633
+ "hour": 23,
1634
+ "minute": 0,
1635
+ "month": 2,
1636
+ "past": true,
1637
+ "present": false,
1638
+ "time": "23:00",
1639
+ "weekday": 5,
1640
+ "year": 2019,
1641
+ },
1642
+ ],
1643
+ Array [
1644
+ Object {
1645
+ "date": "2019-02-02",
1646
+ "day": 2,
1647
+ "future": false,
1648
+ "hasDay": true,
1649
+ "hasTime": true,
1650
+ "hour": 0,
1651
+ "minute": 0,
1652
+ "month": 2,
1653
+ "past": true,
1654
+ "present": false,
1655
+ "time": "00:00",
1656
+ "weekday": 6,
1657
+ "year": 2019,
1658
+ },
1659
+ Object {
1660
+ "date": "2019-02-02",
1661
+ "day": 2,
1662
+ "future": false,
1663
+ "hasDay": true,
1664
+ "hasTime": true,
1665
+ "hour": 1,
1666
+ "minute": 0,
1667
+ "month": 2,
1668
+ "past": true,
1669
+ "present": false,
1670
+ "time": "01:00",
1671
+ "weekday": 6,
1672
+ "year": 2019,
1673
+ },
1674
+ Object {
1675
+ "date": "2019-02-02",
1676
+ "day": 2,
1677
+ "future": false,
1678
+ "hasDay": true,
1679
+ "hasTime": true,
1680
+ "hour": 2,
1681
+ "minute": 0,
1682
+ "month": 2,
1683
+ "past": true,
1684
+ "present": false,
1685
+ "time": "02:00",
1686
+ "weekday": 6,
1687
+ "year": 2019,
1688
+ },
1689
+ Object {
1690
+ "date": "2019-02-02",
1691
+ "day": 2,
1692
+ "future": false,
1693
+ "hasDay": true,
1694
+ "hasTime": true,
1695
+ "hour": 3,
1696
+ "minute": 0,
1697
+ "month": 2,
1698
+ "past": true,
1699
+ "present": false,
1700
+ "time": "03:00",
1701
+ "weekday": 6,
1702
+ "year": 2019,
1703
+ },
1704
+ Object {
1705
+ "date": "2019-02-02",
1706
+ "day": 2,
1707
+ "future": false,
1708
+ "hasDay": true,
1709
+ "hasTime": true,
1710
+ "hour": 4,
1711
+ "minute": 0,
1712
+ "month": 2,
1713
+ "past": true,
1714
+ "present": false,
1715
+ "time": "04:00",
1716
+ "weekday": 6,
1717
+ "year": 2019,
1718
+ },
1719
+ Object {
1720
+ "date": "2019-02-02",
1721
+ "day": 2,
1722
+ "future": false,
1723
+ "hasDay": true,
1724
+ "hasTime": true,
1725
+ "hour": 5,
1726
+ "minute": 0,
1727
+ "month": 2,
1728
+ "past": true,
1729
+ "present": false,
1730
+ "time": "05:00",
1731
+ "weekday": 6,
1732
+ "year": 2019,
1733
+ },
1734
+ Object {
1735
+ "date": "2019-02-02",
1736
+ "day": 2,
1737
+ "future": false,
1738
+ "hasDay": true,
1739
+ "hasTime": true,
1740
+ "hour": 6,
1741
+ "minute": 0,
1742
+ "month": 2,
1743
+ "past": true,
1744
+ "present": false,
1745
+ "time": "06:00",
1746
+ "weekday": 6,
1747
+ "year": 2019,
1748
+ },
1749
+ Object {
1750
+ "date": "2019-02-02",
1751
+ "day": 2,
1752
+ "future": false,
1753
+ "hasDay": true,
1754
+ "hasTime": true,
1755
+ "hour": 7,
1756
+ "minute": 0,
1757
+ "month": 2,
1758
+ "past": true,
1759
+ "present": false,
1760
+ "time": "07:00",
1761
+ "weekday": 6,
1762
+ "year": 2019,
1763
+ },
1764
+ Object {
1765
+ "date": "2019-02-02",
1766
+ "day": 2,
1767
+ "future": false,
1768
+ "hasDay": true,
1769
+ "hasTime": true,
1770
+ "hour": 8,
1771
+ "minute": 0,
1772
+ "month": 2,
1773
+ "past": true,
1774
+ "present": false,
1775
+ "time": "08:00",
1776
+ "weekday": 6,
1777
+ "year": 2019,
1778
+ },
1779
+ Object {
1780
+ "date": "2019-02-02",
1781
+ "day": 2,
1782
+ "future": false,
1783
+ "hasDay": true,
1784
+ "hasTime": true,
1785
+ "hour": 9,
1786
+ "minute": 0,
1787
+ "month": 2,
1788
+ "past": true,
1789
+ "present": false,
1790
+ "time": "09:00",
1791
+ "weekday": 6,
1792
+ "year": 2019,
1793
+ },
1794
+ Object {
1795
+ "date": "2019-02-02",
1796
+ "day": 2,
1797
+ "future": false,
1798
+ "hasDay": true,
1799
+ "hasTime": true,
1800
+ "hour": 10,
1801
+ "minute": 0,
1802
+ "month": 2,
1803
+ "past": true,
1804
+ "present": false,
1805
+ "time": "10:00",
1806
+ "weekday": 6,
1807
+ "year": 2019,
1808
+ },
1809
+ Object {
1810
+ "date": "2019-02-02",
1811
+ "day": 2,
1812
+ "future": false,
1813
+ "hasDay": true,
1814
+ "hasTime": true,
1815
+ "hour": 11,
1816
+ "minute": 0,
1817
+ "month": 2,
1818
+ "past": true,
1819
+ "present": false,
1820
+ "time": "11:00",
1821
+ "weekday": 6,
1822
+ "year": 2019,
1823
+ },
1824
+ Object {
1825
+ "date": "2019-02-02",
1826
+ "day": 2,
1827
+ "future": false,
1828
+ "hasDay": true,
1829
+ "hasTime": true,
1830
+ "hour": 12,
1831
+ "minute": 0,
1832
+ "month": 2,
1833
+ "past": true,
1834
+ "present": false,
1835
+ "time": "12:00",
1836
+ "weekday": 6,
1837
+ "year": 2019,
1838
+ },
1839
+ Object {
1840
+ "date": "2019-02-02",
1841
+ "day": 2,
1842
+ "future": false,
1843
+ "hasDay": true,
1844
+ "hasTime": true,
1845
+ "hour": 13,
1846
+ "minute": 0,
1847
+ "month": 2,
1848
+ "past": true,
1849
+ "present": false,
1850
+ "time": "13:00",
1851
+ "weekday": 6,
1852
+ "year": 2019,
1853
+ },
1854
+ Object {
1855
+ "date": "2019-02-02",
1856
+ "day": 2,
1857
+ "future": false,
1858
+ "hasDay": true,
1859
+ "hasTime": true,
1860
+ "hour": 14,
1861
+ "minute": 0,
1862
+ "month": 2,
1863
+ "past": true,
1864
+ "present": false,
1865
+ "time": "14:00",
1866
+ "weekday": 6,
1867
+ "year": 2019,
1868
+ },
1869
+ Object {
1870
+ "date": "2019-02-02",
1871
+ "day": 2,
1872
+ "future": false,
1873
+ "hasDay": true,
1874
+ "hasTime": true,
1875
+ "hour": 15,
1876
+ "minute": 0,
1877
+ "month": 2,
1878
+ "past": true,
1879
+ "present": false,
1880
+ "time": "15:00",
1881
+ "weekday": 6,
1882
+ "year": 2019,
1883
+ },
1884
+ Object {
1885
+ "date": "2019-02-02",
1886
+ "day": 2,
1887
+ "future": false,
1888
+ "hasDay": true,
1889
+ "hasTime": true,
1890
+ "hour": 16,
1891
+ "minute": 0,
1892
+ "month": 2,
1893
+ "past": true,
1894
+ "present": false,
1895
+ "time": "16:00",
1896
+ "weekday": 6,
1897
+ "year": 2019,
1898
+ },
1899
+ Object {
1900
+ "date": "2019-02-02",
1901
+ "day": 2,
1902
+ "future": false,
1903
+ "hasDay": true,
1904
+ "hasTime": true,
1905
+ "hour": 17,
1906
+ "minute": 0,
1907
+ "month": 2,
1908
+ "past": true,
1909
+ "present": false,
1910
+ "time": "17:00",
1911
+ "weekday": 6,
1912
+ "year": 2019,
1913
+ },
1914
+ Object {
1915
+ "date": "2019-02-02",
1916
+ "day": 2,
1917
+ "future": false,
1918
+ "hasDay": true,
1919
+ "hasTime": true,
1920
+ "hour": 18,
1921
+ "minute": 0,
1922
+ "month": 2,
1923
+ "past": true,
1924
+ "present": false,
1925
+ "time": "18:00",
1926
+ "weekday": 6,
1927
+ "year": 2019,
1928
+ },
1929
+ Object {
1930
+ "date": "2019-02-02",
1931
+ "day": 2,
1932
+ "future": false,
1933
+ "hasDay": true,
1934
+ "hasTime": true,
1935
+ "hour": 19,
1936
+ "minute": 0,
1937
+ "month": 2,
1938
+ "past": true,
1939
+ "present": false,
1940
+ "time": "19:00",
1941
+ "weekday": 6,
1942
+ "year": 2019,
1943
+ },
1944
+ Object {
1945
+ "date": "2019-02-02",
1946
+ "day": 2,
1947
+ "future": false,
1948
+ "hasDay": true,
1949
+ "hasTime": true,
1950
+ "hour": 20,
1951
+ "minute": 0,
1952
+ "month": 2,
1953
+ "past": true,
1954
+ "present": false,
1955
+ "time": "20:00",
1956
+ "weekday": 6,
1957
+ "year": 2019,
1958
+ },
1959
+ Object {
1960
+ "date": "2019-02-02",
1961
+ "day": 2,
1962
+ "future": false,
1963
+ "hasDay": true,
1964
+ "hasTime": true,
1965
+ "hour": 21,
1966
+ "minute": 0,
1967
+ "month": 2,
1968
+ "past": true,
1969
+ "present": false,
1970
+ "time": "21:00",
1971
+ "weekday": 6,
1972
+ "year": 2019,
1973
+ },
1974
+ Object {
1975
+ "date": "2019-02-02",
1976
+ "day": 2,
1977
+ "future": false,
1978
+ "hasDay": true,
1979
+ "hasTime": true,
1980
+ "hour": 22,
1981
+ "minute": 0,
1982
+ "month": 2,
1983
+ "past": true,
1984
+ "present": false,
1985
+ "time": "22:00",
1986
+ "weekday": 6,
1987
+ "year": 2019,
1988
+ },
1989
+ Object {
1990
+ "date": "2019-02-02",
1991
+ "day": 2,
1992
+ "future": false,
1993
+ "hasDay": true,
1994
+ "hasTime": true,
1995
+ "hour": 23,
1996
+ "minute": 0,
1997
+ "month": 2,
1998
+ "past": true,
1999
+ "present": false,
2000
+ "time": "23:00",
2001
+ "weekday": 6,
2002
+ "year": 2019,
2003
+ },
2004
+ ],
2005
+ Array [
2006
+ Object {
2007
+ "date": "2019-02-03",
2008
+ "day": 3,
2009
+ "future": false,
2010
+ "hasDay": true,
2011
+ "hasTime": true,
2012
+ "hour": 0,
2013
+ "minute": 0,
2014
+ "month": 2,
2015
+ "past": true,
2016
+ "present": false,
2017
+ "time": "00:00",
2018
+ "weekday": 0,
2019
+ "year": 2019,
2020
+ },
2021
+ Object {
2022
+ "date": "2019-02-03",
2023
+ "day": 3,
2024
+ "future": false,
2025
+ "hasDay": true,
2026
+ "hasTime": true,
2027
+ "hour": 1,
2028
+ "minute": 0,
2029
+ "month": 2,
2030
+ "past": true,
2031
+ "present": false,
2032
+ "time": "01:00",
2033
+ "weekday": 0,
2034
+ "year": 2019,
2035
+ },
2036
+ Object {
2037
+ "date": "2019-02-03",
2038
+ "day": 3,
2039
+ "future": false,
2040
+ "hasDay": true,
2041
+ "hasTime": true,
2042
+ "hour": 2,
2043
+ "minute": 0,
2044
+ "month": 2,
2045
+ "past": true,
2046
+ "present": false,
2047
+ "time": "02:00",
2048
+ "weekday": 0,
2049
+ "year": 2019,
2050
+ },
2051
+ Object {
2052
+ "date": "2019-02-03",
2053
+ "day": 3,
2054
+ "future": false,
2055
+ "hasDay": true,
2056
+ "hasTime": true,
2057
+ "hour": 3,
2058
+ "minute": 0,
2059
+ "month": 2,
2060
+ "past": true,
2061
+ "present": false,
2062
+ "time": "03:00",
2063
+ "weekday": 0,
2064
+ "year": 2019,
2065
+ },
2066
+ Object {
2067
+ "date": "2019-02-03",
2068
+ "day": 3,
2069
+ "future": false,
2070
+ "hasDay": true,
2071
+ "hasTime": true,
2072
+ "hour": 4,
2073
+ "minute": 0,
2074
+ "month": 2,
2075
+ "past": true,
2076
+ "present": false,
2077
+ "time": "04:00",
2078
+ "weekday": 0,
2079
+ "year": 2019,
2080
+ },
2081
+ Object {
2082
+ "date": "2019-02-03",
2083
+ "day": 3,
2084
+ "future": false,
2085
+ "hasDay": true,
2086
+ "hasTime": true,
2087
+ "hour": 5,
2088
+ "minute": 0,
2089
+ "month": 2,
2090
+ "past": true,
2091
+ "present": false,
2092
+ "time": "05:00",
2093
+ "weekday": 0,
2094
+ "year": 2019,
2095
+ },
2096
+ Object {
2097
+ "date": "2019-02-03",
2098
+ "day": 3,
2099
+ "future": false,
2100
+ "hasDay": true,
2101
+ "hasTime": true,
2102
+ "hour": 6,
2103
+ "minute": 0,
2104
+ "month": 2,
2105
+ "past": true,
2106
+ "present": false,
2107
+ "time": "06:00",
2108
+ "weekday": 0,
2109
+ "year": 2019,
2110
+ },
2111
+ Object {
2112
+ "date": "2019-02-03",
2113
+ "day": 3,
2114
+ "future": false,
2115
+ "hasDay": true,
2116
+ "hasTime": true,
2117
+ "hour": 7,
2118
+ "minute": 0,
2119
+ "month": 2,
2120
+ "past": true,
2121
+ "present": false,
2122
+ "time": "07:00",
2123
+ "weekday": 0,
2124
+ "year": 2019,
2125
+ },
2126
+ Object {
2127
+ "date": "2019-02-03",
2128
+ "day": 3,
2129
+ "future": false,
2130
+ "hasDay": true,
2131
+ "hasTime": true,
2132
+ "hour": 8,
2133
+ "minute": 0,
2134
+ "month": 2,
2135
+ "past": true,
2136
+ "present": false,
2137
+ "time": "08:00",
2138
+ "weekday": 0,
2139
+ "year": 2019,
2140
+ },
2141
+ Object {
2142
+ "date": "2019-02-03",
2143
+ "day": 3,
2144
+ "future": false,
2145
+ "hasDay": true,
2146
+ "hasTime": true,
2147
+ "hour": 9,
2148
+ "minute": 0,
2149
+ "month": 2,
2150
+ "past": true,
2151
+ "present": false,
2152
+ "time": "09:00",
2153
+ "weekday": 0,
2154
+ "year": 2019,
2155
+ },
2156
+ Object {
2157
+ "date": "2019-02-03",
2158
+ "day": 3,
2159
+ "future": false,
2160
+ "hasDay": true,
2161
+ "hasTime": true,
2162
+ "hour": 10,
2163
+ "minute": 0,
2164
+ "month": 2,
2165
+ "past": true,
2166
+ "present": false,
2167
+ "time": "10:00",
2168
+ "weekday": 0,
2169
+ "year": 2019,
2170
+ },
2171
+ Object {
2172
+ "date": "2019-02-03",
2173
+ "day": 3,
2174
+ "future": false,
2175
+ "hasDay": true,
2176
+ "hasTime": true,
2177
+ "hour": 11,
2178
+ "minute": 0,
2179
+ "month": 2,
2180
+ "past": true,
2181
+ "present": false,
2182
+ "time": "11:00",
2183
+ "weekday": 0,
2184
+ "year": 2019,
2185
+ },
2186
+ Object {
2187
+ "date": "2019-02-03",
2188
+ "day": 3,
2189
+ "future": false,
2190
+ "hasDay": true,
2191
+ "hasTime": true,
2192
+ "hour": 12,
2193
+ "minute": 0,
2194
+ "month": 2,
2195
+ "past": true,
2196
+ "present": false,
2197
+ "time": "12:00",
2198
+ "weekday": 0,
2199
+ "year": 2019,
2200
+ },
2201
+ Object {
2202
+ "date": "2019-02-03",
2203
+ "day": 3,
2204
+ "future": false,
2205
+ "hasDay": true,
2206
+ "hasTime": true,
2207
+ "hour": 13,
2208
+ "minute": 0,
2209
+ "month": 2,
2210
+ "past": true,
2211
+ "present": false,
2212
+ "time": "13:00",
2213
+ "weekday": 0,
2214
+ "year": 2019,
2215
+ },
2216
+ Object {
2217
+ "date": "2019-02-03",
2218
+ "day": 3,
2219
+ "future": false,
2220
+ "hasDay": true,
2221
+ "hasTime": true,
2222
+ "hour": 14,
2223
+ "minute": 0,
2224
+ "month": 2,
2225
+ "past": true,
2226
+ "present": false,
2227
+ "time": "14:00",
2228
+ "weekday": 0,
2229
+ "year": 2019,
2230
+ },
2231
+ Object {
2232
+ "date": "2019-02-03",
2233
+ "day": 3,
2234
+ "future": false,
2235
+ "hasDay": true,
2236
+ "hasTime": true,
2237
+ "hour": 15,
2238
+ "minute": 0,
2239
+ "month": 2,
2240
+ "past": true,
2241
+ "present": false,
2242
+ "time": "15:00",
2243
+ "weekday": 0,
2244
+ "year": 2019,
2245
+ },
2246
+ Object {
2247
+ "date": "2019-02-03",
2248
+ "day": 3,
2249
+ "future": false,
2250
+ "hasDay": true,
2251
+ "hasTime": true,
2252
+ "hour": 16,
2253
+ "minute": 0,
2254
+ "month": 2,
2255
+ "past": true,
2256
+ "present": false,
2257
+ "time": "16:00",
2258
+ "weekday": 0,
2259
+ "year": 2019,
2260
+ },
2261
+ Object {
2262
+ "date": "2019-02-03",
2263
+ "day": 3,
2264
+ "future": false,
2265
+ "hasDay": true,
2266
+ "hasTime": true,
2267
+ "hour": 17,
2268
+ "minute": 0,
2269
+ "month": 2,
2270
+ "past": true,
2271
+ "present": false,
2272
+ "time": "17:00",
2273
+ "weekday": 0,
2274
+ "year": 2019,
2275
+ },
2276
+ Object {
2277
+ "date": "2019-02-03",
2278
+ "day": 3,
2279
+ "future": false,
2280
+ "hasDay": true,
2281
+ "hasTime": true,
2282
+ "hour": 18,
2283
+ "minute": 0,
2284
+ "month": 2,
2285
+ "past": true,
2286
+ "present": false,
2287
+ "time": "18:00",
2288
+ "weekday": 0,
2289
+ "year": 2019,
2290
+ },
2291
+ Object {
2292
+ "date": "2019-02-03",
2293
+ "day": 3,
2294
+ "future": false,
2295
+ "hasDay": true,
2296
+ "hasTime": true,
2297
+ "hour": 19,
2298
+ "minute": 0,
2299
+ "month": 2,
2300
+ "past": true,
2301
+ "present": false,
2302
+ "time": "19:00",
2303
+ "weekday": 0,
2304
+ "year": 2019,
2305
+ },
2306
+ Object {
2307
+ "date": "2019-02-03",
2308
+ "day": 3,
2309
+ "future": false,
2310
+ "hasDay": true,
2311
+ "hasTime": true,
2312
+ "hour": 20,
2313
+ "minute": 0,
2314
+ "month": 2,
2315
+ "past": true,
2316
+ "present": false,
2317
+ "time": "20:00",
2318
+ "weekday": 0,
2319
+ "year": 2019,
2320
+ },
2321
+ Object {
2322
+ "date": "2019-02-03",
2323
+ "day": 3,
2324
+ "future": false,
2325
+ "hasDay": true,
2326
+ "hasTime": true,
2327
+ "hour": 21,
2328
+ "minute": 0,
2329
+ "month": 2,
2330
+ "past": true,
2331
+ "present": false,
2332
+ "time": "21:00",
2333
+ "weekday": 0,
2334
+ "year": 2019,
2335
+ },
2336
+ Object {
2337
+ "date": "2019-02-03",
2338
+ "day": 3,
2339
+ "future": false,
2340
+ "hasDay": true,
2341
+ "hasTime": true,
2342
+ "hour": 22,
2343
+ "minute": 0,
2344
+ "month": 2,
2345
+ "past": true,
2346
+ "present": false,
2347
+ "time": "22:00",
2348
+ "weekday": 0,
2349
+ "year": 2019,
2350
+ },
2351
+ Object {
2352
+ "date": "2019-02-03",
2353
+ "day": 3,
2354
+ "future": false,
2355
+ "hasDay": true,
2356
+ "hasTime": true,
2357
+ "hour": 23,
2358
+ "minute": 0,
2359
+ "month": 2,
2360
+ "past": true,
2361
+ "present": false,
2362
+ "time": "23:00",
2363
+ "weekday": 0,
2364
+ "year": 2019,
2365
+ },
2366
+ ],
2367
+ Array [
2368
+ Object {
2369
+ "date": "2019-02-04",
2370
+ "day": 4,
2371
+ "future": false,
2372
+ "hasDay": true,
2373
+ "hasTime": true,
2374
+ "hour": 0,
2375
+ "minute": 0,
2376
+ "month": 2,
2377
+ "past": true,
2378
+ "present": false,
2379
+ "time": "00:00",
2380
+ "weekday": 1,
2381
+ "year": 2019,
2382
+ },
2383
+ Object {
2384
+ "date": "2019-02-04",
2385
+ "day": 4,
2386
+ "future": false,
2387
+ "hasDay": true,
2388
+ "hasTime": true,
2389
+ "hour": 1,
2390
+ "minute": 0,
2391
+ "month": 2,
2392
+ "past": true,
2393
+ "present": false,
2394
+ "time": "01:00",
2395
+ "weekday": 1,
2396
+ "year": 2019,
2397
+ },
2398
+ Object {
2399
+ "date": "2019-02-04",
2400
+ "day": 4,
2401
+ "future": false,
2402
+ "hasDay": true,
2403
+ "hasTime": true,
2404
+ "hour": 2,
2405
+ "minute": 0,
2406
+ "month": 2,
2407
+ "past": true,
2408
+ "present": false,
2409
+ "time": "02:00",
2410
+ "weekday": 1,
2411
+ "year": 2019,
2412
+ },
2413
+ Object {
2414
+ "date": "2019-02-04",
2415
+ "day": 4,
2416
+ "future": false,
2417
+ "hasDay": true,
2418
+ "hasTime": true,
2419
+ "hour": 3,
2420
+ "minute": 0,
2421
+ "month": 2,
2422
+ "past": true,
2423
+ "present": false,
2424
+ "time": "03:00",
2425
+ "weekday": 1,
2426
+ "year": 2019,
2427
+ },
2428
+ Object {
2429
+ "date": "2019-02-04",
2430
+ "day": 4,
2431
+ "future": false,
2432
+ "hasDay": true,
2433
+ "hasTime": true,
2434
+ "hour": 4,
2435
+ "minute": 0,
2436
+ "month": 2,
2437
+ "past": true,
2438
+ "present": false,
2439
+ "time": "04:00",
2440
+ "weekday": 1,
2441
+ "year": 2019,
2442
+ },
2443
+ Object {
2444
+ "date": "2019-02-04",
2445
+ "day": 4,
2446
+ "future": false,
2447
+ "hasDay": true,
2448
+ "hasTime": true,
2449
+ "hour": 5,
2450
+ "minute": 0,
2451
+ "month": 2,
2452
+ "past": true,
2453
+ "present": false,
2454
+ "time": "05:00",
2455
+ "weekday": 1,
2456
+ "year": 2019,
2457
+ },
2458
+ Object {
2459
+ "date": "2019-02-04",
2460
+ "day": 4,
2461
+ "future": false,
2462
+ "hasDay": true,
2463
+ "hasTime": true,
2464
+ "hour": 6,
2465
+ "minute": 0,
2466
+ "month": 2,
2467
+ "past": true,
2468
+ "present": false,
2469
+ "time": "06:00",
2470
+ "weekday": 1,
2471
+ "year": 2019,
2472
+ },
2473
+ Object {
2474
+ "date": "2019-02-04",
2475
+ "day": 4,
2476
+ "future": false,
2477
+ "hasDay": true,
2478
+ "hasTime": true,
2479
+ "hour": 7,
2480
+ "minute": 0,
2481
+ "month": 2,
2482
+ "past": true,
2483
+ "present": false,
2484
+ "time": "07:00",
2485
+ "weekday": 1,
2486
+ "year": 2019,
2487
+ },
2488
+ Object {
2489
+ "date": "2019-02-04",
2490
+ "day": 4,
2491
+ "future": false,
2492
+ "hasDay": true,
2493
+ "hasTime": true,
2494
+ "hour": 8,
2495
+ "minute": 0,
2496
+ "month": 2,
2497
+ "past": true,
2498
+ "present": false,
2499
+ "time": "08:00",
2500
+ "weekday": 1,
2501
+ "year": 2019,
2502
+ },
2503
+ Object {
2504
+ "date": "2019-02-04",
2505
+ "day": 4,
2506
+ "future": false,
2507
+ "hasDay": true,
2508
+ "hasTime": true,
2509
+ "hour": 9,
2510
+ "minute": 0,
2511
+ "month": 2,
2512
+ "past": true,
2513
+ "present": false,
2514
+ "time": "09:00",
2515
+ "weekday": 1,
2516
+ "year": 2019,
2517
+ },
2518
+ Object {
2519
+ "date": "2019-02-04",
2520
+ "day": 4,
2521
+ "future": false,
2522
+ "hasDay": true,
2523
+ "hasTime": true,
2524
+ "hour": 10,
2525
+ "minute": 0,
2526
+ "month": 2,
2527
+ "past": true,
2528
+ "present": false,
2529
+ "time": "10:00",
2530
+ "weekday": 1,
2531
+ "year": 2019,
2532
+ },
2533
+ Object {
2534
+ "date": "2019-02-04",
2535
+ "day": 4,
2536
+ "future": false,
2537
+ "hasDay": true,
2538
+ "hasTime": true,
2539
+ "hour": 11,
2540
+ "minute": 0,
2541
+ "month": 2,
2542
+ "past": true,
2543
+ "present": false,
2544
+ "time": "11:00",
2545
+ "weekday": 1,
2546
+ "year": 2019,
2547
+ },
2548
+ Object {
2549
+ "date": "2019-02-04",
2550
+ "day": 4,
2551
+ "future": false,
2552
+ "hasDay": true,
2553
+ "hasTime": true,
2554
+ "hour": 12,
2555
+ "minute": 0,
2556
+ "month": 2,
2557
+ "past": true,
2558
+ "present": false,
2559
+ "time": "12:00",
2560
+ "weekday": 1,
2561
+ "year": 2019,
2562
+ },
2563
+ Object {
2564
+ "date": "2019-02-04",
2565
+ "day": 4,
2566
+ "future": false,
2567
+ "hasDay": true,
2568
+ "hasTime": true,
2569
+ "hour": 13,
2570
+ "minute": 0,
2571
+ "month": 2,
2572
+ "past": true,
2573
+ "present": false,
2574
+ "time": "13:00",
2575
+ "weekday": 1,
2576
+ "year": 2019,
2577
+ },
2578
+ Object {
2579
+ "date": "2019-02-04",
2580
+ "day": 4,
2581
+ "future": false,
2582
+ "hasDay": true,
2583
+ "hasTime": true,
2584
+ "hour": 14,
2585
+ "minute": 0,
2586
+ "month": 2,
2587
+ "past": true,
2588
+ "present": false,
2589
+ "time": "14:00",
2590
+ "weekday": 1,
2591
+ "year": 2019,
2592
+ },
2593
+ Object {
2594
+ "date": "2019-02-04",
2595
+ "day": 4,
2596
+ "future": false,
2597
+ "hasDay": true,
2598
+ "hasTime": true,
2599
+ "hour": 15,
2600
+ "minute": 0,
2601
+ "month": 2,
2602
+ "past": true,
2603
+ "present": false,
2604
+ "time": "15:00",
2605
+ "weekday": 1,
2606
+ "year": 2019,
2607
+ },
2608
+ Object {
2609
+ "date": "2019-02-04",
2610
+ "day": 4,
2611
+ "future": false,
2612
+ "hasDay": true,
2613
+ "hasTime": true,
2614
+ "hour": 16,
2615
+ "minute": 0,
2616
+ "month": 2,
2617
+ "past": true,
2618
+ "present": false,
2619
+ "time": "16:00",
2620
+ "weekday": 1,
2621
+ "year": 2019,
2622
+ },
2623
+ Object {
2624
+ "date": "2019-02-04",
2625
+ "day": 4,
2626
+ "future": false,
2627
+ "hasDay": true,
2628
+ "hasTime": true,
2629
+ "hour": 17,
2630
+ "minute": 0,
2631
+ "month": 2,
2632
+ "past": true,
2633
+ "present": false,
2634
+ "time": "17:00",
2635
+ "weekday": 1,
2636
+ "year": 2019,
2637
+ },
2638
+ Object {
2639
+ "date": "2019-02-04",
2640
+ "day": 4,
2641
+ "future": false,
2642
+ "hasDay": true,
2643
+ "hasTime": true,
2644
+ "hour": 18,
2645
+ "minute": 0,
2646
+ "month": 2,
2647
+ "past": true,
2648
+ "present": false,
2649
+ "time": "18:00",
2650
+ "weekday": 1,
2651
+ "year": 2019,
2652
+ },
2653
+ Object {
2654
+ "date": "2019-02-04",
2655
+ "day": 4,
2656
+ "future": false,
2657
+ "hasDay": true,
2658
+ "hasTime": true,
2659
+ "hour": 19,
2660
+ "minute": 0,
2661
+ "month": 2,
2662
+ "past": true,
2663
+ "present": false,
2664
+ "time": "19:00",
2665
+ "weekday": 1,
2666
+ "year": 2019,
2667
+ },
2668
+ Object {
2669
+ "date": "2019-02-04",
2670
+ "day": 4,
2671
+ "future": false,
2672
+ "hasDay": true,
2673
+ "hasTime": true,
2674
+ "hour": 20,
2675
+ "minute": 0,
2676
+ "month": 2,
2677
+ "past": true,
2678
+ "present": false,
2679
+ "time": "20:00",
2680
+ "weekday": 1,
2681
+ "year": 2019,
2682
+ },
2683
+ Object {
2684
+ "date": "2019-02-04",
2685
+ "day": 4,
2686
+ "future": false,
2687
+ "hasDay": true,
2688
+ "hasTime": true,
2689
+ "hour": 21,
2690
+ "minute": 0,
2691
+ "month": 2,
2692
+ "past": true,
2693
+ "present": false,
2694
+ "time": "21:00",
2695
+ "weekday": 1,
2696
+ "year": 2019,
2697
+ },
2698
+ Object {
2699
+ "date": "2019-02-04",
2700
+ "day": 4,
2701
+ "future": false,
2702
+ "hasDay": true,
2703
+ "hasTime": true,
2704
+ "hour": 22,
2705
+ "minute": 0,
2706
+ "month": 2,
2707
+ "past": true,
2708
+ "present": false,
2709
+ "time": "22:00",
2710
+ "weekday": 1,
2711
+ "year": 2019,
2712
+ },
2713
+ Object {
2714
+ "date": "2019-02-04",
2715
+ "day": 4,
2716
+ "future": false,
2717
+ "hasDay": true,
2718
+ "hasTime": true,
2719
+ "hour": 23,
2720
+ "minute": 0,
2721
+ "month": 2,
2722
+ "past": true,
2723
+ "present": false,
2724
+ "time": "23:00",
2725
+ "weekday": 1,
2726
+ "year": 2019,
2727
+ },
2728
+ ],
2729
+ ]
2730
+ `;
2731
+
2732
+ exports[`calendar-with-intervals.ts should generate intervals 2`] = `
2733
+ Array [
2734
+ Array [
2735
+ Object {
2736
+ "date": "2019-01-29",
2737
+ "day": 29,
2738
+ "future": false,
2739
+ "hasDay": true,
2740
+ "hasTime": true,
2741
+ "hour": 0,
2742
+ "minute": 0,
2743
+ "month": 1,
2744
+ "past": true,
2745
+ "present": false,
2746
+ "time": "00:00",
2747
+ "weekday": 2,
2748
+ "year": 2019,
2749
+ },
2750
+ Object {
2751
+ "date": "2019-01-29",
2752
+ "day": 29,
2753
+ "future": false,
2754
+ "hasDay": true,
2755
+ "hasTime": true,
2756
+ "hour": 1,
2757
+ "minute": 0,
2758
+ "month": 1,
2759
+ "past": true,
2760
+ "present": false,
2761
+ "time": "01:00",
2762
+ "weekday": 2,
2763
+ "year": 2019,
2764
+ },
2765
+ Object {
2766
+ "date": "2019-01-29",
2767
+ "day": 29,
2768
+ "future": false,
2769
+ "hasDay": true,
2770
+ "hasTime": true,
2771
+ "hour": 2,
2772
+ "minute": 0,
2773
+ "month": 1,
2774
+ "past": true,
2775
+ "present": false,
2776
+ "time": "02:00",
2777
+ "weekday": 2,
2778
+ "year": 2019,
2779
+ },
2780
+ Object {
2781
+ "date": "2019-01-29",
2782
+ "day": 29,
2783
+ "future": false,
2784
+ "hasDay": true,
2785
+ "hasTime": true,
2786
+ "hour": 3,
2787
+ "minute": 0,
2788
+ "month": 1,
2789
+ "past": true,
2790
+ "present": false,
2791
+ "time": "03:00",
2792
+ "weekday": 2,
2793
+ "year": 2019,
2794
+ },
2795
+ Object {
2796
+ "date": "2019-01-29",
2797
+ "day": 29,
2798
+ "future": false,
2799
+ "hasDay": true,
2800
+ "hasTime": true,
2801
+ "hour": 4,
2802
+ "minute": 0,
2803
+ "month": 1,
2804
+ "past": true,
2805
+ "present": false,
2806
+ "time": "04:00",
2807
+ "weekday": 2,
2808
+ "year": 2019,
2809
+ },
2810
+ Object {
2811
+ "date": "2019-01-29",
2812
+ "day": 29,
2813
+ "future": false,
2814
+ "hasDay": true,
2815
+ "hasTime": true,
2816
+ "hour": 5,
2817
+ "minute": 0,
2818
+ "month": 1,
2819
+ "past": true,
2820
+ "present": false,
2821
+ "time": "05:00",
2822
+ "weekday": 2,
2823
+ "year": 2019,
2824
+ },
2825
+ Object {
2826
+ "date": "2019-01-29",
2827
+ "day": 29,
2828
+ "future": false,
2829
+ "hasDay": true,
2830
+ "hasTime": true,
2831
+ "hour": 6,
2832
+ "minute": 0,
2833
+ "month": 1,
2834
+ "past": true,
2835
+ "present": false,
2836
+ "time": "06:00",
2837
+ "weekday": 2,
2838
+ "year": 2019,
2839
+ },
2840
+ Object {
2841
+ "date": "2019-01-29",
2842
+ "day": 29,
2843
+ "future": false,
2844
+ "hasDay": true,
2845
+ "hasTime": true,
2846
+ "hour": 7,
2847
+ "minute": 0,
2848
+ "month": 1,
2849
+ "past": true,
2850
+ "present": false,
2851
+ "time": "07:00",
2852
+ "weekday": 2,
2853
+ "year": 2019,
2854
+ },
2855
+ Object {
2856
+ "date": "2019-01-29",
2857
+ "day": 29,
2858
+ "future": false,
2859
+ "hasDay": true,
2860
+ "hasTime": true,
2861
+ "hour": 8,
2862
+ "minute": 0,
2863
+ "month": 1,
2864
+ "past": true,
2865
+ "present": false,
2866
+ "time": "08:00",
2867
+ "weekday": 2,
2868
+ "year": 2019,
2869
+ },
2870
+ Object {
2871
+ "date": "2019-01-29",
2872
+ "day": 29,
2873
+ "future": false,
2874
+ "hasDay": true,
2875
+ "hasTime": true,
2876
+ "hour": 9,
2877
+ "minute": 0,
2878
+ "month": 1,
2879
+ "past": true,
2880
+ "present": false,
2881
+ "time": "09:00",
2882
+ "weekday": 2,
2883
+ "year": 2019,
2884
+ },
2885
+ Object {
2886
+ "date": "2019-01-29",
2887
+ "day": 29,
2888
+ "future": false,
2889
+ "hasDay": true,
2890
+ "hasTime": true,
2891
+ "hour": 10,
2892
+ "minute": 0,
2893
+ "month": 1,
2894
+ "past": true,
2895
+ "present": false,
2896
+ "time": "10:00",
2897
+ "weekday": 2,
2898
+ "year": 2019,
2899
+ },
2900
+ Object {
2901
+ "date": "2019-01-29",
2902
+ "day": 29,
2903
+ "future": false,
2904
+ "hasDay": true,
2905
+ "hasTime": true,
2906
+ "hour": 11,
2907
+ "minute": 0,
2908
+ "month": 1,
2909
+ "past": true,
2910
+ "present": false,
2911
+ "time": "11:00",
2912
+ "weekday": 2,
2913
+ "year": 2019,
2914
+ },
2915
+ Object {
2916
+ "date": "2019-01-29",
2917
+ "day": 29,
2918
+ "future": false,
2919
+ "hasDay": true,
2920
+ "hasTime": true,
2921
+ "hour": 12,
2922
+ "minute": 0,
2923
+ "month": 1,
2924
+ "past": true,
2925
+ "present": false,
2926
+ "time": "12:00",
2927
+ "weekday": 2,
2928
+ "year": 2019,
2929
+ },
2930
+ Object {
2931
+ "date": "2019-01-29",
2932
+ "day": 29,
2933
+ "future": false,
2934
+ "hasDay": true,
2935
+ "hasTime": true,
2936
+ "hour": 13,
2937
+ "minute": 0,
2938
+ "month": 1,
2939
+ "past": true,
2940
+ "present": false,
2941
+ "time": "13:00",
2942
+ "weekday": 2,
2943
+ "year": 2019,
2944
+ },
2945
+ Object {
2946
+ "date": "2019-01-29",
2947
+ "day": 29,
2948
+ "future": false,
2949
+ "hasDay": true,
2950
+ "hasTime": true,
2951
+ "hour": 14,
2952
+ "minute": 0,
2953
+ "month": 1,
2954
+ "past": true,
2955
+ "present": false,
2956
+ "time": "14:00",
2957
+ "weekday": 2,
2958
+ "year": 2019,
2959
+ },
2960
+ Object {
2961
+ "date": "2019-01-29",
2962
+ "day": 29,
2963
+ "future": false,
2964
+ "hasDay": true,
2965
+ "hasTime": true,
2966
+ "hour": 15,
2967
+ "minute": 0,
2968
+ "month": 1,
2969
+ "past": true,
2970
+ "present": false,
2971
+ "time": "15:00",
2972
+ "weekday": 2,
2973
+ "year": 2019,
2974
+ },
2975
+ Object {
2976
+ "date": "2019-01-29",
2977
+ "day": 29,
2978
+ "future": false,
2979
+ "hasDay": true,
2980
+ "hasTime": true,
2981
+ "hour": 16,
2982
+ "minute": 0,
2983
+ "month": 1,
2984
+ "past": true,
2985
+ "present": false,
2986
+ "time": "16:00",
2987
+ "weekday": 2,
2988
+ "year": 2019,
2989
+ },
2990
+ Object {
2991
+ "date": "2019-01-29",
2992
+ "day": 29,
2993
+ "future": false,
2994
+ "hasDay": true,
2995
+ "hasTime": true,
2996
+ "hour": 17,
2997
+ "minute": 0,
2998
+ "month": 1,
2999
+ "past": true,
3000
+ "present": false,
3001
+ "time": "17:00",
3002
+ "weekday": 2,
3003
+ "year": 2019,
3004
+ },
3005
+ Object {
3006
+ "date": "2019-01-29",
3007
+ "day": 29,
3008
+ "future": false,
3009
+ "hasDay": true,
3010
+ "hasTime": true,
3011
+ "hour": 18,
3012
+ "minute": 0,
3013
+ "month": 1,
3014
+ "past": true,
3015
+ "present": false,
3016
+ "time": "18:00",
3017
+ "weekday": 2,
3018
+ "year": 2019,
3019
+ },
3020
+ Object {
3021
+ "date": "2019-01-29",
3022
+ "day": 29,
3023
+ "future": false,
3024
+ "hasDay": true,
3025
+ "hasTime": true,
3026
+ "hour": 19,
3027
+ "minute": 0,
3028
+ "month": 1,
3029
+ "past": true,
3030
+ "present": false,
3031
+ "time": "19:00",
3032
+ "weekday": 2,
3033
+ "year": 2019,
3034
+ },
3035
+ Object {
3036
+ "date": "2019-01-29",
3037
+ "day": 29,
3038
+ "future": false,
3039
+ "hasDay": true,
3040
+ "hasTime": true,
3041
+ "hour": 20,
3042
+ "minute": 0,
3043
+ "month": 1,
3044
+ "past": true,
3045
+ "present": false,
3046
+ "time": "20:00",
3047
+ "weekday": 2,
3048
+ "year": 2019,
3049
+ },
3050
+ Object {
3051
+ "date": "2019-01-29",
3052
+ "day": 29,
3053
+ "future": false,
3054
+ "hasDay": true,
3055
+ "hasTime": true,
3056
+ "hour": 21,
3057
+ "minute": 0,
3058
+ "month": 1,
3059
+ "past": true,
3060
+ "present": false,
3061
+ "time": "21:00",
3062
+ "weekday": 2,
3063
+ "year": 2019,
3064
+ },
3065
+ Object {
3066
+ "date": "2019-01-29",
3067
+ "day": 29,
3068
+ "future": false,
3069
+ "hasDay": true,
3070
+ "hasTime": true,
3071
+ "hour": 22,
3072
+ "minute": 0,
3073
+ "month": 1,
3074
+ "past": true,
3075
+ "present": false,
3076
+ "time": "22:00",
3077
+ "weekday": 2,
3078
+ "year": 2019,
3079
+ },
3080
+ Object {
3081
+ "date": "2019-01-29",
3082
+ "day": 29,
3083
+ "future": false,
3084
+ "hasDay": true,
3085
+ "hasTime": true,
3086
+ "hour": 23,
3087
+ "minute": 0,
3088
+ "month": 1,
3089
+ "past": true,
3090
+ "present": false,
3091
+ "time": "23:00",
3092
+ "weekday": 2,
3093
+ "year": 2019,
3094
+ },
3095
+ ],
3096
+ Array [
3097
+ Object {
3098
+ "date": "2019-01-30",
3099
+ "day": 30,
3100
+ "future": false,
3101
+ "hasDay": true,
3102
+ "hasTime": true,
3103
+ "hour": 0,
3104
+ "minute": 0,
3105
+ "month": 1,
3106
+ "past": true,
3107
+ "present": false,
3108
+ "time": "00:00",
3109
+ "weekday": 3,
3110
+ "year": 2019,
3111
+ },
3112
+ Object {
3113
+ "date": "2019-01-30",
3114
+ "day": 30,
3115
+ "future": false,
3116
+ "hasDay": true,
3117
+ "hasTime": true,
3118
+ "hour": 1,
3119
+ "minute": 0,
3120
+ "month": 1,
3121
+ "past": true,
3122
+ "present": false,
3123
+ "time": "01:00",
3124
+ "weekday": 3,
3125
+ "year": 2019,
3126
+ },
3127
+ Object {
3128
+ "date": "2019-01-30",
3129
+ "day": 30,
3130
+ "future": false,
3131
+ "hasDay": true,
3132
+ "hasTime": true,
3133
+ "hour": 2,
3134
+ "minute": 0,
3135
+ "month": 1,
3136
+ "past": true,
3137
+ "present": false,
3138
+ "time": "02:00",
3139
+ "weekday": 3,
3140
+ "year": 2019,
3141
+ },
3142
+ Object {
3143
+ "date": "2019-01-30",
3144
+ "day": 30,
3145
+ "future": false,
3146
+ "hasDay": true,
3147
+ "hasTime": true,
3148
+ "hour": 3,
3149
+ "minute": 0,
3150
+ "month": 1,
3151
+ "past": true,
3152
+ "present": false,
3153
+ "time": "03:00",
3154
+ "weekday": 3,
3155
+ "year": 2019,
3156
+ },
3157
+ Object {
3158
+ "date": "2019-01-30",
3159
+ "day": 30,
3160
+ "future": false,
3161
+ "hasDay": true,
3162
+ "hasTime": true,
3163
+ "hour": 4,
3164
+ "minute": 0,
3165
+ "month": 1,
3166
+ "past": true,
3167
+ "present": false,
3168
+ "time": "04:00",
3169
+ "weekday": 3,
3170
+ "year": 2019,
3171
+ },
3172
+ Object {
3173
+ "date": "2019-01-30",
3174
+ "day": 30,
3175
+ "future": false,
3176
+ "hasDay": true,
3177
+ "hasTime": true,
3178
+ "hour": 5,
3179
+ "minute": 0,
3180
+ "month": 1,
3181
+ "past": true,
3182
+ "present": false,
3183
+ "time": "05:00",
3184
+ "weekday": 3,
3185
+ "year": 2019,
3186
+ },
3187
+ Object {
3188
+ "date": "2019-01-30",
3189
+ "day": 30,
3190
+ "future": false,
3191
+ "hasDay": true,
3192
+ "hasTime": true,
3193
+ "hour": 6,
3194
+ "minute": 0,
3195
+ "month": 1,
3196
+ "past": true,
3197
+ "present": false,
3198
+ "time": "06:00",
3199
+ "weekday": 3,
3200
+ "year": 2019,
3201
+ },
3202
+ Object {
3203
+ "date": "2019-01-30",
3204
+ "day": 30,
3205
+ "future": false,
3206
+ "hasDay": true,
3207
+ "hasTime": true,
3208
+ "hour": 7,
3209
+ "minute": 0,
3210
+ "month": 1,
3211
+ "past": true,
3212
+ "present": false,
3213
+ "time": "07:00",
3214
+ "weekday": 3,
3215
+ "year": 2019,
3216
+ },
3217
+ Object {
3218
+ "date": "2019-01-30",
3219
+ "day": 30,
3220
+ "future": false,
3221
+ "hasDay": true,
3222
+ "hasTime": true,
3223
+ "hour": 8,
3224
+ "minute": 0,
3225
+ "month": 1,
3226
+ "past": true,
3227
+ "present": false,
3228
+ "time": "08:00",
3229
+ "weekday": 3,
3230
+ "year": 2019,
3231
+ },
3232
+ Object {
3233
+ "date": "2019-01-30",
3234
+ "day": 30,
3235
+ "future": false,
3236
+ "hasDay": true,
3237
+ "hasTime": true,
3238
+ "hour": 9,
3239
+ "minute": 0,
3240
+ "month": 1,
3241
+ "past": true,
3242
+ "present": false,
3243
+ "time": "09:00",
3244
+ "weekday": 3,
3245
+ "year": 2019,
3246
+ },
3247
+ Object {
3248
+ "date": "2019-01-30",
3249
+ "day": 30,
3250
+ "future": false,
3251
+ "hasDay": true,
3252
+ "hasTime": true,
3253
+ "hour": 10,
3254
+ "minute": 0,
3255
+ "month": 1,
3256
+ "past": true,
3257
+ "present": false,
3258
+ "time": "10:00",
3259
+ "weekday": 3,
3260
+ "year": 2019,
3261
+ },
3262
+ Object {
3263
+ "date": "2019-01-30",
3264
+ "day": 30,
3265
+ "future": false,
3266
+ "hasDay": true,
3267
+ "hasTime": true,
3268
+ "hour": 11,
3269
+ "minute": 0,
3270
+ "month": 1,
3271
+ "past": true,
3272
+ "present": false,
3273
+ "time": "11:00",
3274
+ "weekday": 3,
3275
+ "year": 2019,
3276
+ },
3277
+ Object {
3278
+ "date": "2019-01-30",
3279
+ "day": 30,
3280
+ "future": false,
3281
+ "hasDay": true,
3282
+ "hasTime": true,
3283
+ "hour": 12,
3284
+ "minute": 0,
3285
+ "month": 1,
3286
+ "past": true,
3287
+ "present": false,
3288
+ "time": "12:00",
3289
+ "weekday": 3,
3290
+ "year": 2019,
3291
+ },
3292
+ Object {
3293
+ "date": "2019-01-30",
3294
+ "day": 30,
3295
+ "future": false,
3296
+ "hasDay": true,
3297
+ "hasTime": true,
3298
+ "hour": 13,
3299
+ "minute": 0,
3300
+ "month": 1,
3301
+ "past": true,
3302
+ "present": false,
3303
+ "time": "13:00",
3304
+ "weekday": 3,
3305
+ "year": 2019,
3306
+ },
3307
+ Object {
3308
+ "date": "2019-01-30",
3309
+ "day": 30,
3310
+ "future": false,
3311
+ "hasDay": true,
3312
+ "hasTime": true,
3313
+ "hour": 14,
3314
+ "minute": 0,
3315
+ "month": 1,
3316
+ "past": true,
3317
+ "present": false,
3318
+ "time": "14:00",
3319
+ "weekday": 3,
3320
+ "year": 2019,
3321
+ },
3322
+ Object {
3323
+ "date": "2019-01-30",
3324
+ "day": 30,
3325
+ "future": false,
3326
+ "hasDay": true,
3327
+ "hasTime": true,
3328
+ "hour": 15,
3329
+ "minute": 0,
3330
+ "month": 1,
3331
+ "past": true,
3332
+ "present": false,
3333
+ "time": "15:00",
3334
+ "weekday": 3,
3335
+ "year": 2019,
3336
+ },
3337
+ Object {
3338
+ "date": "2019-01-30",
3339
+ "day": 30,
3340
+ "future": false,
3341
+ "hasDay": true,
3342
+ "hasTime": true,
3343
+ "hour": 16,
3344
+ "minute": 0,
3345
+ "month": 1,
3346
+ "past": true,
3347
+ "present": false,
3348
+ "time": "16:00",
3349
+ "weekday": 3,
3350
+ "year": 2019,
3351
+ },
3352
+ Object {
3353
+ "date": "2019-01-30",
3354
+ "day": 30,
3355
+ "future": false,
3356
+ "hasDay": true,
3357
+ "hasTime": true,
3358
+ "hour": 17,
3359
+ "minute": 0,
3360
+ "month": 1,
3361
+ "past": true,
3362
+ "present": false,
3363
+ "time": "17:00",
3364
+ "weekday": 3,
3365
+ "year": 2019,
3366
+ },
3367
+ Object {
3368
+ "date": "2019-01-30",
3369
+ "day": 30,
3370
+ "future": false,
3371
+ "hasDay": true,
3372
+ "hasTime": true,
3373
+ "hour": 18,
3374
+ "minute": 0,
3375
+ "month": 1,
3376
+ "past": true,
3377
+ "present": false,
3378
+ "time": "18:00",
3379
+ "weekday": 3,
3380
+ "year": 2019,
3381
+ },
3382
+ Object {
3383
+ "date": "2019-01-30",
3384
+ "day": 30,
3385
+ "future": false,
3386
+ "hasDay": true,
3387
+ "hasTime": true,
3388
+ "hour": 19,
3389
+ "minute": 0,
3390
+ "month": 1,
3391
+ "past": true,
3392
+ "present": false,
3393
+ "time": "19:00",
3394
+ "weekday": 3,
3395
+ "year": 2019,
3396
+ },
3397
+ Object {
3398
+ "date": "2019-01-30",
3399
+ "day": 30,
3400
+ "future": false,
3401
+ "hasDay": true,
3402
+ "hasTime": true,
3403
+ "hour": 20,
3404
+ "minute": 0,
3405
+ "month": 1,
3406
+ "past": true,
3407
+ "present": false,
3408
+ "time": "20:00",
3409
+ "weekday": 3,
3410
+ "year": 2019,
3411
+ },
3412
+ Object {
3413
+ "date": "2019-01-30",
3414
+ "day": 30,
3415
+ "future": false,
3416
+ "hasDay": true,
3417
+ "hasTime": true,
3418
+ "hour": 21,
3419
+ "minute": 0,
3420
+ "month": 1,
3421
+ "past": true,
3422
+ "present": false,
3423
+ "time": "21:00",
3424
+ "weekday": 3,
3425
+ "year": 2019,
3426
+ },
3427
+ Object {
3428
+ "date": "2019-01-30",
3429
+ "day": 30,
3430
+ "future": false,
3431
+ "hasDay": true,
3432
+ "hasTime": true,
3433
+ "hour": 22,
3434
+ "minute": 0,
3435
+ "month": 1,
3436
+ "past": true,
3437
+ "present": false,
3438
+ "time": "22:00",
3439
+ "weekday": 3,
3440
+ "year": 2019,
3441
+ },
3442
+ Object {
3443
+ "date": "2019-01-30",
3444
+ "day": 30,
3445
+ "future": false,
3446
+ "hasDay": true,
3447
+ "hasTime": true,
3448
+ "hour": 23,
3449
+ "minute": 0,
3450
+ "month": 1,
3451
+ "past": true,
3452
+ "present": false,
3453
+ "time": "23:00",
3454
+ "weekday": 3,
3455
+ "year": 2019,
3456
+ },
3457
+ ],
3458
+ Array [
3459
+ Object {
3460
+ "date": "2019-01-31",
3461
+ "day": 31,
3462
+ "future": false,
3463
+ "hasDay": true,
3464
+ "hasTime": true,
3465
+ "hour": 0,
3466
+ "minute": 0,
3467
+ "month": 1,
3468
+ "past": true,
3469
+ "present": false,
3470
+ "time": "00:00",
3471
+ "weekday": 4,
3472
+ "year": 2019,
3473
+ },
3474
+ Object {
3475
+ "date": "2019-01-31",
3476
+ "day": 31,
3477
+ "future": false,
3478
+ "hasDay": true,
3479
+ "hasTime": true,
3480
+ "hour": 1,
3481
+ "minute": 0,
3482
+ "month": 1,
3483
+ "past": true,
3484
+ "present": false,
3485
+ "time": "01:00",
3486
+ "weekday": 4,
3487
+ "year": 2019,
3488
+ },
3489
+ Object {
3490
+ "date": "2019-01-31",
3491
+ "day": 31,
3492
+ "future": false,
3493
+ "hasDay": true,
3494
+ "hasTime": true,
3495
+ "hour": 2,
3496
+ "minute": 0,
3497
+ "month": 1,
3498
+ "past": true,
3499
+ "present": false,
3500
+ "time": "02:00",
3501
+ "weekday": 4,
3502
+ "year": 2019,
3503
+ },
3504
+ Object {
3505
+ "date": "2019-01-31",
3506
+ "day": 31,
3507
+ "future": false,
3508
+ "hasDay": true,
3509
+ "hasTime": true,
3510
+ "hour": 3,
3511
+ "minute": 0,
3512
+ "month": 1,
3513
+ "past": true,
3514
+ "present": false,
3515
+ "time": "03:00",
3516
+ "weekday": 4,
3517
+ "year": 2019,
3518
+ },
3519
+ Object {
3520
+ "date": "2019-01-31",
3521
+ "day": 31,
3522
+ "future": false,
3523
+ "hasDay": true,
3524
+ "hasTime": true,
3525
+ "hour": 4,
3526
+ "minute": 0,
3527
+ "month": 1,
3528
+ "past": true,
3529
+ "present": false,
3530
+ "time": "04:00",
3531
+ "weekday": 4,
3532
+ "year": 2019,
3533
+ },
3534
+ Object {
3535
+ "date": "2019-01-31",
3536
+ "day": 31,
3537
+ "future": false,
3538
+ "hasDay": true,
3539
+ "hasTime": true,
3540
+ "hour": 5,
3541
+ "minute": 0,
3542
+ "month": 1,
3543
+ "past": true,
3544
+ "present": false,
3545
+ "time": "05:00",
3546
+ "weekday": 4,
3547
+ "year": 2019,
3548
+ },
3549
+ Object {
3550
+ "date": "2019-01-31",
3551
+ "day": 31,
3552
+ "future": false,
3553
+ "hasDay": true,
3554
+ "hasTime": true,
3555
+ "hour": 6,
3556
+ "minute": 0,
3557
+ "month": 1,
3558
+ "past": true,
3559
+ "present": false,
3560
+ "time": "06:00",
3561
+ "weekday": 4,
3562
+ "year": 2019,
3563
+ },
3564
+ Object {
3565
+ "date": "2019-01-31",
3566
+ "day": 31,
3567
+ "future": false,
3568
+ "hasDay": true,
3569
+ "hasTime": true,
3570
+ "hour": 7,
3571
+ "minute": 0,
3572
+ "month": 1,
3573
+ "past": true,
3574
+ "present": false,
3575
+ "time": "07:00",
3576
+ "weekday": 4,
3577
+ "year": 2019,
3578
+ },
3579
+ Object {
3580
+ "date": "2019-01-31",
3581
+ "day": 31,
3582
+ "future": false,
3583
+ "hasDay": true,
3584
+ "hasTime": true,
3585
+ "hour": 8,
3586
+ "minute": 0,
3587
+ "month": 1,
3588
+ "past": true,
3589
+ "present": false,
3590
+ "time": "08:00",
3591
+ "weekday": 4,
3592
+ "year": 2019,
3593
+ },
3594
+ Object {
3595
+ "date": "2019-01-31",
3596
+ "day": 31,
3597
+ "future": false,
3598
+ "hasDay": true,
3599
+ "hasTime": true,
3600
+ "hour": 9,
3601
+ "minute": 0,
3602
+ "month": 1,
3603
+ "past": true,
3604
+ "present": false,
3605
+ "time": "09:00",
3606
+ "weekday": 4,
3607
+ "year": 2019,
3608
+ },
3609
+ Object {
3610
+ "date": "2019-01-31",
3611
+ "day": 31,
3612
+ "future": false,
3613
+ "hasDay": true,
3614
+ "hasTime": true,
3615
+ "hour": 10,
3616
+ "minute": 0,
3617
+ "month": 1,
3618
+ "past": true,
3619
+ "present": false,
3620
+ "time": "10:00",
3621
+ "weekday": 4,
3622
+ "year": 2019,
3623
+ },
3624
+ Object {
3625
+ "date": "2019-01-31",
3626
+ "day": 31,
3627
+ "future": false,
3628
+ "hasDay": true,
3629
+ "hasTime": true,
3630
+ "hour": 11,
3631
+ "minute": 0,
3632
+ "month": 1,
3633
+ "past": true,
3634
+ "present": false,
3635
+ "time": "11:00",
3636
+ "weekday": 4,
3637
+ "year": 2019,
3638
+ },
3639
+ Object {
3640
+ "date": "2019-01-31",
3641
+ "day": 31,
3642
+ "future": false,
3643
+ "hasDay": true,
3644
+ "hasTime": true,
3645
+ "hour": 12,
3646
+ "minute": 0,
3647
+ "month": 1,
3648
+ "past": true,
3649
+ "present": false,
3650
+ "time": "12:00",
3651
+ "weekday": 4,
3652
+ "year": 2019,
3653
+ },
3654
+ Object {
3655
+ "date": "2019-01-31",
3656
+ "day": 31,
3657
+ "future": false,
3658
+ "hasDay": true,
3659
+ "hasTime": true,
3660
+ "hour": 13,
3661
+ "minute": 0,
3662
+ "month": 1,
3663
+ "past": true,
3664
+ "present": false,
3665
+ "time": "13:00",
3666
+ "weekday": 4,
3667
+ "year": 2019,
3668
+ },
3669
+ Object {
3670
+ "date": "2019-01-31",
3671
+ "day": 31,
3672
+ "future": false,
3673
+ "hasDay": true,
3674
+ "hasTime": true,
3675
+ "hour": 14,
3676
+ "minute": 0,
3677
+ "month": 1,
3678
+ "past": true,
3679
+ "present": false,
3680
+ "time": "14:00",
3681
+ "weekday": 4,
3682
+ "year": 2019,
3683
+ },
3684
+ Object {
3685
+ "date": "2019-01-31",
3686
+ "day": 31,
3687
+ "future": false,
3688
+ "hasDay": true,
3689
+ "hasTime": true,
3690
+ "hour": 15,
3691
+ "minute": 0,
3692
+ "month": 1,
3693
+ "past": true,
3694
+ "present": false,
3695
+ "time": "15:00",
3696
+ "weekday": 4,
3697
+ "year": 2019,
3698
+ },
3699
+ Object {
3700
+ "date": "2019-01-31",
3701
+ "day": 31,
3702
+ "future": false,
3703
+ "hasDay": true,
3704
+ "hasTime": true,
3705
+ "hour": 16,
3706
+ "minute": 0,
3707
+ "month": 1,
3708
+ "past": true,
3709
+ "present": false,
3710
+ "time": "16:00",
3711
+ "weekday": 4,
3712
+ "year": 2019,
3713
+ },
3714
+ Object {
3715
+ "date": "2019-01-31",
3716
+ "day": 31,
3717
+ "future": false,
3718
+ "hasDay": true,
3719
+ "hasTime": true,
3720
+ "hour": 17,
3721
+ "minute": 0,
3722
+ "month": 1,
3723
+ "past": true,
3724
+ "present": false,
3725
+ "time": "17:00",
3726
+ "weekday": 4,
3727
+ "year": 2019,
3728
+ },
3729
+ Object {
3730
+ "date": "2019-01-31",
3731
+ "day": 31,
3732
+ "future": false,
3733
+ "hasDay": true,
3734
+ "hasTime": true,
3735
+ "hour": 18,
3736
+ "minute": 0,
3737
+ "month": 1,
3738
+ "past": true,
3739
+ "present": false,
3740
+ "time": "18:00",
3741
+ "weekday": 4,
3742
+ "year": 2019,
3743
+ },
3744
+ Object {
3745
+ "date": "2019-01-31",
3746
+ "day": 31,
3747
+ "future": false,
3748
+ "hasDay": true,
3749
+ "hasTime": true,
3750
+ "hour": 19,
3751
+ "minute": 0,
3752
+ "month": 1,
3753
+ "past": true,
3754
+ "present": false,
3755
+ "time": "19:00",
3756
+ "weekday": 4,
3757
+ "year": 2019,
3758
+ },
3759
+ Object {
3760
+ "date": "2019-01-31",
3761
+ "day": 31,
3762
+ "future": false,
3763
+ "hasDay": true,
3764
+ "hasTime": true,
3765
+ "hour": 20,
3766
+ "minute": 0,
3767
+ "month": 1,
3768
+ "past": true,
3769
+ "present": false,
3770
+ "time": "20:00",
3771
+ "weekday": 4,
3772
+ "year": 2019,
3773
+ },
3774
+ Object {
3775
+ "date": "2019-01-31",
3776
+ "day": 31,
3777
+ "future": false,
3778
+ "hasDay": true,
3779
+ "hasTime": true,
3780
+ "hour": 21,
3781
+ "minute": 0,
3782
+ "month": 1,
3783
+ "past": true,
3784
+ "present": false,
3785
+ "time": "21:00",
3786
+ "weekday": 4,
3787
+ "year": 2019,
3788
+ },
3789
+ Object {
3790
+ "date": "2019-01-31",
3791
+ "day": 31,
3792
+ "future": false,
3793
+ "hasDay": true,
3794
+ "hasTime": true,
3795
+ "hour": 22,
3796
+ "minute": 0,
3797
+ "month": 1,
3798
+ "past": true,
3799
+ "present": false,
3800
+ "time": "22:00",
3801
+ "weekday": 4,
3802
+ "year": 2019,
3803
+ },
3804
+ Object {
3805
+ "date": "2019-01-31",
3806
+ "day": 31,
3807
+ "future": false,
3808
+ "hasDay": true,
3809
+ "hasTime": true,
3810
+ "hour": 23,
3811
+ "minute": 0,
3812
+ "month": 1,
3813
+ "past": true,
3814
+ "present": false,
3815
+ "time": "23:00",
3816
+ "weekday": 4,
3817
+ "year": 2019,
3818
+ },
3819
+ ],
3820
+ Array [
3821
+ Object {
3822
+ "date": "2019-02-01",
3823
+ "day": 1,
3824
+ "future": false,
3825
+ "hasDay": true,
3826
+ "hasTime": true,
3827
+ "hour": 0,
3828
+ "minute": 0,
3829
+ "month": 2,
3830
+ "past": true,
3831
+ "present": false,
3832
+ "time": "00:00",
3833
+ "weekday": 5,
3834
+ "year": 2019,
3835
+ },
3836
+ Object {
3837
+ "date": "2019-02-01",
3838
+ "day": 1,
3839
+ "future": false,
3840
+ "hasDay": true,
3841
+ "hasTime": true,
3842
+ "hour": 1,
3843
+ "minute": 0,
3844
+ "month": 2,
3845
+ "past": true,
3846
+ "present": false,
3847
+ "time": "01:00",
3848
+ "weekday": 5,
3849
+ "year": 2019,
3850
+ },
3851
+ Object {
3852
+ "date": "2019-02-01",
3853
+ "day": 1,
3854
+ "future": false,
3855
+ "hasDay": true,
3856
+ "hasTime": true,
3857
+ "hour": 2,
3858
+ "minute": 0,
3859
+ "month": 2,
3860
+ "past": true,
3861
+ "present": false,
3862
+ "time": "02:00",
3863
+ "weekday": 5,
3864
+ "year": 2019,
3865
+ },
3866
+ Object {
3867
+ "date": "2019-02-01",
3868
+ "day": 1,
3869
+ "future": false,
3870
+ "hasDay": true,
3871
+ "hasTime": true,
3872
+ "hour": 3,
3873
+ "minute": 0,
3874
+ "month": 2,
3875
+ "past": true,
3876
+ "present": false,
3877
+ "time": "03:00",
3878
+ "weekday": 5,
3879
+ "year": 2019,
3880
+ },
3881
+ Object {
3882
+ "date": "2019-02-01",
3883
+ "day": 1,
3884
+ "future": false,
3885
+ "hasDay": true,
3886
+ "hasTime": true,
3887
+ "hour": 4,
3888
+ "minute": 0,
3889
+ "month": 2,
3890
+ "past": true,
3891
+ "present": false,
3892
+ "time": "04:00",
3893
+ "weekday": 5,
3894
+ "year": 2019,
3895
+ },
3896
+ Object {
3897
+ "date": "2019-02-01",
3898
+ "day": 1,
3899
+ "future": false,
3900
+ "hasDay": true,
3901
+ "hasTime": true,
3902
+ "hour": 5,
3903
+ "minute": 0,
3904
+ "month": 2,
3905
+ "past": true,
3906
+ "present": false,
3907
+ "time": "05:00",
3908
+ "weekday": 5,
3909
+ "year": 2019,
3910
+ },
3911
+ Object {
3912
+ "date": "2019-02-01",
3913
+ "day": 1,
3914
+ "future": false,
3915
+ "hasDay": true,
3916
+ "hasTime": true,
3917
+ "hour": 6,
3918
+ "minute": 0,
3919
+ "month": 2,
3920
+ "past": true,
3921
+ "present": false,
3922
+ "time": "06:00",
3923
+ "weekday": 5,
3924
+ "year": 2019,
3925
+ },
3926
+ Object {
3927
+ "date": "2019-02-01",
3928
+ "day": 1,
3929
+ "future": false,
3930
+ "hasDay": true,
3931
+ "hasTime": true,
3932
+ "hour": 7,
3933
+ "minute": 0,
3934
+ "month": 2,
3935
+ "past": true,
3936
+ "present": false,
3937
+ "time": "07:00",
3938
+ "weekday": 5,
3939
+ "year": 2019,
3940
+ },
3941
+ Object {
3942
+ "date": "2019-02-01",
3943
+ "day": 1,
3944
+ "future": false,
3945
+ "hasDay": true,
3946
+ "hasTime": true,
3947
+ "hour": 8,
3948
+ "minute": 0,
3949
+ "month": 2,
3950
+ "past": true,
3951
+ "present": false,
3952
+ "time": "08:00",
3953
+ "weekday": 5,
3954
+ "year": 2019,
3955
+ },
3956
+ Object {
3957
+ "date": "2019-02-01",
3958
+ "day": 1,
3959
+ "future": false,
3960
+ "hasDay": true,
3961
+ "hasTime": true,
3962
+ "hour": 9,
3963
+ "minute": 0,
3964
+ "month": 2,
3965
+ "past": true,
3966
+ "present": false,
3967
+ "time": "09:00",
3968
+ "weekday": 5,
3969
+ "year": 2019,
3970
+ },
3971
+ Object {
3972
+ "date": "2019-02-01",
3973
+ "day": 1,
3974
+ "future": false,
3975
+ "hasDay": true,
3976
+ "hasTime": true,
3977
+ "hour": 10,
3978
+ "minute": 0,
3979
+ "month": 2,
3980
+ "past": true,
3981
+ "present": false,
3982
+ "time": "10:00",
3983
+ "weekday": 5,
3984
+ "year": 2019,
3985
+ },
3986
+ Object {
3987
+ "date": "2019-02-01",
3988
+ "day": 1,
3989
+ "future": false,
3990
+ "hasDay": true,
3991
+ "hasTime": true,
3992
+ "hour": 11,
3993
+ "minute": 0,
3994
+ "month": 2,
3995
+ "past": true,
3996
+ "present": false,
3997
+ "time": "11:00",
3998
+ "weekday": 5,
3999
+ "year": 2019,
4000
+ },
4001
+ Object {
4002
+ "date": "2019-02-01",
4003
+ "day": 1,
4004
+ "future": false,
4005
+ "hasDay": true,
4006
+ "hasTime": true,
4007
+ "hour": 12,
4008
+ "minute": 0,
4009
+ "month": 2,
4010
+ "past": true,
4011
+ "present": false,
4012
+ "time": "12:00",
4013
+ "weekday": 5,
4014
+ "year": 2019,
4015
+ },
4016
+ Object {
4017
+ "date": "2019-02-01",
4018
+ "day": 1,
4019
+ "future": false,
4020
+ "hasDay": true,
4021
+ "hasTime": true,
4022
+ "hour": 13,
4023
+ "minute": 0,
4024
+ "month": 2,
4025
+ "past": true,
4026
+ "present": false,
4027
+ "time": "13:00",
4028
+ "weekday": 5,
4029
+ "year": 2019,
4030
+ },
4031
+ Object {
4032
+ "date": "2019-02-01",
4033
+ "day": 1,
4034
+ "future": false,
4035
+ "hasDay": true,
4036
+ "hasTime": true,
4037
+ "hour": 14,
4038
+ "minute": 0,
4039
+ "month": 2,
4040
+ "past": true,
4041
+ "present": false,
4042
+ "time": "14:00",
4043
+ "weekday": 5,
4044
+ "year": 2019,
4045
+ },
4046
+ Object {
4047
+ "date": "2019-02-01",
4048
+ "day": 1,
4049
+ "future": false,
4050
+ "hasDay": true,
4051
+ "hasTime": true,
4052
+ "hour": 15,
4053
+ "minute": 0,
4054
+ "month": 2,
4055
+ "past": true,
4056
+ "present": false,
4057
+ "time": "15:00",
4058
+ "weekday": 5,
4059
+ "year": 2019,
4060
+ },
4061
+ Object {
4062
+ "date": "2019-02-01",
4063
+ "day": 1,
4064
+ "future": false,
4065
+ "hasDay": true,
4066
+ "hasTime": true,
4067
+ "hour": 16,
4068
+ "minute": 0,
4069
+ "month": 2,
4070
+ "past": true,
4071
+ "present": false,
4072
+ "time": "16:00",
4073
+ "weekday": 5,
4074
+ "year": 2019,
4075
+ },
4076
+ Object {
4077
+ "date": "2019-02-01",
4078
+ "day": 1,
4079
+ "future": false,
4080
+ "hasDay": true,
4081
+ "hasTime": true,
4082
+ "hour": 17,
4083
+ "minute": 0,
4084
+ "month": 2,
4085
+ "past": true,
4086
+ "present": false,
4087
+ "time": "17:00",
4088
+ "weekday": 5,
4089
+ "year": 2019,
4090
+ },
4091
+ Object {
4092
+ "date": "2019-02-01",
4093
+ "day": 1,
4094
+ "future": false,
4095
+ "hasDay": true,
4096
+ "hasTime": true,
4097
+ "hour": 18,
4098
+ "minute": 0,
4099
+ "month": 2,
4100
+ "past": true,
4101
+ "present": false,
4102
+ "time": "18:00",
4103
+ "weekday": 5,
4104
+ "year": 2019,
4105
+ },
4106
+ Object {
4107
+ "date": "2019-02-01",
4108
+ "day": 1,
4109
+ "future": false,
4110
+ "hasDay": true,
4111
+ "hasTime": true,
4112
+ "hour": 19,
4113
+ "minute": 0,
4114
+ "month": 2,
4115
+ "past": true,
4116
+ "present": false,
4117
+ "time": "19:00",
4118
+ "weekday": 5,
4119
+ "year": 2019,
4120
+ },
4121
+ Object {
4122
+ "date": "2019-02-01",
4123
+ "day": 1,
4124
+ "future": false,
4125
+ "hasDay": true,
4126
+ "hasTime": true,
4127
+ "hour": 20,
4128
+ "minute": 0,
4129
+ "month": 2,
4130
+ "past": true,
4131
+ "present": false,
4132
+ "time": "20:00",
4133
+ "weekday": 5,
4134
+ "year": 2019,
4135
+ },
4136
+ Object {
4137
+ "date": "2019-02-01",
4138
+ "day": 1,
4139
+ "future": false,
4140
+ "hasDay": true,
4141
+ "hasTime": true,
4142
+ "hour": 21,
4143
+ "minute": 0,
4144
+ "month": 2,
4145
+ "past": true,
4146
+ "present": false,
4147
+ "time": "21:00",
4148
+ "weekday": 5,
4149
+ "year": 2019,
4150
+ },
4151
+ Object {
4152
+ "date": "2019-02-01",
4153
+ "day": 1,
4154
+ "future": false,
4155
+ "hasDay": true,
4156
+ "hasTime": true,
4157
+ "hour": 22,
4158
+ "minute": 0,
4159
+ "month": 2,
4160
+ "past": true,
4161
+ "present": false,
4162
+ "time": "22:00",
4163
+ "weekday": 5,
4164
+ "year": 2019,
4165
+ },
4166
+ Object {
4167
+ "date": "2019-02-01",
4168
+ "day": 1,
4169
+ "future": false,
4170
+ "hasDay": true,
4171
+ "hasTime": true,
4172
+ "hour": 23,
4173
+ "minute": 0,
4174
+ "month": 2,
4175
+ "past": true,
4176
+ "present": false,
4177
+ "time": "23:00",
4178
+ "weekday": 5,
4179
+ "year": 2019,
4180
+ },
4181
+ ],
4182
+ Array [
4183
+ Object {
4184
+ "date": "2019-02-02",
4185
+ "day": 2,
4186
+ "future": false,
4187
+ "hasDay": true,
4188
+ "hasTime": true,
4189
+ "hour": 0,
4190
+ "minute": 0,
4191
+ "month": 2,
4192
+ "past": true,
4193
+ "present": false,
4194
+ "time": "00:00",
4195
+ "weekday": 6,
4196
+ "year": 2019,
4197
+ },
4198
+ Object {
4199
+ "date": "2019-02-02",
4200
+ "day": 2,
4201
+ "future": false,
4202
+ "hasDay": true,
4203
+ "hasTime": true,
4204
+ "hour": 1,
4205
+ "minute": 0,
4206
+ "month": 2,
4207
+ "past": true,
4208
+ "present": false,
4209
+ "time": "01:00",
4210
+ "weekday": 6,
4211
+ "year": 2019,
4212
+ },
4213
+ Object {
4214
+ "date": "2019-02-02",
4215
+ "day": 2,
4216
+ "future": false,
4217
+ "hasDay": true,
4218
+ "hasTime": true,
4219
+ "hour": 2,
4220
+ "minute": 0,
4221
+ "month": 2,
4222
+ "past": true,
4223
+ "present": false,
4224
+ "time": "02:00",
4225
+ "weekday": 6,
4226
+ "year": 2019,
4227
+ },
4228
+ Object {
4229
+ "date": "2019-02-02",
4230
+ "day": 2,
4231
+ "future": false,
4232
+ "hasDay": true,
4233
+ "hasTime": true,
4234
+ "hour": 3,
4235
+ "minute": 0,
4236
+ "month": 2,
4237
+ "past": true,
4238
+ "present": false,
4239
+ "time": "03:00",
4240
+ "weekday": 6,
4241
+ "year": 2019,
4242
+ },
4243
+ Object {
4244
+ "date": "2019-02-02",
4245
+ "day": 2,
4246
+ "future": false,
4247
+ "hasDay": true,
4248
+ "hasTime": true,
4249
+ "hour": 4,
4250
+ "minute": 0,
4251
+ "month": 2,
4252
+ "past": true,
4253
+ "present": false,
4254
+ "time": "04:00",
4255
+ "weekday": 6,
4256
+ "year": 2019,
4257
+ },
4258
+ Object {
4259
+ "date": "2019-02-02",
4260
+ "day": 2,
4261
+ "future": false,
4262
+ "hasDay": true,
4263
+ "hasTime": true,
4264
+ "hour": 5,
4265
+ "minute": 0,
4266
+ "month": 2,
4267
+ "past": true,
4268
+ "present": false,
4269
+ "time": "05:00",
4270
+ "weekday": 6,
4271
+ "year": 2019,
4272
+ },
4273
+ Object {
4274
+ "date": "2019-02-02",
4275
+ "day": 2,
4276
+ "future": false,
4277
+ "hasDay": true,
4278
+ "hasTime": true,
4279
+ "hour": 6,
4280
+ "minute": 0,
4281
+ "month": 2,
4282
+ "past": true,
4283
+ "present": false,
4284
+ "time": "06:00",
4285
+ "weekday": 6,
4286
+ "year": 2019,
4287
+ },
4288
+ Object {
4289
+ "date": "2019-02-02",
4290
+ "day": 2,
4291
+ "future": false,
4292
+ "hasDay": true,
4293
+ "hasTime": true,
4294
+ "hour": 7,
4295
+ "minute": 0,
4296
+ "month": 2,
4297
+ "past": true,
4298
+ "present": false,
4299
+ "time": "07:00",
4300
+ "weekday": 6,
4301
+ "year": 2019,
4302
+ },
4303
+ Object {
4304
+ "date": "2019-02-02",
4305
+ "day": 2,
4306
+ "future": false,
4307
+ "hasDay": true,
4308
+ "hasTime": true,
4309
+ "hour": 8,
4310
+ "minute": 0,
4311
+ "month": 2,
4312
+ "past": true,
4313
+ "present": false,
4314
+ "time": "08:00",
4315
+ "weekday": 6,
4316
+ "year": 2019,
4317
+ },
4318
+ Object {
4319
+ "date": "2019-02-02",
4320
+ "day": 2,
4321
+ "future": false,
4322
+ "hasDay": true,
4323
+ "hasTime": true,
4324
+ "hour": 9,
4325
+ "minute": 0,
4326
+ "month": 2,
4327
+ "past": true,
4328
+ "present": false,
4329
+ "time": "09:00",
4330
+ "weekday": 6,
4331
+ "year": 2019,
4332
+ },
4333
+ Object {
4334
+ "date": "2019-02-02",
4335
+ "day": 2,
4336
+ "future": false,
4337
+ "hasDay": true,
4338
+ "hasTime": true,
4339
+ "hour": 10,
4340
+ "minute": 0,
4341
+ "month": 2,
4342
+ "past": true,
4343
+ "present": false,
4344
+ "time": "10:00",
4345
+ "weekday": 6,
4346
+ "year": 2019,
4347
+ },
4348
+ Object {
4349
+ "date": "2019-02-02",
4350
+ "day": 2,
4351
+ "future": false,
4352
+ "hasDay": true,
4353
+ "hasTime": true,
4354
+ "hour": 11,
4355
+ "minute": 0,
4356
+ "month": 2,
4357
+ "past": true,
4358
+ "present": false,
4359
+ "time": "11:00",
4360
+ "weekday": 6,
4361
+ "year": 2019,
4362
+ },
4363
+ Object {
4364
+ "date": "2019-02-02",
4365
+ "day": 2,
4366
+ "future": false,
4367
+ "hasDay": true,
4368
+ "hasTime": true,
4369
+ "hour": 12,
4370
+ "minute": 0,
4371
+ "month": 2,
4372
+ "past": true,
4373
+ "present": false,
4374
+ "time": "12:00",
4375
+ "weekday": 6,
4376
+ "year": 2019,
4377
+ },
4378
+ Object {
4379
+ "date": "2019-02-02",
4380
+ "day": 2,
4381
+ "future": false,
4382
+ "hasDay": true,
4383
+ "hasTime": true,
4384
+ "hour": 13,
4385
+ "minute": 0,
4386
+ "month": 2,
4387
+ "past": true,
4388
+ "present": false,
4389
+ "time": "13:00",
4390
+ "weekday": 6,
4391
+ "year": 2019,
4392
+ },
4393
+ Object {
4394
+ "date": "2019-02-02",
4395
+ "day": 2,
4396
+ "future": false,
4397
+ "hasDay": true,
4398
+ "hasTime": true,
4399
+ "hour": 14,
4400
+ "minute": 0,
4401
+ "month": 2,
4402
+ "past": true,
4403
+ "present": false,
4404
+ "time": "14:00",
4405
+ "weekday": 6,
4406
+ "year": 2019,
4407
+ },
4408
+ Object {
4409
+ "date": "2019-02-02",
4410
+ "day": 2,
4411
+ "future": false,
4412
+ "hasDay": true,
4413
+ "hasTime": true,
4414
+ "hour": 15,
4415
+ "minute": 0,
4416
+ "month": 2,
4417
+ "past": true,
4418
+ "present": false,
4419
+ "time": "15:00",
4420
+ "weekday": 6,
4421
+ "year": 2019,
4422
+ },
4423
+ Object {
4424
+ "date": "2019-02-02",
4425
+ "day": 2,
4426
+ "future": false,
4427
+ "hasDay": true,
4428
+ "hasTime": true,
4429
+ "hour": 16,
4430
+ "minute": 0,
4431
+ "month": 2,
4432
+ "past": true,
4433
+ "present": false,
4434
+ "time": "16:00",
4435
+ "weekday": 6,
4436
+ "year": 2019,
4437
+ },
4438
+ Object {
4439
+ "date": "2019-02-02",
4440
+ "day": 2,
4441
+ "future": false,
4442
+ "hasDay": true,
4443
+ "hasTime": true,
4444
+ "hour": 17,
4445
+ "minute": 0,
4446
+ "month": 2,
4447
+ "past": true,
4448
+ "present": false,
4449
+ "time": "17:00",
4450
+ "weekday": 6,
4451
+ "year": 2019,
4452
+ },
4453
+ Object {
4454
+ "date": "2019-02-02",
4455
+ "day": 2,
4456
+ "future": false,
4457
+ "hasDay": true,
4458
+ "hasTime": true,
4459
+ "hour": 18,
4460
+ "minute": 0,
4461
+ "month": 2,
4462
+ "past": true,
4463
+ "present": false,
4464
+ "time": "18:00",
4465
+ "weekday": 6,
4466
+ "year": 2019,
4467
+ },
4468
+ Object {
4469
+ "date": "2019-02-02",
4470
+ "day": 2,
4471
+ "future": false,
4472
+ "hasDay": true,
4473
+ "hasTime": true,
4474
+ "hour": 19,
4475
+ "minute": 0,
4476
+ "month": 2,
4477
+ "past": true,
4478
+ "present": false,
4479
+ "time": "19:00",
4480
+ "weekday": 6,
4481
+ "year": 2019,
4482
+ },
4483
+ Object {
4484
+ "date": "2019-02-02",
4485
+ "day": 2,
4486
+ "future": false,
4487
+ "hasDay": true,
4488
+ "hasTime": true,
4489
+ "hour": 20,
4490
+ "minute": 0,
4491
+ "month": 2,
4492
+ "past": true,
4493
+ "present": false,
4494
+ "time": "20:00",
4495
+ "weekday": 6,
4496
+ "year": 2019,
4497
+ },
4498
+ Object {
4499
+ "date": "2019-02-02",
4500
+ "day": 2,
4501
+ "future": false,
4502
+ "hasDay": true,
4503
+ "hasTime": true,
4504
+ "hour": 21,
4505
+ "minute": 0,
4506
+ "month": 2,
4507
+ "past": true,
4508
+ "present": false,
4509
+ "time": "21:00",
4510
+ "weekday": 6,
4511
+ "year": 2019,
4512
+ },
4513
+ Object {
4514
+ "date": "2019-02-02",
4515
+ "day": 2,
4516
+ "future": false,
4517
+ "hasDay": true,
4518
+ "hasTime": true,
4519
+ "hour": 22,
4520
+ "minute": 0,
4521
+ "month": 2,
4522
+ "past": true,
4523
+ "present": false,
4524
+ "time": "22:00",
4525
+ "weekday": 6,
4526
+ "year": 2019,
4527
+ },
4528
+ Object {
4529
+ "date": "2019-02-02",
4530
+ "day": 2,
4531
+ "future": false,
4532
+ "hasDay": true,
4533
+ "hasTime": true,
4534
+ "hour": 23,
4535
+ "minute": 0,
4536
+ "month": 2,
4537
+ "past": true,
4538
+ "present": false,
4539
+ "time": "23:00",
4540
+ "weekday": 6,
4541
+ "year": 2019,
4542
+ },
4543
+ ],
4544
+ ]
4545
+ `;
4546
+
4547
+ exports[`calendar-with-intervals.ts should generate slot scope 1`] = `
4548
+ Object {
4549
+ "date": "2019-02-08",
4550
+ "day": 8,
4551
+ "future": false,
4552
+ "hasDay": true,
4553
+ "hasTime": false,
4554
+ "hour": 0,
4555
+ "minute": 0,
4556
+ "minutesToPixels": [Function],
4557
+ "month": 2,
4558
+ "past": false,
4559
+ "present": false,
4560
+ "time": "",
4561
+ "timeDelta": [Function],
4562
+ "timeToY": [Function],
4563
+ "weekday": 5,
4564
+ "year": 2019,
4565
+ }
4566
+ `;