@dimailn/vuetify 2.7.2-alpha12 → 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 +9 -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/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/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/VSelect/VSelect.ts +6 -5
- package/src/components/VSelect/VSelectList.ts +3 -3
package/dist/vuetify.js
CHANGED
|
@@ -24196,13 +24196,11 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
|
|
|
24196
24196
|
genListWithSlot: function genListWithSlot() {
|
|
24197
24197
|
var _this = this;
|
|
24198
24198
|
|
|
24199
|
-
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) {
|
|
24200
24200
|
return _this.$slots[slotName];
|
|
24201
24201
|
}).map(function (slotName) {
|
|
24202
|
-
return
|
|
24203
|
-
|
|
24204
|
-
}, _this.$slots[slotName]);
|
|
24205
|
-
}); // Requires destructuring due to Vue
|
|
24202
|
+
return [slotName, _this.$slots[slotName]];
|
|
24203
|
+
})); // Requires destructuring due to Vue
|
|
24206
24204
|
// modifying the `on` property when passed
|
|
24207
24205
|
// as a referenced object
|
|
24208
24206
|
|
|
@@ -24830,6 +24828,8 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
24830
24828
|
}
|
|
24831
24829
|
},
|
|
24832
24830
|
render: function render() {
|
|
24831
|
+
var _a, _b;
|
|
24832
|
+
|
|
24833
24833
|
var children = [];
|
|
24834
24834
|
var itemsLength = this.items.length;
|
|
24835
24835
|
|
|
@@ -24845,9 +24845,9 @@ var __assign = undefined && undefined.__assign || function () {
|
|
|
24845
24845
|
}));
|
|
24846
24846
|
}
|
|
24847
24847
|
|
|
24848
|
-
children.length || children.push(this.$slots['no-data'] || this.staticNoDataTile);
|
|
24849
|
-
this.$slots['prepend-item'] && children.unshift(this.$slots['prepend-item']);
|
|
24850
|
-
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']());
|
|
24851
24851
|
return Object(vue__WEBPACK_IMPORTED_MODULE_9__["h"])(_VList__WEBPACK_IMPORTED_MODULE_3__["VList"], {
|
|
24852
24852
|
class: ['v-select-list', this.themeClasses],
|
|
24853
24853
|
role: 'listbox',
|
|
@@ -35144,7 +35144,7 @@ function () {
|
|
|
35144
35144
|
|
|
35145
35145
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35146
35146
|
Vuetify.installed = false;
|
|
35147
|
-
Vuetify.version = "2.7.2-
|
|
35147
|
+
Vuetify.version = "2.7.2-alpha13";
|
|
35148
35148
|
Vuetify.config = {
|
|
35149
35149
|
silent: false
|
|
35150
35150
|
};
|