@dimailn/vuetify 2.7.2-alpha47 → 2.7.2-alpha48
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 +3 -2
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VItemGroup/VItemGroup.js +2 -1
- package/es5/components/VItemGroup/VItemGroup.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VItemGroup/VItemGroup.js +2 -1
- package/lib/components/VItemGroup/VItemGroup.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VItemGroup/VItemGroup.ts +5 -2
- package/src/components/VItemGroup/__tests__/VItemGroup.spec.ts +2 -0
- package/src/components/VList/__tests__/VListItemGroup.spec.ts +31 -0
package/dist/vuetify.js
CHANGED
|
@@ -19330,7 +19330,8 @@ var BaseItemGroup = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_5__["default"])
|
|
|
19330
19330
|
};
|
|
19331
19331
|
},
|
|
19332
19332
|
getValue: function getValue(item, i) {
|
|
19333
|
-
|
|
19333
|
+
var identity = item.value !== undefined ? item.value : item.modelValue;
|
|
19334
|
+
return identity === undefined ? i : identity;
|
|
19334
19335
|
},
|
|
19335
19336
|
onClick: function onClick(item) {
|
|
19336
19337
|
this.updateInternalValue(this.getValue(item, this.items.indexOf(item)));
|
|
@@ -37113,7 +37114,7 @@ function () {
|
|
|
37113
37114
|
|
|
37114
37115
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
37115
37116
|
Vuetify.installed = false;
|
|
37116
|
-
Vuetify.version = "2.7.2-
|
|
37117
|
+
Vuetify.version = "2.7.2-alpha48";
|
|
37117
37118
|
Vuetify.config = {
|
|
37118
37119
|
silent: false
|
|
37119
37120
|
};
|