@vuetify/nightly 3.6.3-dev.2024-05-03 → 3.6.3-dev.2024-05-06

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.
@@ -10,6 +10,9 @@
10
10
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
11
11
  transition-property: width, height;
12
12
  vertical-align: middle;
13
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
14
+ border-style: solid;
15
+ border-width: thin;
13
16
  border-radius: 50%;
14
17
  }
15
18
  .v-avatar.v-avatar--size-x-small {
@@ -39,6 +42,10 @@
39
42
  height: calc(var(--v-avatar-height) + -8px);
40
43
  width: calc(var(--v-avatar-height) + -8px);
41
44
  }
45
+ .v-avatar--border {
46
+ border-width: thin;
47
+ box-shadow: none;
48
+ }
42
49
  .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
43
50
  background: transparent;
44
51
  color: inherit;
@@ -6,6 +6,7 @@ import "./VAvatar.css";
6
6
  import { VDefaultsProvider } from "../VDefaultsProvider/index.mjs";
7
7
  import { VIcon } from "../VIcon/index.mjs";
8
8
  import { VImg } from "../VImg/index.mjs"; // Composables
9
+ import { makeBorderProps, useBorder } from "../../composables/border.mjs";
9
10
  import { makeComponentProps } from "../../composables/component.mjs";
10
11
  import { makeDensityProps, useDensity } from "../../composables/density.mjs";
11
12
  import { IconValue } from "../../composables/icons.mjs";
