@vuetify/nightly 3.5.3-dev.2024-02-25 → 3.5.3-dev.2024-03-03

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.
@@ -103,7 +103,8 @@ export function createIcons(options) {
103
103
  ...aliases,
104
104
  /* eslint-disable max-len */
105
105
  vuetify: ['M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z', ['M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z', 0.6]],
106
- 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z'
106
+ 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z',
107
+ 'vuetify-play': ['m6.376 13.184-4.11-7.192C1.505 4.66 2.467 3 4.003 3h8.532l-.953 1.576-.006.01-.396.677c-.429.732-.214 1.507.194 2.015.404.503 1.092.878 1.869.806a3.72 3.72 0 0 1 1.005.022c.276.053.434.143.523.237.138.146.38.635-.25 2.09-.893 1.63-1.553 1.722-1.847 1.677-.213-.033-.468-.158-.756-.406a4.95 4.95 0 0 1-.8-.927c-.39-.564-1.04-.84-1.66-.846-.625-.006-1.316.27-1.693.921l-.478.826-.911 1.506Z', ['M9.093 11.552c.046-.079.144-.15.32-.148a.53.53 0 0 1 .43.207c.285.414.636.847 1.046 1.2.405.35.914.662 1.516.754 1.334.205 2.502-.698 3.48-2.495l.014-.028.013-.03c.687-1.574.774-2.852-.005-3.675-.37-.391-.861-.586-1.333-.676a5.243 5.243 0 0 0-1.447-.044c-.173.016-.393-.073-.54-.257-.145-.18-.127-.316-.082-.392l.393-.672L14.287 3h5.71c1.536 0 2.499 1.659 1.737 2.992l-7.997 13.996c-.768 1.344-2.706 1.344-3.473 0l-3.037-5.314 1.377-2.278.004-.006.004-.007.481-.831Z', 0.6]]
107
108
  /* eslint-enable max-len */
108
109
  }
109
110
  }, options);
