vuetify 2.6.11 → 2.6.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 (45) hide show
  1. package/LICENSE.md +1 -1
  2. package/dist/json/attributes.json +12 -104
  3. package/dist/json/tags.json +0 -23
  4. package/dist/json/web-types.json +29 -266
  5. package/dist/vuetify.css +2 -2
  6. package/dist/vuetify.css.map +1 -1
  7. package/dist/vuetify.js +16 -12
  8. package/dist/vuetify.js.map +1 -1
  9. package/dist/vuetify.min.css +2 -2
  10. package/dist/vuetify.min.js +2 -2
  11. package/es5/components/VAutocomplete/VAutocomplete.js +0 -4
  12. package/es5/components/VAutocomplete/VAutocomplete.js.map +1 -1
  13. package/es5/components/VCalendar/mixins/calendar-with-events.js +3 -1
  14. package/es5/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  15. package/es5/components/VCombobox/VCombobox.js +1 -0
  16. package/es5/components/VCombobox/VCombobox.js.map +1 -1
  17. package/es5/components/VDataTable/VDataTable.js +2 -2
  18. package/es5/components/VDataTable/VDataTable.js.map +1 -1
  19. package/es5/components/VFileInput/VFileInput.js +6 -3
  20. package/es5/components/VFileInput/VFileInput.js.map +1 -1
  21. package/es5/directives/ripple/index.js +3 -1
  22. package/es5/directives/ripple/index.js.map +1 -1
  23. package/es5/framework.js +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.js +0 -4
  25. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  26. package/lib/components/VCalendar/mixins/calendar-with-events.js +3 -1
  27. package/lib/components/VCalendar/mixins/calendar-with-events.js.map +1 -1
  28. package/lib/components/VCombobox/VCombobox.js +1 -0
  29. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  30. package/lib/components/VDataTable/VDataTable.js +1 -1
  31. package/lib/components/VDataTable/VDataTable.js.map +1 -1
  32. package/lib/components/VFileInput/VFileInput.js +6 -2
  33. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  34. package/lib/directives/ripple/index.js +3 -1
  35. package/lib/directives/ripple/index.js.map +1 -1
  36. package/lib/framework.js +1 -1
  37. package/package.json +2 -2
  38. package/src/components/VAutocomplete/VAutocomplete.ts +0 -4
  39. package/src/components/VCalendar/mixins/calendar-with-events.ts +1 -1
  40. package/src/components/VCombobox/VCombobox.ts +1 -0
  41. package/src/components/VDataTable/VDataTable.ts +1 -1
  42. package/src/components/VDialog/__tests__/VDialog.spec.ts +1 -1
  43. package/src/components/VFileInput/VFileInput.ts +7 -2
  44. package/src/components/VStepper/VStepper.sass +2 -2
  45. package/src/directives/ripple/index.ts +1 -1
package/dist/vuetify.js CHANGED
@@ -971,10 +971,6 @@ var defaultMenuProps = __assign(__assign({}, _VSelect_VSelect__WEBPACK_IMPORTED_
971
971
  /* harmony default export */ __webpack_exports__["default"] = (_VSelect_VSelect__WEBPACK_IMPORTED_MODULE_1__["default"].extend({
972
972
  name: 'v-autocomplete',
973
973
  props: {
974
- allowOverflow: {
975
- type: Boolean,
976
- default: true
977
- },
978
974
  autoSelectFirst: {
979
975
  type: Boolean,
980
976
  default: false
@@ -4577,7 +4573,9 @@ var MINUTES_IN_DAY = 1440;
4577
4573
  }
4578
4574
  }
4579
4575
 
4580
- return name;
4576
+ return _this.$createElement('span', {
4577
+ staticClass: 'v-event-summary'
4578
+ }, [name]);
4581
4579
  };
4582
4580
 
4583
4581
  var scope = __assign(__assign({}, scopeInput), {
@@ -9388,6 +9386,7 @@ var __assign = undefined && undefined.__assign || function () {
9388
9386
  onPaste: function onPaste(event) {
9389
9387
  var _a;
9390
9388
 
9389
+ this.$emit('paste', event);
9391
9390
  if (!this.multiple || this.searchIsDirty) return;
9392
9391
  var pastedItemText = (_a = event.clipboardData) === null || _a === void 0 ? void 0 : _a.getData('text/vnd.vuetify.autocomplete.item+plain');
9393
9392
 
@@ -11680,8 +11679,8 @@ function searchTableItems(items, search, headersWithCustomFilters, headersWithou
11680
11679
  on: {
11681
11680
  // TODO: for click, the first argument should be the event, and the second argument should be data,
11682
11681
  // but this is a breaking change so it's for v3
11683
- click: function click() {
11684
- return _this.$emit('click:row', item, data);
11682
+ click: function click(event) {
11683
+ return _this.$emit('click:row', item, data, event);
11685
11684
  },
11686
11685
  contextmenu: function contextmenu(event) {
11687
11686
  return _this.$emit('contextmenu:row', event, data);
@@ -16008,7 +16007,7 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
16008
16007
 
16009
16008
  delete input.data.domProps.value; // This solves an issue in Safari where
16010
16009
  // nothing happens when adding a file
16011
- // do to the input event not firing
16010
+ // due to the input event not firing
16012
16011
  // https://github.com/vuetifyjs/vuetify/issues/7941
16013
16012
 
16014
16013
  delete input.data.on.input;
@@ -16061,8 +16060,11 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
16061
16060
 
16062
16061
  var node = _VTextField__WEBPACK_IMPORTED_MODULE_1__["default"].options.methods.genTextFieldSlot.call(this);
16063
16062
  node.data.on = __assign(__assign({}, node.data.on || {}), {
16064
- click: function click() {
16065
- return _this.$refs.input.click();
16063
+ click: function click(e) {
16064
+ // Clicking the label already delegates to input element, so we shouldn't click it twice
16065
+ if (e.target && e.target.nodeName === 'LABEL') return;
16066
+
16067
+ _this.$refs.input.click();
16066
16068
  }
16067
16069
  });
16068
16070
  return node;
@@ -34672,6 +34674,8 @@ var ripples = {
34672
34674
  animation.classList.remove('v-ripple__animation--in');
34673
34675
  animation.classList.add('v-ripple__animation--out');
34674
34676
  setTimeout(function () {
34677
+ var _a;
34678
+
34675
34679
  var ripples = el.getElementsByClassName('v-ripple__animation');
34676
34680
 
34677
34681
  if (ripples.length === 1 && el.dataset.previousPosition) {
@@ -34679,7 +34683,7 @@ var ripples = {
34679
34683
  delete el.dataset.previousPosition;
34680
34684
  }
34681
34685
 
34682
- animation.parentNode && el.removeChild(animation.parentNode);
34686
+ if (((_a = animation.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === el) el.removeChild(animation.parentNode);
34683
34687
  }, 300);
34684
34688
  }, delay);
34685
34689
  }
@@ -35133,7 +35137,7 @@ function () {
35133
35137
 
35134
35138
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
35135
35139
  Vuetify.installed = false;
35136
- Vuetify.version = "2.6.11";
35140
+ Vuetify.version = "2.6.13";
35137
35141
  Vuetify.config = {
35138
35142
  silent: false
35139
35143
  };