@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-29
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 +3 -2
- package/dist/json/attributes.json +24 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +7 -1
- package/dist/json/web-types.json +55 -1
- package/dist/vuetify-labs.css +3049 -3049
- package/dist/vuetify-labs.d.ts +36 -0
- package/dist/vuetify-labs.esm.js +8 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +8 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +293 -293
- package/dist/vuetify.d.ts +82 -46
- package/dist/vuetify.esm.js +8 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VGrid/VContainer.mjs +6 -1
- package/lib/components/VGrid/VContainer.mjs.map +1 -1
- package/lib/components/VGrid/index.d.mts +36 -0
- package/lib/components/index.d.mts +36 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/package.json +1 -1
@@ -4,6 +4,7 @@ import "./VGrid.css";
|
|
4
4
|
|
5
5
|
// Composables
|
6
6
|
import { makeComponentProps } from "../../composables/component.mjs";
|
7
|
+
import { makeDimensionProps, useDimension } from "../../composables/dimensions.mjs";
|
7
8
|
import { useRtl } from "../../composables/locale.mjs";
|
8
9
|
import { makeTagProps } from "../../composables/tag.mjs"; // Utilities
|
9
10
|
import { genericComponent, propsFactory, useRender } from "../../util/index.mjs";
|
@@ -13,6 +14,7 @@ export const makeVContainerProps = propsFactory({
|
|
13
14
|
default: false
|
14
15
|
},
|
15
16
|
...makeComponentProps(),
|
17
|
+
...makeDimensionProps(),
|
16
18
|
...makeTagProps()
|
17
19
|
}, 'VContainer');
|
18
20
|
export const VContainer = genericComponent()({
|
@@ -25,11 +27,14 @@ export const VContainer = genericComponent()({
|
|
25
27
|
const {
|
26
28
|
rtlClasses
|
27
29
|
} = useRtl();
|
30
|
+
const {
|
31
|
+
dimensionStyles
|
32
|
+
} = useDimension(props);
|
28
33
|
useRender(() => _createVNode(props.tag, {
|
29
34
|
"class": ['v-container', {
|
30
35
|
'v-container--fluid': props.fluid
|
31
36
|
}, rtlClasses.value, props.class],
|
32
|
-
"style": props.style
|
37
|
+
"style": [dimensionStyles.value, props.style]
|
33
38
|
}, slots));
|
34
39
|
return {};
|
35
40
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VContainer.mjs","names":["makeComponentProps","useRtl","makeTagProps","genericComponent","propsFactory","useRender","makeVContainerProps","fluid","type","Boolean","default","VContainer","name","props","setup","_ref","slots","rtlClasses","_createVNode","tag","value","class","style"],"sources":["../../../src/components/VGrid/VContainer.tsx"],"sourcesContent":["// Styles\nimport './VGrid.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { useRtl } from '@/composables/locale'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVContainerProps = propsFactory({\n fluid: {\n type: Boolean,\n default: false,\n },\n\n ...makeComponentProps(),\n ...makeTagProps(),\n}, 'VContainer')\n\nexport const VContainer = genericComponent()({\n name: 'VContainer',\n\n props: makeVContainerProps(),\n\n setup (props, { slots }) {\n const { rtlClasses } = useRtl()\n\n useRender(() => (\n <props.tag\n class={[\n 'v-container',\n { 'v-container--fluid': props.fluid },\n rtlClasses.value,\n props.class,\n ]}\n style={
|
1
|
+
{"version":3,"file":"VContainer.mjs","names":["makeComponentProps","makeDimensionProps","useDimension","useRtl","makeTagProps","genericComponent","propsFactory","useRender","makeVContainerProps","fluid","type","Boolean","default","VContainer","name","props","setup","_ref","slots","rtlClasses","dimensionStyles","_createVNode","tag","value","class","style"],"sources":["../../../src/components/VGrid/VContainer.tsx"],"sourcesContent":["// Styles\nimport './VGrid.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDimensionProps, useDimension } from '@/composables/dimensions'\nimport { useRtl } from '@/composables/locale'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVContainerProps = propsFactory({\n fluid: {\n type: Boolean,\n default: false,\n },\n\n ...makeComponentProps(),\n ...makeDimensionProps(),\n ...makeTagProps(),\n}, 'VContainer')\n\nexport const VContainer = genericComponent()({\n name: 'VContainer',\n\n props: makeVContainerProps(),\n\n setup (props, { slots }) {\n const { rtlClasses } = useRtl()\n const { dimensionStyles } = useDimension(props)\n\n useRender(() => (\n <props.tag\n class={[\n 'v-container',\n { 'v-container--fluid': props.fluid },\n rtlClasses.value,\n props.class,\n ]}\n style={[\n dimensionStyles.value,\n props.style,\n ]}\n v-slots={ slots }\n />\n ))\n\n return {}\n },\n})\n\nexport type VContainer = InstanceType<typeof VContainer>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,kBAAkB,EAAEC,YAAY;AAAA,SAChCC,MAAM;AAAA,SACNC,YAAY,qCAErB;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,mBAAmB,GAAGF,YAAY,CAAC;EAC9CG,KAAK,EAAE;IACLC,IAAI,EAAEC,OAAO;IACbC,OAAO,EAAE;EACX,CAAC;EAED,GAAGZ,kBAAkB,CAAC,CAAC;EACvB,GAAGC,kBAAkB,CAAC,CAAC;EACvB,GAAGG,YAAY,CAAC;AAClB,CAAC,EAAE,YAAY,CAAC;AAEhB,OAAO,MAAMS,UAAU,GAAGR,gBAAgB,CAAC,CAAC,CAAC;EAC3CS,IAAI,EAAE,YAAY;EAElBC,KAAK,EAAEP,mBAAmB,CAAC,CAAC;EAE5BQ,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAM;MAAEE;IAAW,CAAC,GAAGhB,MAAM,CAAC,CAAC;IAC/B,MAAM;MAAEiB;IAAgB,CAAC,GAAGlB,YAAY,CAACa,KAAK,CAAC;IAE/CR,SAAS,CAAC,MAAAc,YAAA,CAAAN,KAAA,CAAAO,GAAA;MAAA,SAEC,CACL,aAAa,EACb;QAAE,oBAAoB,EAAEP,KAAK,CAACN;MAAM,CAAC,EACrCU,UAAU,CAACI,KAAK,EAChBR,KAAK,CAACS,KAAK,CACZ;MAAA,SACM,CACLJ,eAAe,CAACG,KAAK,EACrBR,KAAK,CAACU,KAAK;IACZ,GACSP,KAAK,CAElB,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC","ignoreList":[]}
|
@@ -12,6 +12,12 @@ declare const VContainer: {
|
|
12
12
|
fluid: boolean;
|
13
13
|
} & {
|
14
14
|
class?: any;
|
15
|
+
width?: string | number | undefined;
|
16
|
+
height?: string | number | undefined;
|
17
|
+
maxHeight?: string | number | undefined;
|
18
|
+
maxWidth?: string | number | undefined;
|
19
|
+
minHeight?: string | number | undefined;
|
20
|
+
minWidth?: string | number | undefined;
|
15
21
|
} & {
|
16
22
|
$children?: vue.VNodeChild | {
|
17
23
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -27,6 +33,12 @@ declare const VContainer: {
|
|
27
33
|
fluid: boolean;
|
28
34
|
} & {
|
29
35
|
class?: any;
|
36
|
+
width?: string | number | undefined;
|
37
|
+
height?: string | number | undefined;
|
38
|
+
maxHeight?: string | number | undefined;
|
39
|
+
maxWidth?: string | number | undefined;
|
40
|
+
minHeight?: string | number | undefined;
|
41
|
+
minWidth?: string | number | undefined;
|
30
42
|
} & {
|
31
43
|
$children?: vue.VNodeChild | {
|
32
44
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -57,6 +69,12 @@ declare const VContainer: {
|
|
57
69
|
fluid: boolean;
|
58
70
|
} & {
|
59
71
|
class?: any;
|
72
|
+
width?: string | number | undefined;
|
73
|
+
height?: string | number | undefined;
|
74
|
+
maxHeight?: string | number | undefined;
|
75
|
+
maxWidth?: string | number | undefined;
|
76
|
+
minHeight?: string | number | undefined;
|
77
|
+
minWidth?: string | number | undefined;
|
60
78
|
} & {
|
61
79
|
$children?: vue.VNodeChild | {
|
62
80
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -80,6 +98,12 @@ declare const VContainer: {
|
|
80
98
|
fluid: boolean;
|
81
99
|
} & {
|
82
100
|
class?: any;
|
101
|
+
width?: string | number | undefined;
|
102
|
+
height?: string | number | undefined;
|
103
|
+
maxHeight?: string | number | undefined;
|
104
|
+
maxWidth?: string | number | undefined;
|
105
|
+
minHeight?: string | number | undefined;
|
106
|
+
minWidth?: string | number | undefined;
|
83
107
|
} & {
|
84
108
|
$children?: vue.VNodeChild | {
|
85
109
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -102,6 +126,12 @@ declare const VContainer: {
|
|
102
126
|
type: StringConstructor;
|
103
127
|
default: string;
|
104
128
|
};
|
129
|
+
height: (StringConstructor | NumberConstructor)[];
|
130
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
131
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
132
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
133
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
134
|
+
width: (StringConstructor | NumberConstructor)[];
|
105
135
|
class: vue.PropType<any>;
|
106
136
|
style: {
|
107
137
|
type: vue.PropType<vue.StyleValue>;
|
@@ -116,6 +146,12 @@ declare const VContainer: {
|
|
116
146
|
type: StringConstructor;
|
117
147
|
default: string;
|
118
148
|
};
|
149
|
+
height: (StringConstructor | NumberConstructor)[];
|
150
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
151
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
152
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
153
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
154
|
+
width: (StringConstructor | NumberConstructor)[];
|
119
155
|
class: vue.PropType<any>;
|
120
156
|
style: {
|
121
157
|
type: vue.PropType<vue.StyleValue>;
|
@@ -36745,6 +36745,12 @@ declare const VContainer: {
|
|
36745
36745
|
fluid: boolean;
|
36746
36746
|
} & {
|
36747
36747
|
class?: any;
|
36748
|
+
width?: string | number | undefined;
|
36749
|
+
height?: string | number | undefined;
|
36750
|
+
maxHeight?: string | number | undefined;
|
36751
|
+
maxWidth?: string | number | undefined;
|
36752
|
+
minHeight?: string | number | undefined;
|
36753
|
+
minWidth?: string | number | undefined;
|
36748
36754
|
} & {
|
36749
36755
|
$children?: vue.VNodeChild | {
|
36750
36756
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36760,6 +36766,12 @@ declare const VContainer: {
|
|
36760
36766
|
fluid: boolean;
|
36761
36767
|
} & {
|
36762
36768
|
class?: any;
|
36769
|
+
width?: string | number | undefined;
|
36770
|
+
height?: string | number | undefined;
|
36771
|
+
maxHeight?: string | number | undefined;
|
36772
|
+
maxWidth?: string | number | undefined;
|
36773
|
+
minHeight?: string | number | undefined;
|
36774
|
+
minWidth?: string | number | undefined;
|
36763
36775
|
} & {
|
36764
36776
|
$children?: vue.VNodeChild | {
|
36765
36777
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36790,6 +36802,12 @@ declare const VContainer: {
|
|
36790
36802
|
fluid: boolean;
|
36791
36803
|
} & {
|
36792
36804
|
class?: any;
|
36805
|
+
width?: string | number | undefined;
|
36806
|
+
height?: string | number | undefined;
|
36807
|
+
maxHeight?: string | number | undefined;
|
36808
|
+
maxWidth?: string | number | undefined;
|
36809
|
+
minHeight?: string | number | undefined;
|
36810
|
+
minWidth?: string | number | undefined;
|
36793
36811
|
} & {
|
36794
36812
|
$children?: vue.VNodeChild | {
|
36795
36813
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36813,6 +36831,12 @@ declare const VContainer: {
|
|
36813
36831
|
fluid: boolean;
|
36814
36832
|
} & {
|
36815
36833
|
class?: any;
|
36834
|
+
width?: string | number | undefined;
|
36835
|
+
height?: string | number | undefined;
|
36836
|
+
maxHeight?: string | number | undefined;
|
36837
|
+
maxWidth?: string | number | undefined;
|
36838
|
+
minHeight?: string | number | undefined;
|
36839
|
+
minWidth?: string | number | undefined;
|
36816
36840
|
} & {
|
36817
36841
|
$children?: vue.VNodeChild | {
|
36818
36842
|
default?: (() => vue.VNodeChild) | undefined;
|
@@ -36835,6 +36859,12 @@ declare const VContainer: {
|
|
36835
36859
|
type: StringConstructor;
|
36836
36860
|
default: string;
|
36837
36861
|
};
|
36862
|
+
height: (StringConstructor | NumberConstructor)[];
|
36863
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
36864
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
36865
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
36866
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
36867
|
+
width: (StringConstructor | NumberConstructor)[];
|
36838
36868
|
class: vue.PropType<any>;
|
36839
36869
|
style: {
|
36840
36870
|
type: vue.PropType<vue.StyleValue>;
|
@@ -36849,6 +36879,12 @@ declare const VContainer: {
|
|
36849
36879
|
type: StringConstructor;
|
36850
36880
|
default: string;
|
36851
36881
|
};
|
36882
|
+
height: (StringConstructor | NumberConstructor)[];
|
36883
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
36884
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
36885
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
36886
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
36887
|
+
width: (StringConstructor | NumberConstructor)[];
|
36852
36888
|
class: vue.PropType<any>;
|
36853
36889
|
style: {
|
36854
36890
|
type: vue.PropType<vue.StyleValue>;
|
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.6.3-dev.2024-05-
|
19
|
+
export const version = "3.6.3-dev.2024-05-29";
|
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
@@ -493,41 +493,41 @@ declare module '@vue/runtime-core' {
|
|
493
493
|
}
|
494
494
|
|
495
495
|
export interface GlobalComponents {
|
496
|
-
VApp: typeof import('vuetify/components')['VApp']
|
497
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
498
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
499
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
500
496
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
501
497
|
VAlert: typeof import('vuetify/components')['VAlert']
|
502
498
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
503
499
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
504
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
505
500
|
VBanner: typeof import('vuetify/components')['VBanner']
|
506
501
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
507
502
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
508
|
-
|
503
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
504
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
505
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
506
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
507
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
509
508
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
510
509
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
511
510
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
512
|
-
|
513
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
514
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
511
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
515
512
|
VCard: typeof import('vuetify/components')['VCard']
|
516
513
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
517
514
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
518
515
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
519
516
|
VCardText: typeof import('vuetify/components')['VCardText']
|
520
517
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
518
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
519
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
520
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
521
521
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
522
522
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
523
|
-
|
524
|
-
|
523
|
+
VApp: typeof import('vuetify/components')['VApp']
|
524
|
+
VChip: typeof import('vuetify/components')['VChip']
|
525
525
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
526
526
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
527
|
-
|
528
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
527
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
529
528
|
VCode: typeof import('vuetify/components')['VCode']
|
530
529
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
530
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
531
531
|
VCounter: typeof import('vuetify/components')['VCounter']
|
532
532
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
533
533
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -536,36 +536,36 @@ declare module '@vue/runtime-core' {
|
|
536
536
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
537
537
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
538
538
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
539
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
539
540
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
540
541
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
541
542
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
542
543
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
543
544
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
544
545
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
545
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
546
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
547
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
548
|
-
VField: typeof import('vuetify/components')['VField']
|
549
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
550
546
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
551
547
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
552
548
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
553
549
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
554
|
-
|
555
|
-
|
550
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
551
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
552
|
+
VField: typeof import('vuetify/components')['VField']
|
553
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
556
554
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
555
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
557
556
|
VIcon: typeof import('vuetify/components')['VIcon']
|
558
557
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
559
558
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
560
559
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
561
560
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
561
|
+
VFab: typeof import('vuetify/components')['VFab']
|
562
562
|
VImg: typeof import('vuetify/components')['VImg']
|
563
563
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
564
564
|
VItem: typeof import('vuetify/components')['VItem']
|
565
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
565
566
|
VInput: typeof import('vuetify/components')['VInput']
|
566
567
|
VLabel: typeof import('vuetify/components')['VLabel']
|
567
568
|
VKbd: typeof import('vuetify/components')['VKbd']
|
568
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
569
569
|
VList: typeof import('vuetify/components')['VList']
|
570
570
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
571
571
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -575,51 +575,51 @@ declare module '@vue/runtime-core' {
|
|
575
575
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
576
576
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
577
577
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
578
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
579
578
|
VMain: typeof import('vuetify/components')['VMain']
|
580
|
-
|
579
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
580
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
581
581
|
VMessages: typeof import('vuetify/components')['VMessages']
|
582
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
582
583
|
VPagination: typeof import('vuetify/components')['VPagination']
|
583
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
584
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
585
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
586
584
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
585
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
586
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
587
587
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
588
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
589
588
|
VRating: typeof import('vuetify/components')['VRating']
|
590
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
591
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
592
589
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
593
|
-
|
590
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
591
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
594
592
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
595
593
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
596
|
-
|
594
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
595
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
597
596
|
VStepper: typeof import('vuetify/components')['VStepper']
|
598
597
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
599
598
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
600
599
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
601
600
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
602
601
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
603
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
604
602
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
605
|
-
|
606
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
603
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
607
604
|
VTab: typeof import('vuetify/components')['VTab']
|
608
605
|
VTabs: typeof import('vuetify/components')['VTabs']
|
609
606
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
610
607
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
608
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
609
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
611
610
|
VTextField: typeof import('vuetify/components')['VTextField']
|
612
|
-
|
613
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
614
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
611
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
615
612
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
616
613
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
617
614
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
618
|
-
|
615
|
+
VTable: typeof import('vuetify/components')['VTable']
|
616
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
617
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
619
618
|
VWindow: typeof import('vuetify/components')['VWindow']
|
620
619
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
621
|
-
|
620
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
622
621
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
622
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
623
623
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
624
624
|
VForm: typeof import('vuetify/components')['VForm']
|
625
625
|
VContainer: typeof import('vuetify/components')['VContainer']
|
@@ -629,18 +629,18 @@ declare module '@vue/runtime-core' {
|
|
629
629
|
VHover: typeof import('vuetify/components')['VHover']
|
630
630
|
VLayout: typeof import('vuetify/components')['VLayout']
|
631
631
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
632
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
633
632
|
VLazy: typeof import('vuetify/components')['VLazy']
|
633
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
634
634
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
635
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
636
635
|
VRadio: typeof import('vuetify/components')['VRadio']
|
636
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
637
637
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
638
638
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
639
639
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
640
640
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
641
641
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
642
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
643
642
|
VValidation: typeof import('vuetify/components')['VValidation']
|
643
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
644
644
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
645
645
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
646
646
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -663,17 +663,17 @@ declare module '@vue/runtime-core' {
|
|
663
663
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
664
664
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
665
665
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
666
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
667
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
668
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
669
666
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
670
667
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
671
668
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
669
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
670
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
671
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
672
672
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
673
673
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
674
674
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
675
675
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
676
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
677
676
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
677
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
678
678
|
}
|
679
679
|
}
|