@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 +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/framework.js +1 -1
- package/es5/mixins/routable/index.js +5 -3
- package/es5/mixins/routable/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/routable/index.js +5 -3
- package/lib/mixins/routable/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/VList/__tests__/VListItem.spec.ts +119 -0
- package/src/mixins/routable/__tests__/routable.spec.ts +78 -1
- package/src/mixins/routable/index.ts +4 -3
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-
|
|
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 =
|
|
44134
|
-
exactActiveClass =
|
|
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
|
-
|
|
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
|
});
|