@vuetify/nightly 3.7.12-master.2025-02-12 → 3.7.12-master.2025-02-13
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 +11 -3
- package/dist/json/attributes.json +2850 -2850
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +178 -178
- package/dist/json/web-types.json +5227 -5227
- package/dist/vuetify-labs.css +4941 -4941
- package/dist/vuetify-labs.d.ts +1 -1
- package/dist/vuetify-labs.esm.js +3 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +3 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5261 -5261
- package/dist/vuetify.d.ts +64 -64
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +1 -1
- package/lib/components/index.d.mts +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +63 -63
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VTabs.mjs","names":["VTab","VTabsWindow","VTabsWindowItem","makeVSlideGroupProps","VSlideGroup","useBackgroundColor","provideDefaults","makeDensityProps","useDensity","useProxiedModel","useScopeId","makeTagProps","computed","toRef","VTabsSymbol","convertToUnit","genericComponent","isObject","propsFactory","useRender","parseItems","items","map","item","text","value","makeVTabsProps","alignTabs","type","String","default","color","fixedTabs","Boolean","Array","stacked","bgColor","grow","height","Number","undefined","hideSlider","sliderColor","mandatory","selectedClass","VTabs","name","props","emits","v","setup","_ref","attrs","slots","model","densityClasses","backgroundColorClasses","backgroundColorStyles","scopeId","direction","fixed","slideGroupProps","filterProps","hasWindow","window","length","_createVNode","_Fragment","_mergeProps","$event","class","style","tab"],"sources":["../../../src/components/VTabs/VTabs.tsx"],"sourcesContent":["// Styles\nimport './VTabs.sass'\n\n// Components\nimport { VTab } from './VTab'\nimport { VTabsWindow } from './VTabsWindow'\nimport { VTabsWindowItem } from './VTabsWindowItem'\nimport { makeVSlideGroupProps, VSlideGroup } from '@/components/VSlideGroup/VSlideGroup'\n\n// Composables\nimport { useBackgroundColor } from '@/composables/color'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { VTabsSymbol } from './shared'\nimport { convertToUnit, genericComponent, isObject, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport type TabItem = string | number | Record<string, any>\n\nexport type VTabsSlot<T> = {\n item: T\n}\n\nexport type VTabsSlots<T> = {\n default: never\n tab: VTabsSlot<T>\n item: VTabsSlot<T>\n window: never\n} & {\n [key: `tab.${string}`]: VTabsSlot<T>\n [key: `item.${string}`]: VTabsSlot<T>\n}\n\nfunction parseItems (items: readonly TabItem[] | undefined) {\n if (!items) return []\n\n return items.map(item => {\n if (!isObject(item)) return { text: item, value: item }\n\n return item\n })\n}\n\nexport const makeVTabsProps = propsFactory({\n alignTabs: {\n type: String as PropType<'start' | 'title' | 'center' | 'end'>,\n default: 'start',\n },\n color: String,\n fixedTabs: Boolean,\n items: {\n type: Array as PropType<readonly TabItem[]>,\n default: () => ([]),\n },\n stacked: Boolean,\n bgColor: String,\n grow: Boolean,\n height: {\n type: [Number, String],\n default: undefined,\n },\n hideSlider: Boolean,\n sliderColor: String,\n\n ...makeVSlideGroupProps({\n mandatory: 'force' as const,\n selectedClass: 'v-tab-item--selected',\n }),\n ...makeDensityProps(),\n ...makeTagProps(),\n}, 'VTabs')\n\nexport const VTabs = genericComponent<new <T = TabItem>(\n props: {\n items?: T\n },\n slots: VTabsSlots<T>\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VTabs',\n\n props: makeVTabsProps(),\n\n emits: {\n 'update:modelValue': (v: unknown) => true,\n },\n\n setup (props, { attrs, slots }) {\n const model = useProxiedModel(props, 'modelValue')\n const items = computed(() => parseItems(props.items))\n const { densityClasses } = useDensity(props)\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(toRef(props, 'bgColor'))\n const { scopeId } = useScopeId()\n\n provideDefaults({\n VTab: {\n color: toRef(props, 'color'),\n direction: toRef(props, 'direction'),\n stacked: toRef(props, 'stacked'),\n fixed: toRef(props, 'fixedTabs'),\n sliderColor: toRef(props, 'sliderColor'),\n hideSlider: toRef(props, 'hideSlider'),\n },\n })\n\n useRender(() => {\n const slideGroupProps = VSlideGroup.filterProps(props)\n const hasWindow = !!(slots.window || props.items.length > 0)\n\n return (\n <>\n <VSlideGroup\n { ...slideGroupProps }\n v-model={ model.value }\n class={[\n 'v-tabs',\n `v-tabs--${props.direction}`,\n `v-tabs--align-tabs-${props.alignTabs}`,\n {\n 'v-tabs--fixed-tabs': props.fixedTabs,\n 'v-tabs--grow': props.grow,\n 'v-tabs--stacked': props.stacked,\n },\n densityClasses.value,\n backgroundColorClasses.value,\n props.class,\n ]}\n style={[\n { '--v-tabs-height': convertToUnit(props.height) },\n backgroundColorStyles.value,\n props.style,\n ]}\n role=\"tablist\"\n symbol={ VTabsSymbol }\n { ...scopeId }\n { ...attrs }\n >\n { slots.default?.() ?? items.value.map(item => (\n slots.tab?.({ item }) ?? (\n <VTab\n { ...item }\n key={ item.text }\n value={ item.value }\n v-slots={{\n default: slots[`tab.${item.value}`] ? () => slots[`tab.${item.value}`]?.({ item }) : undefined,\n }}\n />\n )\n ))}\n </VSlideGroup>\n\n { hasWindow && (\n <VTabsWindow\n v-model={ model.value }\n key=\"tabs-window\"\n { ...scopeId }\n >\n { items.value.map(item => slots.item?.({ item }) ?? (\n <VTabsWindowItem\n value={ item.value }\n v-slots={{\n default: () => slots[`item.${item.value}`]?.({ item }),\n }}\n />\n ))}\n\n { slots.window?.() }\n </VTabsWindow>\n )}\n </>\n )\n })\n\n return {}\n },\n})\n\nexport type VTabs = InstanceType<typeof VTabs>\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"VTabs.mjs","names":["VTab","VTabsWindow","VTabsWindowItem","makeVSlideGroupProps","VSlideGroup","useBackgroundColor","provideDefaults","makeDensityProps","useDensity","useProxiedModel","useScopeId","makeTagProps","computed","toRef","VTabsSymbol","convertToUnit","genericComponent","isObject","propsFactory","useRender","parseItems","items","map","item","text","value","makeVTabsProps","alignTabs","type","String","default","color","fixedTabs","Boolean","Array","stacked","bgColor","grow","height","Number","undefined","hideSlider","sliderColor","mandatory","selectedClass","VTabs","name","props","emits","v","setup","_ref","attrs","slots","model","densityClasses","backgroundColorClasses","backgroundColorStyles","scopeId","direction","fixed","slideGroupProps","filterProps","hasWindow","window","length","_createVNode","_Fragment","_mergeProps","$event","class","style","tab"],"sources":["../../../src/components/VTabs/VTabs.tsx"],"sourcesContent":["// Styles\nimport './VTabs.sass'\n\n// Components\nimport { VTab } from './VTab'\nimport { VTabsWindow } from './VTabsWindow'\nimport { VTabsWindowItem } from './VTabsWindowItem'\nimport { makeVSlideGroupProps, VSlideGroup } from '@/components/VSlideGroup/VSlideGroup'\n\n// Composables\nimport { useBackgroundColor } from '@/composables/color'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { VTabsSymbol } from './shared'\nimport { convertToUnit, genericComponent, isObject, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport type TabItem = string | number | Record<string, any>\n\nexport type VTabsSlot<T> = {\n item: T\n}\n\nexport type VTabsSlots<T> = {\n default: never\n tab: VTabsSlot<T>\n item: VTabsSlot<T>\n window: never\n} & {\n [key: `tab.${string}`]: VTabsSlot<T>\n [key: `item.${string}`]: VTabsSlot<T>\n}\n\nfunction parseItems (items: readonly TabItem[] | undefined) {\n if (!items) return []\n\n return items.map(item => {\n if (!isObject(item)) return { text: item, value: item }\n\n return item\n })\n}\n\nexport const makeVTabsProps = propsFactory({\n alignTabs: {\n type: String as PropType<'start' | 'title' | 'center' | 'end'>,\n default: 'start',\n },\n color: String,\n fixedTabs: Boolean,\n items: {\n type: Array as PropType<readonly TabItem[]>,\n default: () => ([]),\n },\n stacked: Boolean,\n bgColor: String,\n grow: Boolean,\n height: {\n type: [Number, String],\n default: undefined,\n },\n hideSlider: Boolean,\n sliderColor: String,\n\n ...makeVSlideGroupProps({\n mandatory: 'force' as const,\n selectedClass: 'v-tab-item--selected',\n }),\n ...makeDensityProps(),\n ...makeTagProps(),\n}, 'VTabs')\n\nexport const VTabs = genericComponent<new <T = TabItem>(\n props: {\n items?: T[]\n },\n slots: VTabsSlots<T>\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VTabs',\n\n props: makeVTabsProps(),\n\n emits: {\n 'update:modelValue': (v: unknown) => true,\n },\n\n setup (props, { attrs, slots }) {\n const model = useProxiedModel(props, 'modelValue')\n const items = computed(() => parseItems(props.items))\n const { densityClasses } = useDensity(props)\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(toRef(props, 'bgColor'))\n const { scopeId } = useScopeId()\n\n provideDefaults({\n VTab: {\n color: toRef(props, 'color'),\n direction: toRef(props, 'direction'),\n stacked: toRef(props, 'stacked'),\n fixed: toRef(props, 'fixedTabs'),\n sliderColor: toRef(props, 'sliderColor'),\n hideSlider: toRef(props, 'hideSlider'),\n },\n })\n\n useRender(() => {\n const slideGroupProps = VSlideGroup.filterProps(props)\n const hasWindow = !!(slots.window || props.items.length > 0)\n\n return (\n <>\n <VSlideGroup\n { ...slideGroupProps }\n v-model={ model.value }\n class={[\n 'v-tabs',\n `v-tabs--${props.direction}`,\n `v-tabs--align-tabs-${props.alignTabs}`,\n {\n 'v-tabs--fixed-tabs': props.fixedTabs,\n 'v-tabs--grow': props.grow,\n 'v-tabs--stacked': props.stacked,\n },\n densityClasses.value,\n backgroundColorClasses.value,\n props.class,\n ]}\n style={[\n { '--v-tabs-height': convertToUnit(props.height) },\n backgroundColorStyles.value,\n props.style,\n ]}\n role=\"tablist\"\n symbol={ VTabsSymbol }\n { ...scopeId }\n { ...attrs }\n >\n { slots.default?.() ?? items.value.map(item => (\n slots.tab?.({ item }) ?? (\n <VTab\n { ...item }\n key={ item.text }\n value={ item.value }\n v-slots={{\n default: slots[`tab.${item.value}`] ? () => slots[`tab.${item.value}`]?.({ item }) : undefined,\n }}\n />\n )\n ))}\n </VSlideGroup>\n\n { hasWindow && (\n <VTabsWindow\n v-model={ model.value }\n key=\"tabs-window\"\n { ...scopeId }\n >\n { items.value.map(item => slots.item?.({ item }) ?? (\n <VTabsWindowItem\n value={ item.value }\n v-slots={{\n default: () => slots[`item.${item.value}`]?.({ item }),\n }}\n />\n ))}\n\n { slots.window?.() }\n </VTabsWindow>\n )}\n </>\n )\n })\n\n return {}\n },\n})\n\nexport type VTabs = InstanceType<typeof VTabs>\n"],"mappings":"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","ignoreList":[]}
|
@@ -1940,7 +1940,7 @@ declare const VTabs: {
|
|
1940
1940
|
item: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
1941
1941
|
window: () => vue.VNode[];
|
1942
1942
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
|
1943
|
-
items?: T;
|
1943
|
+
items?: T[];
|
1944
1944
|
}, slots: VTabsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
1945
1945
|
tag: {
|
1946
1946
|
type: StringConstructor;
|
@@ -56126,7 +56126,7 @@ declare const VTabs: {
|
|
56126
56126
|
item: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
56127
56127
|
window: () => vue.VNode[];
|
56128
56128
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
|
56129
|
-
items?: T;
|
56129
|
+
items?: T[];
|
56130
56130
|
}, slots: VTabsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
56131
56131
|
tag: {
|
56132
56132
|
type: StringConstructor;
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.7.12-master.2025-02-
|
19
|
+
export const version = "3.7.12-master.2025-02-13";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -486,77 +486,79 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
|
490
|
-
|
491
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
489
|
+
VApp: typeof import('vuetify/components')['VApp']
|
490
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
492
491
|
VAlert: typeof import('vuetify/components')['VAlert']
|
493
492
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
494
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
495
|
-
VApp: typeof import('vuetify/components')['VApp']
|
496
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
497
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
498
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
499
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
500
493
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
494
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
501
495
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
502
496
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
503
|
-
|
504
|
-
|
497
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
498
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
499
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
500
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
501
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
502
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
505
503
|
VBtn: typeof import('vuetify/components')['VBtn']
|
506
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
507
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
508
504
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
509
505
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
510
506
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
511
|
-
|
512
|
-
|
507
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
508
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
509
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
513
510
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
514
511
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
515
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
516
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
517
512
|
VCard: typeof import('vuetify/components')['VCard']
|
518
513
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
519
514
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
520
515
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
521
516
|
VCardText: typeof import('vuetify/components')['VCardText']
|
522
517
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
529
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
530
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
531
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
532
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
518
|
+
VChip: typeof import('vuetify/components')['VChip']
|
519
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
520
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
521
|
+
VCode: typeof import('vuetify/components')['VCode']
|
522
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
533
523
|
VCounter: typeof import('vuetify/components')['VCounter']
|
534
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
535
524
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
536
525
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
537
526
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
538
527
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
539
528
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
540
529
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
530
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
531
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
532
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
533
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
534
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
535
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
536
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
537
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
538
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
541
539
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
540
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
541
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
542
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
546
|
-
VField: typeof import('vuetify/components')['VField']
|
547
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
548
543
|
VFab: typeof import('vuetify/components')['VFab']
|
549
|
-
VInput: typeof import('vuetify/components')['VInput']
|
550
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
551
544
|
VFooter: typeof import('vuetify/components')['VFooter']
|
545
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
546
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
547
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
548
|
+
VField: typeof import('vuetify/components')['VField']
|
549
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
550
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
552
551
|
VIcon: typeof import('vuetify/components')['VIcon']
|
553
552
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
554
553
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
555
554
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
556
555
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
557
556
|
VKbd: typeof import('vuetify/components')['VKbd']
|
558
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
559
557
|
VImg: typeof import('vuetify/components')['VImg']
|
558
|
+
VInput: typeof import('vuetify/components')['VInput']
|
559
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
560
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
561
|
+
VItem: typeof import('vuetify/components')['VItem']
|
560
562
|
VList: typeof import('vuetify/components')['VList']
|
561
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
562
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -566,72 +568,70 @@ declare module 'vue' {
|
|
566
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
567
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
568
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
569
|
-
|
570
|
-
VItem: typeof import('vuetify/components')['VItem']
|
571
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
571
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
572
572
|
VMain: typeof import('vuetify/components')['VMain']
|
573
|
-
|
573
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
574
574
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
575
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
576
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
577
575
|
VPagination: typeof import('vuetify/components')['VPagination']
|
576
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
578
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
578
579
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
579
|
-
VRating: typeof import('vuetify/components')['VRating']
|
580
580
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
581
|
-
|
582
|
-
|
583
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
581
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
582
|
+
VRating: typeof import('vuetify/components')['VRating']
|
584
583
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
584
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
585
585
|
VSheet: typeof import('vuetify/components')['VSheet']
|
586
|
-
|
587
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
588
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
589
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
590
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
586
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
591
587
|
VStepper: typeof import('vuetify/components')['VStepper']
|
592
588
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
593
589
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
594
590
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
595
591
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
596
592
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
597
|
-
|
593
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
594
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
595
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
596
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
597
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
598
598
|
VTab: typeof import('vuetify/components')['VTab']
|
599
599
|
VTabs: typeof import('vuetify/components')['VTabs']
|
600
600
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
601
601
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
602
602
|
VTable: typeof import('vuetify/components')['VTable']
|
603
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
604
603
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
604
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
605
605
|
VTextField: typeof import('vuetify/components')['VTextField']
|
606
606
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
607
607
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
608
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
609
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
610
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
608
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
612
609
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
610
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
611
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
612
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
613
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
614
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
615
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
617
|
+
VForm: typeof import('vuetify/components')['VForm']
|
617
618
|
VContainer: typeof import('vuetify/components')['VContainer']
|
618
619
|
VCol: typeof import('vuetify/components')['VCol']
|
619
620
|
VRow: typeof import('vuetify/components')['VRow']
|
620
621
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
621
|
-
VForm: typeof import('vuetify/components')['VForm']
|
622
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
624
623
|
VLayout: typeof import('vuetify/components')['VLayout']
|
625
624
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
625
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
626
626
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
627
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
628
|
VParallax: typeof import('vuetify/components')['VParallax']
|
629
629
|
VRadio: typeof import('vuetify/components')['VRadio']
|
630
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
631
630
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
|
-
|
631
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
633
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
634
633
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
634
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
635
635
|
VValidation: typeof import('vuetify/components')['VValidation']
|
636
636
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
637
637
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
@@ -650,22 +650,22 @@ declare module 'vue' {
|
|
650
650
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
651
651
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
652
652
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
653
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
654
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
655
653
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
656
654
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
657
655
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
658
656
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
659
657
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
660
658
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
661
|
-
|
662
|
-
|
663
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
659
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
660
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
664
661
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
665
662
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
666
663
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
667
664
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
668
665
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
666
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
667
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
668
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
669
669
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
670
670
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
671
671
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
package/package.json
CHANGED