@vuetify/nightly 3.8.3-master.2025-05-04 → 3.8.3-master.2025-05-05
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -3
- package/dist/json/attributes.json +1465 -1465
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +156 -156
- package/dist/json/web-types.json +2570 -2570
- package/dist/vuetify-labs.cjs +4 -4
- package/dist/vuetify-labs.css +2897 -2897
- package/dist/vuetify-labs.d.ts +65 -321
- 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.cjs +4 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3093 -3093
- package/dist/vuetify.d.ts +65 -321
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +7 -134
- package/lib/components/VDataTable/VDataTableServer.js.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +7 -134
- package/lib/components/VDataTable/VDataTableVirtual.js.map +1 -1
- package/lib/components/VDialog/VDialog.js +1 -1
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +55 -55
- package/lib/framework.js +1 -1
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VDialog.js","names":["VDialogTransition","VDefaultsProvider","VOverlay","makeVOverlayProps","forwardRefs","useProxiedModel","useScopeId","mergeProps","nextTick","onBeforeUnmount","ref","watch","focusableChildren","genericComponent","IN_BROWSER","propsFactory","useRender","makeVDialogProps","fullscreen","Boolean","retainFocus","type","default","scrollable","origin","scrollStrategy","transition","component","zIndex","VDialog","name","props","emits","value","afterEnter","afterLeave","setup","_ref","emit","slots","isActive","scopeId","overlay","onFocusin","e","before","relatedTarget","after","target","contentEl","globalTop","document","includes","contains","focusable","length","firstElement","lastElement","focus","removeEventListener","val","addEventListener","immediate","onAfterEnter","activeElement","preventScroll","onAfterLeave","activatorEl","overlayProps","filterProps","activatorProps","contentProps","tabindex","_createVNode","_mergeProps","class","style","$event","height","undefined","width","maxHeight","maxWidth","activator","_len","arguments","args","Array","_key"],"sources":["../../../src/components/VDialog/VDialog.tsx"],"sourcesContent":["// Styles\nimport './VDialog.sass'\n\n// Components\nimport { VDialogTransition } from '@/components/transitions'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VOverlay } from '@/components/VOverlay'\nimport { makeVOverlayProps } from '@/components/VOverlay/VOverlay'\n\n// Composables\nimport { forwardRefs } from '@/composables/forwardRefs'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\n\n// Utilities\nimport { mergeProps, nextTick, onBeforeUnmount, ref, watch } from 'vue'\nimport { focusableChildren, genericComponent, IN_BROWSER, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { OverlaySlots } from '@/components/VOverlay/VOverlay'\n\nexport const makeVDialogProps = propsFactory({\n fullscreen: Boolean,\n retainFocus: {\n type: Boolean,\n default: true,\n },\n scrollable: Boolean,\n\n ...makeVOverlayProps({\n origin: 'center center' as const,\n scrollStrategy: 'block' as const,\n transition: { component: VDialogTransition },\n zIndex: 2400,\n }),\n}, 'VDialog')\n\nexport const VDialog = genericComponent<OverlaySlots>()({\n name: 'VDialog',\n\n props: makeVDialogProps(),\n\n emits: {\n 'update:modelValue': (value: boolean) => true,\n afterEnter: () => true,\n afterLeave: () => true,\n },\n\n setup (props, { emit, slots }) {\n const isActive = useProxiedModel(props, 'modelValue')\n const { scopeId } = useScopeId()\n\n const overlay = ref<VOverlay>()\n function onFocusin (e: FocusEvent) {\n const before = e.relatedTarget as HTMLElement | null\n const after = e.target as HTMLElement | null\n\n if (\n before !== after &&\n overlay.value?.contentEl &&\n // We're the topmost dialog\n overlay.value?.globalTop &&\n // It isn't the document or the dialog body\n ![document, overlay.value.contentEl].includes(after!) &&\n // It isn't inside the dialog body\n !overlay.value.contentEl.contains(after)\n ) {\n const focusable = focusableChildren(overlay.value.contentEl)\n\n if (!focusable.length) return\n\n const firstElement = focusable[0]\n const lastElement = focusable[focusable.length - 1]\n\n if (before === firstElement) {\n lastElement.focus()\n } else {\n firstElement.focus()\n }\n }\n }\n\n onBeforeUnmount(() => {\n document.removeEventListener('focusin', onFocusin)\n })\n\n if (IN_BROWSER) {\n watch(() => isActive.value && props.retainFocus, val => {\n val\n ? document.addEventListener('focusin', onFocusin)\n : document.removeEventListener('focusin', onFocusin)\n }, { immediate: true })\n }\n\n function onAfterEnter () {\n emit('afterEnter')\n if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {\n overlay.value.contentEl.focus({ preventScroll: true })\n }\n }\n\n function onAfterLeave () {\n emit('afterLeave')\n }\n\n watch(isActive, async val => {\n if (!val) {\n await nextTick()\n overlay.value!.activatorEl?.focus({ preventScroll: true })\n }\n })\n\n useRender(() => {\n const overlayProps = VOverlay.filterProps(props)\n const activatorProps = mergeProps({\n 'aria-haspopup': 'dialog',\n }, props.activatorProps)\n const contentProps = mergeProps({\n tabindex: -1,\n }, props.contentProps)\n\n return (\n <VOverlay\n ref={ overlay }\n class={[\n 'v-dialog',\n {\n 'v-dialog--fullscreen': props.fullscreen,\n 'v-dialog--scrollable': props.scrollable,\n },\n props.class,\n ]}\n style={ props.style }\n { ...overlayProps }\n v-model={ isActive.value }\n aria-modal=\"true\"\n activatorProps={ activatorProps }\n contentProps={ contentProps }\n height={ !props.fullscreen ? props.height : undefined }\n width={ !props.fullscreen ? props.width : undefined }\n maxHeight={ !props.fullscreen ? props.maxHeight : undefined }\n maxWidth={ !props.fullscreen ? props.maxWidth : undefined }\n role=\"dialog\"\n onAfterEnter={ onAfterEnter }\n onAfterLeave={ onAfterLeave }\n { ...scopeId }\n >\n {{\n activator: slots.activator,\n default: (...args) => (\n <VDefaultsProvider root=\"VDialog\">\n { slots.default?.(...args) }\n </VDefaultsProvider>\n ),\n }}\n </VOverlay>\n )\n })\n\n return forwardRefs({}, overlay)\n },\n})\n\nexport type VDialog = InstanceType<typeof VDialog>\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"VDialog.js","names":["VDialogTransition","VDefaultsProvider","VOverlay","makeVOverlayProps","forwardRefs","useProxiedModel","useScopeId","mergeProps","nextTick","onBeforeUnmount","ref","watch","focusableChildren","genericComponent","IN_BROWSER","propsFactory","useRender","makeVDialogProps","fullscreen","Boolean","retainFocus","type","default","scrollable","origin","scrollStrategy","transition","component","zIndex","VDialog","name","props","emits","value","afterEnter","afterLeave","setup","_ref","emit","slots","isActive","scopeId","overlay","onFocusin","e","before","relatedTarget","after","target","contentEl","globalTop","document","includes","contains","focusable","length","firstElement","lastElement","focus","removeEventListener","val","addEventListener","immediate","onAfterEnter","scrim","activeElement","preventScroll","onAfterLeave","activatorEl","overlayProps","filterProps","activatorProps","contentProps","tabindex","_createVNode","_mergeProps","class","style","$event","height","undefined","width","maxHeight","maxWidth","activator","_len","arguments","args","Array","_key"],"sources":["../../../src/components/VDialog/VDialog.tsx"],"sourcesContent":["// Styles\nimport './VDialog.sass'\n\n// Components\nimport { VDialogTransition } from '@/components/transitions'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VOverlay } from '@/components/VOverlay'\nimport { makeVOverlayProps } from '@/components/VOverlay/VOverlay'\n\n// Composables\nimport { forwardRefs } from '@/composables/forwardRefs'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\n\n// Utilities\nimport { mergeProps, nextTick, onBeforeUnmount, ref, watch } from 'vue'\nimport { focusableChildren, genericComponent, IN_BROWSER, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { OverlaySlots } from '@/components/VOverlay/VOverlay'\n\nexport const makeVDialogProps = propsFactory({\n fullscreen: Boolean,\n retainFocus: {\n type: Boolean,\n default: true,\n },\n scrollable: Boolean,\n\n ...makeVOverlayProps({\n origin: 'center center' as const,\n scrollStrategy: 'block' as const,\n transition: { component: VDialogTransition },\n zIndex: 2400,\n }),\n}, 'VDialog')\n\nexport const VDialog = genericComponent<OverlaySlots>()({\n name: 'VDialog',\n\n props: makeVDialogProps(),\n\n emits: {\n 'update:modelValue': (value: boolean) => true,\n afterEnter: () => true,\n afterLeave: () => true,\n },\n\n setup (props, { emit, slots }) {\n const isActive = useProxiedModel(props, 'modelValue')\n const { scopeId } = useScopeId()\n\n const overlay = ref<VOverlay>()\n function onFocusin (e: FocusEvent) {\n const before = e.relatedTarget as HTMLElement | null\n const after = e.target as HTMLElement | null\n\n if (\n before !== after &&\n overlay.value?.contentEl &&\n // We're the topmost dialog\n overlay.value?.globalTop &&\n // It isn't the document or the dialog body\n ![document, overlay.value.contentEl].includes(after!) &&\n // It isn't inside the dialog body\n !overlay.value.contentEl.contains(after)\n ) {\n const focusable = focusableChildren(overlay.value.contentEl)\n\n if (!focusable.length) return\n\n const firstElement = focusable[0]\n const lastElement = focusable[focusable.length - 1]\n\n if (before === firstElement) {\n lastElement.focus()\n } else {\n firstElement.focus()\n }\n }\n }\n\n onBeforeUnmount(() => {\n document.removeEventListener('focusin', onFocusin)\n })\n\n if (IN_BROWSER) {\n watch(() => isActive.value && props.retainFocus, val => {\n val\n ? document.addEventListener('focusin', onFocusin)\n : document.removeEventListener('focusin', onFocusin)\n }, { immediate: true })\n }\n\n function onAfterEnter () {\n emit('afterEnter')\n if (\n (props.scrim || props.retainFocus) &&\n overlay.value?.contentEl &&\n !overlay.value.contentEl.contains(document.activeElement)\n ) {\n overlay.value.contentEl.focus({ preventScroll: true })\n }\n }\n\n function onAfterLeave () {\n emit('afterLeave')\n }\n\n watch(isActive, async val => {\n if (!val) {\n await nextTick()\n overlay.value!.activatorEl?.focus({ preventScroll: true })\n }\n })\n\n useRender(() => {\n const overlayProps = VOverlay.filterProps(props)\n const activatorProps = mergeProps({\n 'aria-haspopup': 'dialog',\n }, props.activatorProps)\n const contentProps = mergeProps({\n tabindex: -1,\n }, props.contentProps)\n\n return (\n <VOverlay\n ref={ overlay }\n class={[\n 'v-dialog',\n {\n 'v-dialog--fullscreen': props.fullscreen,\n 'v-dialog--scrollable': props.scrollable,\n },\n props.class,\n ]}\n style={ props.style }\n { ...overlayProps }\n v-model={ isActive.value }\n aria-modal=\"true\"\n activatorProps={ activatorProps }\n contentProps={ contentProps }\n height={ !props.fullscreen ? props.height : undefined }\n width={ !props.fullscreen ? props.width : undefined }\n maxHeight={ !props.fullscreen ? props.maxHeight : undefined }\n maxWidth={ !props.fullscreen ? props.maxWidth : undefined }\n role=\"dialog\"\n onAfterEnter={ onAfterEnter }\n onAfterLeave={ onAfterLeave }\n { ...scopeId }\n >\n {{\n activator: slots.activator,\n default: (...args) => (\n <VDefaultsProvider root=\"VDialog\">\n { slots.default?.(...args) }\n </VDefaultsProvider>\n ),\n }}\n </VOverlay>\n )\n })\n\n return forwardRefs({}, overlay)\n },\n})\n\nexport type VDialog = InstanceType<typeof VDialog>\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.js
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.8.3-master.2025-05-
|
19
|
+
export const version = "3.8.3-master.2025-05-05";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2540,36 +2540,39 @@ declare module 'vue' {
|
|
2540
2540
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2541
2541
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2542
2542
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2543
|
-
|
2543
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2544
2544
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2545
2545
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2546
|
-
|
2546
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2547
2547
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2548
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2549
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2550
2548
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2551
2549
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2552
2550
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2553
|
-
|
2551
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2554
2552
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2555
2553
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2556
2554
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2555
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2556
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2557
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2558
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2559
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2560
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2561
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2562
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2563
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2564
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2565
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2566
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2557
2567
|
VCard: typeof import('vuetify/components')['VCard']
|
2558
2568
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2559
2569
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2560
2570
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2561
2571
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2562
2572
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2563
|
-
|
2564
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2565
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2566
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2567
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2568
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2569
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2570
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2573
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2571
2574
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2572
|
-
|
2575
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2573
2576
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2574
2577
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2575
2578
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2577,38 +2580,36 @@ declare module 'vue' {
|
|
2577
2580
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2578
2581
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2579
2582
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2580
|
-
|
2583
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2581
2584
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2582
2585
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2583
2586
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2584
2587
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2585
2588
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2586
2589
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2587
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2588
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2589
2590
|
VField: typeof import('vuetify/components')['VField']
|
2590
2591
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2591
|
-
|
2592
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2593
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2592
2594
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2593
2595
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2594
2596
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2595
2597
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2596
|
-
|
2598
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2597
2599
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2598
2600
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2599
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2600
2601
|
VInput: typeof import('vuetify/components')['VInput']
|
2601
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2602
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2603
2602
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2604
2603
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2605
2604
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2606
2605
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2607
2606
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2607
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2608
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2608
2609
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2609
2610
|
VItem: typeof import('vuetify/components')['VItem']
|
2610
2611
|
VLabel: typeof import('vuetify/components')['VLabel']
|
2611
|
-
|
2612
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2612
2613
|
VList: typeof import('vuetify/components')['VList']
|
2613
2614
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2614
2615
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2620,65 +2621,72 @@ declare module 'vue' {
|
|
2620
2621
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2621
2622
|
VMain: typeof import('vuetify/components')['VMain']
|
2622
2623
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2624
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2623
2625
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2624
2626
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2625
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2626
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2627
2627
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2628
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2629
2628
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2629
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2630
2630
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2631
|
-
|
2631
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2632
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2632
2633
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2634
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2633
2635
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2634
2636
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2635
2637
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2636
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2637
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2638
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2639
2638
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2639
|
+
VStepper: typeof import('vuetify/components')['VStepper']
|
2640
|
+
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2641
|
+
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2642
|
+
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2643
|
+
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2644
|
+
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2640
2645
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2641
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2642
2646
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2647
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2643
2648
|
VTab: typeof import('vuetify/components')['VTab']
|
2644
2649
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2645
2650
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2646
2651
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2647
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2648
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2649
2652
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2653
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2654
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2655
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2656
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2657
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2650
2658
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2651
2659
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2652
2660
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2653
2661
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2654
2662
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2655
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2656
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2657
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2658
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2659
2663
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2660
2664
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2665
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2666
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2661
2667
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2662
2668
|
VCol: typeof import('vuetify/components')['VCol']
|
2663
2669
|
VRow: typeof import('vuetify/components')['VRow']
|
2664
2670
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2665
2671
|
VHover: typeof import('vuetify/components')['VHover']
|
2666
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2667
2672
|
VLazy: typeof import('vuetify/components')['VLazy']
|
2668
2673
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2669
2674
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2670
2675
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2671
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
2672
2676
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2677
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
2673
2678
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2674
2679
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2675
2680
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2676
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2677
2681
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2682
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2683
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2678
2684
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2679
2685
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2686
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2687
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2680
2688
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2681
|
-
|
2689
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2682
2690
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2683
2691
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2684
2692
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2695,34 +2703,26 @@ declare module 'vue' {
|
|
2695
2703
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2696
2704
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2697
2705
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2698
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2699
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2700
|
-
VStepper: typeof import('vuetify/components')['VStepper']
|
2701
|
-
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2702
|
-
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2703
|
-
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2704
|
-
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2705
|
-
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2706
2706
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2707
2707
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2708
2708
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2709
2709
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2710
2710
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2711
2711
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2712
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2713
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2714
2712
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2715
2713
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2714
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2715
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2716
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2716
2717
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2717
2718
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2718
2719
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2719
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2721
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2722
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2723
2720
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2724
2721
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2725
2722
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2723
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2724
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2725
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2726
2726
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2727
2727
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2728
2728
|
}
|
package/lib/framework.js
CHANGED