@@ -21,6 +22,7 @@ export const makeVAvatarProps = propsFactory({
21
22
  icon: IconValue,
22
23
  image: String,
23
24
  text: String,
25
+ ...makeBorderProps(),
24
26
  ...makeComponentProps(),
25
27
  ...makeDensityProps(),
26
28
  ...makeRoundedProps(),
@@ -41,6 +43,9 @@ export const VAvatar = genericComponent()({
41
43
  const {
42
44
  themeClasses
43
45
  } = provideTheme(props);
46
+ const {
47
+ borderClasses
48
+ } = useBorder(props);
44
49
  const {
45
50
  colorClasses,
46
51
  colorStyles,
@@ -60,7 +65,7 @@ export const VAvatar = genericComponent()({
60
65
  "class": ['v-avatar', {
61
66
  'v-avatar--start': props.start,
62
67
  'v-avatar--end': props.end
63
- }, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
68
+ }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
64
69
  "style": [colorStyles.value, sizeStyles.value, props.style]
65
70
  }, {
66
71
  default: () => [!slots.default ? props.image ? _createVNode(VImg, {
@@ -1 +1 @@
1
- {"version":3,"file":"VAvatar.mjs","names":["VDefaultsProvider","VIcon","VImg","makeComponentProps","makeDensityProps","useDensity","IconValue","makeRoundedProps","useRounded","makeSizeProps","useSize","makeTagProps","makeThemeProps","provideTheme","genOverlays","makeVariantProps","useVariant","genericComponent","propsFactory","useRender","makeVAvatarProps","start","Boolean","end","icon","image","String","text","variant","VAvatar","name","props","setup","_ref","slots","themeClasses","colorClasses","colorStyles","variantClasses","densityClasses","roundedClasses","sizeClasses","sizeStyles","_createVNode","tag","value","class","style","default","cover"],"sources":["../../../src/components/VAvatar/VAvatar.tsx"],"sourcesContent":["// Styles\nimport './VAvatar.sass'\n\n// Components\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VIcon } from '@/components/VIcon'\nimport { VImg } from '@/components/VImg'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { IconValue } from '@/composables/icons'\nimport { makeRoundedProps, useRounded } from '@/composables/rounded'\nimport { makeSizeProps, useSize } from '@/composables/size'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\nimport { genOverlays, makeVariantProps, useVariant } from '@/composables/variant'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVAvatarProps = propsFactory({\n start: Boolean,\n end: Boolean,\n icon: IconValue,\n image: String,\n text: String,\n\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeRoundedProps(),\n ...makeSizeProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeVariantProps({ variant: 'flat' } as const),\n}, 'VAvatar')\n\nexport const VAvatar = genericComponent()({\n name: 'VAvatar',\n\n props: makeVAvatarProps(),\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { colorClasses, colorStyles, variantClasses } = useVariant(props)\n const { densityClasses } = useDensity(props)\n const { roundedClasses } = useRounded(props)\n const { sizeClasses, sizeStyles } = useSize(props)\n\n useRender(() => (\n <props.tag\n class={[\n 'v-avatar',\n {\n 'v-avatar--start': props.start,\n 'v-avatar--end': props.end,\n },\n themeClasses.value,\n colorClasses.value,\n densityClasses.value,\n roundedClasses.value,\n sizeClasses.value,\n variantClasses.value,\n props.class,\n ]}\n style={[\n colorStyles.value,\n sizeStyles.value,\n props.style,\n ]}\n >\n { !slots.default ? (\n props.image\n ? (<VImg key=\"image\" src={ props.image } alt=\"\" cover />)\n : props.icon\n ? (<VIcon key=\"icon\" icon={ props.icon } />)\n : props.text\n ) : (\n <VDefaultsProvider\n key=\"content-defaults\"\n defaults={{\n VImg: {\n cover: true,\n image: props.image,\n },\n VIcon: {\n icon: props.icon,\n },\n }}\n >\n { slots.default() }\n </VDefaultsProvider>\n )}\n\n { genOverlays(false, 'v-avatar') }\n </props.tag>\n ))\n\n return {}\n },\n})\n\nexport type VAvatar = InstanceType<typeof VAvatar>\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"VAvatar.mjs","names":["VDefaultsProvider","VIcon","VImg","makeBorderProps","useBorder","makeComponentProps","makeDensityProps","useDensity","IconValue","makeRoundedProps","useRounded","makeSizeProps","useSize","makeTagProps","makeThemeProps","provideTheme","genOverlays","makeVariantProps","useVariant","genericComponent","propsFactory","useRender","makeVAvatarProps","start","Boolean","end","icon","image","String","text","variant","VAvatar","name","props","setup","_ref","slots","themeClasses","borderClasses","colorClasses","colorStyles","variantClasses","densityClasses","roundedClasses","sizeClasses","sizeStyles","_createVNode","tag","value","class","style","default","cover"],"sources":["../../../src/components/VAvatar/VAvatar.tsx"],"sourcesContent":["// Styles\nimport './VAvatar.sass'\n\n// Components\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VIcon } from '@/components/VIcon'\nimport { VImg } from '@/components/VImg'\n\n// Composables\nimport { makeBorderProps, useBorder } from '@/composables/border'\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { IconValue } from '@/composables/icons'\nimport { makeRoundedProps, useRounded } from '@/composables/rounded'\nimport { makeSizeProps, useSize } from '@/composables/size'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\nimport { genOverlays, makeVariantProps, useVariant } from '@/composables/variant'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVAvatarProps = propsFactory({\n start: Boolean,\n end: Boolean,\n icon: IconValue,\n image: String,\n text: String,\n\n ...makeBorderProps(),\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeRoundedProps(),\n ...makeSizeProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeVariantProps({ variant: 'flat' } as const),\n}, 'VAvatar')\n\nexport const VAvatar = genericComponent()({\n name: 'VAvatar',\n\n props: makeVAvatarProps(),\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { borderClasses } = useBorder(props)\n const { colorClasses, colorStyles, variantClasses } = useVariant(props)\n const { densityClasses } = useDensity(props)\n const { roundedClasses } = useRounded(props)\n const { sizeClasses, sizeStyles } = useSize(props)\n\n useRender(() => (\n <props.tag\n class={[\n 'v-avatar',\n {\n 'v-avatar--start': props.start,\n 'v-avatar--end': props.end,\n },\n themeClasses.value,\n borderClasses.value,\n colorClasses.value,\n densityClasses.value,\n roundedClasses.value,\n sizeClasses.value,\n variantClasses.value,\n props.class,\n ]}\n style={[\n colorStyles.value,\n sizeStyles.value,\n props.style,\n ]}\n >\n { !slots.default ? (\n props.image\n ? (<VImg key=\"image\" src={ props.image } alt=\"\" cover />)\n : props.icon\n ? (<VIcon key=\"icon\" icon={ props.icon } />)\n : props.text\n ) : (\n <VDefaultsProvider\n key=\"content-defaults\"\n defaults={{\n VImg: {\n cover: true,\n image: props.image,\n },\n VIcon: {\n icon: props.icon,\n },\n }}\n >\n { slots.default() }\n </VDefaultsProvider>\n )}\n\n { genOverlays(false, 'v-avatar') }\n </props.tag>\n ))\n\n return {}\n },\n})\n\nexport type VAvatar = InstanceType<typeof VAvatar>\n"],"mappings":"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","ignoreList":[]}
@@ -19,6 +19,7 @@
19
19
 
20
20
  @include avatar-sizes($avatar-sizes)
21
21
  @include avatar-density(('height', 'width'), $avatar-density)
22
+ @include tools.border($avatar-border...)
22
23
  @include tools.rounded($avatar-border-radius)
23
24
  @include tools.variant($avatar-variants...)
24
25
 
@@ -1,10 +1,16 @@
1
1
  @use "sass:map";
2
+ @use '../../styles/settings';
2
3
  @use "../../styles/settings/variables";
3
4
  @use "../../styles/tools/functions";
4
5
 
5
6
  // Defaults
6
7
  $avatar-background: var(--v-theme-surface) !default;
7
8
  $avatar-border-radius: map.get(variables.$rounded, 'circle') !default;
9
+ $avatar-border-color: settings.$border-color-root !default;
10
+ $avatar-border-radius: map.get(settings.$rounded, 0) !default;
11
+ $avatar-border-style: settings.$border-style-root !default;
12
+ $avatar-border-thin-width: thin !default;
13
+ $avatar-border-width: thin !default;
8
14
  $avatar-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default;
9
15
  $avatar-density: ('default': 0, 'comfortable': -1, 'compact': -2) !default;
10
16
  $avatar-elevation: 1 !default;
@@ -26,6 +32,13 @@ $avatar-sizes: functions.map-deep-merge(
26
32
  $avatar-sizes
27
33
  );
28
34
 
35
+ $avatar-border: (
36
+ $avatar-border-color,
37
+ $avatar-border-style,
38
+ $avatar-border-width,
39
+ $avatar-border-thin-width
40
+ ) !default;
41
+
29
42
  $avatar-variants: (
30
43
  $avatar-background,
31
44
  $avatar-color,
@@ -27,6 +27,7 @@ declare const VAvatar: {
27
27
  theme?: string | undefined;
28
28
  color?: string | undefined;
29
29
  icon?: IconValue | undefined;
30
+ border?: string | number | boolean | undefined;
30
31
  rounded?: string | number | boolean | undefined;
31
32
  } & {
32
33
  $children?: vue.VNodeChild | {
@@ -53,6 +54,7 @@ declare const VAvatar: {
53
54
  theme?: string | undefined;
54
55
  color?: string | undefined;
55
56
  icon?: IconValue | undefined;
57
+ border?: string | number | boolean | undefined;
56
58
  rounded?: string | number | boolean | undefined;
57
59
  } & {
58
60
  $children?: vue.VNodeChild | {
@@ -100,6 +102,7 @@ declare const VAvatar: {
100
102
  theme?: string | undefined;
101
103
  color?: string | undefined;
102
104
  icon?: IconValue | undefined;
105
+ border?: string | number | boolean | undefined;
103
106
  rounded?: string | number | boolean | undefined;
104
107
  } & {
105
108
  $children?: vue.VNodeChild | {
@@ -140,6 +143,7 @@ declare const VAvatar: {
140
143
  theme?: string | undefined;
141
144
  color?: string | undefined;
142
145
  icon?: IconValue | undefined;
146
+ border?: string | number | boolean | undefined;
143
147
  rounded?: string | number | boolean | undefined;
144
148
  } & {
145
149
  $children?: vue.VNodeChild | {
@@ -198,6 +202,7 @@ declare const VAvatar: {
198
202
  type: vue.PropType<vue.StyleValue>;
199
203
  default: null;
200
204
  };
205
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
201
206
  start: BooleanConstructor;
202
207
  end: BooleanConstructor;
203
208
  icon: vue.PropType<IconValue>;
@@ -237,6 +242,7 @@ declare const VAvatar: {
237
242
  type: vue.PropType<vue.StyleValue>;
238
243
  default: null;
239
244
  };
245
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
240
246
  start: BooleanConstructor;
241
247
  end: BooleanConstructor;
242
248
  icon: vue.PropType<IconValue>;
@@ -8510,6 +8510,7 @@ declare const VAvatar: {
8510
8510
  theme?: string | undefined;
8511
8511
  color?: string | undefined;
8512
8512
  icon?: IconValue | undefined;
8513
+ border?: string | number | boolean | undefined;
8513
8514
  rounded?: string | number | boolean | undefined;
8514
8515
  } & {
8515
8516
  $children?: vue.VNodeChild | {
@@ -8536,6 +8537,7 @@ declare const VAvatar: {
8536
8537
  theme?: string | undefined;
8537
8538
  color?: string | undefined;
8538
8539
  icon?: IconValue | undefined;
8540
+ border?: string | number | boolean | undefined;
8539
8541
  rounded?: string | number | boolean | undefined;
8540
8542
  } & {
8541
8543
  $children?: vue.VNodeChild | {
@@ -8583,6 +8585,7 @@ declare const VAvatar: {
8583
8585
  theme?: string | undefined;
8584
8586
  color?: string | undefined;
8585
8587
  icon?: IconValue | undefined;
8588
+ border?: string | number | boolean | undefined;
8586
8589
  rounded?: string | number | boolean | undefined;
8587
8590
  } & {
8588
8591
  $children?: vue.VNodeChild | {
@@ -8623,6 +8626,7 @@ declare const VAvatar: {
8623
8626
  theme?: string | undefined;
8624
8627
  color?: string | undefined;
8625
8628
  icon?: IconValue | undefined;
8629
+ border?: string | number | boolean | undefined;
8626
8630
  rounded?: string | number | boolean | undefined;
8627
8631
  } & {
8628
8632
  $children?: vue.VNodeChild | {
@@ -8681,6 +8685,7 @@ declare const VAvatar: {
8681
8685
  type: vue.PropType<vue.StyleValue>;
8682
8686
  default: null;
8683
8687
  };
8688
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
8684
8689
  start: BooleanConstructor;
8685
8690
  end: BooleanConstructor;
8686
8691
  icon: vue.PropType<IconValue>;
@@ -8720,6 +8725,7 @@ declare const VAvatar: {
8720
8725
  type: vue.PropType<vue.StyleValue>;
8721
8726
  default: null;
8722
8727
  };
8728
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
8723
8729
  start: BooleanConstructor;
8724
8730
  end: BooleanConstructor;
8725
8731
  icon: vue.PropType<IconValue>;
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.6.3-dev.2024-05-03";
19
+ export const version = "3.6.3-dev.2024-05-06";
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.6.3-dev.2024-05-03";
100
+ export const version = "3.6.3-dev.2024-05-06";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -493,49 +493,48 @@ declare module '@vue/runtime-core' {
493
493
  }
494
494
 
495
495
  export interface GlobalComponents {
496
- VAlert: typeof import('vuetify/components')['VAlert']
497
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
496
+ VApp: typeof import('vuetify/components')['VApp']
497
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
498
498
  VAppBar: typeof import('vuetify/components')['VAppBar']
499
499
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
500
500
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
501
- VBanner: typeof import('vuetify/components')['VBanner']
502
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
503
- VBannerText: typeof import('vuetify/components')['VBannerText']
504
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
505
- VAvatar: typeof import('vuetify/components')['VAvatar']
506
- VApp: typeof import('vuetify/components')['VApp']
501
+ VAlert: typeof import('vuetify/components')['VAlert']
502
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
507
503
  VBadge: typeof import('vuetify/components')['VBadge']
508
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
509
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
504
+ VAvatar: typeof import('vuetify/components')['VAvatar']
510
505
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
511
506
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
512
507
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
513
- VCheckbox: typeof import('vuetify/components')['VCheckbox']
514
- VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
508
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
515
509
  VBtn: typeof import('vuetify/components')['VBtn']
510
+ VBanner: typeof import('vuetify/components')['VBanner']
511
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
512
+ VBannerText: typeof import('vuetify/components')['VBannerText']
516
513
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
517
- VChip: typeof import('vuetify/components')['VChip']
518
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
519
- VCarousel: typeof import('vuetify/components')['VCarousel']
520
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
521
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
522
514
  VCard: typeof import('vuetify/components')['VCard']
523
515
  VCardActions: typeof import('vuetify/components')['VCardActions']
524
516
  VCardItem: typeof import('vuetify/components')['VCardItem']
525
517
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
526
518
  VCardText: typeof import('vuetify/components')['VCardText']
527
519
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
520
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
521
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
522
+ VCheckbox: typeof import('vuetify/components')['VCheckbox']
523
+ VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
524
+ VCarousel: typeof import('vuetify/components')['VCarousel']
525
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
526
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
528
527
  VCode: typeof import('vuetify/components')['VCode']
529
- VCombobox: typeof import('vuetify/components')['VCombobox']
530
528
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
529
+ VChip: typeof import('vuetify/components')['VChip']
530
+ VCombobox: typeof import('vuetify/components')['VCombobox']
531
+ VCounter: typeof import('vuetify/components')['VCounter']
531
532
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
532
533
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
533
534
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
534
535
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
535
536
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
536
537
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
537
- VCounter: typeof import('vuetify/components')['VCounter']
538
- VDialog: typeof import('vuetify/components')['VDialog']
539
538
  VDataTable: typeof import('vuetify/components')['VDataTable']
540
539
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
541
540
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -543,30 +542,31 @@ declare module '@vue/runtime-core' {
543
542
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
544
543
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
545
544
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
546
- VDivider: typeof import('vuetify/components')['VDivider']
547
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
548
- VFileInput: typeof import('vuetify/components')['VFileInput']
549
- VField: typeof import('vuetify/components')['VField']
550
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
551
545
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
552
546
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
553
547
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
554
548
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
555
- VFooter: typeof import('vuetify/components')['VFooter']
549
+ VDivider: typeof import('vuetify/components')['VDivider']
550
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
551
+ VDialog: typeof import('vuetify/components')['VDialog']
556
552
  VFab: typeof import('vuetify/components')['VFab']
557
- VImg: typeof import('vuetify/components')['VImg']
553
+ VField: typeof import('vuetify/components')['VField']
554
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
555
+ VFileInput: typeof import('vuetify/components')['VFileInput']
556
+ VFooter: typeof import('vuetify/components')['VFooter']
558
557
  VIcon: typeof import('vuetify/components')['VIcon']
559
558
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
560
559
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
561
560
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
562
561
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
563
- VInput: typeof import('vuetify/components')['VInput']
564
562
  VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
565
- VKbd: typeof import('vuetify/components')['VKbd']
563
+ VInput: typeof import('vuetify/components')['VInput']
566
564
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
567
565
  VItem: typeof import('vuetify/components')['VItem']
568
- VMain: typeof import('vuetify/components')['VMain']
566
+ VImg: typeof import('vuetify/components')['VImg']
567
+ VKbd: typeof import('vuetify/components')['VKbd']
569
568
  VLabel: typeof import('vuetify/components')['VLabel']
569
+ VMain: typeof import('vuetify/components')['VMain']
570
570
  VList: typeof import('vuetify/components')['VList']
571
571
  VListGroup: typeof import('vuetify/components')['VListGroup']
572
572
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -576,65 +576,65 @@ declare module '@vue/runtime-core' {
576
576
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
577
577
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
578
578
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
579
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
580
579
  VMenu: typeof import('vuetify/components')['VMenu']
581
580
  VMessages: typeof import('vuetify/components')['VMessages']
582
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
581
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
582
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
583
583
  VOverlay: typeof import('vuetify/components')['VOverlay']
584
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
584
585
  VPagination: typeof import('vuetify/components')['VPagination']
585
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
586
586
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
587
- VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
588
587
  VRating: typeof import('vuetify/components')['VRating']
588
+ VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
589
589
  VSelect: typeof import('vuetify/components')['VSelect']
590
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
591
590
  VSheet: typeof import('vuetify/components')['VSheet']
592
591
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
593
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
594
- VSlider: typeof import('vuetify/components')['VSlider']
595
- VTab: typeof import('vuetify/components')['VTab']
596
- VTabs: typeof import('vuetify/components')['VTabs']
597
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
598
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
599
592
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
600
593
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
594
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
601
595
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
596
+ VSlider: typeof import('vuetify/components')['VSlider']
597
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
602
598
  VStepper: typeof import('vuetify/components')['VStepper']
603
599
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
604
600
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
605
601
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
606
602
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
607
603
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
608
- VTable: typeof import('vuetify/components')['VTable']
609
- VSwitch: typeof import('vuetify/components')['VSwitch']
610
- VTextarea: typeof import('vuetify/components')['VTextarea']
611
604
  VSystemBar: typeof import('vuetify/components')['VSystemBar']
605
+ VTab: typeof import('vuetify/components')['VTab']
606
+ VTabs: typeof import('vuetify/components')['VTabs']
607
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
608
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
609
+ VSwitch: typeof import('vuetify/components')['VSwitch']
610
+ VTable: typeof import('vuetify/components')['VTable']
612
611
  VTextField: typeof import('vuetify/components')['VTextField']
613
612
  VTimeline: typeof import('vuetify/components')['VTimeline']
614
613
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
614
+ VTextarea: typeof import('vuetify/components')['VTextarea']
615
+ VTooltip: typeof import('vuetify/components')['VTooltip']
615
616
  VToolbar: typeof import('vuetify/components')['VToolbar']
616
617
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
617
618
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
618
- VTooltip: typeof import('vuetify/components')['VTooltip']
619
619
  VWindow: typeof import('vuetify/components')['VWindow']
620
620
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
621
621
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
622
622
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
623
623
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
624
+ VForm: typeof import('vuetify/components')['VForm']
624
625
  VContainer: typeof import('vuetify/components')['VContainer']
625
626
  VCol: typeof import('vuetify/components')['VCol']
626
627
  VRow: typeof import('vuetify/components')['VRow']
627
628
  VSpacer: typeof import('vuetify/components')['VSpacer']
628
- VForm: typeof import('vuetify/components')['VForm']
629
629
  VHover: typeof import('vuetify/components')['VHover']
630
+ VLazy: typeof import('vuetify/components')['VLazy']
630
631
  VLayout: typeof import('vuetify/components')['VLayout']
631
632
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
632
- VLazy: typeof import('vuetify/components')['VLazy']
633
633
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
634
634
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
635
635
  VParallax: typeof import('vuetify/components')['VParallax']
636
- VRadio: typeof import('vuetify/components')['VRadio']
637
636
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
637
+ VRadio: typeof import('vuetify/components')['VRadio']
638
638
  VResponsive: typeof import('vuetify/components')['VResponsive']
639
639
  VSparkline: typeof import('vuetify/components')['VSparkline']
640
640
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
@@ -657,6 +657,8 @@ declare module '@vue/runtime-core' {
657
657
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
658
658
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
659
659
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
660
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
661
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
660
662
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
661
663
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
662
664
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
@@ -664,16 +666,14 @@ declare module '@vue/runtime-core' {
664
666
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
665
667
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
666
668
  VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
667
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
668
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
669
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
670
- VPicker: typeof import('vuetify/labs/components')['VPicker']
671
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
672
669
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
673
670
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
674
671
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
675
- VDateInput: typeof import('vuetify/labs/components')['VDateInput']
672
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
673
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
674
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
676
675
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
677
676
  VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
677
+ VDateInput: typeof import('vuetify/labs/components')['VDateInput']
678
678
  }
679
679
  }
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.6.3-dev.2024-05-03",
4
+ "version": "3.6.3-dev.2024-05-06",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"