@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 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 Object(vue__WEBPACK_IMPORTED_MODULE_15__["h"])('template', {
24202
- slot: slotName
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-alpha10";
35147
+ Vuetify.version = "2.7.2-alpha13";
35147
35148
  Vuetify.config = {
35148
35149
  silent: false
35149
35150
  };