vuetify 1.5.11 → 1.5.16

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 (60) hide show
  1. package/LICENSE.md +21 -0
  2. package/dist/vuetify.css +9 -4
  3. package/dist/vuetify.css.map +1 -1
  4. package/dist/vuetify.js +12 -11
  5. package/dist/vuetify.js.map +1 -1
  6. package/dist/vuetify.min.css +2 -2
  7. package/dist/vuetify.min.js +2 -2
  8. package/es5/components/VCounter/VCounter.js +1 -1
  9. package/es5/components/VCounter/VCounter.js.map +1 -1
  10. package/es5/components/VDialog/VDialog.js +2 -3
  11. package/es5/components/VDialog/VDialog.js.map +1 -1
  12. package/es5/components/VLabel/VLabel.js +1 -1
  13. package/es5/components/VLabel/VLabel.js.map +1 -1
  14. package/es5/components/VList/VListTile.js +1 -1
  15. package/es5/components/VList/VListTile.js.map +1 -1
  16. package/es5/components/VRadioGroup/VRadio.js +1 -1
  17. package/es5/components/VRadioGroup/VRadio.js.map +1 -1
  18. package/es5/components/VSelect/VSelectList.js +2 -1
  19. package/es5/components/VSelect/VSelectList.js.map +1 -1
  20. package/es5/components/VSpeedDial/VSpeedDial.js +1 -1
  21. package/es5/components/VSpeedDial/VSpeedDial.js.map +1 -1
  22. package/es5/components/Vuetify/index.js +1 -1
  23. package/es5/index.js +1 -1
  24. package/es5/locale/sl.js +2 -2
  25. package/es5/locale/sl.js.map +1 -1
  26. package/es5/util/helpers.js +1 -1
  27. package/es5/util/helpers.js.map +1 -1
  28. package/lib/components/VCounter/VCounter.js +1 -1
  29. package/lib/components/VCounter/VCounter.js.map +1 -1
  30. package/lib/components/VDialog/VDialog.js +2 -3
  31. package/lib/components/VDialog/VDialog.js.map +1 -1
  32. package/lib/components/VLabel/VLabel.js +1 -1
  33. package/lib/components/VLabel/VLabel.js.map +1 -1
  34. package/lib/components/VList/VListTile.js +1 -1
  35. package/lib/components/VList/VListTile.js.map +1 -1
  36. package/lib/components/VRadioGroup/VRadio.js +1 -1
  37. package/lib/components/VRadioGroup/VRadio.js.map +1 -1
  38. package/lib/components/VSelect/VSelectList.js +2 -1
  39. package/lib/components/VSelect/VSelectList.js.map +1 -1
  40. package/lib/components/VSpeedDial/VSpeedDial.js +1 -1
  41. package/lib/components/VSpeedDial/VSpeedDial.js.map +1 -1
  42. package/lib/components/Vuetify/index.js +1 -1
  43. package/lib/locale/sl.js +2 -2
  44. package/lib/locale/sl.js.map +1 -1
  45. package/lib/util/helpers.js +1 -1
  46. package/lib/util/helpers.js.map +1 -1
  47. package/package.json +16 -5
  48. package/src/components/VCounter/VCounter.ts +3 -3
  49. package/src/components/VDialog/VDialog.js +2 -2
  50. package/src/components/VLabel/VLabel.ts +3 -3
  51. package/src/components/VList/VListTile.ts +1 -2
  52. package/src/components/VRadioGroup/VRadio.js +1 -1
  53. package/src/components/VSelect/VSelectList.js +2 -1
  54. package/src/components/VSpeedDial/VSpeedDial.js +1 -1
  55. package/src/locale/sl.ts +2 -2
  56. package/src/stylus/components/_overflow-buttons.styl +7 -1
  57. package/src/stylus/components/_text-fields.styl +1 -0
  58. package/src/stylus/elements/_typography.styl +0 -4
  59. package/src/stylus/settings/_variables.styl +0 -1
  60. package/src/util/helpers.ts +1 -1
@@ -6,7 +6,13 @@ v-overflow-btn($material)
6
6
  .v-input__slot
7
7
  &::before
8
8
  background-color: $material.dividers !important // override v-text-field bottom border
9
-
9
+
10
+ &.v-text-field--outline
11
+ .v-input__control,
12
+ .v-input__slot
13
+ &::before
14
+ background-color: transparent !important // override v-text-field top border;
15
+
10
16
  &--segmented,
11
17
  &--editable:hover,
12
18
  &--editable.v-input--is-focused,
@@ -292,6 +292,7 @@ rtl(v-text-field-rtl, "v-text-field")
292
292
  border-radius: 4px
293
293
 
294
294
  .v-text-field__prefix
295
+ margin-top: 22px
295
296
  max-height: 32px
296
297
 
297
298
  .v-input__prepend-outer,
@@ -56,9 +56,5 @@
56
56
  font-size: $headings.caption.size !important
57
57
  font-weight: $headings.caption.weight
58
58
 
59
- .v-btn
60
- font-size: $headings.button.size
61
- font-weight: $headings.button.weight
62
-
63
59
  p
64
60
  margin-bottom: $spacers.three.y
@@ -107,7 +107,6 @@ $headings := {
107
107
  body-2: { size: 14px, weight: 500 },
108
108
  body-1: { size: 14px, weight: 400 },
109
109
  caption: { size: 12px, weight: 400 },
110
- button: { size: 14px, weight: 500 }
111
110
  }
112
111
 
113
112
 
@@ -251,7 +251,7 @@ export function getZIndex (el?: Element | null): number {
251
251
 
252
252
  const index = +window.getComputedStyle(el).getPropertyValue('z-index')
253
253
 
254
- if (isNaN(index)) return getZIndex(el.parentNode as Element)
254
+ if (!index) return getZIndex(el.parentNode as Element)
255
255
  return index
256
256
  }
257
257