@vuetify/nightly 3.8.0-beta.0-dev.2025-03-21 → 3.8.0-beta.0-dev.2025-03-23
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 +9 -3
- package/dist/json/attributes.json +3039 -3035
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5679 -5670
- package/dist/vuetify-labs.cjs +7 -4
- package/dist/vuetify-labs.css +2873 -2872
- package/dist/vuetify-labs.d.ts +56 -51
- 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 +3488 -3487
- package/dist/vuetify.d.ts +56 -51
- 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 +51 -51
- 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-23";
|
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,39 +2568,40 @@ declare module 'vue' {
|
|
2568
2568
|
}
|
2569
2569
|
export interface GlobalComponents {
|
2570
2570
|
VApp: typeof import('vuetify/components')['VApp']
|
2571
|
-
|
2572
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2571
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2573
2572
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2574
2573
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2575
2574
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2576
2575
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2577
|
-
|
2578
|
-
|
2576
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2577
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2579
2578
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2580
2579
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2581
2580
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2582
2581
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2583
2582
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2583
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2584
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2585
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2586
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2587
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2584
2588
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2585
2589
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2586
2590
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2587
2591
|
VBtn: typeof import('vuetify/components')['VBtn']
|
2588
|
-
|
2589
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2592
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2590
2593
|
VCard: typeof import('vuetify/components')['VCard']
|
2591
2594
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2592
2595
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2593
2596
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2594
2597
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2595
2598
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2596
|
-
|
2597
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2599
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2598
2600
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2599
2601
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2600
2602
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2601
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2602
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2603
2603
|
VCode: typeof import('vuetify/components')['VCode']
|
2604
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2604
2605
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2605
2606
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2606
2607
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -2614,32 +2615,30 @@ declare module 'vue' {
|
|
2614
2615
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2615
2616
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2616
2617
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2617
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2618
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2619
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2620
2618
|
VDivider: typeof import('vuetify/components')['VDivider']
|
2619
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2621
2620
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2622
2621
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2623
2622
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2624
2623
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2625
2624
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2626
|
-
VField: typeof import('vuetify/components')['VField']
|
2627
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2628
2625
|
VFab: typeof import('vuetify/components')['VFab']
|
2629
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2630
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
2631
2626
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2632
2627
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2633
2628
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2634
2629
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2635
2630
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2636
|
-
|
2631
|
+
VField: typeof import('vuetify/components')['VField']
|
2632
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2633
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2634
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2637
2635
|
VInput: typeof import('vuetify/components')['VInput']
|
2636
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2637
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2638
2638
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2639
2639
|
VItem: typeof import('vuetify/components')['VItem']
|
2640
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2641
2640
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2642
|
-
|
2641
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2643
2642
|
VList: typeof import('vuetify/components')['VList']
|
2644
2643
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2645
2644
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2650,64 +2649,64 @@ declare module 'vue' {
|
|
2650
2649
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2651
2650
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2652
2651
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2653
|
-
|
2652
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2654
2653
|
VMain: typeof import('vuetify/components')['VMain']
|
2655
2654
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2656
2655
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2657
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2658
2656
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2659
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2660
2657
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2661
|
-
|
2658
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2659
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2662
2660
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2661
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2663
2662
|
VRating: typeof import('vuetify/components')['VRating']
|
2663
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2664
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2664
2665
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2665
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2666
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2667
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2668
2666
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2669
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2670
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2671
2667
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2672
|
-
|
2673
|
-
|
2668
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2669
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2670
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2671
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2674
2672
|
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']
|
2680
2673
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2681
2674
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2682
2675
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2683
2676
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2684
2677
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2685
2678
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2679
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2680
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2681
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2682
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2683
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2686
2684
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2687
2685
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2688
|
-
|
2689
|
-
|
2690
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2691
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2692
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2686
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2687
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2693
2688
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2694
2689
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2695
2690
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2696
|
-
|
2697
|
-
|
2691
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2692
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2693
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2694
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2695
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2698
2696
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2697
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2699
2698
|
VForm: typeof import('vuetify/components')['VForm']
|
2700
|
-
VHover: typeof import('vuetify/components')['VHover']
|
2701
2699
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2702
2700
|
VCol: typeof import('vuetify/components')['VCol']
|
2703
2701
|
VRow: typeof import('vuetify/components')['VRow']
|
2704
2702
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2705
|
-
|
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']
|
2709
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2710
2708
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2709
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2711
2710
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2712
2711
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2713
2712
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
@@ -2733,25 +2732,26 @@ 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
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
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']
|
2739
2739
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2740
2740
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2741
2741
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2742
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2743
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2744
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2745
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2746
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2742
2747
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2743
2748
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2744
2749
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2745
2750
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2746
2751
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2747
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2748
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2749
2752
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2750
2753
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2751
2754
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2752
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2753
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2754
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2755
2755
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2756
2756
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2757
2757
|
}
|
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-23";
|
113
113
|
createVuetify.version = version;
|
114
114
|
|
115
115
|
// Vue's inject() can only be used in setup
|
package/package.json
CHANGED