@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,3387 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`VDatePickerDateTable.ts should match snapshot with first day of week 1`] = `
4
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
5
+ <table>
6
+ <thead>
7
+ <tr>
8
+ <th>
9
+ T
10
+ </th>
11
+ <th>
12
+ W
13
+ </th>
14
+ <th>
15
+ T
16
+ </th>
17
+ <th>
18
+ F
19
+ </th>
20
+ <th>
21
+ S
22
+ </th>
23
+ <th>
24
+ S
25
+ </th>
26
+ <th>
27
+ M
28
+ </th>
29
+ </tr>
30
+ </thead>
31
+ <tbody>
32
+ <tr>
33
+ <td>
34
+ </td>
35
+ <td>
36
+ </td>
37
+ <td>
38
+ </td>
39
+ <td>
40
+ </td>
41
+ <td>
42
+ </td>
43
+ <td>
44
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
45
+ type="button"
46
+ >
47
+ <div class="v-btn__content">
48
+ 1
49
+ </div>
50
+ </button>
51
+ </td>
52
+ <td>
53
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
54
+ type="button"
55
+ >
56
+ <div class="v-btn__content">
57
+ 2
58
+ </div>
59
+ </button>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <td>
64
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
65
+ type="button"
66
+ >
67
+ <div class="v-btn__content">
68
+ 3
69
+ </div>
70
+ </button>
71
+ </td>
72
+ <td>
73
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
74
+ type="button"
75
+ >
76
+ <div class="v-btn__content">
77
+ 4
78
+ </div>
79
+ </button>
80
+ </td>
81
+ <td>
82
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
83
+ type="button"
84
+ >
85
+ <div class="v-btn__content">
86
+ 5
87
+ </div>
88
+ </button>
89
+ </td>
90
+ <td>
91
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
92
+ type="button"
93
+ >
94
+ <div class="v-btn__content">
95
+ 6
96
+ </div>
97
+ </button>
98
+ </td>
99
+ <td>
100
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
101
+ type="button"
102
+ >
103
+ <div class="v-btn__content">
104
+ 7
105
+ </div>
106
+ </button>
107
+ </td>
108
+ <td>
109
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
110
+ type="button"
111
+ >
112
+ <div class="v-btn__content">
113
+ 8
114
+ </div>
115
+ </button>
116
+ </td>
117
+ <td>
118
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
119
+ type="button"
120
+ >
121
+ <div class="v-btn__content">
122
+ 9
123
+ </div>
124
+ </button>
125
+ </td>
126
+ </tr>
127
+ <tr>
128
+ <td>
129
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
130
+ type="button"
131
+ >
132
+ <div class="v-btn__content">
133
+ 10
134
+ </div>
135
+ </button>
136
+ </td>
137
+ <td>
138
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
139
+ type="button"
140
+ >
141
+ <div class="v-btn__content">
142
+ 11
143
+ </div>
144
+ </button>
145
+ </td>
146
+ <td>
147
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
148
+ type="button"
149
+ >
150
+ <div class="v-btn__content">
151
+ 12
152
+ </div>
153
+ </button>
154
+ </td>
155
+ <td>
156
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
157
+ type="button"
158
+ >
159
+ <div class="v-btn__content">
160
+ 13
161
+ </div>
162
+ </button>
163
+ </td>
164
+ <td>
165
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
166
+ type="button"
167
+ >
168
+ <div class="v-btn__content">
169
+ 14
170
+ </div>
171
+ </button>
172
+ </td>
173
+ <td>
174
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
175
+ type="button"
176
+ >
177
+ <div class="v-btn__content">
178
+ 15
179
+ </div>
180
+ </button>
181
+ </td>
182
+ <td>
183
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
184
+ type="button"
185
+ >
186
+ <div class="v-btn__content">
187
+ 16
188
+ </div>
189
+ </button>
190
+ </td>
191
+ </tr>
192
+ <tr>
193
+ <td>
194
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
195
+ type="button"
196
+ >
197
+ <div class="v-btn__content">
198
+ 17
199
+ </div>
200
+ </button>
201
+ </td>
202
+ <td>
203
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
204
+ type="button"
205
+ >
206
+ <div class="v-btn__content">
207
+ 18
208
+ </div>
209
+ </button>
210
+ </td>
211
+ <td>
212
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
213
+ type="button"
214
+ >
215
+ <div class="v-btn__content">
216
+ 19
217
+ </div>
218
+ </button>
219
+ </td>
220
+ <td>
221
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
222
+ type="button"
223
+ >
224
+ <div class="v-btn__content">
225
+ 20
226
+ </div>
227
+ </button>
228
+ </td>
229
+ <td>
230
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
231
+ type="button"
232
+ >
233
+ <div class="v-btn__content">
234
+ 21
235
+ </div>
236
+ </button>
237
+ </td>
238
+ <td>
239
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
240
+ type="button"
241
+ >
242
+ <div class="v-btn__content">
243
+ 22
244
+ </div>
245
+ </button>
246
+ </td>
247
+ <td>
248
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
249
+ type="button"
250
+ >
251
+ <div class="v-btn__content">
252
+ 23
253
+ </div>
254
+ </button>
255
+ </td>
256
+ </tr>
257
+ <tr>
258
+ <td>
259
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
260
+ type="button"
261
+ >
262
+ <div class="v-btn__content">
263
+ 24
264
+ </div>
265
+ </button>
266
+ </td>
267
+ <td>
268
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
269
+ type="button"
270
+ >
271
+ <div class="v-btn__content">
272
+ 25
273
+ </div>
274
+ </button>
275
+ </td>
276
+ <td>
277
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
278
+ type="button"
279
+ >
280
+ <div class="v-btn__content">
281
+ 26
282
+ </div>
283
+ </button>
284
+ </td>
285
+ <td>
286
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
287
+ type="button"
288
+ >
289
+ <div class="v-btn__content">
290
+ 27
291
+ </div>
292
+ </button>
293
+ </td>
294
+ <td>
295
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
296
+ type="button"
297
+ >
298
+ <div class="v-btn__content">
299
+ 28
300
+ </div>
301
+ </button>
302
+ </td>
303
+ <td>
304
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
305
+ type="button"
306
+ >
307
+ <div class="v-btn__content">
308
+ 29
309
+ </div>
310
+ </button>
311
+ </td>
312
+ <td>
313
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
314
+ type="button"
315
+ >
316
+ <div class="v-btn__content">
317
+ 30
318
+ </div>
319
+ </button>
320
+ </td>
321
+ </tr>
322
+ <tr>
323
+ <td>
324
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
325
+ type="button"
326
+ >
327
+ <div class="v-btn__content">
328
+ 31
329
+ </div>
330
+ </button>
331
+ </td>
332
+ <td>
333
+ </td>
334
+ <td>
335
+ </td>
336
+ <td>
337
+ </td>
338
+ <td>
339
+ </td>
340
+ <td>
341
+ </td>
342
+ <td>
343
+ </td>
344
+ </tr>
345
+ </tbody>
346
+ </table>
347
+ </div>
348
+ `;
349
+
350
+ exports[`VDatePickerDateTable.ts should render component and match snapshot 1`] = `
351
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
352
+ <table>
353
+ <thead>
354
+ <tr>
355
+ <th>
356
+ S
357
+ </th>
358
+ <th>
359
+ M
360
+ </th>
361
+ <th>
362
+ T
363
+ </th>
364
+ <th>
365
+ W
366
+ </th>
367
+ <th>
368
+ T
369
+ </th>
370
+ <th>
371
+ F
372
+ </th>
373
+ <th>
374
+ S
375
+ </th>
376
+ </tr>
377
+ </thead>
378
+ <tbody>
379
+ <tr>
380
+ <td>
381
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
382
+ type="button"
383
+ >
384
+ <div class="v-btn__content">
385
+ 1
386
+ </div>
387
+ </button>
388
+ </td>
389
+ <td>
390
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
391
+ type="button"
392
+ >
393
+ <div class="v-btn__content">
394
+ 2
395
+ </div>
396
+ </button>
397
+ </td>
398
+ <td>
399
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
400
+ type="button"
401
+ >
402
+ <div class="v-btn__content">
403
+ 3
404
+ </div>
405
+ </button>
406
+ </td>
407
+ <td>
408
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
409
+ type="button"
410
+ >
411
+ <div class="v-btn__content">
412
+ 4
413
+ </div>
414
+ </button>
415
+ </td>
416
+ <td>
417
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
418
+ type="button"
419
+ >
420
+ <div class="v-btn__content">
421
+ 5
422
+ </div>
423
+ </button>
424
+ </td>
425
+ <td>
426
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
427
+ type="button"
428
+ >
429
+ <div class="v-btn__content">
430
+ 6
431
+ </div>
432
+ </button>
433
+ </td>
434
+ <td>
435
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
436
+ type="button"
437
+ >
438
+ <div class="v-btn__content">
439
+ 7
440
+ </div>
441
+ </button>
442
+ </td>
443
+ </tr>
444
+ <tr>
445
+ <td>
446
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
447
+ type="button"
448
+ >
449
+ <div class="v-btn__content">
450
+ 8
451
+ </div>
452
+ </button>
453
+ </td>
454
+ <td>
455
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
456
+ type="button"
457
+ >
458
+ <div class="v-btn__content">
459
+ 9
460
+ </div>
461
+ </button>
462
+ </td>
463
+ <td>
464
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
465
+ type="button"
466
+ >
467
+ <div class="v-btn__content">
468
+ 10
469
+ </div>
470
+ </button>
471
+ </td>
472
+ <td>
473
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
474
+ type="button"
475
+ >
476
+ <div class="v-btn__content">
477
+ 11
478
+ </div>
479
+ </button>
480
+ </td>
481
+ <td>
482
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
483
+ type="button"
484
+ >
485
+ <div class="v-btn__content">
486
+ 12
487
+ </div>
488
+ </button>
489
+ </td>
490
+ <td>
491
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
492
+ type="button"
493
+ >
494
+ <div class="v-btn__content">
495
+ 13
496
+ </div>
497
+ </button>
498
+ </td>
499
+ <td>
500
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
501
+ type="button"
502
+ >
503
+ <div class="v-btn__content">
504
+ 14
505
+ </div>
506
+ </button>
507
+ </td>
508
+ </tr>
509
+ <tr>
510
+ <td>
511
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
512
+ type="button"
513
+ >
514
+ <div class="v-btn__content">
515
+ 15
516
+ </div>
517
+ </button>
518
+ </td>
519
+ <td>
520
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
521
+ type="button"
522
+ >
523
+ <div class="v-btn__content">
524
+ 16
525
+ </div>
526
+ </button>
527
+ </td>
528
+ <td>
529
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
530
+ type="button"
531
+ >
532
+ <div class="v-btn__content">
533
+ 17
534
+ </div>
535
+ </button>
536
+ </td>
537
+ <td>
538
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
539
+ type="button"
540
+ >
541
+ <div class="v-btn__content">
542
+ 18
543
+ </div>
544
+ </button>
545
+ </td>
546
+ <td>
547
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
548
+ type="button"
549
+ >
550
+ <div class="v-btn__content">
551
+ 19
552
+ </div>
553
+ </button>
554
+ </td>
555
+ <td>
556
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
557
+ type="button"
558
+ >
559
+ <div class="v-btn__content">
560
+ 20
561
+ </div>
562
+ </button>
563
+ </td>
564
+ <td>
565
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
566
+ type="button"
567
+ >
568
+ <div class="v-btn__content">
569
+ 21
570
+ </div>
571
+ </button>
572
+ </td>
573
+ </tr>
574
+ <tr>
575
+ <td>
576
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
577
+ type="button"
578
+ >
579
+ <div class="v-btn__content">
580
+ 22
581
+ </div>
582
+ </button>
583
+ </td>
584
+ <td>
585
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
586
+ type="button"
587
+ >
588
+ <div class="v-btn__content">
589
+ 23
590
+ </div>
591
+ </button>
592
+ </td>
593
+ <td>
594
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
595
+ type="button"
596
+ >
597
+ <div class="v-btn__content">
598
+ 24
599
+ </div>
600
+ </button>
601
+ </td>
602
+ <td>
603
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
604
+ type="button"
605
+ >
606
+ <div class="v-btn__content">
607
+ 25
608
+ </div>
609
+ </button>
610
+ </td>
611
+ <td>
612
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
613
+ type="button"
614
+ >
615
+ <div class="v-btn__content">
616
+ 26
617
+ </div>
618
+ </button>
619
+ </td>
620
+ <td>
621
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
622
+ type="button"
623
+ >
624
+ <div class="v-btn__content">
625
+ 27
626
+ </div>
627
+ </button>
628
+ </td>
629
+ <td>
630
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
631
+ type="button"
632
+ >
633
+ <div class="v-btn__content">
634
+ 28
635
+ </div>
636
+ </button>
637
+ </td>
638
+ </tr>
639
+ <tr>
640
+ <td>
641
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
642
+ type="button"
643
+ >
644
+ <div class="v-btn__content">
645
+ 29
646
+ </div>
647
+ </button>
648
+ </td>
649
+ <td>
650
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
651
+ type="button"
652
+ >
653
+ <div class="v-btn__content">
654
+ 30
655
+ </div>
656
+ </button>
657
+ </td>
658
+ <td>
659
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
660
+ type="button"
661
+ >
662
+ <div class="v-btn__content">
663
+ 31
664
+ </div>
665
+ </button>
666
+ </td>
667
+ <td>
668
+ </td>
669
+ <td>
670
+ </td>
671
+ <td>
672
+ </td>
673
+ <td>
674
+ </td>
675
+ </tr>
676
+ </tbody>
677
+ </table>
678
+ </div>
679
+ `;
680
+
681
+ exports[`VDatePickerDateTable.ts should render component and match snapshot for multiple selection 1`] = `
682
+ <div class="v-date-picker-table v-date-picker-table--date theme--light"
683
+ multiple="true"
684
+ selecteddates="2005-11-03,2005-11-05,2005-11-08"
685
+ >
686
+ <table>
687
+ <thead>
688
+ <tr>
689
+ <th>
690
+ S
691
+ </th>
692
+ <th>
693
+ M
694
+ </th>
695
+ <th>
696
+ T
697
+ </th>
698
+ <th>
699
+ W
700
+ </th>
701
+ <th>
702
+ T
703
+ </th>
704
+ <th>
705
+ F
706
+ </th>
707
+ <th>
708
+ S
709
+ </th>
710
+ </tr>
711
+ </thead>
712
+ <tbody>
713
+ <tr>
714
+ <td>
715
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
716
+ type="button"
717
+ >
718
+ <div class="v-btn__content">
719
+ 1
720
+ </div>
721
+ </button>
722
+ </td>
723
+ <td>
724
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
725
+ type="button"
726
+ >
727
+ <div class="v-btn__content">
728
+ 2
729
+ </div>
730
+ </button>
731
+ </td>
732
+ <td>
733
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
734
+ type="button"
735
+ >
736
+ <div class="v-btn__content">
737
+ 3
738
+ </div>
739
+ </button>
740
+ </td>
741
+ <td>
742
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
743
+ type="button"
744
+ >
745
+ <div class="v-btn__content">
746
+ 4
747
+ </div>
748
+ </button>
749
+ </td>
750
+ <td>
751
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
752
+ type="button"
753
+ >
754
+ <div class="v-btn__content">
755
+ 5
756
+ </div>
757
+ </button>
758
+ </td>
759
+ <td>
760
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
761
+ type="button"
762
+ >
763
+ <div class="v-btn__content">
764
+ 6
765
+ </div>
766
+ </button>
767
+ </td>
768
+ <td>
769
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
770
+ type="button"
771
+ >
772
+ <div class="v-btn__content">
773
+ 7
774
+ </div>
775
+ </button>
776
+ </td>
777
+ </tr>
778
+ <tr>
779
+ <td>
780
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
781
+ type="button"
782
+ >
783
+ <div class="v-btn__content">
784
+ 8
785
+ </div>
786
+ </button>
787
+ </td>
788
+ <td>
789
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
790
+ type="button"
791
+ >
792
+ <div class="v-btn__content">
793
+ 9
794
+ </div>
795
+ </button>
796
+ </td>
797
+ <td>
798
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
799
+ type="button"
800
+ >
801
+ <div class="v-btn__content">
802
+ 10
803
+ </div>
804
+ </button>
805
+ </td>
806
+ <td>
807
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
808
+ type="button"
809
+ >
810
+ <div class="v-btn__content">
811
+ 11
812
+ </div>
813
+ </button>
814
+ </td>
815
+ <td>
816
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
817
+ type="button"
818
+ >
819
+ <div class="v-btn__content">
820
+ 12
821
+ </div>
822
+ </button>
823
+ </td>
824
+ <td>
825
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
826
+ type="button"
827
+ >
828
+ <div class="v-btn__content">
829
+ 13
830
+ </div>
831
+ </button>
832
+ </td>
833
+ <td>
834
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
835
+ type="button"
836
+ >
837
+ <div class="v-btn__content">
838
+ 14
839
+ </div>
840
+ </button>
841
+ </td>
842
+ </tr>
843
+ <tr>
844
+ <td>
845
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
846
+ type="button"
847
+ >
848
+ <div class="v-btn__content">
849
+ 15
850
+ </div>
851
+ </button>
852
+ </td>
853
+ <td>
854
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
855
+ type="button"
856
+ >
857
+ <div class="v-btn__content">
858
+ 16
859
+ </div>
860
+ </button>
861
+ </td>
862
+ <td>
863
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
864
+ type="button"
865
+ >
866
+ <div class="v-btn__content">
867
+ 17
868
+ </div>
869
+ </button>
870
+ </td>
871
+ <td>
872
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
873
+ type="button"
874
+ >
875
+ <div class="v-btn__content">
876
+ 18
877
+ </div>
878
+ </button>
879
+ </td>
880
+ <td>
881
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
882
+ type="button"
883
+ >
884
+ <div class="v-btn__content">
885
+ 19
886
+ </div>
887
+ </button>
888
+ </td>
889
+ <td>
890
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
891
+ type="button"
892
+ >
893
+ <div class="v-btn__content">
894
+ 20
895
+ </div>
896
+ </button>
897
+ </td>
898
+ <td>
899
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
900
+ type="button"
901
+ >
902
+ <div class="v-btn__content">
903
+ 21
904
+ </div>
905
+ </button>
906
+ </td>
907
+ </tr>
908
+ <tr>
909
+ <td>
910
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
911
+ type="button"
912
+ >
913
+ <div class="v-btn__content">
914
+ 22
915
+ </div>
916
+ </button>
917
+ </td>
918
+ <td>
919
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
920
+ type="button"
921
+ >
922
+ <div class="v-btn__content">
923
+ 23
924
+ </div>
925
+ </button>
926
+ </td>
927
+ <td>
928
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
929
+ type="button"
930
+ >
931
+ <div class="v-btn__content">
932
+ 24
933
+ </div>
934
+ </button>
935
+ </td>
936
+ <td>
937
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
938
+ type="button"
939
+ >
940
+ <div class="v-btn__content">
941
+ 25
942
+ </div>
943
+ </button>
944
+ </td>
945
+ <td>
946
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
947
+ type="button"
948
+ >
949
+ <div class="v-btn__content">
950
+ 26
951
+ </div>
952
+ </button>
953
+ </td>
954
+ <td>
955
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
956
+ type="button"
957
+ >
958
+ <div class="v-btn__content">
959
+ 27
960
+ </div>
961
+ </button>
962
+ </td>
963
+ <td>
964
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
965
+ type="button"
966
+ >
967
+ <div class="v-btn__content">
968
+ 28
969
+ </div>
970
+ </button>
971
+ </td>
972
+ </tr>
973
+ <tr>
974
+ <td>
975
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
976
+ type="button"
977
+ >
978
+ <div class="v-btn__content">
979
+ 29
980
+ </div>
981
+ </button>
982
+ </td>
983
+ <td>
984
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
985
+ type="button"
986
+ >
987
+ <div class="v-btn__content">
988
+ 30
989
+ </div>
990
+ </button>
991
+ </td>
992
+ <td>
993
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
994
+ type="button"
995
+ >
996
+ <div class="v-btn__content">
997
+ 31
998
+ </div>
999
+ </button>
1000
+ </td>
1001
+ <td>
1002
+ </td>
1003
+ <td>
1004
+ </td>
1005
+ <td>
1006
+ </td>
1007
+ <td>
1008
+ </td>
1009
+ </tr>
1010
+ </tbody>
1011
+ </table>
1012
+ </div>
1013
+ `;
1014
+
1015
+ exports[`VDatePickerDateTable.ts should render component with events (array) and match snapshot 1`] = `
1016
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
1017
+ <table>
1018
+ <thead>
1019
+ <tr>
1020
+ <th>
1021
+ S
1022
+ </th>
1023
+ <th>
1024
+ M
1025
+ </th>
1026
+ <th>
1027
+ T
1028
+ </th>
1029
+ <th>
1030
+ W
1031
+ </th>
1032
+ <th>
1033
+ T
1034
+ </th>
1035
+ <th>
1036
+ F
1037
+ </th>
1038
+ <th>
1039
+ S
1040
+ </th>
1041
+ </tr>
1042
+ </thead>
1043
+ <tbody>
1044
+ <tr>
1045
+ <td>
1046
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1047
+ type="button"
1048
+ >
1049
+ <div class="v-btn__content">
1050
+ 1
1051
+ </div>
1052
+ </button>
1053
+ </td>
1054
+ <td>
1055
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1056
+ type="button"
1057
+ >
1058
+ <div class="v-btn__content">
1059
+ 2
1060
+ </div>
1061
+ </button>
1062
+ </td>
1063
+ <td>
1064
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1065
+ type="button"
1066
+ >
1067
+ <div class="v-btn__content">
1068
+ 3
1069
+ </div>
1070
+ <div class="v-date-picker-table__events">
1071
+ <div class="red">
1072
+ </div>
1073
+ </div>
1074
+ </button>
1075
+ </td>
1076
+ <td>
1077
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1078
+ type="button"
1079
+ >
1080
+ <div class="v-btn__content">
1081
+ 4
1082
+ </div>
1083
+ </button>
1084
+ </td>
1085
+ <td>
1086
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1087
+ type="button"
1088
+ >
1089
+ <div class="v-btn__content">
1090
+ 5
1091
+ </div>
1092
+ </button>
1093
+ </td>
1094
+ <td>
1095
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1096
+ type="button"
1097
+ >
1098
+ <div class="v-btn__content">
1099
+ 6
1100
+ </div>
1101
+ </button>
1102
+ </td>
1103
+ <td>
1104
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1105
+ type="button"
1106
+ >
1107
+ <div class="v-btn__content">
1108
+ 7
1109
+ </div>
1110
+ </button>
1111
+ </td>
1112
+ </tr>
1113
+ <tr>
1114
+ <td>
1115
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1116
+ type="button"
1117
+ >
1118
+ <div class="v-btn__content">
1119
+ 8
1120
+ </div>
1121
+ </button>
1122
+ </td>
1123
+ <td>
1124
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1125
+ type="button"
1126
+ >
1127
+ <div class="v-btn__content">
1128
+ 9
1129
+ </div>
1130
+ </button>
1131
+ </td>
1132
+ <td>
1133
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1134
+ type="button"
1135
+ >
1136
+ <div class="v-btn__content">
1137
+ 10
1138
+ </div>
1139
+ </button>
1140
+ </td>
1141
+ <td>
1142
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1143
+ type="button"
1144
+ >
1145
+ <div class="v-btn__content">
1146
+ 11
1147
+ </div>
1148
+ </button>
1149
+ </td>
1150
+ <td>
1151
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1152
+ type="button"
1153
+ >
1154
+ <div class="v-btn__content">
1155
+ 12
1156
+ </div>
1157
+ </button>
1158
+ </td>
1159
+ <td>
1160
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1161
+ type="button"
1162
+ >
1163
+ <div class="v-btn__content">
1164
+ 13
1165
+ </div>
1166
+ </button>
1167
+ </td>
1168
+ <td>
1169
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1170
+ type="button"
1171
+ >
1172
+ <div class="v-btn__content">
1173
+ 14
1174
+ </div>
1175
+ </button>
1176
+ </td>
1177
+ </tr>
1178
+ <tr>
1179
+ <td>
1180
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1181
+ type="button"
1182
+ >
1183
+ <div class="v-btn__content">
1184
+ 15
1185
+ </div>
1186
+ </button>
1187
+ </td>
1188
+ <td>
1189
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1190
+ type="button"
1191
+ >
1192
+ <div class="v-btn__content">
1193
+ 16
1194
+ </div>
1195
+ </button>
1196
+ </td>
1197
+ <td>
1198
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1199
+ type="button"
1200
+ >
1201
+ <div class="v-btn__content">
1202
+ 17
1203
+ </div>
1204
+ </button>
1205
+ </td>
1206
+ <td>
1207
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1208
+ type="button"
1209
+ >
1210
+ <div class="v-btn__content">
1211
+ 18
1212
+ </div>
1213
+ </button>
1214
+ </td>
1215
+ <td>
1216
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1217
+ type="button"
1218
+ >
1219
+ <div class="v-btn__content">
1220
+ 19
1221
+ </div>
1222
+ </button>
1223
+ </td>
1224
+ <td>
1225
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1226
+ type="button"
1227
+ >
1228
+ <div class="v-btn__content">
1229
+ 20
1230
+ </div>
1231
+ </button>
1232
+ </td>
1233
+ <td>
1234
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1235
+ type="button"
1236
+ >
1237
+ <div class="v-btn__content">
1238
+ 21
1239
+ </div>
1240
+ </button>
1241
+ </td>
1242
+ </tr>
1243
+ <tr>
1244
+ <td>
1245
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1246
+ type="button"
1247
+ >
1248
+ <div class="v-btn__content">
1249
+ 22
1250
+ </div>
1251
+ </button>
1252
+ </td>
1253
+ <td>
1254
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1255
+ type="button"
1256
+ >
1257
+ <div class="v-btn__content">
1258
+ 23
1259
+ </div>
1260
+ </button>
1261
+ </td>
1262
+ <td>
1263
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1264
+ type="button"
1265
+ >
1266
+ <div class="v-btn__content">
1267
+ 24
1268
+ </div>
1269
+ </button>
1270
+ </td>
1271
+ <td>
1272
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1273
+ type="button"
1274
+ >
1275
+ <div class="v-btn__content">
1276
+ 25
1277
+ </div>
1278
+ </button>
1279
+ </td>
1280
+ <td>
1281
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1282
+ type="button"
1283
+ >
1284
+ <div class="v-btn__content">
1285
+ 26
1286
+ </div>
1287
+ </button>
1288
+ </td>
1289
+ <td>
1290
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1291
+ type="button"
1292
+ >
1293
+ <div class="v-btn__content">
1294
+ 27
1295
+ </div>
1296
+ </button>
1297
+ </td>
1298
+ <td>
1299
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1300
+ type="button"
1301
+ >
1302
+ <div class="v-btn__content">
1303
+ 28
1304
+ </div>
1305
+ </button>
1306
+ </td>
1307
+ </tr>
1308
+ <tr>
1309
+ <td>
1310
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1311
+ type="button"
1312
+ >
1313
+ <div class="v-btn__content">
1314
+ 29
1315
+ </div>
1316
+ </button>
1317
+ </td>
1318
+ <td>
1319
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1320
+ type="button"
1321
+ >
1322
+ <div class="v-btn__content">
1323
+ 30
1324
+ </div>
1325
+ </button>
1326
+ </td>
1327
+ <td>
1328
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1329
+ type="button"
1330
+ >
1331
+ <div class="v-btn__content">
1332
+ 31
1333
+ </div>
1334
+ </button>
1335
+ </td>
1336
+ <td>
1337
+ </td>
1338
+ <td>
1339
+ </td>
1340
+ <td>
1341
+ </td>
1342
+ <td>
1343
+ </td>
1344
+ </tr>
1345
+ </tbody>
1346
+ </table>
1347
+ </div>
1348
+ `;
1349
+
1350
+ exports[`VDatePickerDateTable.ts should render component with events (function) and match snapshot 1`] = `
1351
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
1352
+ <table>
1353
+ <thead>
1354
+ <tr>
1355
+ <th>
1356
+ S
1357
+ </th>
1358
+ <th>
1359
+ M
1360
+ </th>
1361
+ <th>
1362
+ T
1363
+ </th>
1364
+ <th>
1365
+ W
1366
+ </th>
1367
+ <th>
1368
+ T
1369
+ </th>
1370
+ <th>
1371
+ F
1372
+ </th>
1373
+ <th>
1374
+ S
1375
+ </th>
1376
+ </tr>
1377
+ </thead>
1378
+ <tbody>
1379
+ <tr>
1380
+ <td>
1381
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1382
+ type="button"
1383
+ >
1384
+ <div class="v-btn__content">
1385
+ 1
1386
+ </div>
1387
+ </button>
1388
+ </td>
1389
+ <td>
1390
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1391
+ type="button"
1392
+ >
1393
+ <div class="v-btn__content">
1394
+ 2
1395
+ </div>
1396
+ </button>
1397
+ </td>
1398
+ <td>
1399
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1400
+ type="button"
1401
+ >
1402
+ <div class="v-btn__content">
1403
+ 3
1404
+ </div>
1405
+ <div class="v-date-picker-table__events">
1406
+ <div class="red">
1407
+ </div>
1408
+ </div>
1409
+ </button>
1410
+ </td>
1411
+ <td>
1412
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1413
+ type="button"
1414
+ >
1415
+ <div class="v-btn__content">
1416
+ 4
1417
+ </div>
1418
+ </button>
1419
+ </td>
1420
+ <td>
1421
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1422
+ type="button"
1423
+ >
1424
+ <div class="v-btn__content">
1425
+ 5
1426
+ </div>
1427
+ </button>
1428
+ </td>
1429
+ <td>
1430
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1431
+ type="button"
1432
+ >
1433
+ <div class="v-btn__content">
1434
+ 6
1435
+ </div>
1436
+ </button>
1437
+ </td>
1438
+ <td>
1439
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1440
+ type="button"
1441
+ >
1442
+ <div class="v-btn__content">
1443
+ 7
1444
+ </div>
1445
+ </button>
1446
+ </td>
1447
+ </tr>
1448
+ <tr>
1449
+ <td>
1450
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1451
+ type="button"
1452
+ >
1453
+ <div class="v-btn__content">
1454
+ 8
1455
+ </div>
1456
+ </button>
1457
+ </td>
1458
+ <td>
1459
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1460
+ type="button"
1461
+ >
1462
+ <div class="v-btn__content">
1463
+ 9
1464
+ </div>
1465
+ </button>
1466
+ </td>
1467
+ <td>
1468
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1469
+ type="button"
1470
+ >
1471
+ <div class="v-btn__content">
1472
+ 10
1473
+ </div>
1474
+ </button>
1475
+ </td>
1476
+ <td>
1477
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1478
+ type="button"
1479
+ >
1480
+ <div class="v-btn__content">
1481
+ 11
1482
+ </div>
1483
+ </button>
1484
+ </td>
1485
+ <td>
1486
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1487
+ type="button"
1488
+ >
1489
+ <div class="v-btn__content">
1490
+ 12
1491
+ </div>
1492
+ </button>
1493
+ </td>
1494
+ <td>
1495
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1496
+ type="button"
1497
+ >
1498
+ <div class="v-btn__content">
1499
+ 13
1500
+ </div>
1501
+ </button>
1502
+ </td>
1503
+ <td>
1504
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1505
+ type="button"
1506
+ >
1507
+ <div class="v-btn__content">
1508
+ 14
1509
+ </div>
1510
+ </button>
1511
+ </td>
1512
+ </tr>
1513
+ <tr>
1514
+ <td>
1515
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1516
+ type="button"
1517
+ >
1518
+ <div class="v-btn__content">
1519
+ 15
1520
+ </div>
1521
+ </button>
1522
+ </td>
1523
+ <td>
1524
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1525
+ type="button"
1526
+ >
1527
+ <div class="v-btn__content">
1528
+ 16
1529
+ </div>
1530
+ </button>
1531
+ </td>
1532
+ <td>
1533
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1534
+ type="button"
1535
+ >
1536
+ <div class="v-btn__content">
1537
+ 17
1538
+ </div>
1539
+ </button>
1540
+ </td>
1541
+ <td>
1542
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1543
+ type="button"
1544
+ >
1545
+ <div class="v-btn__content">
1546
+ 18
1547
+ </div>
1548
+ </button>
1549
+ </td>
1550
+ <td>
1551
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1552
+ type="button"
1553
+ >
1554
+ <div class="v-btn__content">
1555
+ 19
1556
+ </div>
1557
+ </button>
1558
+ </td>
1559
+ <td>
1560
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1561
+ type="button"
1562
+ >
1563
+ <div class="v-btn__content">
1564
+ 20
1565
+ </div>
1566
+ </button>
1567
+ </td>
1568
+ <td>
1569
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1570
+ type="button"
1571
+ >
1572
+ <div class="v-btn__content">
1573
+ 21
1574
+ </div>
1575
+ </button>
1576
+ </td>
1577
+ </tr>
1578
+ <tr>
1579
+ <td>
1580
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1581
+ type="button"
1582
+ >
1583
+ <div class="v-btn__content">
1584
+ 22
1585
+ </div>
1586
+ </button>
1587
+ </td>
1588
+ <td>
1589
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1590
+ type="button"
1591
+ >
1592
+ <div class="v-btn__content">
1593
+ 23
1594
+ </div>
1595
+ </button>
1596
+ </td>
1597
+ <td>
1598
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1599
+ type="button"
1600
+ >
1601
+ <div class="v-btn__content">
1602
+ 24
1603
+ </div>
1604
+ </button>
1605
+ </td>
1606
+ <td>
1607
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1608
+ type="button"
1609
+ >
1610
+ <div class="v-btn__content">
1611
+ 25
1612
+ </div>
1613
+ </button>
1614
+ </td>
1615
+ <td>
1616
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1617
+ type="button"
1618
+ >
1619
+ <div class="v-btn__content">
1620
+ 26
1621
+ </div>
1622
+ </button>
1623
+ </td>
1624
+ <td>
1625
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1626
+ type="button"
1627
+ >
1628
+ <div class="v-btn__content">
1629
+ 27
1630
+ </div>
1631
+ </button>
1632
+ </td>
1633
+ <td>
1634
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1635
+ type="button"
1636
+ >
1637
+ <div class="v-btn__content">
1638
+ 28
1639
+ </div>
1640
+ </button>
1641
+ </td>
1642
+ </tr>
1643
+ <tr>
1644
+ <td>
1645
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1646
+ type="button"
1647
+ >
1648
+ <div class="v-btn__content">
1649
+ 29
1650
+ </div>
1651
+ </button>
1652
+ </td>
1653
+ <td>
1654
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1655
+ type="button"
1656
+ >
1657
+ <div class="v-btn__content">
1658
+ 30
1659
+ </div>
1660
+ </button>
1661
+ </td>
1662
+ <td>
1663
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1664
+ type="button"
1665
+ >
1666
+ <div class="v-btn__content">
1667
+ 31
1668
+ </div>
1669
+ </button>
1670
+ </td>
1671
+ <td>
1672
+ </td>
1673
+ <td>
1674
+ </td>
1675
+ <td>
1676
+ </td>
1677
+ <td>
1678
+ </td>
1679
+ </tr>
1680
+ </tbody>
1681
+ </table>
1682
+ </div>
1683
+ `;
1684
+
1685
+ exports[`VDatePickerDateTable.ts should render component with events colored by function and match snapshot 1`] = `
1686
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
1687
+ <table>
1688
+ <thead>
1689
+ <tr>
1690
+ <th>
1691
+ S
1692
+ </th>
1693
+ <th>
1694
+ M
1695
+ </th>
1696
+ <th>
1697
+ T
1698
+ </th>
1699
+ <th>
1700
+ W
1701
+ </th>
1702
+ <th>
1703
+ T
1704
+ </th>
1705
+ <th>
1706
+ F
1707
+ </th>
1708
+ <th>
1709
+ S
1710
+ </th>
1711
+ </tr>
1712
+ </thead>
1713
+ <tbody>
1714
+ <tr>
1715
+ <td>
1716
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1717
+ type="button"
1718
+ >
1719
+ <div class="v-btn__content">
1720
+ 1
1721
+ </div>
1722
+ </button>
1723
+ </td>
1724
+ <td>
1725
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1726
+ type="button"
1727
+ >
1728
+ <div class="v-btn__content">
1729
+ 2
1730
+ </div>
1731
+ </button>
1732
+ </td>
1733
+ <td>
1734
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1735
+ type="button"
1736
+ >
1737
+ <div class="v-btn__content">
1738
+ 3
1739
+ </div>
1740
+ <div class="v-date-picker-table__events">
1741
+ <div class="red">
1742
+ </div>
1743
+ </div>
1744
+ </button>
1745
+ </td>
1746
+ <td>
1747
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1748
+ type="button"
1749
+ >
1750
+ <div class="v-btn__content">
1751
+ 4
1752
+ </div>
1753
+ </button>
1754
+ </td>
1755
+ <td>
1756
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1757
+ type="button"
1758
+ >
1759
+ <div class="v-btn__content">
1760
+ 5
1761
+ </div>
1762
+ </button>
1763
+ </td>
1764
+ <td>
1765
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1766
+ type="button"
1767
+ >
1768
+ <div class="v-btn__content">
1769
+ 6
1770
+ </div>
1771
+ </button>
1772
+ </td>
1773
+ <td>
1774
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1775
+ type="button"
1776
+ >
1777
+ <div class="v-btn__content">
1778
+ 7
1779
+ </div>
1780
+ </button>
1781
+ </td>
1782
+ </tr>
1783
+ <tr>
1784
+ <td>
1785
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1786
+ type="button"
1787
+ >
1788
+ <div class="v-btn__content">
1789
+ 8
1790
+ </div>
1791
+ </button>
1792
+ </td>
1793
+ <td>
1794
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1795
+ type="button"
1796
+ >
1797
+ <div class="v-btn__content">
1798
+ 9
1799
+ </div>
1800
+ </button>
1801
+ </td>
1802
+ <td>
1803
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1804
+ type="button"
1805
+ >
1806
+ <div class="v-btn__content">
1807
+ 10
1808
+ </div>
1809
+ </button>
1810
+ </td>
1811
+ <td>
1812
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1813
+ type="button"
1814
+ >
1815
+ <div class="v-btn__content">
1816
+ 11
1817
+ </div>
1818
+ </button>
1819
+ </td>
1820
+ <td>
1821
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1822
+ type="button"
1823
+ >
1824
+ <div class="v-btn__content">
1825
+ 12
1826
+ </div>
1827
+ </button>
1828
+ </td>
1829
+ <td>
1830
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1831
+ type="button"
1832
+ >
1833
+ <div class="v-btn__content">
1834
+ 13
1835
+ </div>
1836
+ </button>
1837
+ </td>
1838
+ <td>
1839
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1840
+ type="button"
1841
+ >
1842
+ <div class="v-btn__content">
1843
+ 14
1844
+ </div>
1845
+ </button>
1846
+ </td>
1847
+ </tr>
1848
+ <tr>
1849
+ <td>
1850
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1851
+ type="button"
1852
+ >
1853
+ <div class="v-btn__content">
1854
+ 15
1855
+ </div>
1856
+ </button>
1857
+ </td>
1858
+ <td>
1859
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1860
+ type="button"
1861
+ >
1862
+ <div class="v-btn__content">
1863
+ 16
1864
+ </div>
1865
+ </button>
1866
+ </td>
1867
+ <td>
1868
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1869
+ type="button"
1870
+ >
1871
+ <div class="v-btn__content">
1872
+ 17
1873
+ </div>
1874
+ </button>
1875
+ </td>
1876
+ <td>
1877
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1878
+ type="button"
1879
+ >
1880
+ <div class="v-btn__content">
1881
+ 18
1882
+ </div>
1883
+ </button>
1884
+ </td>
1885
+ <td>
1886
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1887
+ type="button"
1888
+ >
1889
+ <div class="v-btn__content">
1890
+ 19
1891
+ </div>
1892
+ </button>
1893
+ </td>
1894
+ <td>
1895
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1896
+ type="button"
1897
+ >
1898
+ <div class="v-btn__content">
1899
+ 20
1900
+ </div>
1901
+ </button>
1902
+ </td>
1903
+ <td>
1904
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1905
+ type="button"
1906
+ >
1907
+ <div class="v-btn__content">
1908
+ 21
1909
+ </div>
1910
+ </button>
1911
+ </td>
1912
+ </tr>
1913
+ <tr>
1914
+ <td>
1915
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1916
+ type="button"
1917
+ >
1918
+ <div class="v-btn__content">
1919
+ 22
1920
+ </div>
1921
+ </button>
1922
+ </td>
1923
+ <td>
1924
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1925
+ type="button"
1926
+ >
1927
+ <div class="v-btn__content">
1928
+ 23
1929
+ </div>
1930
+ </button>
1931
+ </td>
1932
+ <td>
1933
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1934
+ type="button"
1935
+ >
1936
+ <div class="v-btn__content">
1937
+ 24
1938
+ </div>
1939
+ </button>
1940
+ </td>
1941
+ <td>
1942
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1943
+ type="button"
1944
+ >
1945
+ <div class="v-btn__content">
1946
+ 25
1947
+ </div>
1948
+ </button>
1949
+ </td>
1950
+ <td>
1951
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1952
+ type="button"
1953
+ >
1954
+ <div class="v-btn__content">
1955
+ 26
1956
+ </div>
1957
+ </button>
1958
+ </td>
1959
+ <td>
1960
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1961
+ type="button"
1962
+ >
1963
+ <div class="v-btn__content">
1964
+ 27
1965
+ </div>
1966
+ </button>
1967
+ </td>
1968
+ <td>
1969
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1970
+ type="button"
1971
+ >
1972
+ <div class="v-btn__content">
1973
+ 28
1974
+ </div>
1975
+ </button>
1976
+ </td>
1977
+ </tr>
1978
+ <tr>
1979
+ <td>
1980
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1981
+ type="button"
1982
+ >
1983
+ <div class="v-btn__content">
1984
+ 29
1985
+ </div>
1986
+ </button>
1987
+ </td>
1988
+ <td>
1989
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1990
+ type="button"
1991
+ >
1992
+ <div class="v-btn__content">
1993
+ 30
1994
+ </div>
1995
+ </button>
1996
+ </td>
1997
+ <td>
1998
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
1999
+ type="button"
2000
+ >
2001
+ <div class="v-btn__content">
2002
+ 31
2003
+ </div>
2004
+ </button>
2005
+ </td>
2006
+ <td>
2007
+ </td>
2008
+ <td>
2009
+ </td>
2010
+ <td>
2011
+ </td>
2012
+ <td>
2013
+ </td>
2014
+ </tr>
2015
+ </tbody>
2016
+ </table>
2017
+ </div>
2018
+ `;
2019
+
2020
+ exports[`VDatePickerDateTable.ts should render component with events colored by object and match snapshot 1`] = `
2021
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
2022
+ <table>
2023
+ <thead>
2024
+ <tr>
2025
+ <th>
2026
+ S
2027
+ </th>
2028
+ <th>
2029
+ M
2030
+ </th>
2031
+ <th>
2032
+ T
2033
+ </th>
2034
+ <th>
2035
+ W
2036
+ </th>
2037
+ <th>
2038
+ T
2039
+ </th>
2040
+ <th>
2041
+ F
2042
+ </th>
2043
+ <th>
2044
+ S
2045
+ </th>
2046
+ </tr>
2047
+ </thead>
2048
+ <tbody>
2049
+ <tr>
2050
+ <td>
2051
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2052
+ type="button"
2053
+ >
2054
+ <div class="v-btn__content">
2055
+ 1
2056
+ </div>
2057
+ </button>
2058
+ </td>
2059
+ <td>
2060
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2061
+ type="button"
2062
+ >
2063
+ <div class="v-btn__content">
2064
+ 2
2065
+ </div>
2066
+ </button>
2067
+ </td>
2068
+ <td>
2069
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2070
+ type="button"
2071
+ >
2072
+ <div class="v-btn__content">
2073
+ 3
2074
+ </div>
2075
+ <div class="v-date-picker-table__events">
2076
+ <div class="red">
2077
+ </div>
2078
+ </div>
2079
+ </button>
2080
+ </td>
2081
+ <td>
2082
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2083
+ type="button"
2084
+ >
2085
+ <div class="v-btn__content">
2086
+ 4
2087
+ </div>
2088
+ <div class="v-date-picker-table__events">
2089
+ <div class="blue lighten-1">
2090
+ </div>
2091
+ </div>
2092
+ </button>
2093
+ </td>
2094
+ <td>
2095
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2096
+ type="button"
2097
+ >
2098
+ <div class="v-btn__content">
2099
+ 5
2100
+ </div>
2101
+ </button>
2102
+ </td>
2103
+ <td>
2104
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2105
+ type="button"
2106
+ >
2107
+ <div class="v-btn__content">
2108
+ 6
2109
+ </div>
2110
+ </button>
2111
+ </td>
2112
+ <td>
2113
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2114
+ type="button"
2115
+ >
2116
+ <div class="v-btn__content">
2117
+ 7
2118
+ </div>
2119
+ </button>
2120
+ </td>
2121
+ </tr>
2122
+ <tr>
2123
+ <td>
2124
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2125
+ type="button"
2126
+ >
2127
+ <div class="v-btn__content">
2128
+ 8
2129
+ </div>
2130
+ </button>
2131
+ </td>
2132
+ <td>
2133
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2134
+ type="button"
2135
+ >
2136
+ <div class="v-btn__content">
2137
+ 9
2138
+ </div>
2139
+ </button>
2140
+ </td>
2141
+ <td>
2142
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2143
+ type="button"
2144
+ >
2145
+ <div class="v-btn__content">
2146
+ 10
2147
+ </div>
2148
+ </button>
2149
+ </td>
2150
+ <td>
2151
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2152
+ type="button"
2153
+ >
2154
+ <div class="v-btn__content">
2155
+ 11
2156
+ </div>
2157
+ </button>
2158
+ </td>
2159
+ <td>
2160
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2161
+ type="button"
2162
+ >
2163
+ <div class="v-btn__content">
2164
+ 12
2165
+ </div>
2166
+ </button>
2167
+ </td>
2168
+ <td>
2169
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2170
+ type="button"
2171
+ >
2172
+ <div class="v-btn__content">
2173
+ 13
2174
+ </div>
2175
+ </button>
2176
+ </td>
2177
+ <td>
2178
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2179
+ type="button"
2180
+ >
2181
+ <div class="v-btn__content">
2182
+ 14
2183
+ </div>
2184
+ </button>
2185
+ </td>
2186
+ </tr>
2187
+ <tr>
2188
+ <td>
2189
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2190
+ type="button"
2191
+ >
2192
+ <div class="v-btn__content">
2193
+ 15
2194
+ </div>
2195
+ </button>
2196
+ </td>
2197
+ <td>
2198
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2199
+ type="button"
2200
+ >
2201
+ <div class="v-btn__content">
2202
+ 16
2203
+ </div>
2204
+ </button>
2205
+ </td>
2206
+ <td>
2207
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2208
+ type="button"
2209
+ >
2210
+ <div class="v-btn__content">
2211
+ 17
2212
+ </div>
2213
+ </button>
2214
+ </td>
2215
+ <td>
2216
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2217
+ type="button"
2218
+ >
2219
+ <div class="v-btn__content">
2220
+ 18
2221
+ </div>
2222
+ </button>
2223
+ </td>
2224
+ <td>
2225
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2226
+ type="button"
2227
+ >
2228
+ <div class="v-btn__content">
2229
+ 19
2230
+ </div>
2231
+ </button>
2232
+ </td>
2233
+ <td>
2234
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2235
+ type="button"
2236
+ >
2237
+ <div class="v-btn__content">
2238
+ 20
2239
+ </div>
2240
+ </button>
2241
+ </td>
2242
+ <td>
2243
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2244
+ type="button"
2245
+ >
2246
+ <div class="v-btn__content">
2247
+ 21
2248
+ </div>
2249
+ </button>
2250
+ </td>
2251
+ </tr>
2252
+ <tr>
2253
+ <td>
2254
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2255
+ type="button"
2256
+ >
2257
+ <div class="v-btn__content">
2258
+ 22
2259
+ </div>
2260
+ </button>
2261
+ </td>
2262
+ <td>
2263
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2264
+ type="button"
2265
+ >
2266
+ <div class="v-btn__content">
2267
+ 23
2268
+ </div>
2269
+ </button>
2270
+ </td>
2271
+ <td>
2272
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2273
+ type="button"
2274
+ >
2275
+ <div class="v-btn__content">
2276
+ 24
2277
+ </div>
2278
+ </button>
2279
+ </td>
2280
+ <td>
2281
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2282
+ type="button"
2283
+ >
2284
+ <div class="v-btn__content">
2285
+ 25
2286
+ </div>
2287
+ </button>
2288
+ </td>
2289
+ <td>
2290
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2291
+ type="button"
2292
+ >
2293
+ <div class="v-btn__content">
2294
+ 26
2295
+ </div>
2296
+ </button>
2297
+ </td>
2298
+ <td>
2299
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2300
+ type="button"
2301
+ >
2302
+ <div class="v-btn__content">
2303
+ 27
2304
+ </div>
2305
+ </button>
2306
+ </td>
2307
+ <td>
2308
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2309
+ type="button"
2310
+ >
2311
+ <div class="v-btn__content">
2312
+ 28
2313
+ </div>
2314
+ </button>
2315
+ </td>
2316
+ </tr>
2317
+ <tr>
2318
+ <td>
2319
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2320
+ type="button"
2321
+ >
2322
+ <div class="v-btn__content">
2323
+ 29
2324
+ </div>
2325
+ </button>
2326
+ </td>
2327
+ <td>
2328
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2329
+ type="button"
2330
+ >
2331
+ <div class="v-btn__content">
2332
+ 30
2333
+ </div>
2334
+ </button>
2335
+ </td>
2336
+ <td>
2337
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2338
+ type="button"
2339
+ >
2340
+ <div class="v-btn__content">
2341
+ 31
2342
+ </div>
2343
+ </button>
2344
+ </td>
2345
+ <td>
2346
+ </td>
2347
+ <td>
2348
+ </td>
2349
+ <td>
2350
+ </td>
2351
+ <td>
2352
+ </td>
2353
+ </tr>
2354
+ </tbody>
2355
+ </table>
2356
+ </div>
2357
+ `;
2358
+
2359
+ exports[`VDatePickerDateTable.ts should render component with showWeek and match snapshot 1`] = `
2360
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
2361
+ <table>
2362
+ <thead>
2363
+ <tr>
2364
+ <th>
2365
+ </th>
2366
+ <th>
2367
+ T
2368
+ </th>
2369
+ <th>
2370
+ W
2371
+ </th>
2372
+ <th>
2373
+ T
2374
+ </th>
2375
+ <th>
2376
+ F
2377
+ </th>
2378
+ <th>
2379
+ S
2380
+ </th>
2381
+ <th>
2382
+ S
2383
+ </th>
2384
+ <th>
2385
+ M
2386
+ </th>
2387
+ </tr>
2388
+ </thead>
2389
+ <tbody>
2390
+ <tr>
2391
+ <td>
2392
+ <small class="v-date-picker-table--date__week">
2393
+ 04
2394
+ </small>
2395
+ </td>
2396
+ <td>
2397
+ </td>
2398
+ <td>
2399
+ </td>
2400
+ <td>
2401
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2402
+ type="button"
2403
+ >
2404
+ <div class="v-btn__content">
2405
+ 1
2406
+ </div>
2407
+ </button>
2408
+ </td>
2409
+ <td>
2410
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2411
+ type="button"
2412
+ >
2413
+ <div class="v-btn__content">
2414
+ 2
2415
+ </div>
2416
+ </button>
2417
+ </td>
2418
+ <td>
2419
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2420
+ type="button"
2421
+ >
2422
+ <div class="v-btn__content">
2423
+ 3
2424
+ </div>
2425
+ </button>
2426
+ </td>
2427
+ <td>
2428
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2429
+ type="button"
2430
+ >
2431
+ <div class="v-btn__content">
2432
+ 4
2433
+ </div>
2434
+ </button>
2435
+ </td>
2436
+ <td>
2437
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2438
+ type="button"
2439
+ >
2440
+ <div class="v-btn__content">
2441
+ 5
2442
+ </div>
2443
+ </button>
2444
+ </td>
2445
+ </tr>
2446
+ <tr>
2447
+ <td>
2448
+ <small class="v-date-picker-table--date__week">
2449
+ 05
2450
+ </small>
2451
+ </td>
2452
+ <td>
2453
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2454
+ type="button"
2455
+ >
2456
+ <div class="v-btn__content">
2457
+ 6
2458
+ </div>
2459
+ </button>
2460
+ </td>
2461
+ <td>
2462
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2463
+ type="button"
2464
+ >
2465
+ <div class="v-btn__content">
2466
+ 7
2467
+ </div>
2468
+ </button>
2469
+ </td>
2470
+ <td>
2471
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2472
+ type="button"
2473
+ >
2474
+ <div class="v-btn__content">
2475
+ 8
2476
+ </div>
2477
+ </button>
2478
+ </td>
2479
+ <td>
2480
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2481
+ type="button"
2482
+ >
2483
+ <div class="v-btn__content">
2484
+ 9
2485
+ </div>
2486
+ </button>
2487
+ </td>
2488
+ <td>
2489
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2490
+ type="button"
2491
+ >
2492
+ <div class="v-btn__content">
2493
+ 10
2494
+ </div>
2495
+ </button>
2496
+ </td>
2497
+ <td>
2498
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2499
+ type="button"
2500
+ >
2501
+ <div class="v-btn__content">
2502
+ 11
2503
+ </div>
2504
+ </button>
2505
+ </td>
2506
+ <td>
2507
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2508
+ type="button"
2509
+ >
2510
+ <div class="v-btn__content">
2511
+ 12
2512
+ </div>
2513
+ </button>
2514
+ </td>
2515
+ </tr>
2516
+ <tr>
2517
+ <td>
2518
+ <small class="v-date-picker-table--date__week">
2519
+ 06
2520
+ </small>
2521
+ </td>
2522
+ <td>
2523
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2524
+ type="button"
2525
+ >
2526
+ <div class="v-btn__content">
2527
+ 13
2528
+ </div>
2529
+ </button>
2530
+ </td>
2531
+ <td>
2532
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2533
+ type="button"
2534
+ >
2535
+ <div class="v-btn__content">
2536
+ 14
2537
+ </div>
2538
+ </button>
2539
+ </td>
2540
+ <td>
2541
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2542
+ type="button"
2543
+ >
2544
+ <div class="v-btn__content">
2545
+ 15
2546
+ </div>
2547
+ </button>
2548
+ </td>
2549
+ <td>
2550
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2551
+ type="button"
2552
+ >
2553
+ <div class="v-btn__content">
2554
+ 16
2555
+ </div>
2556
+ </button>
2557
+ </td>
2558
+ <td>
2559
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2560
+ type="button"
2561
+ >
2562
+ <div class="v-btn__content">
2563
+ 17
2564
+ </div>
2565
+ </button>
2566
+ </td>
2567
+ <td>
2568
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2569
+ type="button"
2570
+ >
2571
+ <div class="v-btn__content">
2572
+ 18
2573
+ </div>
2574
+ </button>
2575
+ </td>
2576
+ <td>
2577
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2578
+ type="button"
2579
+ >
2580
+ <div class="v-btn__content">
2581
+ 19
2582
+ </div>
2583
+ </button>
2584
+ </td>
2585
+ </tr>
2586
+ <tr>
2587
+ <td>
2588
+ <small class="v-date-picker-table--date__week">
2589
+ 07
2590
+ </small>
2591
+ </td>
2592
+ <td>
2593
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2594
+ type="button"
2595
+ >
2596
+ <div class="v-btn__content">
2597
+ 20
2598
+ </div>
2599
+ </button>
2600
+ </td>
2601
+ <td>
2602
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2603
+ type="button"
2604
+ >
2605
+ <div class="v-btn__content">
2606
+ 21
2607
+ </div>
2608
+ </button>
2609
+ </td>
2610
+ <td>
2611
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2612
+ type="button"
2613
+ >
2614
+ <div class="v-btn__content">
2615
+ 22
2616
+ </div>
2617
+ </button>
2618
+ </td>
2619
+ <td>
2620
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2621
+ type="button"
2622
+ >
2623
+ <div class="v-btn__content">
2624
+ 23
2625
+ </div>
2626
+ </button>
2627
+ </td>
2628
+ <td>
2629
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2630
+ type="button"
2631
+ >
2632
+ <div class="v-btn__content">
2633
+ 24
2634
+ </div>
2635
+ </button>
2636
+ </td>
2637
+ <td>
2638
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2639
+ type="button"
2640
+ >
2641
+ <div class="v-btn__content">
2642
+ 25
2643
+ </div>
2644
+ </button>
2645
+ </td>
2646
+ <td>
2647
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2648
+ type="button"
2649
+ >
2650
+ <div class="v-btn__content">
2651
+ 26
2652
+ </div>
2653
+ </button>
2654
+ </td>
2655
+ </tr>
2656
+ <tr>
2657
+ <td>
2658
+ <small class="v-date-picker-table--date__week">
2659
+ 08
2660
+ </small>
2661
+ </td>
2662
+ <td>
2663
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2664
+ type="button"
2665
+ >
2666
+ <div class="v-btn__content">
2667
+ 27
2668
+ </div>
2669
+ </button>
2670
+ </td>
2671
+ <td>
2672
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
2673
+ type="button"
2674
+ >
2675
+ <div class="v-btn__content">
2676
+ 28
2677
+ </div>
2678
+ </button>
2679
+ </td>
2680
+ <td>
2681
+ </td>
2682
+ <td>
2683
+ </td>
2684
+ <td>
2685
+ </td>
2686
+ <td>
2687
+ </td>
2688
+ <td>
2689
+ </td>
2690
+ </tr>
2691
+ </tbody>
2692
+ </table>
2693
+ </div>
2694
+ `;
2695
+
2696
+ exports[`VDatePickerDateTable.ts should render disabled component and match snapshot 1`] = `
2697
+ <div class="v-date-picker-table v-date-picker-table--date v-date-picker-table--disabled theme--light">
2698
+ <table>
2699
+ <thead>
2700
+ <tr>
2701
+ <th>
2702
+ S
2703
+ </th>
2704
+ <th>
2705
+ M
2706
+ </th>
2707
+ <th>
2708
+ T
2709
+ </th>
2710
+ <th>
2711
+ W
2712
+ </th>
2713
+ <th>
2714
+ T
2715
+ </th>
2716
+ <th>
2717
+ F
2718
+ </th>
2719
+ <th>
2720
+ S
2721
+ </th>
2722
+ </tr>
2723
+ </thead>
2724
+ <tbody>
2725
+ <tr>
2726
+ <td>
2727
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2728
+ type="button"
2729
+ disabled
2730
+ >
2731
+ <div class="v-btn__content">
2732
+ 1
2733
+ </div>
2734
+ </button>
2735
+ </td>
2736
+ <td>
2737
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2738
+ type="button"
2739
+ disabled
2740
+ >
2741
+ <div class="v-btn__content">
2742
+ 2
2743
+ </div>
2744
+ </button>
2745
+ </td>
2746
+ <td>
2747
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2748
+ type="button"
2749
+ disabled
2750
+ >
2751
+ <div class="v-btn__content">
2752
+ 3
2753
+ </div>
2754
+ </button>
2755
+ </td>
2756
+ <td>
2757
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2758
+ type="button"
2759
+ disabled
2760
+ >
2761
+ <div class="v-btn__content">
2762
+ 4
2763
+ </div>
2764
+ </button>
2765
+ </td>
2766
+ <td>
2767
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2768
+ type="button"
2769
+ disabled
2770
+ >
2771
+ <div class="v-btn__content">
2772
+ 5
2773
+ </div>
2774
+ </button>
2775
+ </td>
2776
+ <td>
2777
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2778
+ type="button"
2779
+ disabled
2780
+ >
2781
+ <div class="v-btn__content">
2782
+ 6
2783
+ </div>
2784
+ </button>
2785
+ </td>
2786
+ <td>
2787
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2788
+ type="button"
2789
+ disabled
2790
+ >
2791
+ <div class="v-btn__content">
2792
+ 7
2793
+ </div>
2794
+ </button>
2795
+ </td>
2796
+ </tr>
2797
+ <tr>
2798
+ <td>
2799
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2800
+ type="button"
2801
+ disabled
2802
+ >
2803
+ <div class="v-btn__content">
2804
+ 8
2805
+ </div>
2806
+ </button>
2807
+ </td>
2808
+ <td>
2809
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2810
+ type="button"
2811
+ disabled
2812
+ >
2813
+ <div class="v-btn__content">
2814
+ 9
2815
+ </div>
2816
+ </button>
2817
+ </td>
2818
+ <td>
2819
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2820
+ type="button"
2821
+ disabled
2822
+ >
2823
+ <div class="v-btn__content">
2824
+ 10
2825
+ </div>
2826
+ </button>
2827
+ </td>
2828
+ <td>
2829
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2830
+ type="button"
2831
+ disabled
2832
+ >
2833
+ <div class="v-btn__content">
2834
+ 11
2835
+ </div>
2836
+ </button>
2837
+ </td>
2838
+ <td>
2839
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2840
+ type="button"
2841
+ disabled
2842
+ >
2843
+ <div class="v-btn__content">
2844
+ 12
2845
+ </div>
2846
+ </button>
2847
+ </td>
2848
+ <td>
2849
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2850
+ type="button"
2851
+ disabled
2852
+ >
2853
+ <div class="v-btn__content">
2854
+ 13
2855
+ </div>
2856
+ </button>
2857
+ </td>
2858
+ <td>
2859
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2860
+ type="button"
2861
+ disabled
2862
+ >
2863
+ <div class="v-btn__content">
2864
+ 14
2865
+ </div>
2866
+ </button>
2867
+ </td>
2868
+ </tr>
2869
+ <tr>
2870
+ <td>
2871
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2872
+ type="button"
2873
+ disabled
2874
+ >
2875
+ <div class="v-btn__content">
2876
+ 15
2877
+ </div>
2878
+ </button>
2879
+ </td>
2880
+ <td>
2881
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2882
+ type="button"
2883
+ disabled
2884
+ >
2885
+ <div class="v-btn__content">
2886
+ 16
2887
+ </div>
2888
+ </button>
2889
+ </td>
2890
+ <td>
2891
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2892
+ type="button"
2893
+ disabled
2894
+ >
2895
+ <div class="v-btn__content">
2896
+ 17
2897
+ </div>
2898
+ </button>
2899
+ </td>
2900
+ <td>
2901
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2902
+ type="button"
2903
+ disabled
2904
+ >
2905
+ <div class="v-btn__content">
2906
+ 18
2907
+ </div>
2908
+ </button>
2909
+ </td>
2910
+ <td>
2911
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2912
+ type="button"
2913
+ disabled
2914
+ >
2915
+ <div class="v-btn__content">
2916
+ 19
2917
+ </div>
2918
+ </button>
2919
+ </td>
2920
+ <td>
2921
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2922
+ type="button"
2923
+ disabled
2924
+ >
2925
+ <div class="v-btn__content">
2926
+ 20
2927
+ </div>
2928
+ </button>
2929
+ </td>
2930
+ <td>
2931
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2932
+ type="button"
2933
+ disabled
2934
+ >
2935
+ <div class="v-btn__content">
2936
+ 21
2937
+ </div>
2938
+ </button>
2939
+ </td>
2940
+ </tr>
2941
+ <tr>
2942
+ <td>
2943
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2944
+ type="button"
2945
+ disabled
2946
+ >
2947
+ <div class="v-btn__content">
2948
+ 22
2949
+ </div>
2950
+ </button>
2951
+ </td>
2952
+ <td>
2953
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2954
+ type="button"
2955
+ disabled
2956
+ >
2957
+ <div class="v-btn__content">
2958
+ 23
2959
+ </div>
2960
+ </button>
2961
+ </td>
2962
+ <td>
2963
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2964
+ type="button"
2965
+ disabled
2966
+ >
2967
+ <div class="v-btn__content">
2968
+ 24
2969
+ </div>
2970
+ </button>
2971
+ </td>
2972
+ <td>
2973
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2974
+ type="button"
2975
+ disabled
2976
+ >
2977
+ <div class="v-btn__content">
2978
+ 25
2979
+ </div>
2980
+ </button>
2981
+ </td>
2982
+ <td>
2983
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2984
+ type="button"
2985
+ disabled
2986
+ >
2987
+ <div class="v-btn__content">
2988
+ 26
2989
+ </div>
2990
+ </button>
2991
+ </td>
2992
+ <td>
2993
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
2994
+ type="button"
2995
+ disabled
2996
+ >
2997
+ <div class="v-btn__content">
2998
+ 27
2999
+ </div>
3000
+ </button>
3001
+ </td>
3002
+ <td>
3003
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
3004
+ type="button"
3005
+ disabled
3006
+ >
3007
+ <div class="v-btn__content">
3008
+ 28
3009
+ </div>
3010
+ </button>
3011
+ </td>
3012
+ </tr>
3013
+ <tr>
3014
+ <td>
3015
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
3016
+ type="button"
3017
+ disabled
3018
+ >
3019
+ <div class="v-btn__content">
3020
+ 29
3021
+ </div>
3022
+ </button>
3023
+ </td>
3024
+ <td>
3025
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
3026
+ type="button"
3027
+ disabled
3028
+ >
3029
+ <div class="v-btn__content">
3030
+ 30
3031
+ </div>
3032
+ </button>
3033
+ </td>
3034
+ <td>
3035
+ <button class="v-btn v-btn--flat v-btn--text v-btn--rounded v-btn--disabled theme--light"
3036
+ type="button"
3037
+ disabled
3038
+ >
3039
+ <div class="v-btn__content">
3040
+ 31
3041
+ </div>
3042
+ </button>
3043
+ </td>
3044
+ <td>
3045
+ </td>
3046
+ <td>
3047
+ </td>
3048
+ <td>
3049
+ </td>
3050
+ <td>
3051
+ </td>
3052
+ </tr>
3053
+ </tbody>
3054
+ </table>
3055
+ </div>
3056
+ `;
3057
+
3058
+ exports[`VDatePickerDateTable.ts should render readonly component and match snapshot 1`] = `
3059
+ <div class="v-date-picker-table v-date-picker-table--date theme--light">
3060
+ <table>
3061
+ <thead>
3062
+ <tr>
3063
+ <th>
3064
+ S
3065
+ </th>
3066
+ <th>
3067
+ M
3068
+ </th>
3069
+ <th>
3070
+ T
3071
+ </th>
3072
+ <th>
3073
+ W
3074
+ </th>
3075
+ <th>
3076
+ T
3077
+ </th>
3078
+ <th>
3079
+ F
3080
+ </th>
3081
+ <th>
3082
+ S
3083
+ </th>
3084
+ </tr>
3085
+ </thead>
3086
+ <tbody>
3087
+ <tr>
3088
+ <td>
3089
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3090
+ type="button"
3091
+ >
3092
+ <div class="v-btn__content">
3093
+ 1
3094
+ </div>
3095
+ </button>
3096
+ </td>
3097
+ <td>
3098
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3099
+ type="button"
3100
+ >
3101
+ <div class="v-btn__content">
3102
+ 2
3103
+ </div>
3104
+ </button>
3105
+ </td>
3106
+ <td>
3107
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3108
+ type="button"
3109
+ >
3110
+ <div class="v-btn__content">
3111
+ 3
3112
+ </div>
3113
+ </button>
3114
+ </td>
3115
+ <td>
3116
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3117
+ type="button"
3118
+ >
3119
+ <div class="v-btn__content">
3120
+ 4
3121
+ </div>
3122
+ </button>
3123
+ </td>
3124
+ <td>
3125
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3126
+ type="button"
3127
+ >
3128
+ <div class="v-btn__content">
3129
+ 5
3130
+ </div>
3131
+ </button>
3132
+ </td>
3133
+ <td>
3134
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3135
+ type="button"
3136
+ >
3137
+ <div class="v-btn__content">
3138
+ 6
3139
+ </div>
3140
+ </button>
3141
+ </td>
3142
+ <td>
3143
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3144
+ type="button"
3145
+ >
3146
+ <div class="v-btn__content">
3147
+ 7
3148
+ </div>
3149
+ </button>
3150
+ </td>
3151
+ </tr>
3152
+ <tr>
3153
+ <td>
3154
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3155
+ type="button"
3156
+ >
3157
+ <div class="v-btn__content">
3158
+ 8
3159
+ </div>
3160
+ </button>
3161
+ </td>
3162
+ <td>
3163
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3164
+ type="button"
3165
+ >
3166
+ <div class="v-btn__content">
3167
+ 9
3168
+ </div>
3169
+ </button>
3170
+ </td>
3171
+ <td>
3172
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3173
+ type="button"
3174
+ >
3175
+ <div class="v-btn__content">
3176
+ 10
3177
+ </div>
3178
+ </button>
3179
+ </td>
3180
+ <td>
3181
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3182
+ type="button"
3183
+ >
3184
+ <div class="v-btn__content">
3185
+ 11
3186
+ </div>
3187
+ </button>
3188
+ </td>
3189
+ <td>
3190
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3191
+ type="button"
3192
+ >
3193
+ <div class="v-btn__content">
3194
+ 12
3195
+ </div>
3196
+ </button>
3197
+ </td>
3198
+ <td>
3199
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3200
+ type="button"
3201
+ >
3202
+ <div class="v-btn__content">
3203
+ 13
3204
+ </div>
3205
+ </button>
3206
+ </td>
3207
+ <td>
3208
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3209
+ type="button"
3210
+ >
3211
+ <div class="v-btn__content">
3212
+ 14
3213
+ </div>
3214
+ </button>
3215
+ </td>
3216
+ </tr>
3217
+ <tr>
3218
+ <td>
3219
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3220
+ type="button"
3221
+ >
3222
+ <div class="v-btn__content">
3223
+ 15
3224
+ </div>
3225
+ </button>
3226
+ </td>
3227
+ <td>
3228
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3229
+ type="button"
3230
+ >
3231
+ <div class="v-btn__content">
3232
+ 16
3233
+ </div>
3234
+ </button>
3235
+ </td>
3236
+ <td>
3237
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3238
+ type="button"
3239
+ >
3240
+ <div class="v-btn__content">
3241
+ 17
3242
+ </div>
3243
+ </button>
3244
+ </td>
3245
+ <td>
3246
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3247
+ type="button"
3248
+ >
3249
+ <div class="v-btn__content">
3250
+ 18
3251
+ </div>
3252
+ </button>
3253
+ </td>
3254
+ <td>
3255
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3256
+ type="button"
3257
+ >
3258
+ <div class="v-btn__content">
3259
+ 19
3260
+ </div>
3261
+ </button>
3262
+ </td>
3263
+ <td>
3264
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3265
+ type="button"
3266
+ >
3267
+ <div class="v-btn__content">
3268
+ 20
3269
+ </div>
3270
+ </button>
3271
+ </td>
3272
+ <td>
3273
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3274
+ type="button"
3275
+ >
3276
+ <div class="v-btn__content">
3277
+ 21
3278
+ </div>
3279
+ </button>
3280
+ </td>
3281
+ </tr>
3282
+ <tr>
3283
+ <td>
3284
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3285
+ type="button"
3286
+ >
3287
+ <div class="v-btn__content">
3288
+ 22
3289
+ </div>
3290
+ </button>
3291
+ </td>
3292
+ <td>
3293
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3294
+ type="button"
3295
+ >
3296
+ <div class="v-btn__content">
3297
+ 23
3298
+ </div>
3299
+ </button>
3300
+ </td>
3301
+ <td>
3302
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3303
+ type="button"
3304
+ >
3305
+ <div class="v-btn__content">
3306
+ 24
3307
+ </div>
3308
+ </button>
3309
+ </td>
3310
+ <td>
3311
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3312
+ type="button"
3313
+ >
3314
+ <div class="v-btn__content">
3315
+ 25
3316
+ </div>
3317
+ </button>
3318
+ </td>
3319
+ <td>
3320
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3321
+ type="button"
3322
+ >
3323
+ <div class="v-btn__content">
3324
+ 26
3325
+ </div>
3326
+ </button>
3327
+ </td>
3328
+ <td>
3329
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3330
+ type="button"
3331
+ >
3332
+ <div class="v-btn__content">
3333
+ 27
3334
+ </div>
3335
+ </button>
3336
+ </td>
3337
+ <td>
3338
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3339
+ type="button"
3340
+ >
3341
+ <div class="v-btn__content">
3342
+ 28
3343
+ </div>
3344
+ </button>
3345
+ </td>
3346
+ </tr>
3347
+ <tr>
3348
+ <td>
3349
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3350
+ type="button"
3351
+ >
3352
+ <div class="v-btn__content">
3353
+ 29
3354
+ </div>
3355
+ </button>
3356
+ </td>
3357
+ <td>
3358
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3359
+ type="button"
3360
+ >
3361
+ <div class="v-btn__content">
3362
+ 30
3363
+ </div>
3364
+ </button>
3365
+ </td>
3366
+ <td>
3367
+ <button class="v-btn v-btn--text v-btn--rounded theme--light"
3368
+ type="button"
3369
+ >
3370
+ <div class="v-btn__content">
3371
+ 31
3372
+ </div>
3373
+ </button>
3374
+ </td>
3375
+ <td>
3376
+ </td>
3377
+ <td>
3378
+ </td>
3379
+ <td>
3380
+ </td>
3381
+ <td>
3382
+ </td>
3383
+ </tr>
3384
+ </tbody>
3385
+ </table>
3386
+ </div>
3387
+ `;