@dimailn/vuetify 2.7.2-alpha37 → 2.7.2-alpha39

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
@@ -20579,10 +20579,12 @@ var __assign = undefined && undefined.__assign || function () {
20579
20579
  name: 'v-list-item-icon',
20580
20580
  functional: true,
20581
20581
  render: function render() {
20582
+ var _a, _b;
20583
+
20582
20584
  var data = __assign({}, this.$attrs);
20583
20585
 
20584
20586
  data.class = ("v-list-item__icon " + (data.class || '')).trim();
20585
- return Object(vue__WEBPACK_IMPORTED_MODULE_0__["h"])('div', data, this.$slots.default());
20587
+ return Object(vue__WEBPACK_IMPORTED_MODULE_0__["h"])('div', data, (_b = (_a = this.$slots).default) === null || _b === void 0 ? void 0 : _b.call(_a));
20586
20588
  }
20587
20589
  }));
20588
20590
 
@@ -26426,12 +26428,21 @@ var __read = undefined && undefined.__read || function (o, n) {
26426
26428
  hasItem: function hasItem(item) {
26427
26429
  return this.parsedItems.indexOf(this.getValue(item)) > -1;
26428
26430
  },
26431
+ checkSlotFragment: function checkSlotFragment(type) {
26432
+ return _typeof(type) === 'symbol' && String(type) === 'Symbol(v-fgt)';
26433
+ },
26429
26434
  needsTile: function needsTile(slot) {
26430
- var _a = __read(slot !== null && slot !== void 0 ? slot : [], 1),
26431
- vnode = _a[0];
26432
-
26433
26435
  if (!(slot === null || slot === void 0 ? void 0 : slot.length) || slot.length !== 1) return true;
26434
- var type = (vnode !== null && vnode !== void 0 ? vnode : {}).type;
26436
+ var vnode = slot[0];
26437
+ if (!vnode) return true;
26438
+ var type = vnode.type;
26439
+
26440
+ if (this.checkSlotFragment(type) && Array.isArray(vnode.children)) {
26441
+ if (vnode.children.length !== 1) return true;
26442
+ vnode = vnode.children[0];
26443
+ type = vnode && vnode.type;
26444
+ }
26445
+
26435
26446
  var isComponent = type && _typeof(type) === 'object';
26436
26447
  var isVListItem = isComponent && 'name' in type && type.name === 'v-list-item';
26437
26448
  return !isVListItem;
@@ -36928,7 +36939,7 @@ function () {
36928
36939
 
36929
36940
  Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
36930
36941
  Vuetify.installed = false;
36931
- Vuetify.version = "2.7.2-alpha36";
36942
+ Vuetify.version = "2.7.2-alpha39";
36932
36943
  Vuetify.config = {
36933
36944
  silent: false
36934
36945
  };
@@ -43448,8 +43459,7 @@ function factory(prop, event) {
43448
43459
  },
43449
43460
  set: function set(val) {
43450
43461
  if (val === this.internalLazyValue) return;
43451
- this.internalLazyValue = val;
43452
- console.log(this, !this.$.isUnmounted); // Don't emit events if component is being destroyed
43462
+ this.internalLazyValue = val; // Don't emit events if component is being destroyed
43453
43463
 
43454
43464
  if (!this.$.isUnmounted) {
43455
43465
  this.$emit(event, val);