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
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016-2019 John Jeremy Leider
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/dist/vuetify.css CHANGED
@@ -2850,10 +2850,6 @@ ol {
2850
2850
  font-size: 12px !important;
2851
2851
  font-weight: 400;
2852
2852
  }
2853
- .v-btn {
2854
- font-size: 14px;
2855
- font-weight: 500;
2856
- }
2857
2853
  p {
2858
2854
  margin-bottom: 16px;
2859
2855
  }
@@ -3900,6 +3896,7 @@ p {
3900
3896
  border-radius: 4px;
3901
3897
  }
3902
3898
  .v-text-field--outline .v-text-field__prefix {
3899
+ margin-top: 22px;
3903
3900
  max-height: 32px;
3904
3901
  }
3905
3902
  .v-text-field--outline .v-input__prepend-outer,
@@ -6666,6 +6663,10 @@ p {
6666
6663
  .theme--light.v-overflow-btn .v-input__slot::before {
6667
6664
  background-color: rgba(0,0,0,0.12) !important;
6668
6665
  }
6666
+ .theme--light.v-overflow-btn.v-text-field--outline .v-input__control::before,
6667
+ .theme--light.v-overflow-btn.v-text-field--outline .v-input__slot::before {
6668
+ background-color: transparent !important;
6669
+ }
6669
6670
  .theme--light.v-overflow-btn--segmented .v-input__append-inner,
6670
6671
  .theme--light.v-overflow-btn--editable:hover .v-input__append-inner,
6671
6672
  .theme--light.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,
@@ -6681,6 +6682,10 @@ p {
6681
6682
  .theme--dark.v-overflow-btn .v-input__slot::before {
6682
6683
  background-color: rgba(255,255,255,0.12) !important;
6683
6684
  }
6685
+ .theme--dark.v-overflow-btn.v-text-field--outline .v-input__control::before,
6686
+ .theme--dark.v-overflow-btn.v-text-field--outline .v-input__slot::before {
6687
+ background-color: transparent !important;
6688
+ }
6684
6689
  .theme--dark.v-overflow-btn--segmented .v-input__append-inner,
6685
6690
  .theme--dark.v-overflow-btn--editable:hover .v-input__append-inner,
6686
6691
  .theme--dark.v-overflow-btn--editable.v-input--is-focused .v-input__append-inner,