@vuetify/nightly 3.8.0-beta.0-dev.2025-03-21 → 3.8.0-beta.0-dev.2025-03-22
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 +8 -3
- package/dist/json/attributes.json +3154 -3150
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +190 -190
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5352 -5343
- package/dist/vuetify-labs.cjs +7 -4
- package/dist/vuetify-labs.css +3351 -3350
- package/dist/vuetify-labs.d.ts +64 -59
- package/dist/vuetify-labs.esm.js +7 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +7 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3090 -3089
- package/dist/vuetify.d.ts +64 -59
- package/dist/vuetify.esm.js +7 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VIcon/VIcon.css +1 -0
- package/lib/components/VIcon/VIcon.d.ts +10 -0
- package/lib/components/VIcon/VIcon.js +4 -1
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/components/VIcon/VIcon.sass +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/package.json +1 -1
@@ -10,6 +10,7 @@ export declare const makeVIconProps: <Defaults extends {
|
|
10
10
|
start?: unknown;
|
11
11
|
end?: unknown;
|
12
12
|
icon?: unknown;
|
13
|
+
opacity?: unknown;
|
13
14
|
} = {}>(defaults?: Defaults | undefined) => {
|
14
15
|
theme: unknown extends Defaults["theme"] ? StringConstructor : {
|
15
16
|
type: import("vue").PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
|
@@ -75,6 +76,10 @@ export declare const makeVIconProps: <Defaults extends {
|
|
75
76
|
type: import("vue").PropType<unknown extends Defaults["icon"] ? IconValue : IconValue | Defaults["icon"]>;
|
76
77
|
default: unknown extends Defaults["icon"] ? IconValue : NonNullable<IconValue> | Defaults["icon"];
|
77
78
|
};
|
79
|
+
opacity: unknown extends Defaults["opacity"] ? (StringConstructor | NumberConstructor)[] : {
|
80
|
+
type: import("vue").PropType<unknown extends Defaults["opacity"] ? string | number : string | number | Defaults["opacity"]>;
|
81
|
+
default: unknown extends Defaults["opacity"] ? string | number : NonNullable<string | number> | Defaults["opacity"];
|
82
|
+
};
|
78
83
|
};
|
79
84
|
export declare const VIcon: {
|
80
85
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{
|
@@ -86,6 +91,7 @@ export declare const VIcon: {
|
|
86
91
|
tag: string | import("../../util/index.js").JSXComponent;
|
87
92
|
} & {
|
88
93
|
color?: string | undefined;
|
94
|
+
opacity?: string | number | undefined;
|
89
95
|
class?: any;
|
90
96
|
theme?: string | undefined;
|
91
97
|
icon?: IconValue | undefined;
|
@@ -123,6 +129,7 @@ export declare const VIcon: {
|
|
123
129
|
tag: string | import("../../util/index.js").JSXComponent;
|
124
130
|
} & {
|
125
131
|
color?: string | undefined;
|
132
|
+
opacity?: string | number | undefined;
|
126
133
|
class?: any;
|
127
134
|
theme?: string | undefined;
|
128
135
|
icon?: IconValue | undefined;
|
@@ -155,6 +162,7 @@ export declare const VIcon: {
|
|
155
162
|
tag: string | import("../../util/index.js").JSXComponent;
|
156
163
|
} & {
|
157
164
|
color?: string | undefined;
|
165
|
+
opacity?: string | number | undefined;
|
158
166
|
class?: any;
|
159
167
|
theme?: string | undefined;
|
160
168
|
icon?: IconValue | undefined;
|
@@ -199,6 +207,7 @@ export declare const VIcon: {
|
|
199
207
|
start: BooleanConstructor;
|
200
208
|
end: BooleanConstructor;
|
201
209
|
icon: import("vue").PropType<IconValue>;
|
210
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
202
211
|
}, import("vue").ExtractPropTypes<{
|
203
212
|
theme: StringConstructor;
|
204
213
|
tag: Omit<{
|
@@ -222,5 +231,6 @@ export declare const VIcon: {
|
|
222
231
|
start: BooleanConstructor;
|
223
232
|
end: BooleanConstructor;
|
224
233
|
icon: import("vue").PropType<IconValue>;
|
234
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
225
235
|
}>>;
|
226
236
|
export type VIcon = InstanceType<typeof VIcon>;
|
@@ -17,6 +17,7 @@ export const makeVIconProps = propsFactory({
|
|
17
17
|
start: Boolean,
|
18
18
|
end: Boolean,
|
19
19
|
icon: IconValue,
|
20
|
+
opacity: [String, Number],
|
20
21
|
...makeComponentProps(),
|
21
22
|
...makeSizeProps(),
|
22
23
|
...makeTagProps({
|
@@ -61,7 +62,9 @@ export const VIcon = genericComponent()({
|
|
61
62
|
'v-icon--start': props.start,
|
62
63
|
'v-icon--end': props.end
|
63
64
|
}, props.class],
|
64
|
-
"style": [
|
65
|
+
"style": [{
|
66
|
+
'--v-icon-opacity': props.opacity
|
67
|
+
}, !sizeClasses.value ? {
|
65
68
|
fontSize: convertToUnit(props.size),
|
66
69
|
height: convertToUnit(props.size),
|
67
70
|
width: convertToUnit(props.size)
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VIcon.js","names":["useTextColor","makeComponentProps","IconValue","useIcon","makeSizeProps","useSize","makeTagProps","makeThemeProps","provideTheme","computed","ref","Text","toRef","convertToUnit","flattenFragments","genericComponent","propsFactory","useRender","makeVIconProps","color","String","disabled","Boolean","start","end","icon","tag","VIcon","name","props","setup","_ref","attrs","slots","slotIcon","themeClasses","iconData","value","sizeClasses","textColorClasses","textColorStyles","slotValue","default","filter","node","type","children","hasClick","onClick","onClickOnce","_createVNode","component","class","fontSize","size","height","width","undefined","style"],"sources":["../../../src/components/VIcon/VIcon.tsx"],"sourcesContent":["// Styles\nimport './VIcon.sass'\n\n// Composables\nimport { useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { IconValue, useIcon } from '@/composables/icons'\nimport { makeSizeProps, useSize } from '@/composables/size'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, ref, Text, toRef } from 'vue'\nimport { convertToUnit, flattenFragments, genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVIconProps = propsFactory({\n color: String,\n disabled: Boolean,\n start: Boolean,\n end: Boolean,\n icon: IconValue,\n\n ...makeComponentProps(),\n ...makeSizeProps(),\n ...makeTagProps({ tag: 'i' }),\n ...makeThemeProps(),\n}, 'VIcon')\n\nexport const VIcon = genericComponent()({\n name: 'VIcon',\n\n props: makeVIconProps(),\n\n setup (props, { attrs, slots }) {\n const slotIcon = ref<string>()\n\n const { themeClasses } = provideTheme(props)\n const { iconData } = useIcon(computed(() => slotIcon.value || props.icon))\n const { sizeClasses } = useSize(props)\n const { textColorClasses, textColorStyles } = useTextColor(toRef(props, 'color'))\n\n useRender(() => {\n const slotValue = slots.default?.()\n if (slotValue) {\n slotIcon.value = flattenFragments(slotValue).filter(node =>\n node.type === Text && node.children && typeof node.children === 'string'\n )[0]?.children as string\n }\n const hasClick = !!(attrs.onClick || attrs.onClickOnce)\n\n return (\n <iconData.value.component\n tag={ props.tag }\n icon={ iconData.value.icon }\n class={[\n 'v-icon',\n 'notranslate',\n themeClasses.value,\n sizeClasses.value,\n textColorClasses.value,\n {\n 'v-icon--clickable': hasClick,\n 'v-icon--disabled': props.disabled,\n 'v-icon--start': props.start,\n 'v-icon--end': props.end,\n },\n props.class,\n ]}\n style={[\n !sizeClasses.value ? ({\n fontSize: convertToUnit(props.size),\n height: convertToUnit(props.size),\n width: convertToUnit(props.size),\n }) : undefined,\n textColorStyles.value,\n props.style,\n ]}\n role={ hasClick ? 'button' : undefined }\n aria-hidden={ !hasClick }\n tabindex={ hasClick ? props.disabled ? -1 : 0 : undefined }\n >\n { slotValue }\n </iconData.value.component>\n )\n })\n\n return {}\n },\n})\n\nexport type VIcon = InstanceType<typeof VIcon>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,YAAY;AAAA,SACZC,kBAAkB;AAAA,SAClBC,SAAS,EAAEC,OAAO;AAAA,SAClBC,aAAa,EAAEC,OAAO;AAAA,SACtBC,YAAY;AAAA,SACZC,cAAc,EAAEC,YAAY,sCAErC;AACA,SAASC,QAAQ,EAAEC,GAAG,EAAEC,IAAI,EAAEC,KAAK,QAAQ,KAAK;AAAA,SACvCC,aAAa,EAAEC,gBAAgB,EAAEC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAEnF,OAAO,MAAMC,cAAc,GAAGF,YAAY,CAAC;EACzCG,KAAK,EAAEC,MAAM;EACbC,QAAQ,EAAEC,OAAO;EACjBC,KAAK,EAAED,OAAO;EACdE,GAAG,EAAEF,OAAO;EACZG,IAAI,EAAEvB,SAAS;
|
1
|
+
{"version":3,"file":"VIcon.js","names":["useTextColor","makeComponentProps","IconValue","useIcon","makeSizeProps","useSize","makeTagProps","makeThemeProps","provideTheme","computed","ref","Text","toRef","convertToUnit","flattenFragments","genericComponent","propsFactory","useRender","makeVIconProps","color","String","disabled","Boolean","start","end","icon","opacity","Number","tag","VIcon","name","props","setup","_ref","attrs","slots","slotIcon","themeClasses","iconData","value","sizeClasses","textColorClasses","textColorStyles","slotValue","default","filter","node","type","children","hasClick","onClick","onClickOnce","_createVNode","component","class","fontSize","size","height","width","undefined","style"],"sources":["../../../src/components/VIcon/VIcon.tsx"],"sourcesContent":["// Styles\nimport './VIcon.sass'\n\n// Composables\nimport { useTextColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { IconValue, useIcon } from '@/composables/icons'\nimport { makeSizeProps, useSize } from '@/composables/size'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, ref, Text, toRef } from 'vue'\nimport { convertToUnit, flattenFragments, genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVIconProps = propsFactory({\n color: String,\n disabled: Boolean,\n start: Boolean,\n end: Boolean,\n icon: IconValue,\n opacity: [String, Number],\n\n ...makeComponentProps(),\n ...makeSizeProps(),\n ...makeTagProps({ tag: 'i' }),\n ...makeThemeProps(),\n}, 'VIcon')\n\nexport const VIcon = genericComponent()({\n name: 'VIcon',\n\n props: makeVIconProps(),\n\n setup (props, { attrs, slots }) {\n const slotIcon = ref<string>()\n\n const { themeClasses } = provideTheme(props)\n const { iconData } = useIcon(computed(() => slotIcon.value || props.icon))\n const { sizeClasses } = useSize(props)\n const { textColorClasses, textColorStyles } = useTextColor(toRef(props, 'color'))\n\n useRender(() => {\n const slotValue = slots.default?.()\n if (slotValue) {\n slotIcon.value = flattenFragments(slotValue).filter(node =>\n node.type === Text && node.children && typeof node.children === 'string'\n )[0]?.children as string\n }\n const hasClick = !!(attrs.onClick || attrs.onClickOnce)\n\n return (\n <iconData.value.component\n tag={ props.tag }\n icon={ iconData.value.icon }\n class={[\n 'v-icon',\n 'notranslate',\n themeClasses.value,\n sizeClasses.value,\n textColorClasses.value,\n {\n 'v-icon--clickable': hasClick,\n 'v-icon--disabled': props.disabled,\n 'v-icon--start': props.start,\n 'v-icon--end': props.end,\n },\n props.class,\n ]}\n style={[\n {\n '--v-icon-opacity': props.opacity,\n },\n !sizeClasses.value ? ({\n fontSize: convertToUnit(props.size),\n height: convertToUnit(props.size),\n width: convertToUnit(props.size),\n }) : undefined,\n textColorStyles.value,\n props.style,\n ]}\n role={ hasClick ? 'button' : undefined }\n aria-hidden={ !hasClick }\n tabindex={ hasClick ? props.disabled ? -1 : 0 : undefined }\n >\n { slotValue }\n </iconData.value.component>\n )\n })\n\n return {}\n },\n})\n\nexport type VIcon = InstanceType<typeof VIcon>\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.0-beta.0-dev.2025-03-
|
19
|
+
export const version = "3.8.0-beta.0-dev.2025-03-22";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2568,24 +2568,23 @@ declare module 'vue' {
|
|
2568
2568
|
}
|
2569
2569
|
export interface GlobalComponents {
|
2570
2570
|
VApp: typeof import('vuetify/components')['VApp']
|
2571
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2572
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2573
2571
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2574
2572
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2575
2573
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2576
2574
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2577
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2578
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2579
2575
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2580
|
-
|
2576
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2577
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2581
2578
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2582
2579
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2583
2580
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2581
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2584
2582
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2585
2583
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2586
2584
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2585
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2586
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2587
2587
|
VBtn: typeof import('vuetify/components')['VBtn']
|
2588
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2589
2588
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2590
2589
|
VCard: typeof import('vuetify/components')['VCard']
|
2591
2590
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -2593,20 +2592,14 @@ declare module 'vue' {
|
|
2593
2592
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2594
2593
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2595
2594
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2595
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2596
2596
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2597
2597
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2598
|
-
|
2599
|
-
|
2598
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2599
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2600
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2600
2601
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2601
2602
|
VChip: typeof import('vuetify/components')['VChip']
|
2602
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2603
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2604
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2605
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2606
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2607
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2608
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2609
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2610
2603
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2611
2604
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2612
2605
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2614,32 +2607,36 @@ declare module 'vue' {
|
|
2614
2607
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2615
2608
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2616
2609
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2617
|
-
|
2618
|
-
|
2610
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2611
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2619
2612
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2620
|
-
|
2613
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2614
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2615
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2616
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2617
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2618
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2619
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2620
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2621
2621
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2622
2622
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2623
2623
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2624
2624
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2625
|
-
|
2625
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2626
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2626
2627
|
VField: typeof import('vuetify/components')['VField']
|
2627
2628
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2628
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2629
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2630
2629
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2630
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2631
|
+
VItem: typeof import('vuetify/components')['VItem']
|
2632
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2633
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2631
2634
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2632
2635
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2633
2636
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2634
2637
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2635
2638
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2636
|
-
|
2637
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2638
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2639
|
-
VItem: typeof import('vuetify/components')['VItem']
|
2640
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2641
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2642
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2639
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2643
2640
|
VList: typeof import('vuetify/components')['VList']
|
2644
2641
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2645
2642
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2649,70 +2646,72 @@ declare module 'vue' {
|
|
2649
2646
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2650
2647
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2651
2648
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2652
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2653
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2654
2649
|
VMain: typeof import('vuetify/components')['VMain']
|
2655
2650
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2656
|
-
|
2657
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2651
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2658
2652
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2653
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2659
2654
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2660
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2661
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2662
2655
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2656
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2657
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2658
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2659
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2663
2660
|
VRating: typeof import('vuetify/components')['VRating']
|
2661
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2662
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2663
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2664
2664
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2665
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2666
2665
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2667
2666
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2668
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2669
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2670
2667
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2671
2668
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2672
|
-
|
2673
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2674
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2675
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2676
|
-
VTab: typeof import('vuetify/components')['VTab']
|
2677
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
2678
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2679
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2669
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2680
2670
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2681
2671
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2682
2672
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2683
2673
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2684
2674
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2685
2675
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2676
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2677
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2678
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2686
2679
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2687
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2688
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
2689
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2690
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2691
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2692
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2693
2680
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2694
2681
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2695
2682
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2683
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2684
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2685
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2686
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2687
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2688
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2689
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2690
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2691
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2692
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2693
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2694
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2696
2695
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2697
2696
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2698
2697
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2699
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2700
|
-
VHover: typeof import('vuetify/components')['VHover']
|
2701
2698
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2702
2699
|
VCol: typeof import('vuetify/components')['VCol']
|
2703
2700
|
VRow: typeof import('vuetify/components')['VRow']
|
2704
2701
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2705
|
-
|
2702
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2703
|
+
VHover: typeof import('vuetify/components')['VHover']
|
2706
2704
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2707
2705
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2706
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2708
2707
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2708
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
2709
2709
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2710
2710
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2711
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
2712
2711
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2713
2712
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2714
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2715
2713
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2714
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2716
2715
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2717
2716
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2718
2717
|
VValidation: typeof import('vuetify/components')['VValidation']
|
@@ -2733,6 +2732,7 @@ declare module 'vue' {
|
|
2733
2732
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2734
2733
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2735
2734
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2735
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2736
2736
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2737
2737
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2738
2738
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -2741,11 +2741,11 @@ declare module 'vue' {
|
|
2741
2741
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2742
2742
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2743
2743
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2744
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2745
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2744
2746
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2745
2747
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2746
2748
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2747
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2748
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2749
2749
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2750
2750
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2751
2751
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
package/lib/framework.js
CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
|
|
109
109
|
};
|
110
110
|
});
|
111
111
|
}
|
112
|
-
export const version = "3.8.0-beta.0-dev.2025-03-
|
112
|
+
export const version = "3.8.0-beta.0-dev.2025-03-22";
|
113
113
|
createVuetify.version = version;
|
114
114
|
|
115
115
|
// Vue's inject() can only be used in setup
|
package/package.json
CHANGED