vuetify 2.5.9 → 2.5.13

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 (206) hide show
  1. package/dist/json/attributes.json +58 -66
  2. package/dist/json/tags.json +0 -2
  3. package/dist/json/web-types.json +89 -146
  4. package/dist/vuetify.css +37 -24
  5. package/dist/vuetify.css.map +1 -1
  6. package/dist/vuetify.js +374 -177
  7. package/dist/vuetify.js.map +1 -1
  8. package/dist/vuetify.min.css +2 -2
  9. package/dist/vuetify.min.js +2 -2
  10. package/es5/components/VAppBar/VAppBar.js +3 -0
  11. package/es5/components/VAppBar/VAppBar.js.map +1 -1
  12. package/es5/components/VAutocomplete/VAutocomplete.js +20 -2
  13. package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
  14. package/es5/components/VCalendar/mixins/calendar-with-events.js +4 -2
  15. package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  16. package/es5/components/VCalendar/mixins/mouse.js +19 -0
  17. package/es5/components/VCalendar/mixins/mouse.js.map +1 -1
  18. package/es5/components/VCalendar/util/timestamp.js +2 -2
  19. package/es5/components/VCalendar/util/timestamp.js.map +1 -1
  20. package/es5/components/VCombobox/VCombobox.js +0 -5
  21. package/es5/components/VCombobox/VCombobox.js.map +1 -1
  22. package/es5/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  23. package/es5/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  24. package/es5/components/VDialog/VDialog.js +4 -2
  25. package/es5/components/VDialog/VDialog.js.map +1 -1
  26. package/es5/components/VList/VListItem.js +8 -1
  27. package/es5/components/VList/VListItem.js.map +1 -1
  28. package/es5/components/VOverlay/VOverlay.js +1 -0
  29. package/es5/components/VOverlay/VOverlay.js.map +1 -1
  30. package/es5/components/VRadioGroup/VRadioGroup.js +7 -0
  31. package/es5/components/VRadioGroup/VRadioGroup.js.map +1 -1
  32. package/es5/components/VRangeSlider/VRangeSlider.js +4 -1
  33. package/es5/components/VRangeSlider/VRangeSlider.js.map +1 -1
  34. package/es5/components/VSelect/VSelect.js +1 -1
  35. package/es5/components/VSelect/VSelect.js.map +1 -1
  36. package/es5/components/VSlideGroup/VSlideGroup.js +93 -37
  37. package/es5/components/VSlideGroup/VSlideGroup.js.map +1 -1
  38. package/es5/components/VTabs/VTab.js +15 -4
  39. package/es5/components/VTabs/VTab.js.map +1 -1
  40. package/es5/components/VTabs/VTabsBar.js +1 -1
  41. package/es5/components/VTabs/VTabsBar.js.map +1 -1
  42. package/es5/components/VTextarea/VTextarea.js +11 -2
  43. package/es5/components/VTextarea/VTextarea.js.map +1 -1
  44. package/es5/components/VTooltip/VTooltip.js +2 -5
  45. package/es5/components/VTooltip/VTooltip.js.map +1 -1
  46. package/es5/components/VTreeview/VTreeview.js +1 -1
  47. package/es5/components/VTreeview/VTreeview.js.map +1 -1
  48. package/es5/components/transitions/createTransition.js +1 -5
  49. package/es5/components/transitions/createTransition.js.map +1 -1
  50. package/es5/directives/click-outside/index.js +19 -10
  51. package/es5/directives/click-outside/index.js.map +1 -1
  52. package/es5/directives/intersect/index.js +12 -11
  53. package/es5/directives/intersect/index.js.map +1 -1
  54. package/es5/directives/mutate/index.js +7 -6
  55. package/es5/directives/mutate/index.js.map +1 -1
  56. package/es5/directives/resize/index.js +8 -7
  57. package/es5/directives/resize/index.js.map +1 -1
  58. package/es5/directives/ripple/index.js +2 -3
  59. package/es5/directives/ripple/index.js.map +1 -1
  60. package/es5/directives/scroll/index.js +13 -10
  61. package/es5/directives/scroll/index.js.map +1 -1
  62. package/es5/framework.js +1 -1
  63. package/es5/locale/fr.js +1 -1
  64. package/es5/locale/fr.js.map +1 -1
  65. package/es5/mixins/detachable/index.js +32 -14
  66. package/es5/mixins/detachable/index.js.map +1 -1
  67. package/es5/mixins/intersectable/index.js +5 -2
  68. package/es5/mixins/intersectable/index.js.map +1 -1
  69. package/es5/mixins/menuable/index.js +5 -5
  70. package/es5/mixins/menuable/index.js.map +1 -1
  71. package/es5/mixins/overlayable/index.js +22 -35
  72. package/es5/mixins/overlayable/index.js.map +1 -1
  73. package/es5/mixins/routable/index.js +9 -3
  74. package/es5/mixins/routable/index.js.map +1 -1
  75. package/es5/services/goto/index.js +3 -1
  76. package/es5/services/goto/index.js.map +1 -1
  77. package/es5/util/helpers.js +23 -0
  78. package/es5/util/helpers.js.map +1 -1
  79. package/lib/components/VAppBar/VAppBar.js +4 -0
  80. package/lib/components/VAppBar/VAppBar.js.map +1 -1
  81. package/lib/components/VAutocomplete/VAutocomplete.js +18 -2
  82. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  83. package/lib/components/VCalendar/mixins/calendar-with-events.js +4 -2
  84. package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  85. package/lib/components/VCalendar/mixins/mouse.js +19 -0
  86. package/lib/components/VCalendar/mixins/mouse.js.map +1 -1
  87. package/lib/components/VCalendar/util/timestamp.js +2 -2
  88. package/lib/components/VCalendar/util/timestamp.js.map +1 -1
  89. package/lib/components/VCombobox/VCombobox.js +0 -5
  90. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  91. package/lib/components/VDataTable/VDataTableHeaderMobile.js +2 -2
  92. package/lib/components/VDataTable/VDataTableHeaderMobile.js.map +1 -1
  93. package/lib/components/VDialog/VDialog.js +5 -2
  94. package/lib/components/VDialog/VDialog.js.map +1 -1
  95. package/lib/components/VList/VListItem.js +9 -1
  96. package/lib/components/VList/VListItem.js.map +1 -1
  97. package/lib/components/VOverlay/VOverlay.js +1 -0
  98. package/lib/components/VOverlay/VOverlay.js.map +1 -1
  99. package/lib/components/VRadioGroup/VRadioGroup.js +9 -0
  100. package/lib/components/VRadioGroup/VRadioGroup.js.map +1 -1
  101. package/lib/components/VRangeSlider/VRangeSlider.js +4 -1
  102. package/lib/components/VRangeSlider/VRangeSlider.js.map +1 -1
  103. package/lib/components/VSelect/VSelect.js +1 -1
  104. package/lib/components/VSelect/VSelect.js.map +1 -1
  105. package/lib/components/VSlideGroup/VSlideGroup.js +63 -40
  106. package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
  107. package/lib/components/VTabs/VTab.js +16 -6
  108. package/lib/components/VTabs/VTab.js.map +1 -1
  109. package/lib/components/VTabs/VTabsBar.js +1 -1
  110. package/lib/components/VTabs/VTabsBar.js.map +1 -1
  111. package/lib/components/VTextarea/VTextarea.js +8 -0
  112. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  113. package/lib/components/VTooltip/VTooltip.js +2 -5
  114. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  115. package/lib/components/VTreeview/VTreeview.js +1 -1
  116. package/lib/components/VTreeview/VTreeview.js.map +1 -1
  117. package/lib/components/transitions/createTransition.js +1 -5
  118. package/lib/components/transitions/createTransition.js.map +1 -1
  119. package/lib/directives/click-outside/index.js +20 -10
  120. package/lib/directives/click-outside/index.js.map +1 -1
  121. package/lib/directives/intersect/index.js +12 -10
  122. package/lib/directives/intersect/index.js.map +1 -1
  123. package/lib/directives/mutate/index.js +7 -6
  124. package/lib/directives/mutate/index.js.map +1 -1
  125. package/lib/directives/resize/index.js +6 -5
  126. package/lib/directives/resize/index.js.map +1 -1
  127. package/lib/directives/ripple/index.js +2 -3
  128. package/lib/directives/ripple/index.js.map +1 -1
  129. package/lib/directives/scroll/index.js +9 -6
  130. package/lib/directives/scroll/index.js.map +1 -1
  131. package/lib/framework.js +1 -1
  132. package/lib/locale/fr.js +1 -1
  133. package/lib/locale/fr.js.map +1 -1
  134. package/lib/mixins/detachable/index.js +28 -13
  135. package/lib/mixins/detachable/index.js.map +1 -1
  136. package/lib/mixins/intersectable/index.js +5 -2
  137. package/lib/mixins/intersectable/index.js.map +1 -1
  138. package/lib/mixins/menuable/index.js +4 -4
  139. package/lib/mixins/menuable/index.js.map +1 -1
  140. package/lib/mixins/overlayable/index.js +23 -36
  141. package/lib/mixins/overlayable/index.js.map +1 -1
  142. package/lib/mixins/routable/index.js +12 -3
  143. package/lib/mixins/routable/index.js.map +1 -1
  144. package/lib/services/goto/index.js +3 -1
  145. package/lib/services/goto/index.js.map +1 -1
  146. package/lib/util/helpers.js +21 -0
  147. package/lib/util/helpers.js.map +1 -1
  148. package/package.json +2 -3
  149. package/src/components/VAppBar/VAppBar.ts +3 -0
  150. package/src/components/VAutocomplete/VAutocomplete.ts +15 -2
  151. package/src/components/VCalendar/mixins/calendar-with-events.sass +7 -1
  152. package/src/components/VCalendar/mixins/calendar-with-events.ts +3 -3
  153. package/src/components/VCalendar/mixins/mouse.ts +21 -0
  154. package/src/components/VCalendar/util/__tests__/events.spec.ts +1 -1
  155. package/src/components/VCalendar/util/timestamp.ts +2 -2
  156. package/src/components/VCombobox/VCombobox.ts +0 -5
  157. package/src/components/VCombobox/__tests__/VCombobox-multiple.spec.ts +113 -0
  158. package/src/components/VCombobox/__tests__/VCombobox.spec.ts +30 -0
  159. package/src/components/VDataTable/VDataTableHeaderMobile.ts +3 -1
  160. package/src/components/VDataTable/__tests__/__snapshots__/VDataTable.spec.ts.snap +0 -20
  161. package/src/components/VDialog/VDialog.ts +4 -2
  162. package/src/components/VImg/__tests__/VImg.spec.ts +1 -1
  163. package/src/components/VList/VListItem.sass +2 -1
  164. package/src/components/VList/VListItem.ts +7 -1
  165. package/src/components/VList/__tests__/VListItem.spec.ts +16 -0
  166. package/src/components/VOverlay/VOverlay.ts +1 -0
  167. package/src/components/VRadioGroup/VRadioGroup.ts +8 -0
  168. package/src/components/VRangeSlider/VRangeSlider.ts +3 -1
  169. package/src/components/VSelect/VSelect.ts +1 -1
  170. package/src/components/VSlideGroup/VSlideGroup.ts +75 -35
  171. package/src/components/VSlideGroup/__tests__/VSlideGroup.spec.ts +1 -3
  172. package/src/components/VSnackbar/VSnackbar.sass +2 -0
  173. package/src/components/VStepper/VStepper.sass +5 -1
  174. package/src/components/VStepper/_variables.scss +2 -1
  175. package/src/components/VTabs/VTab.ts +14 -4
  176. package/src/components/VTabs/VTabs.sass +5 -2
  177. package/src/components/VTabs/VTabsBar.ts +2 -2
  178. package/src/components/VTextarea/VTextarea.ts +7 -0
  179. package/src/components/VTooltip/VTooltip.ts +2 -5
  180. package/src/components/VTreeview/VTreeview.ts +1 -1
  181. package/src/components/transitions/createTransition.ts +1 -5
  182. package/src/directives/click-outside/__tests__/click-outside-shadow-dom.spec.ts +9 -6
  183. package/src/directives/click-outside/__tests__/click-outside.spec.ts +7 -4
  184. package/src/directives/click-outside/index.ts +19 -10
  185. package/src/directives/intersect/__tests__/intersect.spec.ts +13 -10
  186. package/src/directives/intersect/index.ts +13 -12
  187. package/src/directives/mutate/__tests__/mutate.spec.ts +36 -17
  188. package/src/directives/mutate/index.ts +8 -7
  189. package/src/directives/resize/__tests__/resize.spec.ts +4 -4
  190. package/src/directives/resize/index.ts +10 -5
  191. package/src/directives/ripple/index.ts +3 -5
  192. package/src/directives/scroll/__tests__/scroll.spec.ts +9 -9
  193. package/src/directives/scroll/index.ts +8 -7
  194. package/src/globals.d.ts +10 -11
  195. package/src/locale/fr.ts +1 -1
  196. package/src/mixins/detachable/index.ts +32 -15
  197. package/src/mixins/intersectable/index.ts +5 -2
  198. package/src/mixins/menuable/index.ts +4 -4
  199. package/src/mixins/overlayable/index.ts +24 -35
  200. package/src/mixins/routable/__tests__/routable.spec.ts +82 -5
  201. package/src/mixins/routable/index.ts +10 -3
  202. package/src/services/goto/index.ts +6 -1
  203. package/src/styles/components/_selection-controls.sass +4 -7
  204. package/src/styles/generic/_transitions.scss +219 -215
  205. package/src/styles/settings/_variables.scss +7 -7
  206. package/src/util/helpers.ts +22 -0
