@vuetify/nightly 3.7.18-master.2025-03-21 → 3.7.18-master.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 +9 -3
- package/dist/json/attributes.json +2700 -2700
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +5083 -5083
- package/dist/vuetify-labs.css +3324 -3324
- package/dist/vuetify-labs.esm.js +4 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +4 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5863 -5863
- package/dist/vuetify.d.ts +53 -53
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VIcon/VIcon.mjs +2 -2
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +53 -53
- package/package.json +1 -1
@@ -8,7 +8,7 @@ import { makeComponentProps } from "../../composables/component.mjs";
|
|
8
8
|
import { IconValue, useIcon } from "../../composables/icons.mjs";
|
9
9
|
import { makeSizeProps, useSize } from "../../composables/size.mjs";
|
10
10
|
import { makeTagProps } from "../../composables/tag.mjs";
|
11
|
-
import { makeThemeProps,
|
11
|
+
import { makeThemeProps, useTheme } from "../../composables/theme.mjs"; // Utilities
|
12
12
|
import { computed, ref, Text, toRef } from 'vue';
|
13
13
|
import { convertToUnit, flattenFragments, genericComponent, propsFactory, useRender } from "../../util/index.mjs";
|
14
14
|
export const makeVIconProps = propsFactory({
|
@@ -35,7 +35,7 @@ export const VIcon = genericComponent()({
|
|
35
35
|
const slotIcon = ref();
|
36
36
|
const {
|
37
37
|
themeClasses
|
38
|
-
} =
|
38
|
+
} = useTheme();
|
39
39
|
const {
|
40
40
|
iconData
|
41
41
|
} = useIcon(computed(() => slotIcon.value || props.icon));
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VIcon.mjs","names":["useTextColor","makeComponentProps","IconValue","useIcon","makeSizeProps","useSize","makeTagProps","makeThemeProps","
|
1
|
+
{"version":3,"file":"VIcon.mjs","names":["useTextColor","makeComponentProps","IconValue","useIcon","makeSizeProps","useSize","makeTagProps","makeThemeProps","useTheme","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, useTheme } 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 } = useTheme()\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":"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","ignoreList":[]}
|
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.18-master.2025-03-
|
19
|
+
export const version = "3.7.18-master.2025-03-22";
|
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,47 +486,46 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
VApp: typeof import('vuetify/components')['VApp']
|
490
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
491
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
492
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
493
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
494
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
495
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
496
492
|
VBadge: typeof import('vuetify/components')['VBadge']
|
493
|
+
VApp: typeof import('vuetify/components')['VApp']
|
494
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
495
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
496
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
497
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
497
498
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
498
|
-
|
499
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
500
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
499
501
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
500
502
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
501
503
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
502
504
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
503
|
-
|
504
|
-
|
505
|
-
|
505
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
506
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
507
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
506
508
|
VBtn: typeof import('vuetify/components')['VBtn']
|
507
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
508
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
509
509
|
VCard: typeof import('vuetify/components')['VCard']
|
510
510
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
511
511
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
512
512
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
513
513
|
VCardText: typeof import('vuetify/components')['VCardText']
|
514
514
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
515
|
-
|
515
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
516
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
517
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
518
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
519
|
+
VCode: typeof import('vuetify/components')['VCode']
|
516
520
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
517
|
-
|
518
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
519
|
-
VChip: typeof import('vuetify/components')['VChip']
|
521
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
520
522
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
521
523
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
522
524
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
523
525
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
524
526
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
525
527
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
526
|
-
|
527
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
528
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
529
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
528
|
+
VChip: typeof import('vuetify/components')['VChip']
|
530
529
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
531
530
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
532
531
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -534,28 +533,32 @@ declare module 'vue' {
|
|
534
533
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
535
534
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
536
535
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
537
|
-
|
538
|
-
|
539
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
536
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
537
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
540
538
|
VDialog: typeof import('vuetify/components')['VDialog']
|
539
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
540
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
541
541
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
542
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
543
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
544
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
545
|
VFab: typeof import('vuetify/components')['VFab']
|
546
|
-
VField: typeof import('vuetify/components')['VField']
|
547
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
548
546
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
549
|
-
|
550
|
-
VImg: typeof import('vuetify/components')['VImg']
|
547
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
551
548
|
VIcon: typeof import('vuetify/components')['VIcon']
|
552
549
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
553
550
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
554
551
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
555
552
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
553
|
+
VImg: typeof import('vuetify/components')['VImg']
|
554
|
+
VField: typeof import('vuetify/components')['VField']
|
555
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
556
|
+
VInput: typeof import('vuetify/components')['VInput']
|
556
557
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
557
558
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
558
559
|
VItem: typeof import('vuetify/components')['VItem']
|
560
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
561
|
+
VMain: typeof import('vuetify/components')['VMain']
|
559
562
|
VList: typeof import('vuetify/components')['VList']
|
560
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
561
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -565,60 +568,57 @@ declare module 'vue' {
|
|
565
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
566
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
567
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
568
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
569
|
-
VInput: typeof import('vuetify/components')['VInput']
|
570
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
571
571
|
VLabel: typeof import('vuetify/components')['VLabel']
|
572
|
-
|
572
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
573
573
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
574
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
575
574
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
575
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
576
576
|
VPagination: typeof import('vuetify/components')['VPagination']
|
577
577
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
578
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
579
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
578
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
579
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
581
580
|
VRating: typeof import('vuetify/components')['VRating']
|
581
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
582
582
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
583
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
584
583
|
VSelect: typeof import('vuetify/components')['VSelect']
|
585
|
-
|
584
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
585
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
586
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
587
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
586
588
|
VSheet: typeof import('vuetify/components')['VSheet']
|
589
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
590
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
587
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
588
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
589
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
590
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
591
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
592
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
593
|
-
|
594
|
-
|
597
|
+
VTable: typeof import('vuetify/components')['VTable']
|
598
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
599
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
595
600
|
VTab: typeof import('vuetify/components')['VTab']
|
596
601
|
VTabs: typeof import('vuetify/components')['VTabs']
|
597
602
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
598
603
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
599
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
600
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
601
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
602
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
603
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
604
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
605
604
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
606
|
-
VTable: typeof import('vuetify/components')['VTable']
|
607
605
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
608
606
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
607
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
609
608
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
610
609
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
611
610
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
611
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
612
612
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
613
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
614
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
614
615
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
615
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
616
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
617
|
-
VForm: typeof import('vuetify/components')['VForm']
|
618
617
|
VContainer: typeof import('vuetify/components')['VContainer']
|
619
618
|
VCol: typeof import('vuetify/components')['VCol']
|
620
619
|
VRow: typeof import('vuetify/components')['VRow']
|
621
620
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
621
|
+
VForm: typeof import('vuetify/components')['VForm']
|
622
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
623
|
VLayout: typeof import('vuetify/components')['VLayout']
|
624
624
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
@@ -626,12 +626,12 @@ declare module 'vue' {
|
|
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
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
629
630
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
630
631
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
631
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
632
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
634
633
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
634
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
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,19 +650,20 @@ 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
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
654
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
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']
|
659
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
660
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
661
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
662
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
663
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
661
664
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
662
665
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
663
666
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
664
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
665
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
666
667
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
667
668
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
668
669
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
@@ -670,8 +671,7 @@ declare module 'vue' {
|
|
670
671
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
671
672
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
672
673
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
673
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
674
674
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
675
|
-
|
675
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
676
676
|
}
|
677
677
|
}
|
package/package.json
CHANGED