@vuetify/nightly 3.7.0-master.2024-08-27 → 3.7.1-dev.2024-08-28
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/json/attributes.json +98 -98
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +162 -162
- package/dist/json/web-types.json +192 -192
- package/dist/vuetify-labs.css +3134 -3122
- package/dist/vuetify-labs.esm.js +9 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +9 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1644 -1632
- package/dist/vuetify.d.ts +64 -64
- package/dist/vuetify.esm.js +9 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.css +13 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.mjs +6 -8
- package/lib/components/VInfiniteScroll/VInfiniteScroll.mjs.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +64 -64
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.1-dev.2024-08-28
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -23411,7 +23411,6 @@
|
|
23411
23411
|
type: String,
|
23412
23412
|
required: true
|
23413
23413
|
},
|
23414
|
-
rootRef: null,
|
23415
23414
|
rootMargin: String
|
23416
23415
|
},
|
23417
23416
|
emits: {
|
@@ -23424,14 +23423,15 @@
|
|
23424
23423
|
const {
|
23425
23424
|
intersectionRef,
|
23426
23425
|
isIntersecting
|
23427
|
-
} = useIntersectionObserver(
|
23428
|
-
rootMargin: props.rootMargin
|
23429
|
-
} : undefined);
|
23426
|
+
} = useIntersectionObserver();
|
23430
23427
|
vue.watch(isIntersecting, async val => {
|
23431
23428
|
emit('intersect', props.side, val);
|
23432
23429
|
});
|
23433
23430
|
useRender(() => vue.createVNode("div", {
|
23434
23431
|
"class": "v-infinite-scroll-intersect",
|
23432
|
+
"style": {
|
23433
|
+
'--v-infinite-margin-size': props.rootMargin
|
23434
|
+
},
|
23435
23435
|
"ref": intersectionRef
|
23436
23436
|
}, [vue.createTextVNode("\xA0")]));
|
23437
23437
|
return {};
|
@@ -23582,17 +23582,15 @@
|
|
23582
23582
|
}, {
|
23583
23583
|
default: () => [vue.createVNode("div", {
|
23584
23584
|
"class": "v-infinite-scroll__side"
|
23585
|
-
}, [renderSide('start', startStatus.value)]),
|
23585
|
+
}, [renderSide('start', startStatus.value)]), hasStartIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
|
23586
23586
|
"key": "start",
|
23587
23587
|
"side": "start",
|
23588
23588
|
"onIntersect": handleIntersect,
|
23589
|
-
"rootRef": rootEl.value,
|
23590
23589
|
"rootMargin": margin.value
|
23591
|
-
}, null), slots.default?.(),
|
23590
|
+
}, null), slots.default?.(), hasEndIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
|
23592
23591
|
"key": "end",
|
23593
23592
|
"side": "end",
|
23594
23593
|
"onIntersect": handleIntersect,
|
23595
|
-
"rootRef": rootEl.value,
|
23596
23594
|
"rootMargin": margin.value
|
23597
23595
|
}, null), vue.createVNode("div", {
|
23598
23596
|
"class": "v-infinite-scroll__side"
|
@@ -28220,7 +28218,7 @@
|
|
28220
28218
|
goTo
|
28221
28219
|
};
|
28222
28220
|
}
|
28223
|
-
const version$1 = "3.7.
|
28221
|
+
const version$1 = "3.7.1-dev.2024-08-28";
|
28224
28222
|
createVuetify$1.version = version$1;
|
28225
28223
|
|
28226
28224
|
// Vue's inject() can only be used in setup
|
@@ -28245,7 +28243,7 @@
|
|
28245
28243
|
...options
|
28246
28244
|
});
|
28247
28245
|
};
|
28248
|
-
const version = "3.7.
|
28246
|
+
const version = "3.7.1-dev.2024-08-28";
|
28249
28247
|
createVuetify.version = version;
|
28250
28248
|
|
28251
28249
|
exports.blueprints = index;
|