@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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-27
2
+ * Vuetify v3.7.1-dev.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(entries => {}, props.rootMargin ? {
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)]), rootEl.value && hasStartIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
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?.(), rootEl.value && hasEndIntersect && intersectMode && vue.createVNode(VInfiniteScrollIntersect, {
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.0-master.2024-08-27";
30397
+ const version$1 = "3.7.1-dev.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.0-master.2024-08-27";
30650
+ const version = "3.7.1-dev.2024-08-28";
30653
30651
 
30654
30652
  /* eslint-disable local-rules/sort-imports */
30655
30653