@vuetify/nightly 3.8.8-dev.2025-06-04 → 3.8.8-dev.2025-06-08
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 +4 -3
- package/dist/json/attributes.json +3248 -3224
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +170 -170
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +6064 -6010
- package/dist/vuetify-labs.cjs +9 -5
- package/dist/vuetify-labs.css +4514 -4514
- package/dist/vuetify-labs.d.ts +93 -63
- package/dist/vuetify-labs.esm.js +9 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +9 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +9 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4246 -4246
- package/dist/vuetify.d.ts +93 -63
- package/dist/vuetify.esm.js +9 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- 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/entry-bundler.js +1 -1
- package/lib/framework.d.ts +63 -63
- package/lib/framework.js +1 -1
- package/package.json +1 -1
@@ -4,6 +4,12 @@ export type VBadgeSlots = {
|
|
4
4
|
badge: never;
|
5
5
|
};
|
6
6
|
export declare const makeVBadgeProps: <Defaults extends {
|
7
|
+
height?: unknown;
|
8
|
+
maxHeight?: unknown;
|
9
|
+
maxWidth?: unknown;
|
10
|
+
minHeight?: unknown;
|
11
|
+
minWidth?: unknown;
|
12
|
+
width?: unknown;
|
7
13
|
transition?: unknown;
|
8
14
|
theme?: unknown;
|
9
15
|
tag?: unknown;
|
@@ -26,6 +32,30 @@ export declare const makeVBadgeProps: <Defaults extends {
|
|
26
32
|
offsetY?: unknown;
|
27
33
|
textColor?: unknown;
|
28
34
|
} = {}>(defaults?: Defaults | undefined) => {
|
35
|
+
height: unknown extends Defaults["height"] ? (StringConstructor | NumberConstructor)[] : {
|
36
|
+
type: import("vue").PropType<unknown extends Defaults["height"] ? string | number : string | number | Defaults["height"]>;
|
37
|
+
default: unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"];
|
38
|
+
};
|
39
|
+
maxHeight: unknown extends Defaults["maxHeight"] ? (StringConstructor | NumberConstructor)[] : {
|
40
|
+
type: import("vue").PropType<unknown extends Defaults["maxHeight"] ? string | number : string | number | Defaults["maxHeight"]>;
|
41
|
+
default: unknown extends Defaults["maxHeight"] ? string | number : NonNullable<string | number> | Defaults["maxHeight"];
|
42
|
+
};
|
43
|
+
maxWidth: unknown extends Defaults["maxWidth"] ? (StringConstructor | NumberConstructor)[] : {
|
44
|
+
type: import("vue").PropType<unknown extends Defaults["maxWidth"] ? string | number : string | number | Defaults["maxWidth"]>;
|
45
|
+
default: unknown extends Defaults["maxWidth"] ? string | number : NonNullable<string | number> | Defaults["maxWidth"];
|
46
|
+
};
|
47
|
+
minHeight: unknown extends Defaults["minHeight"] ? (StringConstructor | NumberConstructor)[] : {
|
48
|
+
type: import("vue").PropType<unknown extends Defaults["minHeight"] ? string | number : string | number | Defaults["minHeight"]>;
|
49
|
+
default: unknown extends Defaults["minHeight"] ? string | number : NonNullable<string | number> | Defaults["minHeight"];
|
50
|
+
};
|
51
|
+
minWidth: unknown extends Defaults["minWidth"] ? (StringConstructor | NumberConstructor)[] : {
|
52
|
+
type: import("vue").PropType<unknown extends Defaults["minWidth"] ? string | number : string | number | Defaults["minWidth"]>;
|
53
|
+
default: unknown extends Defaults["minWidth"] ? string | number : NonNullable<string | number> | Defaults["minWidth"];
|
54
|
+
};
|
55
|
+
width: unknown extends Defaults["width"] ? (StringConstructor | NumberConstructor)[] : {
|
56
|
+
type: import("vue").PropType<unknown extends Defaults["width"] ? string | number : string | number | Defaults["width"]>;
|
57
|
+
default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
|
58
|
+
};
|
29
59
|
transition: unknown extends Defaults["transition"] ? {
|
30
60
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
31
61
|
component?: import("vue").Component;
|
@@ -186,8 +216,14 @@ export declare const VBadge: {
|
|
186
216
|
bordered: boolean;
|
187
217
|
} & {
|
188
218
|
max?: string | number | undefined;
|
219
|
+
height?: string | number | undefined;
|
220
|
+
width?: string | number | undefined;
|
189
221
|
color?: string | undefined;
|
190
222
|
content?: string | number | undefined;
|
223
|
+
maxHeight?: string | number | undefined;
|
224
|
+
maxWidth?: string | number | undefined;
|
225
|
+
minHeight?: string | number | undefined;
|
226
|
+
minWidth?: string | number | undefined;
|
191
227
|
class?: any;
|
192
228
|
theme?: string | undefined;
|
193
229
|
icon?: IconValue | undefined;
|
@@ -248,8 +284,14 @@ export declare const VBadge: {
|
|
248
284
|
bordered: boolean;
|
249
285
|
} & {
|
250
286
|
max?: string | number | undefined;
|
287
|
+
height?: string | number | undefined;
|
288
|
+
width?: string | number | undefined;
|
251
289
|
color?: string | undefined;
|
252
290
|
content?: string | number | undefined;
|
291
|
+
maxHeight?: string | number | undefined;
|
292
|
+
maxWidth?: string | number | undefined;
|
293
|
+
minHeight?: string | number | undefined;
|
294
|
+
minWidth?: string | number | undefined;
|
253
295
|
class?: any;
|
254
296
|
theme?: string | undefined;
|
255
297
|
icon?: IconValue | undefined;
|
@@ -304,8 +346,14 @@ export declare const VBadge: {
|
|
304
346
|
bordered: boolean;
|
305
347
|
} & {
|
306
348
|
max?: string | number | undefined;
|
349
|
+
height?: string | number | undefined;
|
350
|
+
width?: string | number | undefined;
|
307
351
|
color?: string | undefined;
|
308
352
|
content?: string | number | undefined;
|
353
|
+
maxHeight?: string | number | undefined;
|
354
|
+
maxWidth?: string | number | undefined;
|
355
|
+
minHeight?: string | number | undefined;
|
356
|
+
minWidth?: string | number | undefined;
|
309
357
|
class?: any;
|
310
358
|
theme?: string | undefined;
|
311
359
|
icon?: IconValue | undefined;
|
@@ -344,6 +392,12 @@ export declare const VBadge: {
|
|
344
392
|
default: () => import("vue").VNode[];
|
345
393
|
badge: () => import("vue").VNode[];
|
346
394
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
395
|
+
height: (StringConstructor | NumberConstructor)[];
|
396
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
397
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
398
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
399
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
400
|
+
width: (StringConstructor | NumberConstructor)[];
|
347
401
|
transition: {
|
348
402
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
349
403
|
component?: import("vue").Component;
|
@@ -391,6 +445,12 @@ export declare const VBadge: {
|
|
391
445
|
offsetY: (StringConstructor | NumberConstructor)[];
|
392
446
|
textColor: StringConstructor;
|
393
447
|
}, import("vue").ExtractPropTypes<{
|
448
|
+
height: (StringConstructor | NumberConstructor)[];
|
449
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
450
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
451
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
452
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
453
|
+
width: (StringConstructor | NumberConstructor)[];
|
394
454
|
transition: {
|
395
455
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
396
456
|
component?: import("vue").Component;
|
@@ -6,6 +6,7 @@ import "./VBadge.css";
|
|
6
6
|
import { VIcon } from "../VIcon/index.js"; // Composables
|
7
7
|
import { useBackgroundColor, useTextColor } from "../../composables/color.js";
|
8
8
|
import { makeComponentProps } from "../../composables/component.js";
|
9
|
+
import { makeDimensionProps, useDimension } from "../../composables/dimensions.js";
|
9
10
|
import { IconValue } from "../../composables/icons.js";
|
10
11
|
import { useLocale } from "../../composables/locale.js";
|
11
12
|
import { makeLocationProps, useLocation } from "../../composables/location.js";
|
@@ -43,7 +44,8 @@ export const makeVBadgeProps = propsFactory({
|
|
43
44
|
...makeThemeProps(),
|
44
45
|
...makeTransitionProps({
|
45
46
|
transition: 'scale-rotate-transition'
|
46
|
-
})
|
47
|
+
}),
|
48
|
+
...makeDimensionProps()
|
47
49
|
}, 'VBadge');
|
48
50
|
export const VBadge = genericComponent()({
|
49
51
|
name: 'VBadge',
|
@@ -73,6 +75,9 @@ export const VBadge = genericComponent()({
|
|
73
75
|
const base = props.floating ? props.dot ? 2 : 4 : props.dot ? 8 : 12;
|
74
76
|
return base + (['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0) : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0) : 0);
|
75
77
|
});
|
78
|
+
const {
|
79
|
+
dimensionStyles
|
80
|
+
} = useDimension(props);
|
76
81
|
useRender(() => {
|
77
82
|
const value = Number(props.content);
|
78
83
|
const content = !props.max || isNaN(value) ? props.content : value <= Number(props.max) ? value : `${props.max}+`;
|
@@ -94,7 +99,7 @@ export const VBadge = genericComponent()({
|
|
94
99
|
}, {
|
95
100
|
default: () => [_withDirectives(_createElementVNode("span", _mergeProps({
|
96
101
|
"class": ['v-badge__badge', themeClasses.value, backgroundColorClasses.value, roundedClasses.value, textColorClasses.value],
|
97
|
-
"style": [backgroundColorStyles.value, textColorStyles.value, props.inline ? {} : locationStyles.value],
|
102
|
+
"style": [backgroundColorStyles.value, textColorStyles.value, dimensionStyles.value, props.inline ? {} : locationStyles.value],
|
98
103
|
"aria-atomic": "true",
|
99
104
|
"aria-label": t(props.label, value),
|
100
105
|
"aria-live": "polite",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VBadge.js","names":["VIcon","useBackgroundColor","useTextColor","makeComponentProps","IconValue","useLocale","makeLocationProps","useLocation","makeRoundedProps","useRounded","makeTagProps","makeThemeProps","useTheme","makeTransitionProps","MaybeTransition","genericComponent","pickWithRest","propsFactory","useRender","makeVBadgeProps","bordered","Boolean","color","String","content","Number","dot","floating","icon","inline","label","type","default","max","modelValue","offsetX","offsetY","textColor","location","transition","VBadge","name","inheritAttrs","props","setup","ctx","backgroundColorClasses","backgroundColorStyles","roundedClasses","t","textColorClasses","textColorStyles","themeClasses","locationStyles","side","base","includes","value","isNaN","badgeAttrs","attrs","_createVNode","tag","_mergeProps","class","style","_createElementVNode","slots","_withDirectives","undefined","badge","_vShow"],"sources":["../../../src/components/VBadge/VBadge.tsx"],"sourcesContent":["// Styles\nimport './VBadge.sass'\n\n// Components\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useBackgroundColor, useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { IconValue } from '@/composables/icons'\nimport { useLocale } from '@/composables/locale'\nimport { makeLocationProps, useLocation } from '@/composables/location'\nimport { makeRoundedProps, useRounded } from '@/composables/rounded'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, useTheme } from '@/composables/theme'\nimport { makeTransitionProps, MaybeTransition } from '@/composables/transition'\n\n// Utilities\nimport { genericComponent, pickWithRest, propsFactory, useRender } from '@/util'\n\nexport type VBadgeSlots = {\n default: never\n badge: never\n}\n\nexport const makeVBadgeProps = propsFactory({\n bordered: Boolean,\n color: String,\n content: [Number, String],\n dot: Boolean,\n floating: Boolean,\n icon: IconValue,\n inline: Boolean,\n label: {\n type: String,\n default: '$vuetify.badge',\n },\n max: [Number, String],\n modelValue: {\n type: Boolean,\n default: true,\n },\n offsetX: [Number, String],\n offsetY: [Number, String],\n textColor: String,\n\n ...makeComponentProps(),\n ...makeLocationProps({ location: 'top end' } as const),\n ...makeRoundedProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeTransitionProps({ transition: 'scale-rotate-transition' }),\n}, 'VBadge')\n\nexport const VBadge = genericComponent<VBadgeSlots>()({\n name: 'VBadge',\n\n inheritAttrs: false,\n\n props: makeVBadgeProps(),\n\n setup (props, ctx) {\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(() => props.color)\n const { roundedClasses } = useRounded(props)\n const { t } = useLocale()\n const { textColorClasses, textColorStyles } = useTextColor(() => props.textColor)\n const { themeClasses } = useTheme()\n\n const { locationStyles } = useLocation(props, true, side => {\n const base = props.floating\n ? (props.dot ? 2 : 4)\n : (props.dot ? 8 : 12)\n\n return base + (\n ['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0)\n : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0)\n : 0\n )\n })\n\n useRender(() => {\n const value = Number(props.content)\n const content = (!props.max || isNaN(value)) ? props.content\n : value <= Number(props.max) ? value\n : `${props.max}+`\n\n const [badgeAttrs, attrs] = pickWithRest(ctx.attrs as Record<string, any>, [\n 'aria-atomic',\n 'aria-label',\n 'aria-live',\n 'role',\n 'title',\n ])\n\n return (\n <props.tag\n class={[\n 'v-badge',\n {\n 'v-badge--bordered': props.bordered,\n 'v-badge--dot': props.dot,\n 'v-badge--floating': props.floating,\n 'v-badge--inline': props.inline,\n },\n props.class,\n ]}\n { ...attrs }\n style={ props.style }\n >\n <div class=\"v-badge__wrapper\">\n { ctx.slots.default?.() }\n\n <MaybeTransition transition={ props.transition }>\n <span\n v-show={ props.modelValue }\n class={[\n 'v-badge__badge',\n themeClasses.value,\n backgroundColorClasses.value,\n roundedClasses.value,\n textColorClasses.value,\n ]}\n style={[\n backgroundColorStyles.value,\n textColorStyles.value,\n props.inline ? {} : locationStyles.value,\n ]}\n aria-atomic=\"true\"\n aria-label={ t(props.label, value) }\n aria-live=\"polite\"\n role=\"status\"\n { ...badgeAttrs }\n >\n {\n props.dot ? undefined\n : ctx.slots.badge ? ctx.slots.badge?.()\n : props.icon ? <VIcon icon={ props.icon } />\n : content\n }\n </span>\n </MaybeTransition>\n </div>\n </props.tag>\n )\n })\n\n return {}\n },\n})\n\nexport type VBadge = InstanceType<typeof VBadge>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,KAAK,6BAEd;AAAA,SACSC,kBAAkB,EAAEC,YAAY;AAAA,SAChCC,kBAAkB;AAAA,SAClBC,SAAS;AAAA,SACTC,SAAS;AAAA,SACTC,iBAAiB,EAAEC,WAAW;AAAA,SAC9BC,gBAAgB,EAAEC,UAAU;AAAA,SAC5BC,YAAY;AAAA,SACZC,cAAc,EAAEC,QAAQ;AAAA,SACxBC,mBAAmB,EAAEC,eAAe,2CAE7C;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,YAAY,EAAEC,SAAS;AAOhE,OAAO,MAAMC,eAAe,GAAGF,YAAY,CAAC;EAC1CG,QAAQ,EAAEC,OAAO;EACjBC,KAAK,EAAEC,MAAM;EACbC,OAAO,EAAE,CAACC,MAAM,EAAEF,MAAM,CAAC;EACzBG,GAAG,EAAEL,OAAO;EACZM,QAAQ,EAAEN,OAAO;EACjBO,IAAI,EAAExB,SAAS;EACfyB,MAAM,EAAER,OAAO;EACfS,KAAK,EAAE;IACLC,IAAI,EAAER,MAAM;IACZS,OAAO,EAAE;EACX,CAAC;EACDC,GAAG,EAAE,CAACR,MAAM,EAAEF,MAAM,CAAC;EACrBW,UAAU,EAAE;IACVH,IAAI,EAAEV,OAAO;IACbW,OAAO,EAAE;EACX,CAAC;EACDG,OAAO,EAAE,CAACV,MAAM,EAAEF,MAAM,CAAC;EACzBa,OAAO,EAAE,CAACX,MAAM,EAAEF,MAAM,CAAC;EACzBc,SAAS,EAAEd,MAAM;EAEjB,
|
1
|
+
{"version":3,"file":"VBadge.js","names":["VIcon","useBackgroundColor","useTextColor","makeComponentProps","makeDimensionProps","useDimension","IconValue","useLocale","makeLocationProps","useLocation","makeRoundedProps","useRounded","makeTagProps","makeThemeProps","useTheme","makeTransitionProps","MaybeTransition","genericComponent","pickWithRest","propsFactory","useRender","makeVBadgeProps","bordered","Boolean","color","String","content","Number","dot","floating","icon","inline","label","type","default","max","modelValue","offsetX","offsetY","textColor","location","transition","VBadge","name","inheritAttrs","props","setup","ctx","backgroundColorClasses","backgroundColorStyles","roundedClasses","t","textColorClasses","textColorStyles","themeClasses","locationStyles","side","base","includes","dimensionStyles","value","isNaN","badgeAttrs","attrs","_createVNode","tag","_mergeProps","class","style","_createElementVNode","slots","_withDirectives","undefined","badge","_vShow"],"sources":["../../../src/components/VBadge/VBadge.tsx"],"sourcesContent":["// Styles\nimport './VBadge.sass'\n\n// Components\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useBackgroundColor, useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDimensionProps, useDimension } from '@/composables/dimensions'\nimport { IconValue } from '@/composables/icons'\nimport { useLocale } from '@/composables/locale'\nimport { makeLocationProps, useLocation } from '@/composables/location'\nimport { makeRoundedProps, useRounded } from '@/composables/rounded'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, useTheme } from '@/composables/theme'\nimport { makeTransitionProps, MaybeTransition } from '@/composables/transition'\n\n// Utilities\nimport { genericComponent, pickWithRest, propsFactory, useRender } from '@/util'\n\nexport type VBadgeSlots = {\n default: never\n badge: never\n}\n\nexport const makeVBadgeProps = propsFactory({\n bordered: Boolean,\n color: String,\n content: [Number, String],\n dot: Boolean,\n floating: Boolean,\n icon: IconValue,\n inline: Boolean,\n label: {\n type: String,\n default: '$vuetify.badge',\n },\n max: [Number, String],\n modelValue: {\n type: Boolean,\n default: true,\n },\n offsetX: [Number, String],\n offsetY: [Number, String],\n textColor: String,\n\n ...makeComponentProps(),\n ...makeLocationProps({ location: 'top end' } as const),\n ...makeRoundedProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeTransitionProps({ transition: 'scale-rotate-transition' }),\n ...makeDimensionProps(),\n}, 'VBadge')\n\nexport const VBadge = genericComponent<VBadgeSlots>()({\n name: 'VBadge',\n\n inheritAttrs: false,\n\n props: makeVBadgeProps(),\n\n setup (props, ctx) {\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(() => props.color)\n const { roundedClasses } = useRounded(props)\n const { t } = useLocale()\n const { textColorClasses, textColorStyles } = useTextColor(() => props.textColor)\n const { themeClasses } = useTheme()\n\n const { locationStyles } = useLocation(props, true, side => {\n const base = props.floating\n ? (props.dot ? 2 : 4)\n : (props.dot ? 8 : 12)\n\n return base + (\n ['top', 'bottom'].includes(side) ? Number(props.offsetY ?? 0)\n : ['left', 'right'].includes(side) ? Number(props.offsetX ?? 0)\n : 0\n )\n })\n\n const { dimensionStyles } = useDimension(props)\n\n useRender(() => {\n const value = Number(props.content)\n const content = (!props.max || isNaN(value)) ? props.content\n : value <= Number(props.max) ? value\n : `${props.max}+`\n\n const [badgeAttrs, attrs] = pickWithRest(ctx.attrs as Record<string, any>, [\n 'aria-atomic',\n 'aria-label',\n 'aria-live',\n 'role',\n 'title',\n ])\n\n return (\n <props.tag\n class={[\n 'v-badge',\n {\n 'v-badge--bordered': props.bordered,\n 'v-badge--dot': props.dot,\n 'v-badge--floating': props.floating,\n 'v-badge--inline': props.inline,\n },\n props.class,\n ]}\n { ...attrs }\n style={ props.style }\n >\n <div class=\"v-badge__wrapper\">\n { ctx.slots.default?.() }\n\n <MaybeTransition transition={ props.transition }>\n <span\n v-show={ props.modelValue }\n class={[\n 'v-badge__badge',\n themeClasses.value,\n backgroundColorClasses.value,\n roundedClasses.value,\n textColorClasses.value,\n ]}\n style={[\n backgroundColorStyles.value,\n textColorStyles.value,\n dimensionStyles.value,\n props.inline ? {} : locationStyles.value,\n ]}\n aria-atomic=\"true\"\n aria-label={ t(props.label, value) }\n aria-live=\"polite\"\n role=\"status\"\n { ...badgeAttrs }\n >\n {\n props.dot ? undefined\n : ctx.slots.badge ? ctx.slots.badge?.()\n : props.icon ? <VIcon icon={ props.icon } />\n : content\n }\n </span>\n </MaybeTransition>\n </div>\n </props.tag>\n )\n })\n\n return {}\n },\n})\n\nexport type VBadge = InstanceType<typeof VBadge>\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.js
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.8.8-dev.2025-06-
|
19
|
+
export const version = "3.8.8-dev.2025-06-08";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2549,49 +2549,39 @@ declare module 'vue' {
|
|
2549
2549
|
}
|
2550
2550
|
export interface GlobalComponents {
|
2551
2551
|
VApp: typeof import('vuetify/components')['VApp']
|
2552
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2553
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2552
2554
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2553
2555
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2554
2556
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2555
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2556
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2557
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2558
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2559
2557
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2560
|
-
|
2561
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2562
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2558
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2563
2559
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2564
2560
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2565
2561
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2562
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
2563
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2564
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2565
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2566
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2567
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2568
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2569
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2570
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2571
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2566
2572
|
VCard: typeof import('vuetify/components')['VCard']
|
2567
2573
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2568
2574
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2569
2575
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2570
2576
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2571
2577
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2572
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2573
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2574
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2575
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2576
2578
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2577
2579
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2578
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2579
2580
|
VChip: typeof import('vuetify/components')['VChip']
|
2581
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2580
2582
|
VCode: typeof import('vuetify/components')['VCode']
|
2581
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2582
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2583
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2584
2583
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2585
2584
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2586
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2587
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2588
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2589
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2590
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2591
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2592
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2593
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2594
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2595
2585
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2596
2586
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2597
2587
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2599,28 +2589,36 @@ declare module 'vue' {
|
|
2599
2589
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2600
2590
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2601
2591
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2592
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2593
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2594
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2595
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2596
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2597
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2598
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2599
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2600
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2601
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2602
2602
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2603
2603
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2604
2604
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2605
2605
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2606
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2606
2607
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2607
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2608
2608
|
VField: typeof import('vuetify/components')['VField']
|
2609
2609
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2610
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2610
2611
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2611
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2612
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2613
2612
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2614
2613
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2615
2614
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2616
2615
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2617
2616
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2618
|
-
|
2619
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2620
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2617
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2621
2618
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2622
2619
|
VItem: typeof import('vuetify/components')['VItem']
|
2623
|
-
|
2620
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2621
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2624
2622
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2625
2623
|
VList: typeof import('vuetify/components')['VList']
|
2626
2624
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -2631,73 +2629,75 @@ declare module 'vue' {
|
|
2631
2629
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2632
2630
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2633
2631
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2634
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2635
2632
|
VMain: typeof import('vuetify/components')['VMain']
|
2636
|
-
|
2633
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2634
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2637
2635
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2636
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2638
2637
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2639
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2640
2638
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2641
|
-
|
2642
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2639
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2643
2640
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2644
|
-
|
2641
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2642
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2643
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2645
2644
|
VRating: typeof import('vuetify/components')['VRating']
|
2645
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2646
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2647
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2648
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2646
2649
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2647
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2648
2650
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2649
2651
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2650
2652
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2651
|
-
|
2652
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2653
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2653
2654
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2654
2655
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2655
2656
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2656
2657
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2657
2658
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2658
2659
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2660
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2659
2661
|
VTab: typeof import('vuetify/components')['VTab']
|
2660
2662
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2661
2663
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2662
2664
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2663
|
-
|
2664
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2665
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2665
2666
|
VTable: typeof import('vuetify/components')['VTable']
|
2667
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2668
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2669
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2670
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2671
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2666
2672
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2667
2673
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2668
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2669
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
2670
2674
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2671
2675
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2672
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2673
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2674
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2675
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2676
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2677
2676
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2677
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2678
2678
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2679
|
-
|
2679
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2680
2680
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2681
2681
|
VCol: typeof import('vuetify/components')['VCol']
|
2682
2682
|
VRow: typeof import('vuetify/components')['VRow']
|
2683
2683
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2684
|
-
|
2684
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2685
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2685
2686
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2686
2687
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2687
2688
|
VLazy: typeof import('vuetify/components')['VLazy']
|
2688
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2689
2689
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2690
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2690
2691
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2691
2692
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2692
2693
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2693
2694
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2694
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2695
2695
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2696
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2696
2697
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2697
2698
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2698
2699
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2699
2700
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2700
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2701
2701
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2702
2702
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2703
2703
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2714,29 +2714,29 @@ declare module 'vue' {
|
|
2714
2714
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2715
2715
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2716
2716
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2717
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2717
2718
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2718
2719
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2719
2720
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2720
2721
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2721
2722
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2722
2723
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2724
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2725
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2726
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2727
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2728
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2723
2729
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2724
2730
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2731
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2732
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2733
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2725
2734
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2726
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2727
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2728
2735
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2729
2736
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2730
2737
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2731
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2732
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2733
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2734
2738
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2735
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2736
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2737
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2738
2739
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2739
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2740
2740
|
}
|
2741
2741
|
export interface GlobalDirectives {
|
2742
2742
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/lib/framework.js
CHANGED