@vuetify/nightly 3.7.0-master.2024-08-27 → 3.7.1-master.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/importMap-labs.json +22 -22
- package/dist/json/importMap.json +180 -180
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2591 -2579
- 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 +3984 -3972
- package/dist/vuetify.d.ts +57 -57
- 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/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.1-master.2024-08-28
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -23178,7 +23178,6 @@
|
|
23178
23178
|
type: String,
|
23179
23179
|
required: true
|
23180
23180
|
},
|
23181
|
-
rootRef: null,
|
23182
23181
|
rootMargin: String
|
23183
23182
|
},
|
23184
23183
|
emits: {
|
@@ -23191,14 +23190,15 @@
|
|
23191
23190
|
const {
|
23192
23191
|
intersectionRef,
|
23193
23192
|
isIntersecting
|
23194
|
-
} = useIntersectionObserver(
|
23195
|
-
rootMargin: props.rootMargin
|
23196
|
-
} : undefined);
|
23193
|
+
} = useIntersectionObserver();
|
23197
23194
|
vue.watch(isIntersecting, async val => {
|
23198
23195
|
emit('intersect', props.side, val);
|
23199
23196
|
});
|
23200
23197
|
useRender(() => vue.createVNode("div", {
|
23201
23198
|
"class": "v-infinite-scroll-intersect",
|
23199
|
+
"style": {
|
23200
|
+
'--v-infinite-margin-size': props.rootMargin
|
23201
|
+
},
|
23202
23202
|
"ref": intersectionRef
|
23203
23203
|
}, [vue.createTextVNode("\xA0")]));
|
23204
23204
|
return {};
|
@@ -23349,17 +23349,15 @@
|
|
23349
23349
|
}, {
|
23350
23350
|
default: () => [vue.createVNode("div", {
|
23351
23351
|
"class": "v-infinite-scroll__side"
|
23352
|
-
}, [renderSide('start', startStatus.value)]),
|
23352
|
+
}, [renderSide('start', startStatus.value)]), hasStartIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
|
23353
23353
|
"key": "start",
|
23354
23354
|
"side": "start",
|
23355
23355
|
"onIntersect": handleIntersect,
|
23356
|
-
"rootRef": rootEl.value,
|
23357
23356
|
"rootMargin": margin.value
|
23358
|
-
}, null), slots.default?.(),
|
23357
|
+
}, null), slots.default?.(), hasEndIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
|
23359
23358
|
"key": "end",
|
23360
23359
|
"side": "end",
|
23361
23360
|
"onIntersect": handleIntersect,
|
23362
|
-
"rootRef": rootEl.value,
|
23363
23361
|
"rootMargin": margin.value
|
23364
23362
|
}, null), vue.createVNode("div", {
|
23365
23363
|
"class": "v-infinite-scroll__side"
|
@@ -30396,7 +30394,7 @@
|
|
30396
30394
|
goTo
|
30397
30395
|
};
|
30398
30396
|
}
|
30399
|
-
const version$1 = "3.7.
|
30397
|
+
const version$1 = "3.7.1-master.2024-08-28";
|
30400
30398
|
createVuetify$1.version = version$1;
|
30401
30399
|
|
30402
30400
|
// Vue's inject() can only be used in setup
|
@@ -30649,7 +30647,7 @@
|
|
30649
30647
|
|
30650
30648
|
/* eslint-disable local-rules/sort-imports */
|
30651
30649
|
|
30652
|
-
const version = "3.7.
|
30650
|
+
const version = "3.7.1-master.2024-08-28";
|
30653
30651
|
|
30654
30652
|
/* eslint-disable local-rules/sort-imports */
|
30655
30653
|
|