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.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
|
*/
|
|
@@ -5890,7 +5890,7 @@
|
|
|
5890
5890
|
}, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
|
5891
5891
|
"style": [colorStyles.value, sizeStyles.value, props.style]
|
|
5892
5892
|
}, {
|
|
5893
|
-
default: () => [props.image ? vue.createVNode(VImg, {
|
|
5893
|
+
default: () => [!slots.default ? props.image ? vue.createVNode(VImg, {
|
|
5894
5894
|
"key": "image",
|
|
5895
5895
|
"src": props.image,
|
|
5896
5896
|
"alt": "",
|
|
@@ -5898,7 +5898,20 @@
|
|
|
5898
5898
|
}, null) : props.icon ? vue.createVNode(VIcon, {
|
|
5899
5899
|
"key": "icon",
|
|
5900
5900
|
"icon": props.icon
|
|
5901
|
-
}, null) :
|
|
5901
|
+
}, null) : props.text : vue.createVNode(VDefaultsProvider, {
|
|
5902
|
+
"key": "content-defaults",
|
|
5903
|
+
"defaults": {
|
|
5904
|
+
VAvatar: {
|
|
5905
|
+
cover: true,
|
|
5906
|
+
image: props.image
|
|
5907
|
+
},
|
|
5908
|
+
VIcon: {
|
|
5909
|
+
icon: props.icon
|
|
5910
|
+
}
|
|
5911
|
+
}
|
|
5912
|
+
}, {
|
|
5913
|
+
default: () => [slots.default?.()]
|
|
5914
|
+
}), genOverlays(false, 'v-avatar')]
|
|
5902
5915
|
}));
|
|
5903
5916
|
return {};
|
|
5904
5917
|
}
|
|
@@ -7647,7 +7660,8 @@
|
|
|
7647
7660
|
}
|
|
7648
7661
|
}
|
|
7649
7662
|
}, slots.prepend)]), vue.createVNode("div", {
|
|
7650
|
-
"class": "v-chip__content"
|
|
7663
|
+
"class": "v-chip__content",
|
|
7664
|
+
"data-no-activator": ""
|
|
7651
7665
|
}, [slots.default?.({
|
|
7652
7666
|
isSelected: group?.isSelected.value,
|
|
7653
7667
|
selectedClass: group?.selectedClass.value,
|
|
@@ -10183,6 +10197,7 @@
|
|
|
10183
10197
|
contentClass: null,
|
|
10184
10198
|
contentProps: null,
|
|
10185
10199
|
disabled: Boolean,
|
|
10200
|
+
opacity: [Number, String],
|
|
10186
10201
|
noClickAnimation: Boolean,
|
|
10187
10202
|
modelValue: Boolean,
|
|
10188
10203
|
persistent: Boolean,
|
|
@@ -10369,7 +10384,7 @@
|
|
|
10369
10384
|
ref: activatorRef,
|
|
10370
10385
|
targetRef
|
|
10371
10386
|
}, activatorEvents.value, props.activatorProps)
|
|
10372
|
-
}),
|
|
10387
|
+
}), isMounted.value && hasContent.value && vue.createVNode(vue.Teleport, {
|
|
10373
10388
|
"disabled": !teleportTarget.value,
|
|
10374
10389
|
"to": teleportTarget.value
|
|
10375
10390
|
}, {
|
|
@@ -10380,12 +10395,13 @@
|
|
|
10380
10395
|
'v-overlay--contained': props.contained
|
|
10381
10396
|
}, themeClasses.value, rtlClasses.value, props.class],
|
|
10382
10397
|
"style": [stackStyles.value, {
|
|
10398
|
+
'--v-overlay-opacity': props.opacity,
|
|
10383
10399
|
top: convertToUnit(top.value)
|
|
10384
10400
|
}, props.style],
|
|
10385
10401
|
"ref": root
|
|
10386
10402
|
}, scopeId, attrs), [vue.createVNode(Scrim, vue.mergeProps({
|
|
10387
10403
|
"color": scrimColor,
|
|
10388
|
-
"modelValue":
|
|
10404
|
+
"modelValue": isActive.value && !!props.scrim
|
|
10389
10405
|
}, scrimEvents.value), null), vue.createVNode(MaybeTransition, {
|
|
10390
10406
|
"appear": true,
|
|
10391
10407
|
"persisted": true,
|
|
@@ -14232,7 +14248,7 @@
|
|
|
14232
14248
|
ctx.fillStyle = saturationGradient;
|
|
14233
14249
|
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
14234
14250
|
const valueGradient = ctx.createLinearGradient(0, 0, 0, canvas.height);
|
|
14235
|
-
valueGradient.addColorStop(0, 'hsla(0, 0%,
|
|
14251
|
+
valueGradient.addColorStop(0, 'hsla(0, 0%, 0%, 0)'); // transparent
|
|
14236
14252
|
valueGradient.addColorStop(1, 'hsla(0, 0%, 0%, 1)'); // black
|
|
14237
14253
|
ctx.fillStyle = valueGradient;
|
|
14238
14254
|
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
|
@@ -26208,7 +26224,7 @@
|
|
|
26208
26224
|
goTo
|
|
26209
26225
|
};
|
|
26210
26226
|
}
|
|
26211
|
-
const version$1 = "3.5.
|
|
26227
|
+
const version$1 = "3.5.3";
|
|
26212
26228
|
createVuetify$1.version = version$1;
|
|
26213
26229
|
|
|
26214
26230
|
// Vue's inject() can only be used in setup
|
|
@@ -26222,7 +26238,7 @@
|
|
|
26222
26238
|
|
|
26223
26239
|
/* eslint-disable local-rules/sort-imports */
|
|
26224
26240
|
|
|
26225
|
-
const version = "3.5.
|
|
26241
|
+
const version = "3.5.3";
|
|
26226
26242
|
|
|
26227
26243
|
/* eslint-disable local-rules/sort-imports */
|
|
26228
26244
|
|