@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-04-30
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 +10 -3
- package/dist/json/attributes.json +2916 -2916
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +120 -120
- package/dist/json/web-types.json +5199 -5199
- package/dist/vuetify-labs.cjs +19 -16
- package/dist/vuetify-labs.css +3752 -3752
- package/dist/vuetify-labs.d.ts +4023 -859
- package/dist/vuetify-labs.esm.js +19 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +19 -16
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4587 -4587
- package/dist/vuetify.d.ts +4023 -859
- package/dist/vuetify.esm.js +19 -16
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -16
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
- package/lib/components/VBadge/VBadge.d.ts +22 -46
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
- package/lib/components/VCombobox/VCombobox.d.ts +792 -74
- package/lib/components/VCounter/VCounter.d.ts +22 -46
- package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
- package/lib/components/VDialog/VDialog.d.ts +1048 -146
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VFab/VFab.d.ts +22 -46
- package/lib/components/VImg/VImg.d.ts +22 -49
- package/lib/components/VLazy/VLazy.d.ts +22 -46
- package/lib/components/VMenu/VMenu.d.ts +1048 -146
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VMessages/VMessages.d.ts +22 -46
- package/lib/components/VOverlay/VOverlay.d.ts +22 -49
- package/lib/components/VSelect/VSelect.d.ts +1232 -90
- package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
- package/lib/components/VTooltip/VTooltip.d.ts +58 -109
- package/lib/components/VTooltip/VTooltip.js +2 -2
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/composables/transition.d.ts +10 -20
- package/lib/composables/transition.js +15 -12
- package/lib/composables/transition.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +95 -134
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.3-master.2025-04-
|
2
|
+
* Vuetify v3.8.3-master.2025-04-30
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3251,7 +3251,7 @@ function useRounded(props) {
|
|
3251
3251
|
|
3252
3252
|
const makeTransitionProps = propsFactory({
|
3253
3253
|
transition: {
|
3254
|
-
type:
|
3254
|
+
type: null,
|
3255
3255
|
default: 'fade-transition',
|
3256
3256
|
validator: val => val !== true
|
3257
3257
|
}
|
@@ -3269,16 +3269,19 @@ const MaybeTransition = (props, _ref) => {
|
|
3269
3269
|
const {
|
3270
3270
|
component = group ? TransitionGroup : Transition,
|
3271
3271
|
...customProps
|
3272
|
-
} =
|
3273
|
-
|
3274
|
-
|
3275
|
-
|
3276
|
-
|
3277
|
-
|
3278
|
-
|
3279
|
-
|
3280
|
-
|
3281
|
-
|
3272
|
+
} = isObject(transition) ? transition : {};
|
3273
|
+
let transitionProps;
|
3274
|
+
if (isObject(transition)) {
|
3275
|
+
transitionProps = mergeProps(customProps, JSON.parse(JSON.stringify({
|
3276
|
+
disabled,
|
3277
|
+
group
|
3278
|
+
})), rest);
|
3279
|
+
} else {
|
3280
|
+
transitionProps = mergeProps({
|
3281
|
+
name: disabled || !transition ? '' : transition
|
3282
|
+
}, rest);
|
3283
|
+
}
|
3284
|
+
return h(component, transitionProps, slots);
|
3282
3285
|
};
|
3283
3286
|
|
3284
3287
|
// Utilities
|
@@ -28360,7 +28363,7 @@ const makeVTooltipProps = propsFactory({
|
|
28360
28363
|
origin: 'auto',
|
28361
28364
|
scrim: false,
|
28362
28365
|
scrollStrategy: 'reposition',
|
28363
|
-
transition:
|
28366
|
+
transition: null
|
28364
28367
|
}), ['absolute', 'persistent'])
|
28365
28368
|
}, 'VTooltip');
|
28366
28369
|
const VTooltip = genericComponent()({
|
@@ -28387,7 +28390,7 @@ const VTooltip = genericComponent()({
|
|
28387
28390
|
return props.origin === 'auto' || props.origin === 'overlap' || props.origin.split(' ').length > 1 || props.location.split(' ').length > 1 ? props.origin : props.origin + ' center';
|
28388
28391
|
});
|
28389
28392
|
const transition = toRef(() => {
|
28390
|
-
if (props.transition) return props.transition;
|
28393
|
+
if (props.transition != null) return props.transition;
|
28391
28394
|
return isActive.value ? 'scale-transition' : 'fade-transition';
|
28392
28395
|
});
|
28393
28396
|
const activatorProps = computed(() => mergeProps({
|
@@ -31634,7 +31637,7 @@ function createVuetify$1() {
|
|
31634
31637
|
};
|
31635
31638
|
});
|
31636
31639
|
}
|
31637
|
-
const version$1 = "3.8.3-master.2025-04-
|
31640
|
+
const version$1 = "3.8.3-master.2025-04-30";
|
31638
31641
|
createVuetify$1.version = version$1;
|
31639
31642
|
|
31640
31643
|
// Vue's inject() can only be used in setup
|
@@ -31932,7 +31935,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31932
31935
|
|
31933
31936
|
/* eslint-disable local-rules/sort-imports */
|
31934
31937
|
|
31935
|
-
const version = "3.8.3-master.2025-04-
|
31938
|
+
const version = "3.8.3-master.2025-04-30";
|
31936
31939
|
|
31937
31940
|
/* eslint-disable local-rules/sort-imports */
|
31938
31941
|
|