@dimailn/vuetify 2.7.2-alpha37 → 2.7.2-alpha38
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 +15 -7
- 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/VSelectList.js +12 -7
- package/es5/components/VSelect/VSelectList.js.map +1 -1
- package/es5/framework.js +1 -1
- package/es5/mixins/proxyable/index.js +1 -2
- package/es5/mixins/proxyable/index.js.map +1 -1
- package/lib/components/VSelect/VSelectList.js +14 -4
- package/lib/components/VSelect/VSelectList.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/proxyable/index.js +1 -2
- package/lib/mixins/proxyable/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/VSelect/VSelectList.ts +14 -3
package/dist/vuetify.js
CHANGED
|
@@ -26426,12 +26426,21 @@ var __read = undefined && undefined.__read || function (o, n) {
|
|
|
26426
26426
|
hasItem: function hasItem(item) {
|
|
26427
26427
|
return this.parsedItems.indexOf(this.getValue(item)) > -1;
|
|
26428
26428
|
},
|
|
26429
|
+
checkSlotFragment: function checkSlotFragment(type) {
|
|
26430
|
+
return _typeof(type) === 'symbol' && String(type) === 'Symbol(v-fgt)';
|
|
26431
|
+
},
|
|
26429
26432
|
needsTile: function needsTile(slot) {
|
|
26430
|
-
var _a = __read(slot !== null && slot !== void 0 ? slot : [], 1),
|
|
26431
|
-
vnode = _a[0];
|
|
26432
|
-
|
|
26433
26433
|
if (!(slot === null || slot === void 0 ? void 0 : slot.length) || slot.length !== 1) return true;
|
|
26434
|
-
var
|
|
26434
|
+
var vnode = slot[0];
|
|
26435
|
+
if (!vnode) return true;
|
|
26436
|
+
var type = vnode.type;
|
|
26437
|
+
|
|
26438
|
+
if (this.checkSlotFragment(type) && Array.isArray(vnode.children)) {
|
|
26439
|
+
if (vnode.children.length !== 1) return true;
|
|
26440
|
+
vnode = vnode.children[0];
|
|
26441
|
+
type = vnode && vnode.type;
|
|
26442
|
+
}
|
|
26443
|
+
|
|
26435
26444
|
var isComponent = type && _typeof(type) === 'object';
|
|
26436
26445
|
var isVListItem = isComponent && 'name' in type && type.name === 'v-list-item';
|
|
26437
26446
|
return !isVListItem;
|
|
@@ -36928,7 +36937,7 @@ function () {
|
|
|
36928
36937
|
|
|
36929
36938
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
36930
36939
|
Vuetify.installed = false;
|
|
36931
|
-
Vuetify.version = "2.7.2-
|
|
36940
|
+
Vuetify.version = "2.7.2-alpha38";
|
|
36932
36941
|
Vuetify.config = {
|
|
36933
36942
|
silent: false
|
|
36934
36943
|
};
|
|
@@ -43448,8 +43457,7 @@ function factory(prop, event) {
|
|
|
43448
43457
|
},
|
|
43449
43458
|
set: function set(val) {
|
|
43450
43459
|
if (val === this.internalLazyValue) return;
|
|
43451
|
-
this.internalLazyValue = val;
|
|
43452
|
-
console.log(this, !this.$.isUnmounted); // Don't emit events if component is being destroyed
|
|
43460
|
+
this.internalLazyValue = val; // Don't emit events if component is being destroyed
|
|
43453
43461
|
|
|
43454
43462
|
if (!this.$.isUnmounted) {
|
|
43455
43463
|
this.$emit(event, val);
|