@vuetify/nightly 3.7.19-master.2025-03-29 → 3.7.19-master.2025-03-31

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.
@@ -30,7 +30,7 @@ export const VColorPickerPreview = defineComponent({
30
30
  const abortController = new AbortController();
31
31
  onUnmounted(() => abortController.abort());
32
32
  async function openEyeDropper() {
33
- if (!SUPPORTS_EYE_DROPPER) return;
33
+ if (!SUPPORTS_EYE_DROPPER || props.disabled) return;
34
34
  const eyeDropper = new window.EyeDropper();
35
35
  try {
36
36
  const result = await eyeDropper.open({
@@ -52,10 +52,11 @@ export const VColorPickerPreview = defineComponent({
52
52
  "class": "v-color-picker-preview__eye-dropper",
53
53
  "key": "eyeDropper"
54
54
  }, [_createVNode(VBtn, {
55
- "onClick": openEyeDropper,
55
+ "density": "comfortable",
56
+ "disabled": props.disabled,
56
57
  "icon": "$eyeDropper",
57
58
  "variant": "plain",
58
- "density": "comfortable"
59
+ "onClick": openEyeDropper
59
60
  }, null)]), _createVNode("div", {
60
61
  "class": "v-color-picker-preview__dot"
61
62
  }, [_createVNode("div", {
@@ -1 +1 @@
1
- {"version":3,"file":"VColorPickerPreview.mjs","names":["VBtn","VSlider","makeComponentProps","onUnmounted","nullColor","defineComponent","HSVtoCSS","parseColor","propsFactory","RGBtoHSV","SUPPORTS_EYE_DROPPER","useRender","makeVColorPickerPreviewProps","color","type","Object","disabled","Boolean","hideAlpha","VColorPickerPreview","name","props","emits","setup","_ref","emit","abortController","AbortController","abort","openEyeDropper","eyeDropper","window","EyeDropper","result","open","signal","colorHexValue","sRGBHex","e","_createVNode","class","style","background","h","a"],"sources":["../../../src/components/VColorPicker/VColorPickerPreview.tsx"],"sourcesContent":["// Styles\nimport './VColorPickerPreview.sass'\n\n// Components\nimport { VBtn } from '@/components/VBtn'\nimport { VSlider } from '@/components/VSlider'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\n\n// Utilities\nimport { onUnmounted } from 'vue'\nimport { nullColor } from './util'\nimport {\n defineComponent,\n HSVtoCSS,\n parseColor,\n propsFactory,\n RGBtoHSV,\n SUPPORTS_EYE_DROPPER,\n useRender,\n} from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { HSV } from '@/util'\n\nexport const makeVColorPickerPreviewProps = propsFactory({\n color: {\n type: Object as PropType<HSV | null>,\n },\n disabled: Boolean,\n hideAlpha: Boolean,\n\n ...makeComponentProps(),\n}, 'VColorPickerPreview')\n\nexport const VColorPickerPreview = defineComponent({\n name: 'VColorPickerPreview',\n\n props: makeVColorPickerPreviewProps(),\n\n emits: {\n 'update:color': (color: HSV) => true,\n },\n\n setup (props, { emit }) {\n const abortController = new AbortController()\n\n onUnmounted(() => abortController.abort())\n\n async function openEyeDropper () {\n if (!SUPPORTS_EYE_DROPPER) return\n\n const eyeDropper = new window.EyeDropper()\n try {\n const result = await eyeDropper.open({ signal: abortController.signal })\n const colorHexValue = RGBtoHSV(parseColor(result.sRGBHex))\n emit('update:color', { ...(props.color ?? nullColor), ...colorHexValue })\n } catch (e) {}\n }\n\n useRender(() => (\n <div\n class={[\n 'v-color-picker-preview',\n {\n 'v-color-picker-preview--hide-alpha': props.hideAlpha,\n },\n props.class,\n ]}\n style={ props.style }\n >\n { SUPPORTS_EYE_DROPPER && (\n <div class=\"v-color-picker-preview__eye-dropper\" key=\"eyeDropper\">\n <VBtn onClick={ openEyeDropper } icon=\"$eyeDropper\" variant=\"plain\" density=\"comfortable\" />\n </div>\n )}\n\n <div class=\"v-color-picker-preview__dot\">\n <div style={{ background: HSVtoCSS(props.color ?? nullColor) }} />\n </div>\n\n <div class=\"v-color-picker-preview__sliders\">\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__hue\"\n modelValue={ props.color?.h }\n onUpdate:modelValue={ h => emit('update:color', { ...(props.color ?? nullColor), h }) }\n step={ 0 }\n min={ 0 }\n max={ 360 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n\n { !props.hideAlpha && (\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__alpha\"\n modelValue={ props.color?.a ?? 1 }\n onUpdate:modelValue={ a => emit('update:color', { ...(props.color ?? nullColor), a }) }\n step={ 1 / 256 }\n min={ 0 }\n max={ 1 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n )}\n </div>\n </div>\n ))\n\n return {}\n },\n})\n\nexport type VColorPickerPreview = InstanceType<typeof VColorPickerPreview>\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"VColorPickerPreview.mjs","names":["VBtn","VSlider","makeComponentProps","onUnmounted","nullColor","defineComponent","HSVtoCSS","parseColor","propsFactory","RGBtoHSV","SUPPORTS_EYE_DROPPER","useRender","makeVColorPickerPreviewProps","color","type","Object","disabled","Boolean","hideAlpha","VColorPickerPreview","name","props","emits","setup","_ref","emit","abortController","AbortController","abort","openEyeDropper","eyeDropper","window","EyeDropper","result","open","signal","colorHexValue","sRGBHex","e","_createVNode","class","style","background","h","a"],"sources":["../../../src/components/VColorPicker/VColorPickerPreview.tsx"],"sourcesContent":["// Styles\nimport './VColorPickerPreview.sass'\n\n// Components\nimport { VBtn } from '@/components/VBtn'\nimport { VSlider } from '@/components/VSlider'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\n\n// Utilities\nimport { onUnmounted } from 'vue'\nimport { nullColor } from './util'\nimport {\n defineComponent,\n HSVtoCSS,\n parseColor,\n propsFactory,\n RGBtoHSV,\n SUPPORTS_EYE_DROPPER,\n useRender,\n} from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { HSV } from '@/util'\n\nexport const makeVColorPickerPreviewProps = propsFactory({\n color: {\n type: Object as PropType<HSV | null>,\n },\n disabled: Boolean,\n hideAlpha: Boolean,\n\n ...makeComponentProps(),\n}, 'VColorPickerPreview')\n\nexport const VColorPickerPreview = defineComponent({\n name: 'VColorPickerPreview',\n\n props: makeVColorPickerPreviewProps(),\n\n emits: {\n 'update:color': (color: HSV) => true,\n },\n\n setup (props, { emit }) {\n const abortController = new AbortController()\n\n onUnmounted(() => abortController.abort())\n\n async function openEyeDropper () {\n if (!SUPPORTS_EYE_DROPPER || props.disabled) return\n\n const eyeDropper = new window.EyeDropper()\n try {\n const result = await eyeDropper.open({ signal: abortController.signal })\n const colorHexValue = RGBtoHSV(parseColor(result.sRGBHex))\n emit('update:color', { ...(props.color ?? nullColor), ...colorHexValue })\n } catch (e) {}\n }\n\n useRender(() => (\n <div\n class={[\n 'v-color-picker-preview',\n {\n 'v-color-picker-preview--hide-alpha': props.hideAlpha,\n },\n props.class,\n ]}\n style={ props.style }\n >\n { SUPPORTS_EYE_DROPPER && (\n <div class=\"v-color-picker-preview__eye-dropper\" key=\"eyeDropper\">\n <VBtn density=\"comfortable\" disabled={ props.disabled } icon=\"$eyeDropper\" variant=\"plain\" onClick={ openEyeDropper } />\n </div>\n )}\n\n <div class=\"v-color-picker-preview__dot\">\n <div style={{ background: HSVtoCSS(props.color ?? nullColor) }} />\n </div>\n\n <div class=\"v-color-picker-preview__sliders\">\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__hue\"\n modelValue={ props.color?.h }\n onUpdate:modelValue={ h => emit('update:color', { ...(props.color ?? nullColor), h }) }\n step={ 0 }\n min={ 0 }\n max={ 360 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n\n { !props.hideAlpha && (\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__alpha\"\n modelValue={ props.color?.a ?? 1 }\n onUpdate:modelValue={ a => emit('update:color', { ...(props.color ?? nullColor), a }) }\n step={ 1 / 256 }\n min={ 0 }\n max={ 1 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n )}\n </div>\n </div>\n ))\n\n return {}\n },\n})\n\nexport type VColorPickerPreview = InstanceType<typeof VColorPickerPreview>\n"],"mappings":"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","ignoreList":[]}
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.7.19-master.2025-03-29";
19
+ export const version = "3.7.19-master.2025-03-31";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -97,7 +97,7 @@ export function createVuetify() {
97
97
  goTo
98
98
  };
99
99
  }
100
- export const version = "3.7.19-master.2025-03-29";
100
+ export const version = "3.7.19-master.2025-03-31";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -487,42 +487,47 @@ declare module 'vue' {
487
487
  }
488
488
  export interface GlobalComponents {
489
489
  VApp: typeof import('vuetify/components')['VApp']
490
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
491
- VAppBar: typeof import('vuetify/components')['VAppBar']
492
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
493
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
494
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
495
490
  VAvatar: typeof import('vuetify/components')['VAvatar']
496
491
  VAlert: typeof import('vuetify/components')['VAlert']
497
492
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
498
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
499
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
500
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
493
+ VBadge: typeof import('vuetify/components')['VBadge']
501
494
  VBanner: typeof import('vuetify/components')['VBanner']
502
495
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
503
496
  VBannerText: typeof import('vuetify/components')['VBannerText']
504
- VBadge: typeof import('vuetify/components')['VBadge']
505
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
506
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
497
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
498
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
499
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
500
+ VAppBar: typeof import('vuetify/components')['VAppBar']
501
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
502
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
503
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
504
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
507
505
  VBtn: typeof import('vuetify/components')['VBtn']
506
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
507
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
508
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
509
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
510
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
508
511
  VCard: typeof import('vuetify/components')['VCard']
509
512
  VCardActions: typeof import('vuetify/components')['VCardActions']
510
513
  VCardItem: typeof import('vuetify/components')['VCardItem']
511
514
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
512
515
  VCardText: typeof import('vuetify/components')['VCardText']
513
516
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
514
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
515
- VCode: typeof import('vuetify/components')['VCode']
516
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
517
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
518
- VCombobox: typeof import('vuetify/components')['VCombobox']
519
- VChip: typeof import('vuetify/components')['VChip']
520
517
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
521
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
522
518
  VCarousel: typeof import('vuetify/components')['VCarousel']
523
519
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
520
+ VCode: typeof import('vuetify/components')['VCode']
521
+ VChip: typeof import('vuetify/components')['VChip']
522
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
523
+ VCombobox: typeof import('vuetify/components')['VCombobox']
524
524
  VCounter: typeof import('vuetify/components')['VCounter']
525
- VDialog: typeof import('vuetify/components')['VDialog']
525
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
526
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
527
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
528
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
529
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
530
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
526
531
  VDataTable: typeof import('vuetify/components')['VDataTable']
527
532
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
528
533
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -531,33 +536,28 @@ declare module 'vue' {
531
536
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
532
537
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
533
538
  VDivider: typeof import('vuetify/components')['VDivider']
539
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
540
+ VDialog: typeof import('vuetify/components')['VDialog']
541
+ VFab: typeof import('vuetify/components')['VFab']
534
542
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
535
543
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
536
544
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
537
545
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
538
- VFab: typeof import('vuetify/components')['VFab']
539
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
540
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
541
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
542
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
543
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
544
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
545
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
546
- VFileInput: typeof import('vuetify/components')['VFileInput']
547
- VImg: typeof import('vuetify/components')['VImg']
548
- VFooter: typeof import('vuetify/components')['VFooter']
549
546
  VField: typeof import('vuetify/components')['VField']
550
547
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
551
- VInput: typeof import('vuetify/components')['VInput']
548
+ VFooter: typeof import('vuetify/components')['VFooter']
549
+ VFileInput: typeof import('vuetify/components')['VFileInput']
550
+ VItemGroup: typeof import('vuetify/components')['VItemGroup']
551
+ VItem: typeof import('vuetify/components')['VItem']
552
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
552
553
  VIcon: typeof import('vuetify/components')['VIcon']
553
554
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
554
555
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
555
556
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
556
557
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
557
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
558
- VKbd: typeof import('vuetify/components')['VKbd']
559
- VItemGroup: typeof import('vuetify/components')['VItemGroup']
560
- VItem: typeof import('vuetify/components')['VItem']
558
+ VImg: typeof import('vuetify/components')['VImg']
559
+ VLabel: typeof import('vuetify/components')['VLabel']
560
+ VInput: typeof import('vuetify/components')['VInput']
561
561
  VList: typeof import('vuetify/components')['VList']
562
562
  VListGroup: typeof import('vuetify/components')['VListGroup']
563
563
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -567,70 +567,70 @@ declare module 'vue' {
567
567
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
568
568
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
569
569
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
570
- VLabel: typeof import('vuetify/components')['VLabel']
570
+ VKbd: typeof import('vuetify/components')['VKbd']
571
+ VMenu: typeof import('vuetify/components')['VMenu']
571
572
  VMessages: typeof import('vuetify/components')['VMessages']
572
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
573
573
  VOverlay: typeof import('vuetify/components')['VOverlay']
574
- VMenu: typeof import('vuetify/components')['VMenu']
575
574
  VMain: typeof import('vuetify/components')['VMain']
575
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
576
576
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
577
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
578
- VPagination: typeof import('vuetify/components')['VPagination']
579
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
580
577
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
581
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
578
+ VPagination: typeof import('vuetify/components')['VPagination']
579
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
582
580
  VRating: typeof import('vuetify/components')['VRating']
583
- VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
581
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
582
+ VSelect: typeof import('vuetify/components')['VSelect']
584
583
  VSheet: typeof import('vuetify/components')['VSheet']
584
+ VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
585
585
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
586
586
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
587
- VSlider: typeof import('vuetify/components')['VSlider']
588
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
589
587
  VSwitch: typeof import('vuetify/components')['VSwitch']
588
+ VSlider: typeof import('vuetify/components')['VSlider']
590
589
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
591
- VSelect: typeof import('vuetify/components')['VSelect']
592
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
593
590
  VTextField: typeof import('vuetify/components')['VTextField']
594
- VTimeline: typeof import('vuetify/components')['VTimeline']
595
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
591
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
592
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
593
+ VStepper: typeof import('vuetify/components')['VStepper']
594
+ VStepperActions: typeof import('vuetify/components')['VStepperActions']
595
+ VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
596
+ VStepperItem: typeof import('vuetify/components')['VStepperItem']
597
+ VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
598
+ VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
596
599
  VTab: typeof import('vuetify/components')['VTab']
597
600
  VTabs: typeof import('vuetify/components')['VTabs']
598
601
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
599
602
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
600
603
  VTable: typeof import('vuetify/components')['VTable']
601
604
  VTextarea: typeof import('vuetify/components')['VTextarea']
602
- VTooltip: typeof import('vuetify/components')['VTooltip']
605
+ VWindow: typeof import('vuetify/components')['VWindow']
606
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
603
607
  VToolbar: typeof import('vuetify/components')['VToolbar']
604
608
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
605
609
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
606
- VStepper: typeof import('vuetify/components')['VStepper']
607
- VStepperActions: typeof import('vuetify/components')['VStepperActions']
608
- VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
609
- VStepperItem: typeof import('vuetify/components')['VStepperItem']
610
- VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
611
- VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
612
- VWindow: typeof import('vuetify/components')['VWindow']
613
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
610
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
611
+ VTimeline: typeof import('vuetify/components')['VTimeline']
612
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
613
+ VTooltip: typeof import('vuetify/components')['VTooltip']
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
- VHover: typeof import('vuetify/components')['VHover']
618
- VForm: typeof import('vuetify/components')['VForm']
619
617
  VContainer: typeof import('vuetify/components')['VContainer']
620
618
  VCol: typeof import('vuetify/components')['VCol']
621
619
  VRow: typeof import('vuetify/components')['VRow']
622
620
  VSpacer: typeof import('vuetify/components')['VSpacer']
621
+ VForm: typeof import('vuetify/components')['VForm']
622
+ VHover: typeof import('vuetify/components')['VHover']
623
623
  VLayout: typeof import('vuetify/components')['VLayout']
624
624
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
625
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
626
625
  VLazy: typeof import('vuetify/components')['VLazy']
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
- VResponsive: typeof import('vuetify/components')['VResponsive']
631
630
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
632
- VSparkline: typeof import('vuetify/components')['VSparkline']
631
+ VResponsive: typeof import('vuetify/components')['VResponsive']
633
632
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
633
+ VSparkline: typeof import('vuetify/components')['VSparkline']
634
634
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
635
635
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
636
636
  VValidation: typeof import('vuetify/components')['VValidation']
@@ -658,10 +658,10 @@ declare module 'vue' {
658
658
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
659
659
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
660
660
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
661
- VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
662
661
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
663
662
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
664
663
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
664
+ VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
665
665
  VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
666
666
  VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
667
667
  VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.7.19-master.2025-03-29",
4
+ "version": "3.7.19-master.2025-03-31",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"