@dimailn/vuetify 2.7.2-alpha11 → 2.7.2-alpha13
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 +10 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VDataIterator/VDataIterator.js +1 -0
- package/es5/components/VDataIterator/VDataIterator.js.map +1 -1
- package/es5/components/VSelect/VSelect.js +3 -5
- package/es5/components/VSelect/VSelect.js.map +1 -1
- package/es5/components/VSelect/VSelectList.js +5 -3
- package/es5/components/VSelect/VSelectList.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VDataIterator/VDataIterator.js +1 -0
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +1 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelect/VSelectList.js +5 -3
- package/lib/components/VSelect/VSelectList.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VDataIterator/VDataIterator.ts +2 -0
- package/src/components/VSelect/VSelect.ts +6 -5
- package/src/components/VSelect/VSelectList.ts +3 -3
package/dist/vuetify.js
CHANGED
|
@@ -10309,6 +10309,7 @@ var __read = undefined && undefined.__read || function (o, n) {
|
|
|
10309
10309
|
handler: function handler(value) {
|
|
10310
10310
|
var _this = this;
|
|
10311
10311
|
|
|
10312
|
+
if (!value) return;
|
|
10312
10313
|
this.selection = value.reduce(function (selection, item) {
|
|
10313
10314
|
selection[Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["getObjectValueByPath"])(item, _this.itemKey)] = item;
|
|
10314
10315
|
return selection;
|
|
@@ -24195,13 +24196,11 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
|
|
|
24195
24196
|
genListWithSlot: function genListWithSlot() {
|
|
24196
24197
|
var _this = this;
|
|
24197
24198
|
|
|
24198
|
-
var slots = ['prepend-item', 'no-data', 'append-item'].filter(function (slotName) {
|
|
24199
|
+
var slots = Object.fromEntries(['prepend-item', 'no-data', 'append-item'].filter(function (slotName) {
|
|
24199
24200
|
return _this.$slots[slotName];
|
|
24200
24201
|
}).map(function (slotName) {
|
|
24201
|
-
return
|
|
24202
|
-
|
|
24203
|
-
}, _this.$slots[slotName]);
|
|
24204
|
-
}); // Requires destructuring due to Vue
|
|
24202
|
+
return [slotName, _this.$slots[slotName]];
|
|
24203
|
+
})); // Requires destructuring due to Vue
|
|
24205
24204
|
// modifying the `on` property when passed
|
|
24206
24205
|
// as a referenced object
|
|
24207
24206
|
|
|
@@ -24829,6 +24828,8 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
24829
24828
|
}
|
|
24830
24829
|
},
|
|
24831
24830
|
render: function render() {
|
|
24831
|
+
var _a, _b;
|
|
24832
|
+
|
|
24832
24833
|
var children = [];
|
|
24833
24834
|
var itemsLength = this.items.length;
|
|
24834
24835
|
|
|
@@ -24844,9 +24845,9 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
24844
24845
|
}));
|
|
24845
24846
|
}
|
|
24846
24847
|
|
|
24847
|
-
children.length || children.push(this.$slots['no-data'] || this.staticNoDataTile);
|
|
24848
|
-
this.$slots['prepend-item'] && children.unshift(this.$slots['prepend-item']);
|
|
24849
|
-
this.$slots['append-item'] && children.push(this.$slots['append-item']);
|
|
24848
|
+
children.length || children.push(((_b = (_a = this.$slots)['no-data']) === null || _b === void 0 ? void 0 : _b.call(_a)) || this.staticNoDataTile);
|
|
24849
|
+
this.$slots['prepend-item'] && children.unshift(this.$slots['prepend-item']());
|
|
24850
|
+
this.$slots['append-item'] && children.push(this.$slots['append-item']());
|
|
24850
24851
|
return Object(vue__WEBPACK_IMPORTED_MODULE_9__["h"])(_VList__WEBPACK_IMPORTED_MODULE_3__["VList"], {
|
|
24851
24852
|
class: ['v-select-list', this.themeClasses],
|
|
24852
24853
|
role: 'listbox',
|
|
@@ -35143,7 +35144,7 @@ function () {
|
|
|
35143
35144
|
|
|
35144
35145
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35145
35146
|
Vuetify.installed = false;
|
|
35146
|
-
Vuetify.version = "2.7.2-
|
|
35147
|
+
Vuetify.version = "2.7.2-alpha13";
|
|
35147
35148
|
Vuetify.config = {
|
|
35148
35149
|
silent: false
|
|
35149
35150
|
};
|