@vuetify/nightly 3.8.7-dev.2025-05-30 → 3.8.7-dev.2025-06-03
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +3109 -3093
- package/dist/json/importMap-labs.json +38 -38
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5823 -5783
- package/dist/vuetify-labs.cjs +19 -7
- package/dist/vuetify-labs.css +4460 -4454
- package/dist/vuetify-labs.d.ts +332 -245
- package/dist/vuetify-labs.esm.js +19 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +19 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5196 -5190
- package/dist/vuetify.d.ts +332 -245
- package/dist/vuetify.esm.js +19 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VDataTable/VDataTable.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableServer.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +29 -0
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +2 -2
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/date.d.ts +2 -2
- package/lib/entry-bundler.d.ts +2 -2
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +78 -68
- package/lib/framework.js +1 -1
- package/lib/labs/entry-bundler.d.ts +2 -2
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -21,10 +21,10 @@ interface DateAdapter<T = unknown> {
|
|
21
21
|
startOfYear(date: T): T;
|
22
22
|
endOfYear(date: T): T;
|
23
23
|
isAfter(date: T, comparing: T): boolean;
|
24
|
-
isAfterDay(
|
24
|
+
isAfterDay(date: T, comparing: T): boolean;
|
25
25
|
isSameDay(date: T, comparing: T): boolean;
|
26
26
|
isSameMonth(date: T, comparing: T): boolean;
|
27
|
-
isSameYear(
|
27
|
+
isSameYear(date: T, comparing: T): boolean;
|
28
28
|
isBefore(date: T, comparing: T): boolean;
|
29
29
|
isEqual(date: T, comparing: T): boolean;
|
30
30
|
isValid(date: any): boolean;
|
@@ -3723,7 +3723,10 @@ declare const VToolbar: {
|
|
3723
3723
|
default: string;
|
3724
3724
|
validator: (v: any) => boolean;
|
3725
3725
|
};
|
3726
|
-
extended:
|
3726
|
+
extended: {
|
3727
|
+
type: BooleanConstructor;
|
3728
|
+
default: null;
|
3729
|
+
};
|
3727
3730
|
extensionHeight: {
|
3728
3731
|
type: (StringConstructor | NumberConstructor)[];
|
3729
3732
|
default: number;
|
@@ -3768,7 +3771,10 @@ declare const VToolbar: {
|
|
3768
3771
|
default: string;
|
3769
3772
|
validator: (v: any) => boolean;
|
3770
3773
|
};
|
3771
|
-
extended:
|
3774
|
+
extended: {
|
3775
|
+
type: BooleanConstructor;
|
3776
|
+
default: null;
|
3777
|
+
};
|
3772
3778
|
extensionHeight: {
|
3773
3779
|
type: (StringConstructor | NumberConstructor)[];
|
3774
3780
|
default: number;
|
@@ -4077,7 +4083,10 @@ declare const VAppBar: {
|
|
4077
4083
|
default: string;
|
4078
4084
|
validator: (v: any) => boolean;
|
4079
4085
|
};
|
4080
|
-
extended:
|
4086
|
+
extended: {
|
4087
|
+
type: BooleanConstructor;
|
4088
|
+
default: null;
|
4089
|
+
};
|
4081
4090
|
extensionHeight: {
|
4082
4091
|
type: (StringConstructor | NumberConstructor)[];
|
4083
4092
|
default: number;
|
@@ -4146,7 +4155,10 @@ declare const VAppBar: {
|
|
4146
4155
|
default: string;
|
4147
4156
|
validator: (v: any) => boolean;
|
4148
4157
|
};
|
4149
|
-
extended:
|
4158
|
+
extended: {
|
4159
|
+
type: BooleanConstructor;
|
4160
|
+
default: null;
|
4161
|
+
};
|
4150
4162
|
extensionHeight: {
|
4151
4163
|
type: (StringConstructor | NumberConstructor)[];
|
4152
4164
|
default: number;
|
@@ -36831,6 +36843,196 @@ declare const VDataTableRow: {
|
|
36831
36843
|
}>>;
|
36832
36844
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
36833
36845
|
|
36846
|
+
type Striped = null | 'odd' | 'even';
|
36847
|
+
declare const VTable: {
|
36848
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
36849
|
+
style: vue.StyleValue;
|
36850
|
+
tag: string | JSXComponent;
|
36851
|
+
density: Density;
|
36852
|
+
striped: Striped;
|
36853
|
+
hover: boolean;
|
36854
|
+
fixedHeader: boolean;
|
36855
|
+
fixedFooter: boolean;
|
36856
|
+
} & {
|
36857
|
+
height?: string | number | undefined;
|
36858
|
+
class?: any;
|
36859
|
+
theme?: string | undefined;
|
36860
|
+
} & {
|
36861
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
36862
|
+
default?: (() => vue.VNodeChild) | undefined;
|
36863
|
+
top?: (() => vue.VNodeChild) | undefined;
|
36864
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
36865
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
36866
|
+
};
|
36867
|
+
'v-slots'?: {
|
36868
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
36869
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
36870
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
36871
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
36872
|
+
} | undefined;
|
36873
|
+
} & {
|
36874
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
36875
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
36876
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
36877
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
36878
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
36879
|
+
style: vue.StyleValue;
|
36880
|
+
tag: string | JSXComponent;
|
36881
|
+
density: Density;
|
36882
|
+
striped: Striped;
|
36883
|
+
hover: boolean;
|
36884
|
+
fixedHeader: boolean;
|
36885
|
+
fixedFooter: boolean;
|
36886
|
+
}, true, {}, vue.SlotsType<Partial<{
|
36887
|
+
default: () => vue.VNode[];
|
36888
|
+
top: () => vue.VNode[];
|
36889
|
+
bottom: () => vue.VNode[];
|
36890
|
+
wrapper: () => vue.VNode[];
|
36891
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
36892
|
+
P: {};
|
36893
|
+
B: {};
|
36894
|
+
D: {};
|
36895
|
+
C: {};
|
36896
|
+
M: {};
|
36897
|
+
Defaults: {};
|
36898
|
+
}, {
|
36899
|
+
style: vue.StyleValue;
|
36900
|
+
tag: string | JSXComponent;
|
36901
|
+
density: Density;
|
36902
|
+
striped: Striped;
|
36903
|
+
hover: boolean;
|
36904
|
+
fixedHeader: boolean;
|
36905
|
+
fixedFooter: boolean;
|
36906
|
+
} & {
|
36907
|
+
height?: string | number | undefined;
|
36908
|
+
class?: any;
|
36909
|
+
theme?: string | undefined;
|
36910
|
+
} & {
|
36911
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
36912
|
+
default?: (() => vue.VNodeChild) | undefined;
|
36913
|
+
top?: (() => vue.VNodeChild) | undefined;
|
36914
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
36915
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
36916
|
+
};
|
36917
|
+
'v-slots'?: {
|
36918
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
36919
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
36920
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
36921
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
36922
|
+
} | undefined;
|
36923
|
+
} & {
|
36924
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
36925
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
36926
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
36927
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
36928
|
+
}, {}, {}, {}, {}, {
|
36929
|
+
style: vue.StyleValue;
|
36930
|
+
tag: string | JSXComponent;
|
36931
|
+
density: Density;
|
36932
|
+
striped: Striped;
|
36933
|
+
hover: boolean;
|
36934
|
+
fixedHeader: boolean;
|
36935
|
+
fixedFooter: boolean;
|
36936
|
+
}>;
|
36937
|
+
__isFragment?: never;
|
36938
|
+
__isTeleport?: never;
|
36939
|
+
__isSuspense?: never;
|
36940
|
+
} & vue.ComponentOptionsBase<{
|
36941
|
+
style: vue.StyleValue;
|
36942
|
+
tag: string | JSXComponent;
|
36943
|
+
density: Density;
|
36944
|
+
striped: Striped;
|
36945
|
+
hover: boolean;
|
36946
|
+
fixedHeader: boolean;
|
36947
|
+
fixedFooter: boolean;
|
36948
|
+
} & {
|
36949
|
+
height?: string | number | undefined;
|
36950
|
+
class?: any;
|
36951
|
+
theme?: string | undefined;
|
36952
|
+
} & {
|
36953
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
36954
|
+
default?: (() => vue.VNodeChild) | undefined;
|
36955
|
+
top?: (() => vue.VNodeChild) | undefined;
|
36956
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
36957
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
36958
|
+
};
|
36959
|
+
'v-slots'?: {
|
36960
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
36961
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
36962
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
36963
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
36964
|
+
} | undefined;
|
36965
|
+
} & {
|
36966
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
36967
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
36968
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
36969
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
36970
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
36971
|
+
style: vue.StyleValue;
|
36972
|
+
tag: string | JSXComponent;
|
36973
|
+
density: Density;
|
36974
|
+
striped: Striped;
|
36975
|
+
hover: boolean;
|
36976
|
+
fixedHeader: boolean;
|
36977
|
+
fixedFooter: boolean;
|
36978
|
+
}, {}, string, vue.SlotsType<Partial<{
|
36979
|
+
default: () => vue.VNode[];
|
36980
|
+
top: () => vue.VNode[];
|
36981
|
+
bottom: () => vue.VNode[];
|
36982
|
+
wrapper: () => vue.VNode[];
|
36983
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
36984
|
+
theme: StringConstructor;
|
36985
|
+
tag: {
|
36986
|
+
type: PropType<string | JSXComponent>;
|
36987
|
+
default: string;
|
36988
|
+
};
|
36989
|
+
density: {
|
36990
|
+
type: PropType<Density>;
|
36991
|
+
default: string;
|
36992
|
+
validator: (v: any) => boolean;
|
36993
|
+
};
|
36994
|
+
class: PropType<ClassValue>;
|
36995
|
+
style: {
|
36996
|
+
type: PropType<vue.StyleValue>;
|
36997
|
+
default: null;
|
36998
|
+
};
|
36999
|
+
fixedHeader: BooleanConstructor;
|
37000
|
+
fixedFooter: BooleanConstructor;
|
37001
|
+
height: (StringConstructor | NumberConstructor)[];
|
37002
|
+
hover: BooleanConstructor;
|
37003
|
+
striped: {
|
37004
|
+
type: PropType<Striped>;
|
37005
|
+
default: null;
|
37006
|
+
validator: (v: any) => boolean;
|
37007
|
+
};
|
37008
|
+
}, vue.ExtractPropTypes<{
|
37009
|
+
theme: StringConstructor;
|
37010
|
+
tag: {
|
37011
|
+
type: PropType<string | JSXComponent>;
|
37012
|
+
default: string;
|
37013
|
+
};
|
37014
|
+
density: {
|
37015
|
+
type: PropType<Density>;
|
37016
|
+
default: string;
|
37017
|
+
validator: (v: any) => boolean;
|
37018
|
+
};
|
37019
|
+
class: PropType<ClassValue>;
|
37020
|
+
style: {
|
37021
|
+
type: PropType<vue.StyleValue>;
|
37022
|
+
default: null;
|
37023
|
+
};
|
37024
|
+
fixedHeader: BooleanConstructor;
|
37025
|
+
fixedFooter: BooleanConstructor;
|
37026
|
+
height: (StringConstructor | NumberConstructor)[];
|
37027
|
+
hover: BooleanConstructor;
|
37028
|
+
striped: {
|
37029
|
+
type: PropType<Striped>;
|
37030
|
+
default: null;
|
37031
|
+
validator: (v: any) => boolean;
|
37032
|
+
};
|
37033
|
+
}>>;
|
37034
|
+
type VTable = InstanceType<typeof VTable>;
|
37035
|
+
|
36834
37036
|
type VDataTableGroupHeaderRowSlots = {
|
36835
37037
|
'data-table-group': {
|
36836
37038
|
item: Group;
|
@@ -37084,6 +37286,7 @@ declare const VDataTable: {
|
|
37084
37286
|
selectStrategy: "all" | "page" | "single";
|
37085
37287
|
valueComparator: typeof deepEqual;
|
37086
37288
|
density: Density;
|
37289
|
+
striped: Striped;
|
37087
37290
|
nextIcon: IconValue;
|
37088
37291
|
prevIcon: IconValue;
|
37089
37292
|
hideNoData: boolean;
|
@@ -37164,6 +37367,7 @@ declare const VDataTable: {
|
|
37164
37367
|
selectStrategy: "all" | "page" | "single";
|
37165
37368
|
valueComparator: typeof deepEqual;
|
37166
37369
|
density: Density;
|
37370
|
+
striped: Striped;
|
37167
37371
|
nextIcon: IconValue;
|
37168
37372
|
prevIcon: IconValue;
|
37169
37373
|
hideNoData: boolean;
|
@@ -37265,6 +37469,7 @@ declare const VDataTable: {
|
|
37265
37469
|
selectStrategy: "all" | "page" | "single";
|
37266
37470
|
valueComparator: typeof deepEqual;
|
37267
37471
|
density: Density;
|
37472
|
+
striped: Striped;
|
37268
37473
|
nextIcon: IconValue;
|
37269
37474
|
prevIcon: IconValue;
|
37270
37475
|
hideNoData: boolean;
|
@@ -37336,6 +37541,7 @@ declare const VDataTable: {
|
|
37336
37541
|
selectStrategy: "all" | "page" | "single";
|
37337
37542
|
valueComparator: typeof deepEqual;
|
37338
37543
|
density: Density;
|
37544
|
+
striped: Striped;
|
37339
37545
|
nextIcon: IconValue;
|
37340
37546
|
prevIcon: IconValue;
|
37341
37547
|
hideNoData: boolean;
|
@@ -37389,6 +37595,7 @@ declare const VDataTable: {
|
|
37389
37595
|
selectStrategy: "all" | "page" | "single";
|
37390
37596
|
valueComparator: typeof deepEqual;
|
37391
37597
|
density: Density;
|
37598
|
+
striped: Striped;
|
37392
37599
|
nextIcon: IconValue;
|
37393
37600
|
prevIcon: IconValue;
|
37394
37601
|
hideNoData: boolean;
|
@@ -37469,6 +37676,7 @@ declare const VDataTable: {
|
|
37469
37676
|
selectStrategy: "all" | "page" | "single";
|
37470
37677
|
valueComparator: typeof deepEqual;
|
37471
37678
|
density: Density;
|
37679
|
+
striped: Striped;
|
37472
37680
|
nextIcon: IconValue;
|
37473
37681
|
prevIcon: IconValue;
|
37474
37682
|
hideNoData: boolean;
|
@@ -37626,6 +37834,11 @@ declare const VDataTable: {
|
|
37626
37834
|
fixedFooter: BooleanConstructor;
|
37627
37835
|
height: (StringConstructor | NumberConstructor)[];
|
37628
37836
|
hover: BooleanConstructor;
|
37837
|
+
striped: {
|
37838
|
+
type: vue.PropType<Striped>;
|
37839
|
+
default: null;
|
37840
|
+
validator: (v: any) => boolean;
|
37841
|
+
};
|
37629
37842
|
loading: (StringConstructor | BooleanConstructor)[];
|
37630
37843
|
mobile: {
|
37631
37844
|
type: vue.PropType<boolean | null>;
|
@@ -37794,6 +38007,11 @@ declare const VDataTable: {
|
|
37794
38007
|
fixedFooter: BooleanConstructor;
|
37795
38008
|
height: (StringConstructor | NumberConstructor)[];
|
37796
38009
|
hover: BooleanConstructor;
|
38010
|
+
striped: {
|
38011
|
+
type: vue.PropType<Striped>;
|
38012
|
+
default: null;
|
38013
|
+
validator: (v: any) => boolean;
|
38014
|
+
};
|
37797
38015
|
loading: (StringConstructor | BooleanConstructor)[];
|
37798
38016
|
mobile: {
|
37799
38017
|
type: vue.PropType<boolean | null>;
|
@@ -38171,6 +38389,7 @@ declare const VDataTableVirtual: {
|
|
38171
38389
|
selectStrategy: "all" | "page" | "single";
|
38172
38390
|
valueComparator: typeof deepEqual;
|
38173
38391
|
density: Density;
|
38392
|
+
striped: Striped;
|
38174
38393
|
itemHeight: string | number;
|
38175
38394
|
itemKey: SelectItemKey;
|
38176
38395
|
hideNoData: boolean;
|
@@ -38232,6 +38451,7 @@ declare const VDataTableVirtual: {
|
|
38232
38451
|
selectStrategy: "all" | "page" | "single";
|
38233
38452
|
valueComparator: typeof deepEqual;
|
38234
38453
|
density: Density;
|
38454
|
+
striped: Striped;
|
38235
38455
|
itemHeight: string | number;
|
38236
38456
|
itemKey: SelectItemKey;
|
38237
38457
|
hideNoData: boolean;
|
@@ -38316,6 +38536,7 @@ declare const VDataTableVirtual: {
|
|
38316
38536
|
selectStrategy: "all" | "page" | "single";
|
38317
38537
|
valueComparator: typeof deepEqual;
|
38318
38538
|
density: Density;
|
38539
|
+
striped: Striped;
|
38319
38540
|
itemHeight: string | number;
|
38320
38541
|
itemKey: SelectItemKey;
|
38321
38542
|
hideNoData: boolean;
|
@@ -38371,6 +38592,7 @@ declare const VDataTableVirtual: {
|
|
38371
38592
|
selectStrategy: "all" | "page" | "single";
|
38372
38593
|
valueComparator: typeof deepEqual;
|
38373
38594
|
density: Density;
|
38595
|
+
striped: Striped;
|
38374
38596
|
itemHeight: string | number;
|
38375
38597
|
itemKey: SelectItemKey;
|
38376
38598
|
hideNoData: boolean;
|
@@ -38408,6 +38630,7 @@ declare const VDataTableVirtual: {
|
|
38408
38630
|
selectStrategy: "all" | "page" | "single";
|
38409
38631
|
valueComparator: typeof deepEqual;
|
38410
38632
|
density: Density;
|
38633
|
+
striped: Striped;
|
38411
38634
|
itemHeight: string | number;
|
38412
38635
|
itemKey: SelectItemKey;
|
38413
38636
|
hideNoData: boolean;
|
@@ -38469,6 +38692,7 @@ declare const VDataTableVirtual: {
|
|
38469
38692
|
selectStrategy: "all" | "page" | "single";
|
38470
38693
|
valueComparator: typeof deepEqual;
|
38471
38694
|
density: Density;
|
38695
|
+
striped: Striped;
|
38472
38696
|
itemHeight: string | number;
|
38473
38697
|
itemKey: SelectItemKey;
|
38474
38698
|
hideNoData: boolean;
|
@@ -38634,6 +38858,11 @@ declare const VDataTableVirtual: {
|
|
38634
38858
|
default: string;
|
38635
38859
|
validator: (v: any) => boolean;
|
38636
38860
|
};
|
38861
|
+
striped: {
|
38862
|
+
type: vue.PropType<Striped>;
|
38863
|
+
default: null;
|
38864
|
+
validator: (v: any) => boolean;
|
38865
|
+
};
|
38637
38866
|
hideNoData: BooleanConstructor;
|
38638
38867
|
hover: BooleanConstructor;
|
38639
38868
|
lastFixed: BooleanConstructor;
|
@@ -38750,6 +38979,11 @@ declare const VDataTableVirtual: {
|
|
38750
38979
|
default: string;
|
38751
38980
|
validator: (v: any) => boolean;
|
38752
38981
|
};
|
38982
|
+
striped: {
|
38983
|
+
type: vue.PropType<Striped>;
|
38984
|
+
default: null;
|
38985
|
+
validator: (v: any) => boolean;
|
38986
|
+
};
|
38753
38987
|
hideNoData: BooleanConstructor;
|
38754
38988
|
hover: BooleanConstructor;
|
38755
38989
|
lastFixed: BooleanConstructor;
|
@@ -38793,6 +39027,7 @@ declare const VDataTableServer: {
|
|
38793
39027
|
selectStrategy: "all" | "page" | "single";
|
38794
39028
|
valueComparator: typeof deepEqual;
|
38795
39029
|
density: Density;
|
39030
|
+
striped: Striped;
|
38796
39031
|
nextIcon: IconValue;
|
38797
39032
|
prevIcon: IconValue;
|
38798
39033
|
hideNoData: boolean;
|
@@ -38867,6 +39102,7 @@ declare const VDataTableServer: {
|
|
38867
39102
|
selectStrategy: "all" | "page" | "single";
|
38868
39103
|
valueComparator: typeof deepEqual;
|
38869
39104
|
density: Density;
|
39105
|
+
striped: Striped;
|
38870
39106
|
nextIcon: IconValue;
|
38871
39107
|
prevIcon: IconValue;
|
38872
39108
|
hideNoData: boolean;
|
@@ -38966,6 +39202,7 @@ declare const VDataTableServer: {
|
|
38966
39202
|
selectStrategy: "all" | "page" | "single";
|
38967
39203
|
valueComparator: typeof deepEqual;
|
38968
39204
|
density: Density;
|
39205
|
+
striped: Striped;
|
38969
39206
|
nextIcon: IconValue;
|
38970
39207
|
prevIcon: IconValue;
|
38971
39208
|
hideNoData: boolean;
|
@@ -39032,6 +39269,7 @@ declare const VDataTableServer: {
|
|
39032
39269
|
selectStrategy: "all" | "page" | "single";
|
39033
39270
|
valueComparator: typeof deepEqual;
|
39034
39271
|
density: Density;
|
39272
|
+
striped: Striped;
|
39035
39273
|
nextIcon: IconValue;
|
39036
39274
|
prevIcon: IconValue;
|
39037
39275
|
hideNoData: boolean;
|
@@ -39083,6 +39321,7 @@ declare const VDataTableServer: {
|
|
39083
39321
|
selectStrategy: "all" | "page" | "single";
|
39084
39322
|
valueComparator: typeof deepEqual;
|
39085
39323
|
density: Density;
|
39324
|
+
striped: Striped;
|
39086
39325
|
nextIcon: IconValue;
|
39087
39326
|
prevIcon: IconValue;
|
39088
39327
|
hideNoData: boolean;
|
@@ -39157,6 +39396,7 @@ declare const VDataTableServer: {
|
|
39157
39396
|
selectStrategy: "all" | "page" | "single";
|
39158
39397
|
valueComparator: typeof deepEqual;
|
39159
39398
|
density: Density;
|
39399
|
+
striped: Striped;
|
39160
39400
|
nextIcon: IconValue;
|
39161
39401
|
prevIcon: IconValue;
|
39162
39402
|
hideNoData: boolean;
|
@@ -39306,6 +39546,11 @@ declare const VDataTableServer: {
|
|
39306
39546
|
fixedFooter: BooleanConstructor;
|
39307
39547
|
height: (StringConstructor | NumberConstructor)[];
|
39308
39548
|
hover: BooleanConstructor;
|
39549
|
+
striped: {
|
39550
|
+
type: vue.PropType<Striped>;
|
39551
|
+
default: null;
|
39552
|
+
validator: (v: any) => boolean;
|
39553
|
+
};
|
39309
39554
|
loading: (StringConstructor | BooleanConstructor)[];
|
39310
39555
|
mobile: {
|
39311
39556
|
type: vue.PropType<boolean | null>;
|
@@ -39470,6 +39715,11 @@ declare const VDataTableServer: {
|
|
39470
39715
|
fixedFooter: BooleanConstructor;
|
39471
39716
|
height: (StringConstructor | NumberConstructor)[];
|
39472
39717
|
hover: BooleanConstructor;
|
39718
|
+
striped: {
|
39719
|
+
type: vue.PropType<Striped>;
|
39720
|
+
default: null;
|
39721
|
+
validator: (v: any) => boolean;
|
39722
|
+
};
|
39473
39723
|
loading: (StringConstructor | BooleanConstructor)[];
|
39474
39724
|
mobile: {
|
39475
39725
|
type: vue.PropType<boolean | null>;
|
@@ -77243,179 +77493,6 @@ declare const VTabsWindowItem: {
|
|
77243
77493
|
}>>;
|
77244
77494
|
type VTabsWindowItem = InstanceType<typeof VTabsWindowItem>;
|
77245
77495
|
|
77246
|
-
declare const VTable: {
|
77247
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
77248
|
-
style: vue.StyleValue;
|
77249
|
-
tag: string | JSXComponent;
|
77250
|
-
density: Density;
|
77251
|
-
hover: boolean;
|
77252
|
-
fixedHeader: boolean;
|
77253
|
-
fixedFooter: boolean;
|
77254
|
-
} & {
|
77255
|
-
height?: string | number | undefined;
|
77256
|
-
class?: any;
|
77257
|
-
theme?: string | undefined;
|
77258
|
-
} & {
|
77259
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77260
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77261
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77262
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77263
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77264
|
-
};
|
77265
|
-
'v-slots'?: {
|
77266
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77267
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77268
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77269
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77270
|
-
} | undefined;
|
77271
|
-
} & {
|
77272
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77273
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77274
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77275
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77276
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
77277
|
-
style: vue.StyleValue;
|
77278
|
-
tag: string | JSXComponent;
|
77279
|
-
density: Density;
|
77280
|
-
hover: boolean;
|
77281
|
-
fixedHeader: boolean;
|
77282
|
-
fixedFooter: boolean;
|
77283
|
-
}, true, {}, vue.SlotsType<Partial<{
|
77284
|
-
default: () => vue.VNode[];
|
77285
|
-
top: () => vue.VNode[];
|
77286
|
-
bottom: () => vue.VNode[];
|
77287
|
-
wrapper: () => vue.VNode[];
|
77288
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
77289
|
-
P: {};
|
77290
|
-
B: {};
|
77291
|
-
D: {};
|
77292
|
-
C: {};
|
77293
|
-
M: {};
|
77294
|
-
Defaults: {};
|
77295
|
-
}, {
|
77296
|
-
style: vue.StyleValue;
|
77297
|
-
tag: string | JSXComponent;
|
77298
|
-
density: Density;
|
77299
|
-
hover: boolean;
|
77300
|
-
fixedHeader: boolean;
|
77301
|
-
fixedFooter: boolean;
|
77302
|
-
} & {
|
77303
|
-
height?: string | number | undefined;
|
77304
|
-
class?: any;
|
77305
|
-
theme?: string | undefined;
|
77306
|
-
} & {
|
77307
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77308
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77309
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77310
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77311
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77312
|
-
};
|
77313
|
-
'v-slots'?: {
|
77314
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77315
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77316
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77317
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77318
|
-
} | undefined;
|
77319
|
-
} & {
|
77320
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77321
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77322
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77323
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77324
|
-
}, {}, {}, {}, {}, {
|
77325
|
-
style: vue.StyleValue;
|
77326
|
-
tag: string | JSXComponent;
|
77327
|
-
density: Density;
|
77328
|
-
hover: boolean;
|
77329
|
-
fixedHeader: boolean;
|
77330
|
-
fixedFooter: boolean;
|
77331
|
-
}>;
|
77332
|
-
__isFragment?: never;
|
77333
|
-
__isTeleport?: never;
|
77334
|
-
__isSuspense?: never;
|
77335
|
-
} & vue.ComponentOptionsBase<{
|
77336
|
-
style: vue.StyleValue;
|
77337
|
-
tag: string | JSXComponent;
|
77338
|
-
density: Density;
|
77339
|
-
hover: boolean;
|
77340
|
-
fixedHeader: boolean;
|
77341
|
-
fixedFooter: boolean;
|
77342
|
-
} & {
|
77343
|
-
height?: string | number | undefined;
|
77344
|
-
class?: any;
|
77345
|
-
theme?: string | undefined;
|
77346
|
-
} & {
|
77347
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77348
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77349
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77350
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77351
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77352
|
-
};
|
77353
|
-
'v-slots'?: {
|
77354
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77355
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77356
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77357
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77358
|
-
} | undefined;
|
77359
|
-
} & {
|
77360
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77361
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77362
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77363
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77364
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
77365
|
-
style: vue.StyleValue;
|
77366
|
-
tag: string | JSXComponent;
|
77367
|
-
density: Density;
|
77368
|
-
hover: boolean;
|
77369
|
-
fixedHeader: boolean;
|
77370
|
-
fixedFooter: boolean;
|
77371
|
-
}, {}, string, vue.SlotsType<Partial<{
|
77372
|
-
default: () => vue.VNode[];
|
77373
|
-
top: () => vue.VNode[];
|
77374
|
-
bottom: () => vue.VNode[];
|
77375
|
-
wrapper: () => vue.VNode[];
|
77376
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
77377
|
-
theme: StringConstructor;
|
77378
|
-
tag: {
|
77379
|
-
type: vue.PropType<string | JSXComponent>;
|
77380
|
-
default: string;
|
77381
|
-
};
|
77382
|
-
density: {
|
77383
|
-
type: vue.PropType<Density>;
|
77384
|
-
default: string;
|
77385
|
-
validator: (v: any) => boolean;
|
77386
|
-
};
|
77387
|
-
class: vue.PropType<ClassValue>;
|
77388
|
-
style: {
|
77389
|
-
type: vue.PropType<vue.StyleValue>;
|
77390
|
-
default: null;
|
77391
|
-
};
|
77392
|
-
fixedHeader: BooleanConstructor;
|
77393
|
-
fixedFooter: BooleanConstructor;
|
77394
|
-
height: (StringConstructor | NumberConstructor)[];
|
77395
|
-
hover: BooleanConstructor;
|
77396
|
-
}, vue.ExtractPropTypes<{
|
77397
|
-
theme: StringConstructor;
|
77398
|
-
tag: {
|
77399
|
-
type: vue.PropType<string | JSXComponent>;
|
77400
|
-
default: string;
|
77401
|
-
};
|
77402
|
-
density: {
|
77403
|
-
type: vue.PropType<Density>;
|
77404
|
-
default: string;
|
77405
|
-
validator: (v: any) => boolean;
|
77406
|
-
};
|
77407
|
-
class: vue.PropType<ClassValue>;
|
77408
|
-
style: {
|
77409
|
-
type: vue.PropType<vue.StyleValue>;
|
77410
|
-
default: null;
|
77411
|
-
};
|
77412
|
-
fixedHeader: BooleanConstructor;
|
77413
|
-
fixedFooter: BooleanConstructor;
|
77414
|
-
height: (StringConstructor | NumberConstructor)[];
|
77415
|
-
hover: BooleanConstructor;
|
77416
|
-
}>>;
|
77417
|
-
type VTable = InstanceType<typeof VTable>;
|
77418
|
-
|
77419
77496
|
declare const VTextarea: {
|
77420
77497
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
77421
77498
|
flat: boolean;
|
@@ -86180,10 +86257,10 @@ declare const createVuetify: {
|
|
86180
86257
|
startOfYear: (date: unknown) => unknown;
|
86181
86258
|
endOfYear: (date: unknown) => unknown;
|
86182
86259
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
86183
|
-
isAfterDay: (
|
86260
|
+
isAfterDay: (date: unknown, comparing: unknown) => boolean;
|
86184
86261
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
86185
86262
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
86186
|
-
isSameYear: (
|
86263
|
+
isSameYear: (date: unknown, comparing: unknown) => boolean;
|
86187
86264
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
86188
86265
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
86189
86266
|
isValid: (date: any) => boolean;
|
@@ -86256,37 +86333,37 @@ declare module 'vue' {
|
|
86256
86333
|
export interface GlobalComponents {
|
86257
86334
|
VApp: VApp
|
86258
86335
|
VAutocomplete: VAutocomplete
|
86259
|
-
|
86336
|
+
VAppBar: VAppBar
|
86337
|
+
VAppBarNavIcon: VAppBarNavIcon
|
86338
|
+
VAppBarTitle: VAppBarTitle
|
86339
|
+
VBadge: VBadge
|
86260
86340
|
VAlert: VAlert
|
86261
86341
|
VAlertTitle: VAlertTitle
|
86262
|
-
|
86342
|
+
VBottomNavigation: VBottomNavigation
|
86343
|
+
VAvatar: VAvatar
|
86344
|
+
VBtn: VBtn
|
86263
86345
|
VBanner: VBanner
|
86264
86346
|
VBannerActions: VBannerActions
|
86265
86347
|
VBannerText: VBannerText
|
86266
|
-
VBottomSheet: VBottomSheet
|
86267
|
-
VBottomNavigation: VBottomNavigation
|
86268
86348
|
VBtnGroup: VBtnGroup
|
86269
|
-
|
86270
|
-
|
86271
|
-
VBreadcrumbs: VBreadcrumbs
|
86272
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
86273
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
86274
|
-
VBtnToggle: VBtnToggle
|
86275
|
-
VBtn: VBtn
|
86276
|
-
VChip: VChip
|
86349
|
+
VCheckbox: VCheckbox
|
86350
|
+
VCheckboxBtn: VCheckboxBtn
|
86277
86351
|
VCard: VCard
|
86278
86352
|
VCardActions: VCardActions
|
86279
86353
|
VCardItem: VCardItem
|
86280
86354
|
VCardSubtitle: VCardSubtitle
|
86281
86355
|
VCardText: VCardText
|
86282
86356
|
VCardTitle: VCardTitle
|
86357
|
+
VBreadcrumbs: VBreadcrumbs
|
86358
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
86359
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
86360
|
+
VChipGroup: VChipGroup
|
86361
|
+
VCarousel: VCarousel
|
86362
|
+
VCarouselItem: VCarouselItem
|
86363
|
+
VChip: VChip
|
86283
86364
|
VCode: VCode
|
86284
|
-
VCheckbox: VCheckbox
|
86285
|
-
VCheckboxBtn: VCheckboxBtn
|
86286
86365
|
VColorPicker: VColorPicker
|
86287
|
-
VChipGroup: VChipGroup
|
86288
86366
|
VCombobox: VCombobox
|
86289
|
-
VCounter: VCounter
|
86290
86367
|
VDataTable: VDataTable
|
86291
86368
|
VDataTableHeaders: VDataTableHeaders
|
86292
86369
|
VDataTableFooter: VDataTableFooter
|
@@ -86294,36 +86371,39 @@ declare module 'vue' {
|
|
86294
86371
|
VDataTableRow: VDataTableRow
|
86295
86372
|
VDataTableVirtual: VDataTableVirtual
|
86296
86373
|
VDataTableServer: VDataTableServer
|
86374
|
+
VCounter: VCounter
|
86297
86375
|
VDatePicker: VDatePicker
|
86298
86376
|
VDatePickerControls: VDatePickerControls
|
86299
86377
|
VDatePickerHeader: VDatePickerHeader
|
86300
86378
|
VDatePickerMonth: VDatePickerMonth
|
86301
86379
|
VDatePickerMonths: VDatePickerMonths
|
86302
86380
|
VDatePickerYears: VDatePickerYears
|
86303
|
-
|
86381
|
+
VBtnToggle: VBtnToggle
|
86304
86382
|
VDivider: VDivider
|
86383
|
+
VDialog: VDialog
|
86384
|
+
VEmptyState: VEmptyState
|
86305
86385
|
VField: VField
|
86306
86386
|
VFieldLabel: VFieldLabel
|
86307
|
-
VEmptyState: VEmptyState
|
86308
|
-
VFab: VFab
|
86309
86387
|
VExpansionPanels: VExpansionPanels
|
86310
86388
|
VExpansionPanel: VExpansionPanel
|
86311
86389
|
VExpansionPanelText: VExpansionPanelText
|
86312
86390
|
VExpansionPanelTitle: VExpansionPanelTitle
|
86391
|
+
VBottomSheet: VBottomSheet
|
86392
|
+
VFab: VFab
|
86313
86393
|
VFileInput: VFileInput
|
86394
|
+
VFooter: VFooter
|
86395
|
+
VInfiniteScroll: VInfiniteScroll
|
86396
|
+
VImg: VImg
|
86314
86397
|
VIcon: VIcon
|
86315
86398
|
VComponentIcon: VComponentIcon
|
86316
86399
|
VSvgIcon: VSvgIcon
|
86317
86400
|
VLigatureIcon: VLigatureIcon
|
86318
86401
|
VClassIcon: VClassIcon
|
86319
|
-
|
86320
|
-
|
86402
|
+
VKbd: VKbd
|
86403
|
+
VMain: VMain
|
86321
86404
|
VInput: VInput
|
86322
|
-
VImg: VImg
|
86323
86405
|
VItemGroup: VItemGroup
|
86324
86406
|
VItem: VItem
|
86325
|
-
VLabel: VLabel
|
86326
|
-
VKbd: VKbd
|
86327
86407
|
VList: VList
|
86328
86408
|
VListGroup: VListGroup
|
86329
86409
|
VListImg: VListImg
|
@@ -86333,54 +86413,47 @@ declare module 'vue' {
|
|
86333
86413
|
VListItemSubtitle: VListItemSubtitle
|
86334
86414
|
VListItemTitle: VListItemTitle
|
86335
86415
|
VListSubheader: VListSubheader
|
86336
|
-
|
86416
|
+
VLabel: VLabel
|
86337
86417
|
VMessages: VMessages
|
86338
|
-
|
86339
|
-
VNumberInput: VNumberInput
|
86418
|
+
VMenu: VMenu
|
86340
86419
|
VNavigationDrawer: VNavigationDrawer
|
86341
|
-
|
86342
|
-
VPagination: VPagination
|
86420
|
+
VNumberInput: VNumberInput
|
86343
86421
|
VOverlay: VOverlay
|
86344
|
-
|
86422
|
+
VOtpInput: VOtpInput
|
86345
86423
|
VProgressLinear: VProgressLinear
|
86424
|
+
VPagination: VPagination
|
86346
86425
|
VProgressCircular: VProgressCircular
|
86426
|
+
VRadioGroup: VRadioGroup
|
86347
86427
|
VRating: VRating
|
86348
|
-
VSelect: VSelect
|
86349
86428
|
VSelectionControl: VSelectionControl
|
86350
|
-
VSelectionControlGroup: VSelectionControlGroup
|
86351
|
-
VSkeletonLoader: VSkeletonLoader
|
86352
86429
|
VSheet: VSheet
|
86353
|
-
VSnackbar: VSnackbar
|
86354
86430
|
VSlideGroup: VSlideGroup
|
86355
86431
|
VSlideGroupItem: VSlideGroupItem
|
86356
|
-
|
86432
|
+
VSnackbar: VSnackbar
|
86433
|
+
VSkeletonLoader: VSkeletonLoader
|
86357
86434
|
VSwitch: VSwitch
|
86358
|
-
|
86435
|
+
VSelect: VSelect
|
86359
86436
|
VStepper: VStepper
|
86360
86437
|
VStepperActions: VStepperActions
|
86361
86438
|
VStepperHeader: VStepperHeader
|
86362
86439
|
VStepperItem: VStepperItem
|
86363
86440
|
VStepperWindow: VStepperWindow
|
86364
86441
|
VStepperWindowItem: VStepperWindowItem
|
86365
|
-
|
86366
|
-
|
86367
|
-
|
86368
|
-
|
86369
|
-
VTextField: VTextField
|
86442
|
+
VSlider: VSlider
|
86443
|
+
VSelectionControlGroup: VSelectionControlGroup
|
86444
|
+
VTable: VTable
|
86445
|
+
VSystemBar: VSystemBar
|
86370
86446
|
VTextarea: VTextarea
|
86371
|
-
VAppBar: VAppBar
|
86372
|
-
VAppBarNavIcon: VAppBarNavIcon
|
86373
|
-
VAppBarTitle: VAppBarTitle
|
86374
|
-
VTimeline: VTimeline
|
86375
|
-
VTimelineItem: VTimelineItem
|
86376
|
-
VTooltip: VTooltip
|
86377
86447
|
VToolbar: VToolbar
|
86378
86448
|
VToolbarTitle: VToolbarTitle
|
86379
86449
|
VToolbarItems: VToolbarItems
|
86450
|
+
VTooltip: VTooltip
|
86451
|
+
VTextField: VTextField
|
86452
|
+
VTimeline: VTimeline
|
86453
|
+
VTimelineItem: VTimelineItem
|
86380
86454
|
VWindow: VWindow
|
86381
86455
|
VWindowItem: VWindowItem
|
86382
86456
|
VDataIterator: VDataIterator
|
86383
|
-
VConfirmEdit: VConfirmEdit
|
86384
86457
|
VDefaultsProvider: VDefaultsProvider
|
86385
86458
|
VContainer: VContainer
|
86386
86459
|
VCol: VCol
|
@@ -86388,21 +86461,21 @@ declare module 'vue' {
|
|
86388
86461
|
VSpacer: VSpacer
|
86389
86462
|
VForm: VForm
|
86390
86463
|
VHover: VHover
|
86464
|
+
VConfirmEdit: VConfirmEdit
|
86391
86465
|
VLayout: VLayout
|
86392
86466
|
VLayoutItem: VLayoutItem
|
86393
|
-
VLazy: VLazy
|
86394
86467
|
VLocaleProvider: VLocaleProvider
|
86395
|
-
|
86468
|
+
VLazy: VLazy
|
86396
86469
|
VParallax: VParallax
|
86397
86470
|
VRadio: VRadio
|
86398
86471
|
VRangeSlider: VRangeSlider
|
86399
86472
|
VResponsive: VResponsive
|
86400
|
-
|
86401
|
-
VTable: VTable
|
86402
|
-
VSnackbarQueue: VSnackbarQueue
|
86473
|
+
VNoSsr: VNoSsr
|
86403
86474
|
VSpeedDial: VSpeedDial
|
86475
|
+
VSparkline: VSparkline
|
86404
86476
|
VThemeProvider: VThemeProvider
|
86405
86477
|
VValidation: VValidation
|
86478
|
+
VSnackbarQueue: VSnackbarQueue
|
86406
86479
|
VVirtualScroll: VVirtualScroll
|
86407
86480
|
VFabTransition: VFabTransition
|
86408
86481
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -86420,28 +86493,42 @@ declare module 'vue' {
|
|
86420
86493
|
VExpandTransition: VExpandTransition
|
86421
86494
|
VExpandXTransition: VExpandXTransition
|
86422
86495
|
VDialogTransition: VDialogTransition
|
86423
|
-
|
86424
|
-
|
86425
|
-
|
86426
|
-
|
86427
|
-
VStepperVerticalItem: VStepperVerticalItem
|
86428
|
-
VStepperVerticalActions: VStepperVerticalActions
|
86496
|
+
VTab: VTab
|
86497
|
+
VTabs: VTabs
|
86498
|
+
VTabsWindow: VTabsWindow
|
86499
|
+
VTabsWindowItem: VTabsWindowItem
|
86429
86500
|
VCalendar: VCalendar
|
86430
86501
|
VCalendarDay: VCalendarDay
|
86431
86502
|
VCalendarHeader: VCalendarHeader
|
86432
86503
|
VCalendarInterval: VCalendarInterval
|
86433
86504
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86434
86505
|
VCalendarMonthDay: VCalendarMonthDay
|
86506
|
+
VIconBtn: VIconBtn
|
86507
|
+
VStepperVertical: VStepperVertical
|
86508
|
+
VStepperVerticalItem: VStepperVerticalItem
|
86509
|
+
VStepperVerticalActions: VStepperVerticalActions
|
86510
|
+
VFileUpload: VFileUpload
|
86511
|
+
VFileUploadItem: VFileUploadItem
|
86435
86512
|
VPicker: VPicker
|
86436
86513
|
VPickerTitle: VPickerTitle
|
86437
|
-
VTreeview: VTreeview
|
86438
|
-
VTreeviewItem: VTreeviewItem
|
86439
|
-
VTreeviewGroup: VTreeviewGroup
|
86440
86514
|
VTimePicker: VTimePicker
|
86441
86515
|
VTimePickerClock: VTimePickerClock
|
86442
86516
|
VTimePickerControls: VTimePickerControls
|
86443
|
-
|
86444
|
-
|
86517
|
+
VTreeview: VTreeview
|
86518
|
+
VTreeviewItem: VTreeviewItem
|
86519
|
+
VTreeviewGroup: VTreeviewGroup
|
86520
|
+
VColorInput: VColorInput
|
86445
86521
|
VPullToRefresh: VPullToRefresh
|
86522
|
+
VDateInput: VDateInput
|
86523
|
+
}
|
86524
|
+
export interface GlobalDirectives {
|
86525
|
+
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
86526
|
+
vIntersect: typeof import('vuetify/directives')['Intersect']
|
86527
|
+
vMutate: typeof import('vuetify/directives')['Mutate']
|
86528
|
+
vResize: typeof import('vuetify/directives')['Resize']
|
86529
|
+
vRipple: typeof import('vuetify/directives')['Ripple']
|
86530
|
+
vScroll: typeof import('vuetify/directives')['Scroll']
|
86531
|
+
vTouch: typeof import('vuetify/directives')['Touch']
|
86532
|
+
vTooltip: typeof import('vuetify/directives')['Tooltip']
|
86446
86533
|
}
|
86447
86534
|
}
|