@vuetify/nightly 3.7.18-master.2025-03-20 → 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 +14 -3
- package/dist/json/attributes.json +3720 -3720
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +134 -134
- package/dist/json/web-types.json +6842 -6842
- package/dist/vuetify-labs.css +3792 -3792
- 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 +3760 -3760
- package/dist/vuetify.d.ts +56 -56
- 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 +56 -56
- 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
@@ -489,39 +489,43 @@ declare module 'vue' {
|
|
489
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
490
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
491
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
492
|
-
VApp: typeof import('vuetify/components')['VApp']
|
493
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
494
492
|
VBadge: typeof import('vuetify/components')['VBadge']
|
493
|
+
VApp: typeof import('vuetify/components')['VApp']
|
494
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
495
495
|
VBanner: typeof import('vuetify/components')['VBanner']
|
496
496
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
497
497
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
498
|
-
|
499
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
498
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
500
499
|
VAlert: typeof import('vuetify/components')['VAlert']
|
501
500
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
502
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
503
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
504
501
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
505
502
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
506
503
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
504
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
505
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
506
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
507
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
508
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
507
509
|
VCard: typeof import('vuetify/components')['VCard']
|
508
510
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
509
511
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
510
512
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
511
513
|
VCardText: typeof import('vuetify/components')['VCardText']
|
512
514
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
513
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
514
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
515
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
516
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
517
|
-
VChip: typeof import('vuetify/components')['VChip']
|
518
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
519
515
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
520
516
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
521
|
-
|
517
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
518
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
522
519
|
VCode: typeof import('vuetify/components')['VCode']
|
520
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
523
521
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
524
|
-
|
522
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
523
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
524
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
525
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
526
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
527
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
528
|
+
VChip: typeof import('vuetify/components')['VChip']
|
525
529
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
526
530
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
527
531
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -529,35 +533,32 @@ declare module 'vue' {
|
|
529
533
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
530
534
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
531
535
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
532
|
-
|
533
|
-
|
534
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
535
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
536
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
537
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
538
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
536
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
537
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
539
538
|
VDialog: typeof import('vuetify/components')['VDialog']
|
539
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
540
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
540
541
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
541
542
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
542
543
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
543
544
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
544
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
545
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
546
545
|
VFab: typeof import('vuetify/components')['VFab']
|
547
|
-
|
548
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
546
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
549
547
|
VFooter: typeof import('vuetify/components')['VFooter']
|
550
548
|
VIcon: typeof import('vuetify/components')['VIcon']
|
551
549
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
552
550
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
553
551
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
554
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']
|
555
557
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
556
558
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
557
559
|
VItem: typeof import('vuetify/components')['VItem']
|
558
|
-
VImg: typeof import('vuetify/components')['VImg']
|
559
560
|
VKbd: typeof import('vuetify/components')['VKbd']
|
560
|
-
|
561
|
+
VMain: typeof import('vuetify/components')['VMain']
|
561
562
|
VList: typeof import('vuetify/components')['VList']
|
562
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
563
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -568,57 +569,56 @@ declare module 'vue' {
|
|
568
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
569
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
570
571
|
VLabel: typeof import('vuetify/components')['VLabel']
|
571
|
-
|
572
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
572
573
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
573
574
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
574
|
-
|
575
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
576
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
575
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
577
576
|
VPagination: typeof import('vuetify/components')['VPagination']
|
577
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
578
578
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
579
579
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
|
+
VRating: typeof import('vuetify/components')['VRating']
|
580
581
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
582
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
581
583
|
VSelect: typeof import('vuetify/components')['VSelect']
|
582
|
-
|
584
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
585
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
586
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
583
587
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
584
588
|
VSheet: typeof import('vuetify/components')['VSheet']
|
585
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
586
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
587
589
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
590
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
588
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
589
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
590
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
591
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
592
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
593
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
+
VTable: typeof import('vuetify/components')['VTable']
|
598
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
599
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
597
600
|
VTab: typeof import('vuetify/components')['VTab']
|
598
601
|
VTabs: typeof import('vuetify/components')['VTabs']
|
599
602
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
600
603
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
605
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
606
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
604
607
|
VTextField: typeof import('vuetify/components')['VTextField']
|
605
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
606
608
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
607
609
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
608
610
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
609
|
-
|
610
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
611
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
611
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
612
612
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
613
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
614
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
615
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
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']
|
@@ -650,28 +650,28 @@ 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
|
+
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
654
|
+
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
655
|
+
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
656
|
+
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
657
|
+
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
658
|
+
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
653
659
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
654
660
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
655
661
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
656
662
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
657
663
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
664
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
665
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
666
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
658
667
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
659
668
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
660
669
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
661
|
-
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
662
|
-
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
663
|
-
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
664
|
-
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
665
|
-
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
666
|
-
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
667
670
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
668
671
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
669
672
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
670
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
671
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
672
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
673
673
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
674
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
675
674
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
675
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
676
676
|
}
|
677
677
|
}
|
package/package.json
CHANGED