vuetify 3.5.2 → 3.5.3
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 +24 -0
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +6 -0
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +1245 -1227
- package/dist/vuetify-labs.d.ts +132 -12
- package/dist/vuetify-labs.esm.js +25 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +25 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1296 -1278
- package/dist/vuetify.d.ts +172 -52
- package/dist/vuetify.esm.js +25 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +25 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +12 -0
- package/lib/components/VAvatar/VAvatar.mjs +16 -2
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VBottomSheet/index.d.mts +6 -0
- package/lib/components/VCheckbox/VCheckbox.css +3 -0
- package/lib/components/VCheckbox/VCheckbox.sass +3 -0
- package/lib/components/VCheckbox/_variables.scss +3 -0
- package/lib/components/VChip/VChip.css +0 -1
- package/lib/components/VChip/VChip.mjs +2 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/VChip.sass +0 -1
- package/lib/components/VColorPicker/VColorPickerCanvas.mjs +1 -1
- package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +12 -0
- package/lib/components/VDialog/index.d.mts +21 -3
- package/lib/components/VList/VListItem.css +19 -6
- package/lib/components/VList/VListItem.sass +16 -3
- package/lib/components/VList/_variables.scss +6 -4
- package/lib/components/VMenu/index.d.mts +21 -3
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -2
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VOverlay/index.d.mts +6 -0
- package/lib/components/VSelect/index.d.mts +12 -0
- package/lib/components/VSnackbar/index.d.mts +21 -3
- package/lib/components/VSwitch/VSwitch.css +3 -0
- package/lib/components/VSwitch/VSwitch.sass +3 -0
- package/lib/components/VSwitch/_variables.scss +1 -0
- package/lib/components/VTooltip/index.d.mts +21 -3
- package/lib/components/index.d.mts +132 -12
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +40 -40
- package/package.json +2 -2
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.3
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5886,7 +5886,7 @@ const VAvatar = genericComponent()({
|
|
|
5886
5886
|
}, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
|
5887
5887
|
"style": [colorStyles.value, sizeStyles.value, props.style]
|
|
5888
5888
|
}, {
|
|
5889
|
-
default: () => [props.image ? createVNode(VImg, {
|
|
5889
|
+
default: () => [!slots.default ? props.image ? createVNode(VImg, {
|
|
5890
5890
|
"key": "image",
|
|
5891
5891
|
"src": props.image,
|
|
5892
5892
|
"alt": "",
|
|
@@ -5894,7 +5894,20 @@ const VAvatar = genericComponent()({
|
|
|
5894
5894
|
}, null) : props.icon ? createVNode(VIcon, {
|
|
5895
5895
|
"key": "icon",
|
|
5896
5896
|
"icon": props.icon
|
|
5897
|
-
}, null) :
|
|
5897
|
+
}, null) : props.text : createVNode(VDefaultsProvider, {
|
|
5898
|
+
"key": "content-defaults",
|
|
5899
|
+
"defaults": {
|
|
5900
|
+
VAvatar: {
|
|
5901
|
+
cover: true,
|
|
5902
|
+
image: props.image
|
|
5903
|
+
},
|
|
5904
|
+
VIcon: {
|
|
5905
|
+
icon: props.icon
|
|
5906
|
+
}
|
|
5907
|
+
}
|
|
5908
|
+
}, {
|
|
5909
|
+
default: () => [slots.default?.()]
|
|
5910
|
+
}), genOverlays(false, 'v-avatar')]
|
|
5898
5911
|
}));
|
|
5899
5912
|
return {};
|
|
5900
5913
|
}
|
|
@@ -7643,7 +7656,8 @@ const VChip = genericComponent()({
|
|
|
7643
7656
|
}
|
|
7644
7657
|
}
|
|
7645
7658
|
}, slots.prepend)]), createVNode("div", {
|
|
7646
|
-
"class": "v-chip__content"
|
|
7659
|
+
"class": "v-chip__content",
|
|
7660
|
+
"data-no-activator": ""
|
|
7647
7661
|
}, [slots.default?.({
|
|
7648
7662
|
isSelected: group?.isSelected.value,
|
|
7649
7663
|
selectedClass: group?.selectedClass.value,
|
|
@@ -10179,6 +10193,7 @@ const makeVOverlayProps = propsFactory({
|
|
|
10179
10193
|
contentClass: null,
|
|
10180
10194
|
contentProps: null,
|
|
10181
10195
|
disabled: Boolean,
|
|
10196
|
+
opacity: [Number, String],
|
|
10182
10197
|
noClickAnimation: Boolean,
|
|
10183
10198
|
modelValue: Boolean,
|
|
10184
10199
|
persistent: Boolean,
|
|
@@ -10365,7 +10380,7 @@ const VOverlay = genericComponent()({
|
|
|
10365
10380
|
ref: activatorRef,
|
|
10366
10381
|
targetRef
|
|
10367
10382
|
}, activatorEvents.value, props.activatorProps)
|
|
10368
|
-
}),
|
|
10383
|
+
}), isMounted.value && hasContent.value && createVNode(Teleport, {
|
|
10369
10384
|
"disabled": !teleportTarget.value,
|
|
10370
10385
|
"to": teleportTarget.value
|
|
10371
10386
|
}, {
|
|
@@ -10376,12 +10391,13 @@ const VOverlay = genericComponent()({
|
|
|
10376
10391
|
'v-overlay--contained': props.contained
|
|
10377
10392
|
}, themeClasses.value, rtlClasses.value, props.class],
|
|
10378
10393
|
"style": [stackStyles.value, {
|
|
10394
|
+
'--v-overlay-opacity': props.opacity,
|
|
10379
10395
|
top: convertToUnit(top.value)
|
|
10380
10396
|
}, props.style],
|
|
10381
10397
|
"ref": root
|
|
10382
10398
|
}, scopeId, attrs), [createVNode(Scrim, mergeProps({
|
|
10383
10399
|
"color": scrimColor,
|
|
10384
|
-
"modelValue":
|
|
10400
|
+
"modelValue": isActive.value && !!props.scrim
|
|
10385
10401
|
}, scrimEvents.value), null), createVNode(MaybeTransition, {
|
|
10386
10402
|
"appear": true,
|
|
10387
10403
|
"persisted": true,
|
|
@@ -14228,7 +14244,7 @@ const VColorPickerCanvas = defineComponent({
|
|
|
14228
14244
|
ctx.fillStyle = saturationGradient;
|
|
14229
14245
|
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
14230
14246
|
const valueGradient = ctx.createLinearGradient(0, 0, 0, canvas.height);
|
|
14231
|
-
valueGradient.addColorStop(0, 'hsla(0, 0%,
|
|
14247
|
+
valueGradient.addColorStop(0, 'hsla(0, 0%, 0%, 0)'); // transparent
|
|
14232
14248
|
valueGradient.addColorStop(1, 'hsla(0, 0%, 0%, 1)'); // black
|
|
14233
14249
|
ctx.fillStyle = valueGradient;
|
|
14234
14250
|
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
@@ -26204,7 +26220,7 @@ function createVuetify$1() {
|
|
|
26204
26220
|
goTo
|
|
26205
26221
|
};
|
|
26206
26222
|
}
|
|
26207
|
-
const version$1 = "3.5.
|
|
26223
|
+
const version$1 = "3.5.3";
|
|
26208
26224
|
createVuetify$1.version = version$1;
|
|
26209
26225
|
|
|
26210
26226
|
// Vue's inject() can only be used in setup
|
|
@@ -26218,7 +26234,7 @@ function inject(key) {
|
|
|
26218
26234
|
|
|
26219
26235
|
/* eslint-disable local-rules/sort-imports */
|
|
26220
26236
|
|
|
26221
|
-
const version = "3.5.
|
|
26237
|
+
const version = "3.5.3";
|
|
26222
26238
|
|
|
26223
26239
|
/* eslint-disable local-rules/sort-imports */
|
|
26224
26240
|
|