@vuetify/nightly 3.8.4-dev.2025-05-07 → 3.8.4-dev.2025-05-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/CHANGELOG.md +6 -3
- package/dist/json/attributes.json +3179 -3171
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +6010 -5991
- package/dist/vuetify-labs.cjs +47 -23
- package/dist/vuetify-labs.css +4945 -4940
- package/dist/vuetify-labs.d.ts +951 -932
- package/dist/vuetify-labs.esm.js +47 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +41 -12
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5435 -5430
- package/dist/vuetify.d.ts +512 -491
- package/dist/vuetify.esm.js +41 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +41 -12
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +599 -597
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +3 -3
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +57 -57
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/package.json +2 -1
@@ -0,0 +1,28 @@
|
|
1
|
+
import type { ComputedGetter, PropType } from 'vue';
|
2
|
+
import type { VIconBtnSizes } from "../labs/VIconBtn/VIconBtn.js";
|
3
|
+
export interface IconSizeProps {
|
4
|
+
iconSize?: VIconBtnSizes | number | string;
|
5
|
+
iconSizes: [VIconBtnSizes, number][];
|
6
|
+
}
|
7
|
+
export declare const makeIconSizeProps: <Defaults extends {
|
8
|
+
iconSize?: unknown;
|
9
|
+
iconSizes?: unknown;
|
10
|
+
} = {}>(defaults?: Defaults | undefined) => {
|
11
|
+
iconSize: unknown extends Defaults["iconSize"] ? PropType<string | number> : {
|
12
|
+
type: PropType<unknown extends Defaults["iconSize"] ? string | number : string | number | Defaults["iconSize"]>;
|
13
|
+
default: unknown extends Defaults["iconSize"] ? string | number : NonNullable<string | number> | Defaults["iconSize"];
|
14
|
+
};
|
15
|
+
iconSizes: unknown extends Defaults["iconSizes"] ? {
|
16
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
17
|
+
default: () => (string | number)[][];
|
18
|
+
} : Omit<{
|
19
|
+
type: PropType<[VIconBtnSizes, number][]>;
|
20
|
+
default: () => (string | number)[][];
|
21
|
+
}, "type" | "default"> & {
|
22
|
+
type: PropType<unknown extends Defaults["iconSizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["iconSizes"]>;
|
23
|
+
default: unknown extends Defaults["iconSizes"] ? [VIconBtnSizes, number][] : [VIconBtnSizes, number][] | Defaults["iconSizes"];
|
24
|
+
};
|
25
|
+
};
|
26
|
+
export declare function useIconSizes(props: IconSizeProps, fallback: ComputedGetter<VIconBtnSizes | number | string | undefined>): {
|
27
|
+
iconSize: import("vue").ComputedRef<number | VIconBtnSizes | undefined>;
|
28
|
+
};
|
@@ -0,0 +1,23 @@
|
|
1
|
+
// Utilities
|
2
|
+
import { computed } from 'vue';
|
3
|
+
import { propsFactory } from "../util/index.js"; // Types
|
4
|
+
// Types
|
5
|
+
// Composables
|
6
|
+
export const makeIconSizeProps = propsFactory({
|
7
|
+
iconSize: [Number, String],
|
8
|
+
iconSizes: {
|
9
|
+
type: Array,
|
10
|
+
default: () => [['x-small', 10], ['small', 16], ['default', 24], ['large', 28], ['x-large', 32]]
|
11
|
+
}
|
12
|
+
}, 'iconSize');
|
13
|
+
export function useIconSizes(props, fallback) {
|
14
|
+
const iconSize = computed(() => {
|
15
|
+
const iconSizeMap = new Map(props.iconSizes);
|
16
|
+
const _iconSize = props.iconSize ?? fallback() ?? 'default';
|
17
|
+
return iconSizeMap.has(_iconSize) ? iconSizeMap.get(_iconSize) : _iconSize;
|
18
|
+
});
|
19
|
+
return {
|
20
|
+
iconSize
|
21
|
+
};
|
22
|
+
}
|
23
|
+
//# sourceMappingURL=iconSizes.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"iconSizes.js","names":["computed","propsFactory","makeIconSizeProps","iconSize","Number","String","iconSizes","type","Array","default","useIconSizes","props","fallback","iconSizeMap","Map","_iconSize","has","get"],"sources":["../../src/composables/iconSizes.ts"],"sourcesContent":["// Utilities\nimport { computed } from 'vue'\nimport { propsFactory } from '@/util'\n\n// Types\nimport type { ComputedGetter, PropType } from 'vue'\nimport type { VIconBtnSizes } from '@/labs/VIconBtn/VIconBtn'\n\n// Types\nexport interface IconSizeProps {\n iconSize?: VIconBtnSizes | number | string\n iconSizes: [VIconBtnSizes, number][]\n}\n\n// Composables\nexport const makeIconSizeProps = propsFactory({\n iconSize: [Number, String] as PropType<VIconBtnSizes | number | string>,\n iconSizes: {\n type: Array as PropType<[VIconBtnSizes, number][]>,\n default: () => ([\n ['x-small', 10],\n ['small', 16],\n ['default', 24],\n ['large', 28],\n ['x-large', 32],\n ]),\n },\n}, 'iconSize')\n\nexport function useIconSizes (props: IconSizeProps, fallback: ComputedGetter<VIconBtnSizes | number | string | undefined>) {\n const iconSize = computed(() => {\n const iconSizeMap = new Map(props.iconSizes)\n const _iconSize = props.iconSize as VIconBtnSizes ?? fallback() ?? 'default'\n return iconSizeMap.has(_iconSize)\n ? iconSizeMap.get(_iconSize)\n : _iconSize\n })\n\n return { iconSize }\n}\n"],"mappings":"AAAA;AACA,SAASA,QAAQ,QAAQ,KAAK;AAAA,SACrBC,YAAY,4BAErB;AAIA;AAMA;AACA,OAAO,MAAMC,iBAAiB,GAAGD,YAAY,CAAC;EAC5CE,QAAQ,EAAE,CAACC,MAAM,EAAEC,MAAM,CAA8C;EACvEC,SAAS,EAAE;IACTC,IAAI,EAAEC,KAA4C;IAClDC,OAAO,EAAEA,CAAA,KAAO,CACd,CAAC,SAAS,EAAE,EAAE,CAAC,EACf,CAAC,OAAO,EAAE,EAAE,CAAC,EACb,CAAC,SAAS,EAAE,EAAE,CAAC,EACf,CAAC,OAAO,EAAE,EAAE,CAAC,EACb,CAAC,SAAS,EAAE,EAAE,CAAC;EAEnB;AACF,CAAC,EAAE,UAAU,CAAC;AAEd,OAAO,SAASC,YAAYA,CAAEC,KAAoB,EAAEC,QAAqE,EAAE;EACzH,MAAMT,QAAQ,GAAGH,QAAQ,CAAC,MAAM;IAC9B,MAAMa,WAAW,GAAG,IAAIC,GAAG,CAACH,KAAK,CAACL,SAAS,CAAC;IAC5C,MAAMS,SAAS,GAAGJ,KAAK,CAACR,QAAQ,IAAqBS,QAAQ,CAAC,CAAC,IAAI,SAAS;IAC5E,OAAOC,WAAW,CAACG,GAAG,CAACD,SAAS,CAAC,GAC7BF,WAAW,CAACI,GAAG,CAACF,SAAS,CAAC,GAC1BA,SAAS;EACf,CAAC,CAAC;EAEF,OAAO;IAAEZ;EAAS,CAAC;AACrB","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.4-dev.2025-05-
|
19
|
+
export const version = "3.8.4-dev.2025-05-13";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.js";
|
package/lib/framework.d.ts
CHANGED
@@ -2542,39 +2542,41 @@ declare module 'vue' {
|
|
2542
2542
|
$children?: VNodeChild
|
2543
2543
|
}
|
2544
2544
|
export interface GlobalComponents {
|
2545
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2546
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2547
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2548
2545
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2549
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2550
2546
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2547
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2548
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2549
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2550
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2551
2551
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2552
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2553
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2554
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2555
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2552
2556
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2553
2557
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2554
2558
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2555
2559
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2556
2560
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2557
2561
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2558
|
-
|
2559
|
-
|
2562
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2563
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2560
2564
|
VCard: typeof import('vuetify/components')['VCard']
|
2561
2565
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2562
2566
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2563
2567
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2564
2568
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2565
2569
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2566
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2567
2570
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2568
2571
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2569
|
-
|
2572
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2570
2573
|
VChip: typeof import('vuetify/components')['VChip']
|
2574
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2575
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2571
2576
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2572
2577
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2573
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2574
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2575
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2576
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2577
2578
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2579
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2578
2580
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2579
2581
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2580
2582
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2582,38 +2584,37 @@ declare module 'vue' {
|
|
2582
2584
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2583
2585
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2584
2586
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2587
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2588
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2585
2589
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2586
2590
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2587
2591
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2588
2592
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2589
2593
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2590
2594
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2591
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2592
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2593
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2594
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
2595
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2596
2595
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2597
2596
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2598
2597
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2599
2598
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2600
|
-
|
2599
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2600
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2601
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2601
2602
|
VField: typeof import('vuetify/components')['VField']
|
2602
2603
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2604
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2603
2605
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2604
2606
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2605
2607
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2606
2608
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2607
2609
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2610
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2608
2611
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2612
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2609
2613
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2610
2614
|
VItem: typeof import('vuetify/components')['VItem']
|
2611
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2612
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2613
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2614
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2615
2615
|
VInput: typeof import('vuetify/components')['VInput']
|
2616
|
-
|
2616
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2617
|
+
VMain: typeof import('vuetify/components')['VMain']
|
2617
2618
|
VList: typeof import('vuetify/components')['VList']
|
2618
2619
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2619
2620
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2623,26 +2624,25 @@ declare module 'vue' {
|
|
2623
2624
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2624
2625
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2625
2626
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2626
|
-
VMain: typeof import('vuetify/components')['VMain']
|
2627
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
2628
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2629
2627
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2630
|
-
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2631
2628
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2632
2629
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2633
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2634
2630
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2631
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2632
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2633
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2634
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2635
2635
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2636
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2637
2636
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2638
|
-
|
2639
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2640
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2637
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2641
2638
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2642
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2643
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2644
2639
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2645
2640
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2641
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2642
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2643
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2644
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2645
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2646
2646
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2647
2647
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2648
2648
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
@@ -2651,42 +2651,43 @@ declare module 'vue' {
|
|
2651
2651
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2652
2652
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2653
2653
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2654
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2654
2655
|
VTab: typeof import('vuetify/components')['VTab']
|
2655
2656
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2656
2657
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2657
2658
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2658
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2659
2659
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2660
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2661
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2662
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2663
2660
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2664
|
-
|
2661
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2665
2662
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2666
2663
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2667
2664
|
VWindow: typeof import('vuetify/components')['VWindow']
|
2668
2665
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2666
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2667
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2668
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2669
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2669
2670
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2670
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2671
2671
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2672
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2673
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2672
2674
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2673
2675
|
VCol: typeof import('vuetify/components')['VCol']
|
2674
2676
|
VRow: typeof import('vuetify/components')['VRow']
|
2675
2677
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2676
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2677
2678
|
VHover: typeof import('vuetify/components')['VHover']
|
2679
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2678
2680
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2679
2681
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2680
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
2681
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
2682
2682
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2683
2683
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2684
|
-
|
2685
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2684
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
2686
2685
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2687
|
-
|
2686
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2687
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
2688
2688
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2689
|
-
|
2689
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2690
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2690
2691
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2691
2692
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2692
2693
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
@@ -2705,26 +2706,25 @@ declare module 'vue' {
|
|
2705
2706
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2706
2707
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2707
2708
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2708
|
-
|
2709
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2709
2710
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2710
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2711
|
-
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2712
|
-
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2713
|
-
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2714
|
-
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2715
|
-
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2716
|
-
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2717
2711
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2712
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2713
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2718
2714
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2719
2715
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2720
2716
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2721
2717
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2722
2718
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2719
|
+
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2720
|
+
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2721
|
+
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2722
|
+
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2723
|
+
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2724
|
+
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2723
2725
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2724
2726
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2725
2727
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2726
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2727
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2728
2728
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2729
2729
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2730
2730
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
package/lib/framework.js
CHANGED