vuetify 3.3.7 → 3.3.8
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 +1 -1
- package/dist/json/importMap.json +84 -84
- package/dist/json/web-types.json +4 -4
- package/dist/vuetify-labs.css +134 -133
- package/dist/vuetify-labs.esm.js +67 -65
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +66 -64
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +15 -14
- package/dist/vuetify.d.ts +24 -24
- package/dist/vuetify.esm.js +67 -65
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +66 -64
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +94 -93
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/VCarousel.mjs +58 -57
- package/lib/components/VCarousel/VCarousel.mjs.map +1 -1
- package/lib/components/VField/VField.css +1 -0
- package/lib/components/VField/VField.sass +1 -0
- package/lib/components/VOverlay/VOverlay.mjs +2 -2
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/composables/filter.mjs +3 -2
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -2
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +24 -24
- package/package.json +2 -2
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.8
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2158,7 +2158,7 @@
|
|
|
2158
2158
|
|
|
2159
2159
|
// Composables
|
|
2160
2160
|
function createTheme(options) {
|
|
2161
|
-
const parsedOptions =
|
|
2161
|
+
const parsedOptions = parseThemeOptions(options);
|
|
2162
2162
|
const name = vue.ref(parsedOptions.defaultTheme);
|
|
2163
2163
|
const themes = vue.ref(parsedOptions.themes);
|
|
2164
2164
|
const computedThemes = vue.computed(() => {
|
|
@@ -9612,11 +9612,11 @@
|
|
|
9612
9612
|
props: vue.mergeProps({
|
|
9613
9613
|
ref: activatorRef
|
|
9614
9614
|
}, activatorEvents.value, props.activatorProps)
|
|
9615
|
-
}), isMounted.value && vue.createVNode(vue.Teleport, {
|
|
9615
|
+
}), isMounted.value && hasContent.value && vue.createVNode(vue.Teleport, {
|
|
9616
9616
|
"disabled": !teleportTarget.value,
|
|
9617
9617
|
"to": teleportTarget.value
|
|
9618
9618
|
}, {
|
|
9619
|
-
default: () => [
|
|
9619
|
+
default: () => [vue.createVNode("div", vue.mergeProps({
|
|
9620
9620
|
"class": ['v-overlay', {
|
|
9621
9621
|
'v-overlay--absolute': props.absolute || props.contained,
|
|
9622
9622
|
'v-overlay--active': isActive.value,
|
|
@@ -11101,7 +11101,8 @@
|
|
|
11101
11101
|
const filteredMatches = vue.ref(new Map());
|
|
11102
11102
|
const transformedItems = vue.computed(() => options?.transform ? vue.unref(items).map(options?.transform) : vue.unref(items));
|
|
11103
11103
|
vue.watchEffect(() => {
|
|
11104
|
-
const
|
|
11104
|
+
const _query = typeof query === 'function' ? query() : vue.unref(query);
|
|
11105
|
+
const strQuery = typeof _query !== 'string' && typeof _query !== 'number' ? '' : String(_query);
|
|
11105
11106
|
const results = filterItems(transformedItems.value, strQuery, {
|
|
11106
11107
|
customKeyFilter: props.customKeyFilter,
|
|
11107
11108
|
default: props.customFilter,
|
|
@@ -12674,64 +12675,65 @@
|
|
|
12674
12675
|
window.clearTimeout(slideTimeout);
|
|
12675
12676
|
window.requestAnimationFrame(startTimeout);
|
|
12676
12677
|
}
|
|
12677
|
-
useRender(() =>
|
|
12678
|
-
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
|
|
12683
|
-
|
|
12684
|
-
|
|
12685
|
-
|
|
12686
|
-
|
|
12687
|
-
|
|
12688
|
-
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12692
|
-
|
|
12693
|
-
|
|
12694
|
-
|
|
12695
|
-
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
|
|
12700
|
-
|
|
12701
|
-
|
|
12702
|
-
}
|
|
12703
|
-
}, [group.items.value.length > 0 && vue.createVNode(VDefaultsProvider, {
|
|
12704
|
-
"defaults": {
|
|
12705
|
-
VBtn: {
|
|
12706
|
-
color: props.color,
|
|
12707
|
-
icon: props.delimiterIcon,
|
|
12708
|
-
size: 'x-small',
|
|
12709
|
-
variant: 'text'
|
|
12678
|
+
useRender(() => {
|
|
12679
|
+
const [windowProps] = VWindow.filterProps(props);
|
|
12680
|
+
return vue.createVNode(VWindow, vue.mergeProps({
|
|
12681
|
+
"ref": windowRef
|
|
12682
|
+
}, windowProps, {
|
|
12683
|
+
"modelValue": model.value,
|
|
12684
|
+
"onUpdate:modelValue": $event => model.value = $event,
|
|
12685
|
+
"class": ['v-carousel', {
|
|
12686
|
+
'v-carousel--hide-delimiter-background': props.hideDelimiterBackground,
|
|
12687
|
+
'v-carousel--vertical-delimiters': props.verticalDelimiters
|
|
12688
|
+
}, props.class],
|
|
12689
|
+
"style": [{
|
|
12690
|
+
height: convertToUnit(props.height)
|
|
12691
|
+
}, props.style]
|
|
12692
|
+
}), {
|
|
12693
|
+
default: slots.default,
|
|
12694
|
+
additional: _ref2 => {
|
|
12695
|
+
let {
|
|
12696
|
+
group
|
|
12697
|
+
} = _ref2;
|
|
12698
|
+
return vue.createVNode(vue.Fragment, null, [!props.hideDelimiters && vue.createVNode("div", {
|
|
12699
|
+
"class": "v-carousel__controls",
|
|
12700
|
+
"style": {
|
|
12701
|
+
left: props.verticalDelimiters === 'left' && props.verticalDelimiters ? 0 : 'auto',
|
|
12702
|
+
right: props.verticalDelimiters === 'right' ? 0 : 'auto'
|
|
12710
12703
|
}
|
|
12711
|
-
},
|
|
12712
|
-
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
12717
|
-
|
|
12718
|
-
|
|
12719
|
-
|
|
12720
|
-
|
|
12721
|
-
|
|
12722
|
-
|
|
12723
|
-
|
|
12724
|
-
|
|
12725
|
-
|
|
12726
|
-
|
|
12727
|
-
|
|
12728
|
-
|
|
12729
|
-
|
|
12730
|
-
|
|
12731
|
-
|
|
12732
|
-
|
|
12733
|
-
|
|
12734
|
-
|
|
12704
|
+
}, [group.items.value.length > 0 && vue.createVNode(VDefaultsProvider, {
|
|
12705
|
+
"defaults": {
|
|
12706
|
+
VBtn: {
|
|
12707
|
+
color: props.color,
|
|
12708
|
+
icon: props.delimiterIcon,
|
|
12709
|
+
size: 'x-small',
|
|
12710
|
+
variant: 'text'
|
|
12711
|
+
}
|
|
12712
|
+
},
|
|
12713
|
+
"scoped": true
|
|
12714
|
+
}, {
|
|
12715
|
+
default: () => [group.items.value.map((item, index) => {
|
|
12716
|
+
const props = {
|
|
12717
|
+
id: `carousel-item-${item.id}`,
|
|
12718
|
+
'aria-label': t('$vuetify.carousel.ariaLabel.delimiter', index + 1, group.items.value.length),
|
|
12719
|
+
class: [group.isSelected(item.id) && 'v-btn--active'],
|
|
12720
|
+
onClick: () => group.select(item.id, true)
|
|
12721
|
+
};
|
|
12722
|
+
return slots.item ? slots.item({
|
|
12723
|
+
props,
|
|
12724
|
+
item
|
|
12725
|
+
}) : vue.createVNode(VBtn, vue.mergeProps(item, props), null);
|
|
12726
|
+
})]
|
|
12727
|
+
})]), props.progress && vue.createVNode(VProgressLinear, {
|
|
12728
|
+
"class": "v-carousel__progress",
|
|
12729
|
+
"color": typeof props.progress === 'string' ? props.progress : undefined,
|
|
12730
|
+
"modelValue": (group.getItemIndex(model.value) + 1) / group.items.value.length * 100
|
|
12731
|
+
}, null)]);
|
|
12732
|
+
},
|
|
12733
|
+
prev: slots.prev,
|
|
12734
|
+
next: slots.next
|
|
12735
|
+
});
|
|
12736
|
+
});
|
|
12735
12737
|
return {};
|
|
12736
12738
|
}
|
|
12737
12739
|
});
|
|
@@ -20160,7 +20162,7 @@
|
|
|
20160
20162
|
date
|
|
20161
20163
|
};
|
|
20162
20164
|
}
|
|
20163
|
-
const version$1 = "3.3.
|
|
20165
|
+
const version$1 = "3.3.8";
|
|
20164
20166
|
createVuetify$1.version = version$1;
|
|
20165
20167
|
|
|
20166
20168
|
// Vue's inject() can only be used in setup
|
|
@@ -20185,7 +20187,7 @@
|
|
|
20185
20187
|
...options
|
|
20186
20188
|
});
|
|
20187
20189
|
};
|
|
20188
|
-
const version = "3.3.
|
|
20190
|
+
const version = "3.3.8";
|
|
20189
20191
|
createVuetify.version = version;
|
|
20190
20192
|
|
|
20191
20193
|
exports.components = components;
|