vuetify 3.5.12 → 3.5.13
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/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +122 -122
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +1923 -1923
- 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 +614 -614
- package/dist/vuetify.d.ts +40 -40
- 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/composables/router.mjs +1 -1
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +40 -40
- package/package.json +2 -2
|
@@ -14,7 +14,7 @@ export function useLink(props, attrs) {
|
|
|
14
14
|
const isClickable = computed(() => {
|
|
15
15
|
return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click');
|
|
16
16
|
});
|
|
17
|
-
if (typeof RouterLink === 'string') {
|
|
17
|
+
if (typeof RouterLink === 'string' || !('useLink' in RouterLink)) {
|
|
18
18
|
return {
|
|
19
19
|
isLink,
|
|
20
20
|
isClickable,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"router.mjs","names":["computed","nextTick","onScopeDispose","resolveDynamicComponent","toRef","deepEqual","getCurrentInstance","hasEvent","IN_BROWSER","propsFactory","useRoute","vm","proxy","$route","useRouter","$router","useLink","props","attrs","RouterLink","isLink","href","to","isClickable","value","linkProps","routerLink","link","undefined","route","navigate","isActive","exact","isExactActive","query","makeRouterProps","String","replace","Boolean","Object","inTransition","useBackButton","router","cb","popped","removeBefore","removeAfter","window","addEventListener","onPopstate","beforeEach","from","next","setTimeout","afterEach","removeEventListener","e","state","replaced"],"sources":["../../src/composables/router.tsx"],"sourcesContent":["// Utilities\nimport {\n computed,\n nextTick,\n onScopeDispose,\n resolveDynamicComponent,\n toRef,\n} from 'vue'\nimport { deepEqual, getCurrentInstance, hasEvent, IN_BROWSER, propsFactory } from '@/util'\n\n// Types\nimport type { ComputedRef, PropType, Ref, SetupContext } from 'vue'\nimport type {\n RouterLink as _RouterLink,\n useLink as _useLink,\n NavigationGuardNext,\n RouteLocationNormalizedLoaded,\n RouteLocationRaw,\n Router,\n UseLinkOptions,\n} from 'vue-router'\nimport type { EventProp } from '@/util'\n\nexport function useRoute (): Ref<RouteLocationNormalizedLoaded | undefined> {\n const vm = getCurrentInstance('useRoute')\n\n return computed(() => vm?.proxy?.$route)\n}\n\nexport function useRouter (): Router | undefined {\n return getCurrentInstance('useRouter')?.proxy?.$router\n}\n\nexport interface LinkProps {\n href: string | undefined\n replace: boolean | undefined\n to: RouteLocationRaw | undefined\n exact: boolean | undefined\n}\n\nexport interface LinkListeners {\n onClick?: EventProp | undefined\n onClickOnce?: EventProp | undefined\n}\n\nexport interface UseLink extends Omit<Partial<ReturnType<typeof _useLink>>, 'href'> {\n isLink: ComputedRef<boolean>\n isClickable: ComputedRef<boolean>\n href: Ref<string | undefined>\n}\n\nexport function useLink (props: LinkProps & LinkListeners, attrs: SetupContext['attrs']): UseLink {\n const RouterLink = resolveDynamicComponent('RouterLink') as typeof _RouterLink | string\n\n const isLink = computed(() => !!(props.href || props.to))\n const isClickable = computed(() => {\n return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click')\n })\n\n if (typeof RouterLink === 'string') {\n return {\n isLink,\n isClickable,\n href: toRef(props, 'href'),\n }\n }\n // vue-router useLink `to` prop needs to be reactive and useLink will crash if undefined\n const linkProps = computed(() => ({ ...props, to: props.to ? props.to : {} }))\n\n const routerLink = RouterLink.useLink(linkProps.value as UseLinkOptions)\n // Actual link needs to be undefined when to prop is not used\n const link = computed(() => props.to ? routerLink : undefined)\n const route = useRoute()\n\n return {\n isLink,\n isClickable,\n route: link.value?.route,\n navigate: link.value?.navigate,\n isActive: computed(() => {\n if (!link.value) return false\n if (!props.exact) return link.value.isActive?.value ?? false\n if (!route.value) return link.value.isExactActive?.value ?? false\n\n return link.value.isExactActive?.value && deepEqual(link.value.route.value.query, route.value.query)\n }),\n href: computed(() => props.to ? link.value?.route.value.href : props.href),\n }\n}\n\nexport const makeRouterProps = propsFactory({\n href: String,\n replace: Boolean,\n to: [String, Object] as PropType<RouteLocationRaw>,\n exact: Boolean,\n}, 'router')\n\nlet inTransition = false\nexport function useBackButton (router: Router | undefined, cb: (next: NavigationGuardNext) => void) {\n let popped = false\n let removeBefore: (() => void) | undefined\n let removeAfter: (() => void) | undefined\n\n if (IN_BROWSER) {\n nextTick(() => {\n window.addEventListener('popstate', onPopstate)\n removeBefore = router?.beforeEach((to, from, next) => {\n if (!inTransition) {\n setTimeout(() => popped ? cb(next) : next())\n } else {\n popped ? cb(next) : next()\n }\n inTransition = true\n })\n removeAfter = router?.afterEach(() => {\n inTransition = false\n })\n })\n onScopeDispose(() => {\n window.removeEventListener('popstate', onPopstate)\n removeBefore?.()\n removeAfter?.()\n })\n }\n\n function onPopstate (e: PopStateEvent) {\n if (e.state?.replaced) return\n\n popped = true\n setTimeout(() => (popped = false))\n }\n}\n"],"mappings":"AAAA;AACA,SACEA,QAAQ,EACRC,QAAQ,EACRC,cAAc,EACdC,uBAAuB,EACvBC,KAAK,QACA,KAAK;AAAA,SACHC,SAAS,EAAEC,kBAAkB,EAAEC,QAAQ,EAAEC,UAAU,EAAEC,YAAY,6BAE1E;AAaA,OAAO,SAASC,QAAQA,CAAA,EAAoD;EAC1E,MAAMC,EAAE,GAAGL,kBAAkB,CAAC,UAAU,CAAC;EAEzC,OAAON,QAAQ,CAAC,MAAMW,EAAE,EAAEC,KAAK,EAAEC,MAAM,CAAC;AAC1C;AAEA,OAAO,SAASC,SAASA,CAAA,EAAwB;EAC/C,OAAOR,kBAAkB,CAAC,WAAW,CAAC,EAAEM,KAAK,EAAEG,OAAO;AACxD;AAoBA,OAAO,SAASC,OAAOA,CAAEC,KAAgC,EAAEC,KAA4B,EAAW;EAChG,MAAMC,UAAU,GAAGhB,uBAAuB,CAAC,YAAY,CAAgC;EAEvF,MAAMiB,MAAM,GAAGpB,QAAQ,CAAC,MAAM,CAAC,EAAEiB,KAAK,CAACI,IAAI,IAAIJ,KAAK,CAACK,EAAE,CAAC,CAAC;EACzD,MAAMC,WAAW,GAAGvB,QAAQ,CAAC,MAAM;IACjC,OAAOoB,MAAM,EAAEI,KAAK,IAAIjB,QAAQ,CAACW,KAAK,EAAE,OAAO,CAAC,IAAIX,QAAQ,CAACU,KAAK,EAAE,OAAO,CAAC;EAC9E,CAAC,CAAC;EAEF,IAAI,OAAOE,UAAU,KAAK,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"router.mjs","names":["computed","nextTick","onScopeDispose","resolveDynamicComponent","toRef","deepEqual","getCurrentInstance","hasEvent","IN_BROWSER","propsFactory","useRoute","vm","proxy","$route","useRouter","$router","useLink","props","attrs","RouterLink","isLink","href","to","isClickable","value","linkProps","routerLink","link","undefined","route","navigate","isActive","exact","isExactActive","query","makeRouterProps","String","replace","Boolean","Object","inTransition","useBackButton","router","cb","popped","removeBefore","removeAfter","window","addEventListener","onPopstate","beforeEach","from","next","setTimeout","afterEach","removeEventListener","e","state","replaced"],"sources":["../../src/composables/router.tsx"],"sourcesContent":["// Utilities\nimport {\n computed,\n nextTick,\n onScopeDispose,\n resolveDynamicComponent,\n toRef,\n} from 'vue'\nimport { deepEqual, getCurrentInstance, hasEvent, IN_BROWSER, propsFactory } from '@/util'\n\n// Types\nimport type { ComputedRef, PropType, Ref, SetupContext } from 'vue'\nimport type {\n RouterLink as _RouterLink,\n useLink as _useLink,\n NavigationGuardNext,\n RouteLocationNormalizedLoaded,\n RouteLocationRaw,\n Router,\n UseLinkOptions,\n} from 'vue-router'\nimport type { EventProp } from '@/util'\n\nexport function useRoute (): Ref<RouteLocationNormalizedLoaded | undefined> {\n const vm = getCurrentInstance('useRoute')\n\n return computed(() => vm?.proxy?.$route)\n}\n\nexport function useRouter (): Router | undefined {\n return getCurrentInstance('useRouter')?.proxy?.$router\n}\n\nexport interface LinkProps {\n href: string | undefined\n replace: boolean | undefined\n to: RouteLocationRaw | undefined\n exact: boolean | undefined\n}\n\nexport interface LinkListeners {\n onClick?: EventProp | undefined\n onClickOnce?: EventProp | undefined\n}\n\nexport interface UseLink extends Omit<Partial<ReturnType<typeof _useLink>>, 'href'> {\n isLink: ComputedRef<boolean>\n isClickable: ComputedRef<boolean>\n href: Ref<string | undefined>\n}\n\nexport function useLink (props: LinkProps & LinkListeners, attrs: SetupContext['attrs']): UseLink {\n const RouterLink = resolveDynamicComponent('RouterLink') as typeof _RouterLink | string\n\n const isLink = computed(() => !!(props.href || props.to))\n const isClickable = computed(() => {\n return isLink?.value || hasEvent(attrs, 'click') || hasEvent(props, 'click')\n })\n\n if (typeof RouterLink === 'string' || !('useLink' in RouterLink)) {\n return {\n isLink,\n isClickable,\n href: toRef(props, 'href'),\n }\n }\n // vue-router useLink `to` prop needs to be reactive and useLink will crash if undefined\n const linkProps = computed(() => ({ ...props, to: props.to ? props.to : {} }))\n\n const routerLink = RouterLink.useLink(linkProps.value as UseLinkOptions)\n // Actual link needs to be undefined when to prop is not used\n const link = computed(() => props.to ? routerLink : undefined)\n const route = useRoute()\n\n return {\n isLink,\n isClickable,\n route: link.value?.route,\n navigate: link.value?.navigate,\n isActive: computed(() => {\n if (!link.value) return false\n if (!props.exact) return link.value.isActive?.value ?? false\n if (!route.value) return link.value.isExactActive?.value ?? false\n\n return link.value.isExactActive?.value && deepEqual(link.value.route.value.query, route.value.query)\n }),\n href: computed(() => props.to ? link.value?.route.value.href : props.href),\n }\n}\n\nexport const makeRouterProps = propsFactory({\n href: String,\n replace: Boolean,\n to: [String, Object] as PropType<RouteLocationRaw>,\n exact: Boolean,\n}, 'router')\n\nlet inTransition = false\nexport function useBackButton (router: Router | undefined, cb: (next: NavigationGuardNext) => void) {\n let popped = false\n let removeBefore: (() => void) | undefined\n let removeAfter: (() => void) | undefined\n\n if (IN_BROWSER) {\n nextTick(() => {\n window.addEventListener('popstate', onPopstate)\n removeBefore = router?.beforeEach((to, from, next) => {\n if (!inTransition) {\n setTimeout(() => popped ? cb(next) : next())\n } else {\n popped ? cb(next) : next()\n }\n inTransition = true\n })\n removeAfter = router?.afterEach(() => {\n inTransition = false\n })\n })\n onScopeDispose(() => {\n window.removeEventListener('popstate', onPopstate)\n removeBefore?.()\n removeAfter?.()\n })\n }\n\n function onPopstate (e: PopStateEvent) {\n if (e.state?.replaced) return\n\n popped = true\n setTimeout(() => (popped = false))\n }\n}\n"],"mappings":"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"}
|
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.5.
|
|
19
|
+
export const version = "3.5.13";
|
|
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
|
@@ -517,47 +517,40 @@ declare module '@vue/runtime-core' {
|
|
|
517
517
|
}
|
|
518
518
|
|
|
519
519
|
export interface GlobalComponents {
|
|
520
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
521
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
522
520
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
523
521
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
524
522
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
525
|
-
|
|
523
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
524
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
526
525
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
527
526
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
528
527
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
528
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
529
529
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
530
530
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
531
531
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
532
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
532
533
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
533
534
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
534
535
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
535
|
-
|
|
536
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
536
537
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
538
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
539
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
537
540
|
VCard: typeof import('vuetify/components')['VCard']
|
|
538
541
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
539
542
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
540
543
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
541
544
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
542
545
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
543
|
-
|
|
546
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
547
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
544
548
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
545
549
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
546
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
547
550
|
VChip: typeof import('vuetify/components')['VChip']
|
|
548
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
549
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
550
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
551
551
|
VCode: typeof import('vuetify/components')['VCode']
|
|
552
552
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
553
553
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
554
|
-
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']
|
|
561
554
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
562
555
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
563
556
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
@@ -566,28 +559,35 @@ declare module '@vue/runtime-core' {
|
|
|
566
559
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
567
560
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
568
561
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
569
|
-
|
|
570
|
-
|
|
562
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
563
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
564
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
565
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
566
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
567
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
568
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
571
569
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
572
570
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
573
571
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
574
572
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
573
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
574
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
575
575
|
VField: typeof import('vuetify/components')['VField']
|
|
576
576
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
577
577
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
578
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
579
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
580
578
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
581
579
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
582
580
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
583
581
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
584
582
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
583
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
584
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
585
585
|
VInput: typeof import('vuetify/components')['VInput']
|
|
586
|
-
|
|
586
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
587
587
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
588
588
|
VItem: typeof import('vuetify/components')['VItem']
|
|
589
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
589
590
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
590
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
591
591
|
VList: typeof import('vuetify/components')['VList']
|
|
592
592
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
593
593
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -598,25 +598,24 @@ declare module '@vue/runtime-core' {
|
|
|
598
598
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
599
599
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
600
600
|
VMain: typeof import('vuetify/components')['VMain']
|
|
601
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
602
601
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
602
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
603
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
603
604
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
604
605
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
605
|
-
|
|
606
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
606
607
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
607
608
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
608
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
609
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
610
609
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
610
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
611
611
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
612
612
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
613
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
614
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
615
613
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
616
|
-
|
|
617
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
614
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
618
615
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
619
616
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
617
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
618
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
620
619
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
621
620
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
622
621
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
@@ -625,27 +624,28 @@ declare module '@vue/runtime-core' {
|
|
|
625
624
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
626
625
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
627
626
|
VTab: typeof import('vuetify/components')['VTab']
|
|
628
|
-
|
|
629
|
-
|
|
627
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
628
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
630
629
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
630
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
631
631
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
632
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
633
632
|
VTable: typeof import('vuetify/components')['VTable']
|
|
633
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
|
634
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
634
635
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
635
636
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
636
637
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
637
638
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
638
639
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
639
|
-
|
|
640
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
640
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
641
641
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
642
642
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
643
643
|
VForm: typeof import('vuetify/components')['VForm']
|
|
644
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
644
645
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
645
646
|
VCol: typeof import('vuetify/components')['VCol']
|
|
646
647
|
VRow: typeof import('vuetify/components')['VRow']
|
|
647
648
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
648
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
649
649
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
650
650
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
651
651
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
@@ -656,7 +656,6 @@ declare module '@vue/runtime-core' {
|
|
|
656
656
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
657
657
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
658
658
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
659
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
660
659
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
661
660
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
662
661
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -674,23 +673,24 @@ declare module '@vue/runtime-core' {
|
|
|
674
673
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
675
674
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
676
675
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
676
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
677
677
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
678
678
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
679
679
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
680
680
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
681
681
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
682
682
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
683
|
-
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
684
683
|
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
684
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
685
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
685
686
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
686
687
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
687
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
688
688
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
689
689
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
690
690
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
691
691
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
692
|
-
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
693
692
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
693
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
694
694
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
695
695
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
696
696
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify",
|
|
3
3
|
"description": "Vue Material Component Framework",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.13",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John Leider",
|
|
7
7
|
"email": "john@vuetifyjs.com"
|
|
@@ -200,5 +200,5 @@
|
|
|
200
200
|
"attributes": "dist/json/attributes.json"
|
|
201
201
|
},
|
|
202
202
|
"web-types": "dist/json/web-types.json",
|
|
203
|
-
"gitHead": "
|
|
203
|
+
"gitHead": "f66d83f32315d9d2dbf40b963a3eccd8800590fb"
|
|
204
204
|
}
|