@vuetify/nightly 3.8.8-dev.2025-06-04 → 3.8.8-dev.2025-06-10
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/CHANGELOG.md +5 -3
- package/dist/json/attributes.json +3640 -3616
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +6660 -6606
- package/dist/vuetify-labs.cjs +38 -5
- package/dist/vuetify-labs.css +4973 -4973
- package/dist/vuetify-labs.d.ts +96 -60
- package/dist/vuetify-labs.esm.js +38 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +38 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3676 -3676
- package/dist/vuetify.d.ts +96 -60
- package/dist/vuetify.esm.js +38 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +173 -172
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.8-dev.2025-06-
|
2
|
+
* Vuetify v3.8.8-dev.2025-06-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -14250,7 +14250,8 @@
|
|
14250
14250
|
...makeThemeProps(),
|
14251
14251
|
...makeTransitionProps({
|
14252
14252
|
transition: 'scale-rotate-transition'
|
14253
|
-
})
|
14253
|
+
}),
|
14254
|
+
...makeDimensionProps()
|
14254
14255
|
}, 'VBadge');
|
14255
14256
|
const VBadge = genericComponent()({
|
14256
14257
|
name: 'VBadge',
|
@@ -14280,6 +14281,9 @@
|
|
14280
14281
|
const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
|
14281
14282
|
return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
|
14282
14283
|
});
|
14284
|
+
const {
|
14285
|
+
dimensionStyles
|
14286
|
+
} = useDimension(props);
|
14283
14287
|
useRender(() => {
|
14284
14288
|
const value = Number(props.content);
|
14285
14289
|
const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
|
@@ -14301,7 +14305,7 @@
|
|
14301
14305
|
}, {
|
14302
14306
|
default: () => [vue.withDirectives(vue.createElementVNode("span", vue.mergeProps({
|
14303
14307
|
"class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
|
14304
|
-
"style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
|
14308
|
+
"style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
|
14305
14309
|
"aria-atomic": "true",
|
14306
14310
|
"aria-label": t(props.label, value),
|
14307
14311
|
"aria-live": "polite",
|
@@ -24329,6 +24333,9 @@
|
|
24329
24333
|
startStatus.value = status;
|
24330
24334
|
} else if (side === 'end') {
|
24331
24335
|
endStatus.value = status;
|
24336
|
+
} else if (side === 'both') {
|
24337
|
+
startStatus.value = status;
|
24338
|
+
endStatus.value = status;
|
24332
24339
|
}
|
24333
24340
|
}
|
24334
24341
|
function getStatus(side) {
|
@@ -24440,6 +24447,32 @@
|
|
24440
24447
|
}, [renderSide('end', endStatus.value)])]
|
24441
24448
|
});
|
24442
24449
|
});
|
24450
|
+
function reset(side) {
|
24451
|
+
const effectiveSide = side ?? props.side;
|
24452
|
+
setStatus(effectiveSide, 'ok');
|
24453
|
+
vue.nextTick(() => {
|
24454
|
+
setScrollAmount(getScrollSize() - previousScrollSize + getScrollAmount());
|
24455
|
+
if (props.mode !== 'manual') {
|
24456
|
+
vue.nextTick(() => {
|
24457
|
+
window.requestAnimationFrame(() => {
|
24458
|
+
window.requestAnimationFrame(() => {
|
24459
|
+
window.requestAnimationFrame(() => {
|
24460
|
+
if (effectiveSide === 'both') {
|
24461
|
+
intersecting('start');
|
24462
|
+
intersecting('end');
|
24463
|
+
} else {
|
24464
|
+
intersecting(effectiveSide);
|
24465
|
+
}
|
24466
|
+
});
|
24467
|
+
});
|
24468
|
+
});
|
24469
|
+
});
|
24470
|
+
}
|
24471
|
+
});
|
24472
|
+
}
|
24473
|
+
return {
|
24474
|
+
reset
|
24475
|
+
};
|
24443
24476
|
}
|
24444
24477
|
});
|
24445
24478
|
|
@@ -29619,7 +29652,7 @@
|
|
29619
29652
|
};
|
29620
29653
|
});
|
29621
29654
|
}
|
29622
|
-
const version$1 = "3.8.8-dev.2025-06-
|
29655
|
+
const version$1 = "3.8.8-dev.2025-06-10";
|
29623
29656
|
createVuetify$1.version = version$1;
|
29624
29657
|
|
29625
29658
|
// Vue's inject() can only be used in setup
|
@@ -29644,7 +29677,7 @@
|
|
29644
29677
|
...options
|
29645
29678
|
});
|
29646
29679
|
};
|
29647
|
-
const version = "3.8.8-dev.2025-06-
|
29680
|
+
const version = "3.8.8-dev.2025-06-10";
|
29648
29681
|
createVuetify.version = version;
|
29649
29682
|
|
29650
29683
|
exports.blueprints = index;
|