@@ -1 +1 @@
1
- {"version":3,"file":"icons.mjs","names":["aliases","mdi","computed","inject","unref","defineComponent","genericComponent","mergeDeep","propsFactory","IconValue","String","Function","Object","Array","IconSymbol","Symbol","for","makeIconProps","icon","type","tag","required","VComponentIcon","name","props","setup","_ref","slots","Icon","_createVNode","default","VSvgIcon","inheritAttrs","_ref2","attrs","_mergeProps","isArray","map","path","VLigatureIcon","VClassIcon","defaultSets","svg","component","class","createIcons","options","defaultSet","sets","vuetify","useIcon","icons","Error","iconData","iconAlias","trim","startsWith","slice","iconSetName","keys","find","setName","iconName","length","iconSet"],"sources":["../../src/composables/icons.tsx"],"sourcesContent":["// Icons\nimport { aliases, mdi } from '@/iconsets/mdi'\n\n// Utilities\nimport { computed, inject, unref } from 'vue'\nimport { defineComponent, genericComponent, mergeDeep, propsFactory } from '@/util'\n\n// Types\nimport type { InjectionKey, JSXComponent, PropType, Ref } from 'vue'\n\nexport type IconValue =\n | string\n | (string | [path: string, opacity: number])[]\n | JSXComponent\nexport const IconValue = [String, Function, Object, Array] as PropType<IconValue>\n\nexport interface IconAliases {\n [name: string]: IconValue\n complete: IconValue\n cancel: IconValue\n close: IconValue\n delete: IconValue\n clear: IconValue\n success: IconValue\n info: IconValue\n warning: IconValue\n error: IconValue\n prev: IconValue\n next: IconValue\n checkboxOn: IconValue\n checkboxOff: IconValue\n checkboxIndeterminate: IconValue\n delimiter: IconValue\n sortAsc: IconValue\n sortDesc: IconValue\n expand: IconValue\n menu: IconValue\n subgroup: IconValue\n dropdown: IconValue\n radioOn: IconValue\n radioOff: IconValue\n edit: IconValue\n ratingEmpty: IconValue\n ratingFull: IconValue\n ratingHalf: IconValue\n loading: IconValue\n first: IconValue\n last: IconValue\n unfold: IconValue\n file: IconValue\n plus: IconValue\n minus: IconValue\n calendar: IconValue\n}\n\nexport interface IconProps {\n tag: string\n icon?: IconValue\n disabled?: Boolean\n}\n\ntype IconComponent = JSXComponent<IconProps>\n\nexport interface IconSet {\n component: IconComponent\n}\n\nexport type IconOptions = {\n defaultSet?: string\n aliases?: Partial<IconAliases>\n sets?: Record<string, IconSet>\n}\n\ntype IconInstance = {\n component: IconComponent\n icon?: IconValue\n}\n\nexport const IconSymbol: InjectionKey<Required<IconOptions>> = Symbol.for('vuetify:icons')\n\nexport const makeIconProps = propsFactory({\n icon: {\n type: IconValue,\n },\n // Could not remove this and use makeTagProps, types complained because it is not required\n tag: {\n type: String,\n required: true,\n },\n}, 'icon')\n\nexport const VComponentIcon = genericComponent()({\n name: 'VComponentIcon',\n\n props: makeIconProps(),\n\n setup (props, { slots }) {\n return () => {\n const Icon = props.icon as JSXComponent\n return (\n <props.tag>\n { props.icon ? <Icon /> : slots.default?.() }\n </props.tag>\n )\n }\n },\n})\nexport type VComponentIcon = InstanceType<typeof VComponentIcon>\n\nexport const VSvgIcon = defineComponent({\n name: 'VSvgIcon',\n\n inheritAttrs: false,\n\n props: makeIconProps(),\n\n setup (props, { attrs }) {\n return () => {\n return (\n <props.tag { ...attrs } style={ null }>\n <svg\n class=\"v-icon__svg\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n role=\"img\"\n aria-hidden=\"true\"\n >\n { Array.isArray(props.icon)\n ? props.icon.map(path => (\n Array.isArray(path)\n ? <path d={ path[0] as string } fill-opacity={ path[1] }></path>\n : <path d={ path as string }></path>\n ))\n : <path d={ props.icon as string }></path>\n }\n </svg>\n </props.tag>\n )\n }\n },\n})\nexport type VSvgIcon = InstanceType<typeof VSvgIcon>\n\nexport const VLigatureIcon = defineComponent({\n name: 'VLigatureIcon',\n\n props: makeIconProps(),\n\n setup (props) {\n return () => {\n return <props.tag>{ props.icon }</props.tag>\n }\n },\n})\nexport type VLigatureIcon = InstanceType<typeof VLigatureIcon>\n\nexport const VClassIcon = defineComponent({\n name: 'VClassIcon',\n\n props: makeIconProps(),\n\n setup (props) {\n return () => {\n return <props.tag class={ props.icon }></props.tag>\n }\n },\n})\nexport type VClassIcon = InstanceType<typeof VClassIcon>\n\nexport const defaultSets: Record<string, IconSet> = {\n svg: {\n component: VSvgIcon,\n },\n class: {\n component: VClassIcon,\n },\n}\n\n// Composables\nexport function createIcons (options?: IconOptions) {\n return mergeDeep({\n defaultSet: 'mdi',\n sets: {\n ...defaultSets,\n mdi,\n },\n aliases: {\n ...aliases,\n /* eslint-disable max-len */\n vuetify: [\n 'M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z',\n ['M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z', 0.6],\n ],\n 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z',\n /* eslint-enable max-len */\n },\n }, options)\n}\n\nexport const useIcon = (props: Ref<IconValue | undefined>) => {\n const icons = inject(IconSymbol)\n\n if (!icons) throw new Error('Missing Vuetify Icons provide!')\n\n const iconData = computed<IconInstance>(() => {\n const iconAlias = unref(props)\n\n if (!iconAlias) return { component: VComponentIcon }\n\n let icon: IconValue | undefined = iconAlias\n\n if (typeof icon === 'string') {\n icon = icon.trim()\n\n if (icon.startsWith('$')) {\n icon = icons.aliases?.[icon.slice(1)]\n }\n }\n\n if (!icon) throw new Error(`Could not find aliased icon \"${iconAlias}\"`)\n\n if (Array.isArray(icon)) {\n return {\n component: VSvgIcon,\n icon,\n }\n } else if (typeof icon !== 'string') {\n return {\n component: VComponentIcon,\n icon,\n }\n }\n\n const iconSetName = Object.keys(icons.sets).find(\n setName => typeof icon === 'string' && icon.startsWith(`${setName}:`)\n )\n\n const iconName = iconSetName ? icon.slice(iconSetName.length + 1) : icon\n const iconSet = icons.sets[iconSetName ?? icons.defaultSet]\n\n return {\n component: iconSet.component,\n icon: iconName,\n }\n })\n\n return { iconData }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"icons.mjs","names":["aliases","mdi","computed","inject","unref","defineComponent","genericComponent","mergeDeep","propsFactory","IconValue","String","Function","Object","Array","IconSymbol","Symbol","for","makeIconProps","icon","type","tag","required","VComponentIcon","name","props","setup","_ref","slots","Icon","_createVNode","default","VSvgIcon","inheritAttrs","_ref2","attrs","_mergeProps","isArray","map","path","VLigatureIcon","VClassIcon","defaultSets","svg","component","class","createIcons","options","defaultSet","sets","vuetify","useIcon","icons","Error","iconData","iconAlias","trim","startsWith","slice","iconSetName","keys","find","setName","iconName","length","iconSet"],"sources":["../../src/composables/icons.tsx"],"sourcesContent":["// Icons\nimport { aliases, mdi } from '@/iconsets/mdi'\n\n// Utilities\nimport { computed, inject, unref } from 'vue'\nimport { defineComponent, genericComponent, mergeDeep, propsFactory } from '@/util'\n\n// Types\nimport type { InjectionKey, JSXComponent, PropType, Ref } from 'vue'\n\nexport type IconValue =\n | string\n | (string | [path: string, opacity: number])[]\n | JSXComponent\nexport const IconValue = [String, Function, Object, Array] as PropType<IconValue>\n\nexport interface IconAliases {\n [name: string]: IconValue\n complete: IconValue\n cancel: IconValue\n close: IconValue\n delete: IconValue\n clear: IconValue\n success: IconValue\n info: IconValue\n warning: IconValue\n error: IconValue\n prev: IconValue\n next: IconValue\n checkboxOn: IconValue\n checkboxOff: IconValue\n checkboxIndeterminate: IconValue\n delimiter: IconValue\n sortAsc: IconValue\n sortDesc: IconValue\n expand: IconValue\n menu: IconValue\n subgroup: IconValue\n dropdown: IconValue\n radioOn: IconValue\n radioOff: IconValue\n edit: IconValue\n ratingEmpty: IconValue\n ratingFull: IconValue\n ratingHalf: IconValue\n loading: IconValue\n first: IconValue\n last: IconValue\n unfold: IconValue\n file: IconValue\n plus: IconValue\n minus: IconValue\n calendar: IconValue\n}\n\nexport interface IconProps {\n tag: string\n icon?: IconValue\n disabled?: Boolean\n}\n\ntype IconComponent = JSXComponent<IconProps>\n\nexport interface IconSet {\n component: IconComponent\n}\n\nexport type IconOptions = {\n defaultSet?: string\n aliases?: Partial<IconAliases>\n sets?: Record<string, IconSet>\n}\n\ntype IconInstance = {\n component: IconComponent\n icon?: IconValue\n}\n\nexport const IconSymbol: InjectionKey<Required<IconOptions>> = Symbol.for('vuetify:icons')\n\nexport const makeIconProps = propsFactory({\n icon: {\n type: IconValue,\n },\n // Could not remove this and use makeTagProps, types complained because it is not required\n tag: {\n type: String,\n required: true,\n },\n}, 'icon')\n\nexport const VComponentIcon = genericComponent()({\n name: 'VComponentIcon',\n\n props: makeIconProps(),\n\n setup (props, { slots }) {\n return () => {\n const Icon = props.icon as JSXComponent\n return (\n <props.tag>\n { props.icon ? <Icon /> : slots.default?.() }\n </props.tag>\n )\n }\n },\n})\nexport type VComponentIcon = InstanceType<typeof VComponentIcon>\n\nexport const VSvgIcon = defineComponent({\n name: 'VSvgIcon',\n\n inheritAttrs: false,\n\n props: makeIconProps(),\n\n setup (props, { attrs }) {\n return () => {\n return (\n <props.tag { ...attrs } style={ null }>\n <svg\n class=\"v-icon__svg\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n role=\"img\"\n aria-hidden=\"true\"\n >\n { Array.isArray(props.icon)\n ? props.icon.map(path => (\n Array.isArray(path)\n ? <path d={ path[0] as string } fill-opacity={ path[1] }></path>\n : <path d={ path as string }></path>\n ))\n : <path d={ props.icon as string }></path>\n }\n </svg>\n </props.tag>\n )\n }\n },\n})\nexport type VSvgIcon = InstanceType<typeof VSvgIcon>\n\nexport const VLigatureIcon = defineComponent({\n name: 'VLigatureIcon',\n\n props: makeIconProps(),\n\n setup (props) {\n return () => {\n return <props.tag>{ props.icon }</props.tag>\n }\n },\n})\nexport type VLigatureIcon = InstanceType<typeof VLigatureIcon>\n\nexport const VClassIcon = defineComponent({\n name: 'VClassIcon',\n\n props: makeIconProps(),\n\n setup (props) {\n return () => {\n return <props.tag class={ props.icon }></props.tag>\n }\n },\n})\nexport type VClassIcon = InstanceType<typeof VClassIcon>\n\nexport const defaultSets: Record<string, IconSet> = {\n svg: {\n component: VSvgIcon,\n },\n class: {\n component: VClassIcon,\n },\n}\n\n// Composables\nexport function createIcons (options?: IconOptions) {\n return mergeDeep({\n defaultSet: 'mdi',\n sets: {\n ...defaultSets,\n mdi,\n },\n aliases: {\n ...aliases,\n /* eslint-disable max-len */\n vuetify: [\n 'M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z',\n ['M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z', 0.6],\n ],\n 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z',\n 'vuetify-play': [\n 'm6.376 13.184-4.11-7.192C1.505 4.66 2.467 3 4.003 3h8.532l-.953 1.576-.006.01-.396.677c-.429.732-.214 1.507.194 2.015.404.503 1.092.878 1.869.806a3.72 3.72 0 0 1 1.005.022c.276.053.434.143.523.237.138.146.38.635-.25 2.09-.893 1.63-1.553 1.722-1.847 1.677-.213-.033-.468-.158-.756-.406a4.95 4.95 0 0 1-.8-.927c-.39-.564-1.04-.84-1.66-.846-.625-.006-1.316.27-1.693.921l-.478.826-.911 1.506Z',\n ['M9.093 11.552c.046-.079.144-.15.32-.148a.53.53 0 0 1 .43.207c.285.414.636.847 1.046 1.2.405.35.914.662 1.516.754 1.334.205 2.502-.698 3.48-2.495l.014-.028.013-.03c.687-1.574.774-2.852-.005-3.675-.37-.391-.861-.586-1.333-.676a5.243 5.243 0 0 0-1.447-.044c-.173.016-.393-.073-.54-.257-.145-.18-.127-.316-.082-.392l.393-.672L14.287 3h5.71c1.536 0 2.499 1.659 1.737 2.992l-7.997 13.996c-.768 1.344-2.706 1.344-3.473 0l-3.037-5.314 1.377-2.278.004-.006.004-.007.481-.831Z', 0.6],\n ],\n /* eslint-enable max-len */\n },\n }, options)\n}\n\nexport const useIcon = (props: Ref<IconValue | undefined>) => {\n const icons = inject(IconSymbol)\n\n if (!icons) throw new Error('Missing Vuetify Icons provide!')\n\n const iconData = computed<IconInstance>(() => {\n const iconAlias = unref(props)\n\n if (!iconAlias) return { component: VComponentIcon }\n\n let icon: IconValue | undefined = iconAlias\n\n if (typeof icon === 'string') {\n icon = icon.trim()\n\n if (icon.startsWith('$')) {\n icon = icons.aliases?.[icon.slice(1)]\n }\n }\n\n if (!icon) throw new Error(`Could not find aliased icon \"${iconAlias}\"`)\n\n if (Array.isArray(icon)) {\n return {\n component: VSvgIcon,\n icon,\n }\n } else if (typeof icon !== 'string') {\n return {\n component: VComponentIcon,\n icon,\n }\n }\n\n const iconSetName = Object.keys(icons.sets).find(\n setName => typeof icon === 'string' && icon.startsWith(`${setName}:`)\n )\n\n const iconName = iconSetName ? icon.slice(iconSetName.length + 1) : icon\n const iconSet = icons.sets[iconSetName ?? icons.defaultSet]\n\n return {\n component: iconSet.component,\n icon: iconName,\n }\n })\n\n return { iconData }\n}\n"],"mappings":"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"}
@@ -15,7 +15,7 @@ export const createVuetify = function () {
15
15
  ...options
16
16
  });
17
17
  };
