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/dist/vuetify.js CHANGED
@@ -4055,7 +4055,7 @@ var __assign = undefined && undefined.__assign || function () {
4055
4055
  var props = ctx.props;
4056
4056
  var max = parseInt(props.max, 10);
4057
4057
  var value = parseInt(props.value, 10);
4058
- var content = max ? value + " / " + max : props.value;
4058
+ var content = max ? value + " / " + max : String(props.value);
4059
4059
  var isGreater = max && value > max;
4060
4060
  return h('div', {
4061
4061
  staticClass: 'v-counter',
@@ -6489,7 +6489,7 @@ var __assign = undefined && undefined.__assign || function () {
6489
6489
  this.$emit('keydown', e);
6490
6490
  },
6491
6491
  onFocusin: function onFocusin(e) {
6492
- var target = event.target;
6492
+ var target = e.target;
6493
6493
  if (
6494
6494
  // It isn't the document or the dialog body
6495
6495
  ![document, this.$refs.content].includes(target) &&
@@ -6521,7 +6521,7 @@ var __assign = undefined && undefined.__assign || function () {
6521
6521
  var el = activator && activator.elm;
6522
6522
  if (el) return el;
6523
6523
  }
6524
- Object(_util_console__WEBPACK_IMPORTED_MODULE_10__["consoleError"])('No activator found');
6524
+ return null;
6525
6525
  },
6526
6526
  genActivator: function genActivator() {
6527
6527
  var _this = this;
@@ -8728,7 +8728,7 @@ var __assign = undefined && undefined.__assign || function () {
8728
8728
  props: {
8729
8729
  absolute: Boolean,
8730
8730
  color: {
8731
- type: [Boolean, String],
8731
+ type: String,
8732
8732
  default: 'primary'
8733
8733
  },
8734
8734
  disabled: Boolean,
@@ -9148,7 +9148,7 @@ var __assign = undefined && undefined.__assign || function () {
9148
9148
  tag = _a.tag,
9149
9149
  data = _a.data;
9150
9150
  data.attrs = Object.assign({}, data.attrs, this.$attrs);
9151
- return h('div', this.setTextColor(!this.disabled && this.color, {
9151
+ return h('div', this.setTextColor(!this.disabled && this.isActive && this.color, {
9152
9152
  class: this.listClasses,
9153
9153
  attrs: {
9154
9154
  disabled: this.disabled,
@@ -11349,7 +11349,7 @@ var __spread = undefined && undefined.__spread || function () {
11349
11349
  for: this.id
11350
11350
  },
11351
11351
  props: {
11352
- color: this.radio.validationState || false,
11352
+ color: this.radio.validationState || '',
11353
11353
  dark: this.dark,
11354
11354
  focused: this.hasState,
11355
11355
  light: this.light
@@ -12907,7 +12907,8 @@ var __values = undefined && undefined.__values || function (o) {
12907
12907
  avatar: avatar,
12908
12908
  disabled: disabled,
12909
12909
  ripple: true,
12910
- value: value
12910
+ value: value,
12911
+ color: this.color
12911
12912
  }
12912
12913
  };
12913
12914
  if (!this.$scopedSlots.item) {
@@ -14351,7 +14352,7 @@ __webpack_require__.r(__webpack_exports__);
14351
14352
  if (this.isActive) {
14352
14353
  var btnCount_1 = 0;
14353
14354
  children = (this.$slots.default || []).map(function (b, i) {
14354
- if (b.tag && b.componentOptions.Ctor.options.name === 'v-btn') {
14355
+ if (b.tag && typeof b.componentOptions !== 'undefined' && b.componentOptions.Ctor.options.name === 'v-btn') {
14355
14356
  btnCount_1++;
14356
14357
  return h('div', {
14357
14358
  style: {
@@ -19251,7 +19252,7 @@ var Vuetify = {
19251
19252
  return false;
19252
19253
  })(opts.components);
19253
19254
  },
19254
- version: '1.5.11'
19255
+ version: '1.5.15'
19255
19256
  };
19256
19257
  function checkVueVersion(Vue, requiredVue) {
19257
19258
  var vueDep = requiredVue || '^2.5.18';
@@ -20937,7 +20938,7 @@ var Vuetify = {
20937
20938
  Vue.use(_components_Vuetify__WEBPACK_IMPORTED_MODULE_1__["default"], __assign({ components: _components__WEBPACK_IMPORTED_MODULE_2__,
20938
20939
  directives: _directives__WEBPACK_IMPORTED_MODULE_3__["default"] }, args));
20939
20940
  },
20940
- version: '1.5.11'
20941
+ version: '1.5.15'
20941
20942
  };
20942
20943
  if (typeof window !== 'undefined' && window.Vue) {
20943
20944
  window.Vue.use(Vuetify);
@@ -25533,7 +25534,7 @@ function createRange(length) {
25533
25534
  function getZIndex(el) {
25534
25535
  if (!el || el.nodeType !== Node.ELEMENT_NODE) return 0;
25535
25536
  var index = +window.getComputedStyle(el).getPropertyValue('z-index');
25536
- if (isNaN(index)) return getZIndex(el.parentNode);
25537
+ if (!index) return getZIndex(el.parentNode);
25537
25538
  return index;
25538
25539
  }
25539
25540
  var tagsToReplace = {