@vuetify/nightly 2.6.0 → 2.6.1-master-20211122.0

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.
package/dist/vuetify.js CHANGED
@@ -2133,10 +2133,7 @@ var __assign = undefined && undefined.__assign || function () {
2133
2133
  name: 'v-bottom-sheet',
2134
2134
  props: {
2135
2135
  inset: Boolean,
2136
- maxWidth: {
2137
- type: [String, Number],
2138
- default: 'auto'
2139
- },
2136
+ maxWidth: [String, Number],
2140
2137
  transition: {
2141
2138
  type: String,
2142
2139
  default: 'bottom-sheet-transition'
@@ -14794,10 +14791,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
14794
14791
  disabled: Boolean,
14795
14792
  fullscreen: Boolean,
14796
14793
  light: Boolean,
14797
- maxWidth: {
14798
- type: [String, Number],
14799
- default: 'none'
14800
- },
14794
+ maxWidth: [String, Number],
14801
14795
  noClickAnimation: Boolean,
14802
14796
  origin: {
14803
14797
  type: String,
@@ -14813,10 +14807,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
14813
14807
  type: [String, Boolean],
14814
14808
  default: 'dialog-transition'
14815
14809
  },
14816
- width: {
14817
- type: [String, Number],
14818
- default: 'auto'
14819
- }
14810
+ width: [String, Number]
14820
14811
  },
14821
14812
  data: function data() {
14822
14813
  return {
@@ -15046,8 +15037,8 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_10__["default"])(_
15046
15037
 
15047
15038
  if (!this.fullscreen) {
15048
15039
  data.style = __assign(__assign({}, data.style), {
15049
- maxWidth: this.maxWidth === 'none' ? undefined : Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.maxWidth),
15050
- width: this.width === 'auto' ? undefined : Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.width)
15040
+ maxWidth: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.maxWidth),
15041
+ width: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_12__["convertToUnit"])(this.width)
15051
15042
  });
15052
15043
  }
15053
15044
 
@@ -28299,7 +28290,7 @@ Object(_mixins_groupable__WEBPACK_IMPORTED_MODULE_0__["factory"])('tabsBar'), _m
28299
28290
  },
28300
28291
  toggle: function toggle() {
28301
28292
  // VItemGroup treats a change event as a click
28302
- if (!this.isActive) {
28293
+ if (!this.isActive || !this.tabsBar.mandatory && !this.to) {
28303
28294
  this.$emit('change');
28304
28295
  }
28305
28296
  }
@@ -34977,7 +34968,7 @@ function () {
34977
34968
 
34978
34969
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
34979
34970
  Vuetify.installed = false;
34980
- Vuetify.version = "2.6.0";
34971
+ Vuetify.version = "2.6.1-master-20211122.0";
34981
34972
  Vuetify.config = {
34982
34973
  silent: false
34983
34974
  };