@dimailn/vuetify 2.7.2-alpha52 → 2.7.2-alpha53

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
@@ -37119,7 +37119,7 @@ function () {
37119
37119
 
37120
37120
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
37121
37121
  Vuetify.installed = false;
37122
- Vuetify.version = "2.7.2-alpha52";
37122
+ Vuetify.version = "2.7.2-alpha53";
37123
37123
  Vuetify.config = {
37124
37124
  silent: false
37125
37125
  };
@@ -44130,8 +44130,8 @@ var __assign = undefined && undefined.__assign || function () {
44130
44130
  var exactActiveClass = this.exactActiveClass || activeClass;
44131
44131
 
44132
44132
  if (this.proxyClass) {
44133
- activeClass = (activeClass + " " + this.proxyClass).trim();
44134
- exactActiveClass = (exactActiveClass + " " + this.proxyClass).trim();
44133
+ activeClass = [activeClass, this.proxyClass].filter(Boolean).join(' ');
44134
+ exactActiveClass = [exactActiveClass, this.proxyClass].filter(Boolean).join(' ');
44135
44135
  }
44136
44136
 
44137
44137
  tag = Object(vue__WEBPACK_IMPORTED_MODULE_0__["resolveComponent"])(this.nuxt ? 'nuxt-link' : 'router-link');
@@ -44165,7 +44165,9 @@ var __assign = undefined && undefined.__assign || function () {
44165
44165
  var path = '_vnode.data.class.' + (this.exact ? exactActiveClass : activeClass);
44166
44166
  this.$nextTick(function () {
44167
44167
  /* istanbul ignore else */
44168
- if (!Object(_util_helpers__WEBPACK_IMPORTED_MODULE_2__["getObjectValueByPath"])(_this.$refs.link, path) === _this.isActive) {
44168
+ var isLinkActive = Boolean(Object(_util_helpers__WEBPACK_IMPORTED_MODULE_2__["getObjectValueByPath"])(_this.$refs.link, path));
44169
+
44170
+ if (isLinkActive !== _this.isActive) {
44169
44171
  _this.toggle();
44170
44172
  }
44171
44173
  });