package/dist/vuetify.css CHANGED
@@ -3365,10 +3365,10 @@ progress {
3365
3365
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12) !important;
3366
3366
  }
3367
3367
 
3368
- .v-application .carousel-transition-enter {
3368
+ .carousel-transition-enter {
3369
3369
  transform: translate(100%, 0);
3370
3370
  }
3371
- .v-application .carousel-transition-leave, .v-application .carousel-transition-leave-to {
3371
+ .carousel-transition-leave, .carousel-transition-leave-to {
3372
3372
  position: absolute;
3373
3373
  top: 0;
3374
3374
  transform: translate(-100%, 0);
@@ -3383,6 +3383,9 @@ progress {
3383
3383
  transform: translate(100%, 0);
3384
3384
  }
3385
3385
 
3386
+ .dialog-transition-enter-active, .dialog-transition-leave-active {
3387
+ pointer-events: none !important;
3388
+ }
3386
3389
  .dialog-transition-enter, .dialog-transition-leave-to {
3387
3390
  transform: scale(0.5);
3388
3391
  opacity: 0;
@@ -3829,17 +3832,17 @@ html.overflow-y-hidden {
3829
3832
  display: none !important;
3830
3833
  }
3831
3834
  }
3832
- @media only screen and (max-width: 599px) {
3835
+ @media only screen and (max-width: 599.98px) {
3833
3836
  .v-application .hidden-xs-only {
3834
3837
  display: none !important;
3835
3838
  }
3836
3839
  }
3837
- @media only screen and (min-width: 600px) and (max-width: 959px) {
3840
+ @media only screen and (min-width: 600px) and (max-width: 959.98px) {
3838
3841
  .v-application .hidden-sm-only {
3839
3842
  display: none !important;
3840
3843
  }
3841
3844
  }
3842
- @media only screen and (max-width: 959px) {
3845
+ @media only screen and (max-width: 959.98px) {
3843
3846
  .v-application .hidden-sm-and-down {
3844
3847
  display: none !important;
3845
3848
  }
@@ -3849,12 +3852,12 @@ html.overflow-y-hidden {
3849
3852
  display: none !important;
3850
3853
  }
3851
3854
  }
3852
- @media only screen and (min-width: 960px) and (max-width: 1263px) {
3855
+ @media only screen and (min-width: 960px) and (max-width: 1263.98px) {
3853
3856
  .v-application .hidden-md-only {
3854
3857
  display: none !important;
3855
3858
  }
3856
3859
  }
3857
- @media only screen and (max-width: 1263px) {
3860
+ @media only screen and (max-width: 1263.98px) {
3858
3861
  .v-application .hidden-md-and-down {
3859
3862
  display: none !important;
3860
3863
  }
@@ -3864,12 +3867,12 @@ html.overflow-y-hidden {
3864
3867
  display: none !important;
3865
3868
  }
3866
3869
  }
3867
- @media only screen and (min-width: 1264px) and (max-width: 1903px) {
3870
+ @media only screen and (min-width: 1264px) and (max-width: 1903.98px) {
3868
3871
  .v-application .hidden-lg-only {
3869
3872
  display: none !important;
3870
3873
  }
3871
3874
  }
3872
- @media only screen and (max-width: 1903px) {
3875
+ @media only screen and (max-width: 1903.98px) {
3873
3876
  .v-application .hidden-lg-and-down {
3874
3877
  display: none !important;
3875
3878
  }
@@ -20250,7 +20253,7 @@ html.overflow-y-hidden {
20250
20253
  color: rgba(0, 0, 0, 0.38);
20251
20254
  }
20252
20255
  .theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {
20253
- color: rgba(0, 0, 0, 0.87) !important;
20256
+ color: rgba(0, 0, 0, 0.87);
20254
20257
  }
20255
20258
  .theme--light.v-list-item .v-list-item__mask {
20256
20259
  color: rgba(0, 0, 0, 0.38);
@@ -20280,7 +20283,7 @@ html.overflow-y-hidden {
20280
20283
  color: rgba(255, 255, 255, 0.5);
20281
20284
  }
20282
20285
  .theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled) {
20283
- color: #FFFFFF !important;
20286
+ color: #FFFFFF;
20284
20287
  }
20285
20288
  .theme--dark.v-list-item .v-list-item__mask {
20286
20289
  color: rgba(255, 255, 255, 0.5);
@@ -21644,7 +21647,7 @@ html.overflow-y-hidden {
21644
21647
  .v-bottom-sheet.v-dialog.v-bottom-sheet--inset {
21645
21648
  max-width: 70%;
21646
21649
  }
21647
- @media only screen and (max-width: 599px) {
21650
+ @media only screen and (max-width: 599.98px) {
21648
21651
  .v-bottom-sheet.v-dialog.v-bottom-sheet--inset {
21649
21652
  max-width: none;
21650
21653
  }
@@ -22029,7 +22032,6 @@ html.overflow-y-hidden {
22029
22032
  }
22030
22033
  .v-calendar .v-event-timed {
22031
22034
  position: absolute;
22032
- overflow: hidden;
22033
22035
  white-space: nowrap;
22034
22036
  text-overflow: ellipsis;
22035
22037
  font-size: 12px;
@@ -22037,6 +22039,13 @@ html.overflow-y-hidden {
22037
22039
  border-radius: 4px;
22038
22040
  pointer-events: all;
22039
22041
  }
22042
+ .v-calendar .v-event-summary {
22043
+ display: inline-block;
22044
+ overflow: hidden;
22045
+ text-overflow: ellipsis;
22046
+ width: 100%;
22047
+ white-space: nowrap;
22048
+ }
22040
22049
  .v-calendar.v-calendar-events .v-calendar-weekly__head-weekday {
22041
22050
  margin-right: -1px;
22042
22051
  }
@@ -22773,14 +22782,6 @@ html.overflow-y-hidden {
22773
22782
  .v-input--checkbox.v-input--dense {
22774
22783
  margin-top: 4px;
22775
22784
  }
22776
- .theme--light.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
22777
- color: rgba(0, 0, 0, 0.26) !important;
22778
- }
22779
-
22780
- .theme--dark.v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
22781
- color: rgba(255, 255, 255, 0.3) !important;
22782
- }
22783
-
22784
22785
  .v-input--selection-controls {
22785
22786
  margin-top: 16px;
22786
22787
  padding-top: 4px;
@@ -22890,6 +22891,9 @@ html.overflow-y-hidden {
22890
22891
  background: currentColor;
22891
22892
  transform: scale(1.2);
22892
22893
  }
22894
+ .v-input--selection-controls.v-input--is-disabled:not(.v-input--indeterminate) .v-icon {
22895
+ color: inherit;
22896
+ }
22893
22897
 
22894
22898
  .v-input--selection-controls__input:hover .v-input--selection-controls__ripple:before {
22895
22899
  background: currentColor;
@@ -27673,6 +27677,7 @@ html.overflow-y-hidden {
27673
27677
  transition-duration: 0.15s;
27674
27678
  transition-property: opacity, transform;
27675
27679
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
27680
+ z-index: 1;
27676
27681
  }
27677
27682
  .v-snack__wrapper.theme--dark {
27678
27683
  background-color: #333333;
@@ -27747,6 +27752,7 @@ html.overflow-y-hidden {
27747
27752
  position: absolute;
27748
27753
  right: 0;
27749
27754
  top: 0;
27755
+ z-index: -1;
27750
27756
  }
27751
27757
  .v-snack--top {
27752
27758
  align-items: flex-start;
@@ -28052,9 +28058,14 @@ html.overflow-y-hidden {
28052
28058
  padding-bottom: 36px;
28053
28059
  }
28054
28060
  .v-stepper--vertical .v-stepper__content {
28055
- padding: 16px 60px 16px 23px;
28056
28061
  width: auto;
28057
28062
  }
28063
+ .v-application--is-ltr .v-stepper--vertical .v-stepper__content {
28064
+ padding: 16px 60px 16px 23px;
28065
+ }
28066
+ .v-application--is-rtl .v-stepper--vertical .v-stepper__content {
28067
+ padding: 16px 23px 16px 60px;
28068
+ }
28058
28069
  .v-application--is-ltr .v-stepper--vertical .v-stepper__content {
28059
28070
  margin: -8px -36px -16px 36px;
28060
28071
  }
@@ -28092,7 +28103,7 @@ html.overflow-y-hidden {
28092
28103
  margin-right: 0;
28093
28104
  }
28094
28105
 
28095
- @media only screen and (max-width: 959px) {
28106
+ @media only screen and (max-width: 959.98px) {
28096
28107
  .v-stepper:not(.v-stepper--vertical) .v-stepper__label {
28097
28108
  display: none;
28098
28109
  }
@@ -28531,9 +28542,11 @@ html.overflow-y-hidden {
28531
28542
  }
28532
28543
 
28533
28544
  .v-tab--disabled {
28534
- pointer-events: none;
28535
28545
  opacity: 0.5;
28536
28546
  }
28547
+ .v-tab--disabled, .v-tab--disabled * {
28548
+ pointer-events: none;
28549
+ }
28537
28550
  .v-textarea textarea {
28538
28551
  align-self: stretch;
28539
28552
  flex: 1 1 auto;