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