@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-labs.esm.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
|
*/
|
@@ -23174,7 +23174,6 @@ const VInfiniteScrollIntersect = defineComponent({
|
|
23174
23174
|
type: String,
|
23175
23175
|
required: true
|
23176
23176
|
},
|
23177
|
-
rootRef: null,
|
23178
23177
|
rootMargin: String
|
23179
23178
|
},
|
23180
23179
|
emits: {
|
@@ -23187,14 +23186,15 @@ const VInfiniteScrollIntersect = defineComponent({
|
|
23187
23186
|
const {
|
23188
23187
|
intersectionRef,
|
23189
23188
|
isIntersecting
|
23190
|
-
} = useIntersectionObserver(
|
23191
|
-
rootMargin: props.rootMargin
|
23192
|
-
} : undefined);
|
23189
|
+
} = useIntersectionObserver();
|
23193
23190
|
watch(isIntersecting, async val => {
|
23194
23191
|
emit('intersect', props.side, val);
|
23195
23192
|
});
|
23196
23193
|
useRender(() => createVNode("div", {
|
23197
23194
|
"class": "v-infinite-scroll-intersect",
|
23195
|
+
"style": {
|
23196
|
+
'--v-infinite-margin-size': props.rootMargin
|
23197
|
+
},
|
23198
23198
|
"ref": intersectionRef
|
23199
23199
|
}, [createTextVNode("\xA0")]));
|
23200
23200
|
return {};
|
@@ -23345,17 +23345,15 @@ const VInfiniteScroll = genericComponent()({
|
|
23345
23345
|
}, {
|
23346
23346
|
default: () => [createVNode("div", {
|
23347
23347
|
"class": "v-infinite-scroll__side"
|
23348
|
-
}, [renderSide('start', startStatus.value)]),
|
23348
|
+
}, [renderSide('start', startStatus.value)]), hasStartIntersect && intersectMode && createVNode(VInfiniteScrollIntersect, {
|
23349
23349
|
"key": "start",
|
23350
23350
|
"side": "start",
|
23351
23351
|
"onIntersect": handleIntersect,
|
23352
|
-
"rootRef": rootEl.value,
|
23353
23352
|
"rootMargin": margin.value
|
23354
|
-
}, null), slots.default?.(),
|
23353
|
+
}, null), slots.default?.(), hasEndIntersect && intersectMode && createVNode(VInfiniteScrollIntersect, {
|
23355
23354
|
"key": "end",
|
23356
23355
|
"side": "end",
|
23357
23356
|
"onIntersect": handleIntersect,
|
23358
|
-
"rootRef": rootEl.value,
|
23359
23357
|
"rootMargin": margin.value
|
23360
23358
|
}, null), createVNode("div", {
|
23361
23359
|
"class": "v-infinite-scroll__side"
|
@@ -30392,7 +30390,7 @@ function createVuetify$1() {
|
|
30392
30390
|
goTo
|
30393
30391
|
};
|
30394
30392
|
}
|
30395
|
-
const version$1 = "3.7.
|
30393
|
+
const version$1 = "3.7.1-dev.2024-08-28";
|
30396
30394
|
createVuetify$1.version = version$1;
|
30397
30395
|
|
30398
30396
|
// Vue's inject() can only be used in setup
|
@@ -30645,7 +30643,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30645
30643
|
|
30646
30644
|
/* eslint-disable local-rules/sort-imports */
|
30647
30645
|
|
30648
|
-
const version = "3.7.
|
30646
|
+
const version = "3.7.1-dev.2024-08-28";
|
30649
30647
|
|
30650
30648
|
/* eslint-disable local-rules/sort-imports */
|
30651
30649
|
|