18
- export const version = "3.5.3-dev.2024-02-25";
18
+ export const version = "3.5.3-dev.2024-03-03";
19
19
  createVuetify.version = version;
20
20
  export { components, directives };
21
21
  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.5.3-dev.2024-02-25";
100
+ export const version = "3.5.3-dev.2024-03-03";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup
package/lib/index.d.mts CHANGED
@@ -516,29 +516,26 @@ declare module '@vue/runtime-core' {
516
516
  }
517
517
 
518
518
  export interface GlobalComponents {
519
- VApp: typeof import('vuetify/components')['VApp']
520
519
  VAppBar: typeof import('vuetify/components')['VAppBar']
521
520
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
522
521
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
523
- VAvatar: typeof import('vuetify/components')['VAvatar']
524
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
522
+ VApp: typeof import('vuetify/components')['VApp']
525
523
  VAlert: typeof import('vuetify/components')['VAlert']
526
524
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
525
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
526
+ VAvatar: typeof import('vuetify/components')['VAvatar']
527
527
  VBadge: typeof import('vuetify/components')['VBadge']
528
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
529
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
530
+ VBtn: typeof import('vuetify/components')['VBtn']
528
531
  VBanner: typeof import('vuetify/components')['VBanner']
529
532
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
530
533
  VBannerText: typeof import('vuetify/components')['VBannerText']
531
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
532
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
534
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
535
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
533
536
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
534
537
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
535
538
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
536
- VBtn: typeof import('vuetify/components')['VBtn']
537
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
538
- VCarousel: typeof import('vuetify/components')['VCarousel']
539
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
540
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
541
- VCode: typeof import('vuetify/components')['VCode']
542
539
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
543
540
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
544
541
  VCard: typeof import('vuetify/components')['VCard']
@@ -547,44 +544,49 @@ declare module '@vue/runtime-core' {
547
544
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
548
545
  VCardText: typeof import('vuetify/components')['VCardText']
549
546
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
547
+ VCarousel: typeof import('vuetify/components')['VCarousel']
548
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
550
549
  VChip: typeof import('vuetify/components')['VChip']
550
+ VCode: typeof import('vuetify/components')['VCode']
551
551
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
552
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
553
- VCombobox: typeof import('vuetify/components')['VCombobox']
554
552
  VCounter: typeof import('vuetify/components')['VCounter']
555
- VDatePicker: typeof import('vuetify/components')['VDatePicker']
556
- VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
557
- VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
558
- VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
559
- VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
560
- VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
553
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
561
554
  VDataTable: typeof import('vuetify/components')['VDataTable']
562
555
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
563
556
  VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
564
557
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
565
558
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
566
559
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
567
- VDialog: typeof import('vuetify/components')['VDialog']
568
560
  VDivider: typeof import('vuetify/components')['VDivider']
561
+ VCombobox: typeof import('vuetify/components')['VCombobox']
562
+ VDatePicker: typeof import('vuetify/components')['VDatePicker']
563
+ VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
564
+ VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
565
+ VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
566
+ VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
567
+ VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
569
568
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
570
569
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
571
570
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
572
571
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
572
+ VDialog: typeof import('vuetify/components')['VDialog']
573
+ VFileInput: typeof import('vuetify/components')['VFileInput']
573
574
  VField: typeof import('vuetify/components')['VField']
574
575
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
575
- VFileInput: typeof import('vuetify/components')['VFileInput']
576
576
  VFooter: typeof import('vuetify/components')['VFooter']
577
- VImg: typeof import('vuetify/components')['VImg']
578
577
  VIcon: typeof import('vuetify/components')['VIcon']
579
578
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
580
579
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
581
580
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
582
581
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
583
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
584
582
  VInput: typeof import('vuetify/components')['VInput']
583
+ VImg: typeof import('vuetify/components')['VImg']
584
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
585
585
  VKbd: typeof import('vuetify/components')['VKbd']
586
586
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
587
587
  VItem: typeof import('vuetify/components')['VItem']
588
+ VLabel: typeof import('vuetify/components')['VLabel']
589
+ VMain: typeof import('vuetify/components')['VMain']
588
590
  VList: typeof import('vuetify/components')['VList']
589
591
  VListGroup: typeof import('vuetify/components')['VListGroup']
590
592
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -594,28 +596,25 @@ declare module '@vue/runtime-core' {
594
596
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
595
597
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
596
598
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
597
- VLabel: typeof import('vuetify/components')['VLabel']
598
599
  VMenu: typeof import('vuetify/components')['VMenu']
599
- VMain: typeof import('vuetify/components')['VMain']
600
600
  VMessages: typeof import('vuetify/components')['VMessages']
601
- VPagination: typeof import('vuetify/components')['VPagination']
602
601
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
603
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
604
602
  VOverlay: typeof import('vuetify/components')['VOverlay']
605
603
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
604
+ VPagination: typeof import('vuetify/components')['VPagination']
605
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
606
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
606
607
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
607
608
  VRating: typeof import('vuetify/components')['VRating']
608
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
609
+ VSheet: typeof import('vuetify/components')['VSheet']
610
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
609
611
  VSelect: typeof import('vuetify/components')['VSelect']
610
612
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
611
- VSheet: typeof import('vuetify/components')['VSheet']
613
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
614
+ VSlider: typeof import('vuetify/components')['VSlider']
612
615
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
613
616
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
614
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
615
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
616
617
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
617
- VSlider: typeof import('vuetify/components')['VSlider']
618
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
619
618
  VStepper: typeof import('vuetify/components')['VStepper']
620
619
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
621
620
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
@@ -624,13 +623,14 @@ declare module '@vue/runtime-core' {
624
623
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
625
624
  VSwitch: typeof import('vuetify/components')['VSwitch']
626
625
  VTable: typeof import('vuetify/components')['VTable']
626
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
627
+ VTextField: typeof import('vuetify/components')['VTextField']
627
628
  VTextarea: typeof import('vuetify/components')['VTextarea']
628
- VTabs: typeof import('vuetify/components')['VTabs']
629
- VTab: typeof import('vuetify/components')['VTab']
630
629
  VTimeline: typeof import('vuetify/components')['VTimeline']
631
630
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
631
+ VTabs: typeof import('vuetify/components')['VTabs']
632
+ VTab: typeof import('vuetify/components')['VTab']
632
633
  VTooltip: typeof import('vuetify/components')['VTooltip']
633
- VTextField: typeof import('vuetify/components')['VTextField']
634
634
  VToolbar: typeof import('vuetify/components')['VToolbar']
635
635
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
636
636
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
@@ -644,16 +644,18 @@ declare module '@vue/runtime-core' {
644
644
  VRow: typeof import('vuetify/components')['VRow']
645
645
  VSpacer: typeof import('vuetify/components')['VSpacer']
646
646
  VHover: typeof import('vuetify/components')['VHover']
647
- VLazy: typeof import('vuetify/components')['VLazy']
648
647
  VLayout: typeof import('vuetify/components')['VLayout']
649
648
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
649
+ VLazy: typeof import('vuetify/components')['VLazy']
650
650
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
651
651
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
652
652
  VParallax: typeof import('vuetify/components')['VParallax']
653
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
654
653
  VRadio: typeof import('vuetify/components')['VRadio']
654
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
655
655
  VResponsive: typeof import('vuetify/components')['VResponsive']
656
656
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
657
+ VValidation: typeof import('vuetify/components')['VValidation']
658
+ VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
657
659
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
658
660
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
659
661
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -670,16 +672,14 @@ declare module '@vue/runtime-core' {
670
672
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
671
673
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
672
674
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
673
- VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
674
- VValidation: typeof import('vuetify/components')['VValidation']
675
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
676
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
675
677
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
676
678
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
677
679
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
678
680
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
679
681
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
680
682
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
681
- VPicker: typeof import('vuetify/labs/components')['VPicker']
682
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
683
683
  VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
684
684
  }
685
685
  }
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.5.3-dev.2024-02-25",
4
+ "version": "3.5.3-dev.2024-03-03",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"