@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-labs.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;
|
@@ -3706,7 +3706,10 @@ declare const VToolbar: {
|
|
3706
3706
|
default: string;
|
3707
3707
|
validator: (v: any) => boolean;
|
3708
3708
|
};
|
3709
|
-
extended:
|
3709
|
+
extended: {
|
3710
|
+
type: BooleanConstructor;
|
3711
|
+
default: null;
|
3712
|
+
};
|
3710
3713
|
extensionHeight: {
|
3711
3714
|
type: (StringConstructor | NumberConstructor)[];
|
3712
3715
|
default: number;
|
@@ -3751,7 +3754,10 @@ declare const VToolbar: {
|
|
3751
3754
|
default: string;
|
3752
3755
|
validator: (v: any) => boolean;
|
3753
3756
|
};
|
3754
|
-
extended:
|
3757
|
+
extended: {
|
3758
|
+
type: BooleanConstructor;
|
3759
|
+
default: null;
|
3760
|
+
};
|
3755
3761
|
extensionHeight: {
|
3756
3762
|
type: (StringConstructor | NumberConstructor)[];
|
3757
3763
|
default: number;
|
@@ -4060,7 +4066,10 @@ declare const VAppBar: {
|
|
4060
4066
|
default: string;
|
4061
4067
|
validator: (v: any) => boolean;
|
4062
4068
|
};
|
4063
|
-
extended:
|
4069
|
+
extended: {
|
4070
|
+
type: BooleanConstructor;
|
4071
|
+
default: null;
|
4072
|
+
};
|
4064
4073
|
extensionHeight: {
|
4065
4074
|
type: (StringConstructor | NumberConstructor)[];
|
4066
4075
|
default: number;
|
@@ -4129,7 +4138,10 @@ declare const VAppBar: {
|
|
4129
4138
|
default: string;
|
4130
4139
|
validator: (v: any) => boolean;
|
4131
4140
|
};
|
4132
|
-
extended:
|
4141
|
+
extended: {
|
4142
|
+
type: BooleanConstructor;
|
4143
|
+
default: null;
|
4144
|
+
};
|
4133
4145
|
extensionHeight: {
|
4134
4146
|
type: (StringConstructor | NumberConstructor)[];
|
4135
4147
|
default: number;
|
@@ -37166,6 +37178,196 @@ declare const VDataTableRow: {
|
|
37166
37178
|
}>>;
|
37167
37179
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
37168
37180
|
|
37181
|
+
type Striped = null | 'odd' | 'even';
|
37182
|
+
declare const VTable: {
|
37183
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
37184
|
+
style: vue.StyleValue;
|
37185
|
+
tag: string | JSXComponent;
|
37186
|
+
density: Density;
|
37187
|
+
striped: Striped;
|
37188
|
+
hover: boolean;
|
37189
|
+
fixedHeader: boolean;
|
37190
|
+
fixedFooter: boolean;
|
37191
|
+
} & {
|
37192
|
+
height?: string | number | undefined;
|
37193
|
+
class?: any;
|
37194
|
+
theme?: string | undefined;
|
37195
|
+
} & {
|
37196
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
37197
|
+
default?: (() => vue.VNodeChild) | undefined;
|
37198
|
+
top?: (() => vue.VNodeChild) | undefined;
|
37199
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
37200
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
37201
|
+
};
|
37202
|
+
'v-slots'?: {
|
37203
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
37204
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
37205
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
37206
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
37207
|
+
} | undefined;
|
37208
|
+
} & {
|
37209
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
37210
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
37211
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
37212
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
37213
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
37214
|
+
style: vue.StyleValue;
|
37215
|
+
tag: string | JSXComponent;
|
37216
|
+
density: Density;
|
37217
|
+
striped: Striped;
|
37218
|
+
hover: boolean;
|
37219
|
+
fixedHeader: boolean;
|
37220
|
+
fixedFooter: boolean;
|
37221
|
+
}, true, {}, vue.SlotsType<Partial<{
|
37222
|
+
default: () => vue.VNode[];
|
37223
|
+
top: () => vue.VNode[];
|
37224
|
+
bottom: () => vue.VNode[];
|
37225
|
+
wrapper: () => vue.VNode[];
|
37226
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
37227
|
+
P: {};
|
37228
|
+
B: {};
|
37229
|
+
D: {};
|
37230
|
+
C: {};
|
37231
|
+
M: {};
|
37232
|
+
Defaults: {};
|
37233
|
+
}, {
|
37234
|
+
style: vue.StyleValue;
|
37235
|
+
tag: string | JSXComponent;
|
37236
|
+
density: Density;
|
37237
|
+
striped: Striped;
|
37238
|
+
hover: boolean;
|
37239
|
+
fixedHeader: boolean;
|
37240
|
+
fixedFooter: boolean;
|
37241
|
+
} & {
|
37242
|
+
height?: string | number | undefined;
|
37243
|
+
class?: any;
|
37244
|
+
theme?: string | undefined;
|
37245
|
+
} & {
|
37246
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
37247
|
+
default?: (() => vue.VNodeChild) | undefined;
|
37248
|
+
top?: (() => vue.VNodeChild) | undefined;
|
37249
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
37250
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
37251
|
+
};
|
37252
|
+
'v-slots'?: {
|
37253
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
37254
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
37255
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
37256
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
37257
|
+
} | undefined;
|
37258
|
+
} & {
|
37259
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
37260
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
37261
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
37262
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
37263
|
+
}, {}, {}, {}, {}, {
|
37264
|
+
style: vue.StyleValue;
|
37265
|
+
tag: string | JSXComponent;
|
37266
|
+
density: Density;
|
37267
|
+
striped: Striped;
|
37268
|
+
hover: boolean;
|
37269
|
+
fixedHeader: boolean;
|
37270
|
+
fixedFooter: boolean;
|
37271
|
+
}>;
|
37272
|
+
__isFragment?: never;
|
37273
|
+
__isTeleport?: never;
|
37274
|
+
__isSuspense?: never;
|
37275
|
+
} & vue.ComponentOptionsBase<{
|
37276
|
+
style: vue.StyleValue;
|
37277
|
+
tag: string | JSXComponent;
|
37278
|
+
density: Density;
|
37279
|
+
striped: Striped;
|
37280
|
+
hover: boolean;
|
37281
|
+
fixedHeader: boolean;
|
37282
|
+
fixedFooter: boolean;
|
37283
|
+
} & {
|
37284
|
+
height?: string | number | undefined;
|
37285
|
+
class?: any;
|
37286
|
+
theme?: string | undefined;
|
37287
|
+
} & {
|
37288
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
37289
|
+
default?: (() => vue.VNodeChild) | undefined;
|
37290
|
+
top?: (() => vue.VNodeChild) | undefined;
|
37291
|
+
bottom?: (() => vue.VNodeChild) | undefined;
|
37292
|
+
wrapper?: (() => vue.VNodeChild) | undefined;
|
37293
|
+
};
|
37294
|
+
'v-slots'?: {
|
37295
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
37296
|
+
top?: false | (() => vue.VNodeChild) | undefined;
|
37297
|
+
bottom?: false | (() => vue.VNodeChild) | undefined;
|
37298
|
+
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
37299
|
+
} | undefined;
|
37300
|
+
} & {
|
37301
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
37302
|
+
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
37303
|
+
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
37304
|
+
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
37305
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
37306
|
+
style: vue.StyleValue;
|
37307
|
+
tag: string | JSXComponent;
|
37308
|
+
density: Density;
|
37309
|
+
striped: Striped;
|
37310
|
+
hover: boolean;
|
37311
|
+
fixedHeader: boolean;
|
37312
|
+
fixedFooter: boolean;
|
37313
|
+
}, {}, string, vue.SlotsType<Partial<{
|
37314
|
+
default: () => vue.VNode[];
|
37315
|
+
top: () => vue.VNode[];
|
37316
|
+
bottom: () => vue.VNode[];
|
37317
|
+
wrapper: () => vue.VNode[];
|
37318
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
37319
|
+
theme: StringConstructor;
|
37320
|
+
tag: {
|
37321
|
+
type: PropType<string | JSXComponent>;
|
37322
|
+
default: string;
|
37323
|
+
};
|
37324
|
+
density: {
|
37325
|
+
type: PropType<Density>;
|
37326
|
+
default: string;
|
37327
|
+
validator: (v: any) => boolean;
|
37328
|
+
};
|
37329
|
+
class: PropType<ClassValue>;
|
37330
|
+
style: {
|
37331
|
+
type: PropType<vue.StyleValue>;
|
37332
|
+
default: null;
|
37333
|
+
};
|
37334
|
+
fixedHeader: BooleanConstructor;
|
37335
|
+
fixedFooter: BooleanConstructor;
|
37336
|
+
height: (StringConstructor | NumberConstructor)[];
|
37337
|
+
hover: BooleanConstructor;
|
37338
|
+
striped: {
|
37339
|
+
type: PropType<Striped>;
|
37340
|
+
default: null;
|
37341
|
+
validator: (v: any) => boolean;
|
37342
|
+
};
|
37343
|
+
}, vue.ExtractPropTypes<{
|
37344
|
+
theme: StringConstructor;
|
37345
|
+
tag: {
|
37346
|
+
type: PropType<string | JSXComponent>;
|
37347
|
+
default: string;
|
37348
|
+
};
|
37349
|
+
density: {
|
37350
|
+
type: PropType<Density>;
|
37351
|
+
default: string;
|
37352
|
+
validator: (v: any) => boolean;
|
37353
|
+
};
|
37354
|
+
class: PropType<ClassValue>;
|
37355
|
+
style: {
|
37356
|
+
type: PropType<vue.StyleValue>;
|
37357
|
+
default: null;
|
37358
|
+
};
|
37359
|
+
fixedHeader: BooleanConstructor;
|
37360
|
+
fixedFooter: BooleanConstructor;
|
37361
|
+
height: (StringConstructor | NumberConstructor)[];
|
37362
|
+
hover: BooleanConstructor;
|
37363
|
+
striped: {
|
37364
|
+
type: PropType<Striped>;
|
37365
|
+
default: null;
|
37366
|
+
validator: (v: any) => boolean;
|
37367
|
+
};
|
37368
|
+
}>>;
|
37369
|
+
type VTable = InstanceType<typeof VTable>;
|
37370
|
+
|
37169
37371
|
type VDataTableGroupHeaderRowSlots = {
|
37170
37372
|
'data-table-group': {
|
37171
37373
|
item: Group;
|
@@ -37419,6 +37621,7 @@ declare const VDataTable: {
|
|
37419
37621
|
selectStrategy: "all" | "page" | "single";
|
37420
37622
|
valueComparator: typeof deepEqual;
|
37421
37623
|
density: Density;
|
37624
|
+
striped: Striped;
|
37422
37625
|
nextIcon: IconValue;
|
37423
37626
|
prevIcon: IconValue;
|
37424
37627
|
hideNoData: boolean;
|
@@ -37499,6 +37702,7 @@ declare const VDataTable: {
|
|
37499
37702
|
selectStrategy: "all" | "page" | "single";
|
37500
37703
|
valueComparator: typeof deepEqual;
|
37501
37704
|
density: Density;
|
37705
|
+
striped: Striped;
|
37502
37706
|
nextIcon: IconValue;
|
37503
37707
|
prevIcon: IconValue;
|
37504
37708
|
hideNoData: boolean;
|
@@ -37600,6 +37804,7 @@ declare const VDataTable: {
|
|
37600
37804
|
selectStrategy: "all" | "page" | "single";
|
37601
37805
|
valueComparator: typeof deepEqual;
|
37602
37806
|
density: Density;
|
37807
|
+
striped: Striped;
|
37603
37808
|
nextIcon: IconValue;
|
37604
37809
|
prevIcon: IconValue;
|
37605
37810
|
hideNoData: boolean;
|
@@ -37671,6 +37876,7 @@ declare const VDataTable: {
|
|
37671
37876
|
selectStrategy: "all" | "page" | "single";
|
37672
37877
|
valueComparator: typeof deepEqual;
|
37673
37878
|
density: Density;
|
37879
|
+
striped: Striped;
|
37674
37880
|
nextIcon: IconValue;
|
37675
37881
|
prevIcon: IconValue;
|
37676
37882
|
hideNoData: boolean;
|
@@ -37724,6 +37930,7 @@ declare const VDataTable: {
|
|
37724
37930
|
selectStrategy: "all" | "page" | "single";
|
37725
37931
|
valueComparator: typeof deepEqual;
|
37726
37932
|
density: Density;
|
37933
|
+
striped: Striped;
|
37727
37934
|
nextIcon: IconValue;
|
37728
37935
|
prevIcon: IconValue;
|
37729
37936
|
hideNoData: boolean;
|
@@ -37804,6 +38011,7 @@ declare const VDataTable: {
|
|
37804
38011
|
selectStrategy: "all" | "page" | "single";
|
37805
38012
|
valueComparator: typeof deepEqual;
|
37806
38013
|
density: Density;
|
38014
|
+
striped: Striped;
|
37807
38015
|
nextIcon: IconValue;
|
37808
38016
|
prevIcon: IconValue;
|
37809
38017
|
hideNoData: boolean;
|
@@ -37961,6 +38169,11 @@ declare const VDataTable: {
|
|
37961
38169
|
fixedFooter: BooleanConstructor;
|
37962
38170
|
height: (StringConstructor | NumberConstructor)[];
|
37963
38171
|
hover: BooleanConstructor;
|
38172
|
+
striped: {
|
38173
|
+
type: vue.PropType<Striped>;
|
38174
|
+
default: null;
|
38175
|
+
validator: (v: any) => boolean;
|
38176
|
+
};
|
37964
38177
|
loading: (StringConstructor | BooleanConstructor)[];
|
37965
38178
|
mobile: {
|
37966
38179
|
type: vue.PropType<boolean | null>;
|
@@ -38129,6 +38342,11 @@ declare const VDataTable: {
|
|
38129
38342
|
fixedFooter: BooleanConstructor;
|
38130
38343
|
height: (StringConstructor | NumberConstructor)[];
|
38131
38344
|
hover: BooleanConstructor;
|
38345
|
+
striped: {
|
38346
|
+
type: vue.PropType<Striped>;
|
38347
|
+
default: null;
|
38348
|
+
validator: (v: any) => boolean;
|
38349
|
+
};
|
38132
38350
|
loading: (StringConstructor | BooleanConstructor)[];
|
38133
38351
|
mobile: {
|
38134
38352
|
type: vue.PropType<boolean | null>;
|
@@ -38506,6 +38724,7 @@ declare const VDataTableVirtual: {
|
|
38506
38724
|
selectStrategy: "all" | "page" | "single";
|
38507
38725
|
valueComparator: typeof deepEqual;
|
38508
38726
|
density: Density;
|
38727
|
+
striped: Striped;
|
38509
38728
|
itemHeight: string | number;
|
38510
38729
|
itemKey: SelectItemKey;
|
38511
38730
|
hideNoData: boolean;
|
@@ -38567,6 +38786,7 @@ declare const VDataTableVirtual: {
|
|
38567
38786
|
selectStrategy: "all" | "page" | "single";
|
38568
38787
|
valueComparator: typeof deepEqual;
|
38569
38788
|
density: Density;
|
38789
|
+
striped: Striped;
|
38570
38790
|
itemHeight: string | number;
|
38571
38791
|
itemKey: SelectItemKey;
|
38572
38792
|
hideNoData: boolean;
|
@@ -38651,6 +38871,7 @@ declare const VDataTableVirtual: {
|
|
38651
38871
|
selectStrategy: "all" | "page" | "single";
|
38652
38872
|
valueComparator: typeof deepEqual;
|
38653
38873
|
density: Density;
|
38874
|
+
striped: Striped;
|
38654
38875
|
itemHeight: string | number;
|
38655
38876
|
itemKey: SelectItemKey;
|
38656
38877
|
hideNoData: boolean;
|
@@ -38706,6 +38927,7 @@ declare const VDataTableVirtual: {
|
|
38706
38927
|
selectStrategy: "all" | "page" | "single";
|
38707
38928
|
valueComparator: typeof deepEqual;
|
38708
38929
|
density: Density;
|
38930
|
+
striped: Striped;
|
38709
38931
|
itemHeight: string | number;
|
38710
38932
|
itemKey: SelectItemKey;
|
38711
38933
|
hideNoData: boolean;
|
@@ -38743,6 +38965,7 @@ declare const VDataTableVirtual: {
|
|
38743
38965
|
selectStrategy: "all" | "page" | "single";
|
38744
38966
|
valueComparator: typeof deepEqual;
|
38745
38967
|
density: Density;
|
38968
|
+
striped: Striped;
|
38746
38969
|
itemHeight: string | number;
|
38747
38970
|
itemKey: SelectItemKey;
|
38748
38971
|
hideNoData: boolean;
|
@@ -38804,6 +39027,7 @@ declare const VDataTableVirtual: {
|
|
38804
39027
|
selectStrategy: "all" | "page" | "single";
|
38805
39028
|
valueComparator: typeof deepEqual;
|
38806
39029
|
density: Density;
|
39030
|
+
striped: Striped;
|
38807
39031
|
itemHeight: string | number;
|
38808
39032
|
itemKey: SelectItemKey;
|
38809
39033
|
hideNoData: boolean;
|
@@ -38969,6 +39193,11 @@ declare const VDataTableVirtual: {
|
|
38969
39193
|
default: string;
|
38970
39194
|
validator: (v: any) => boolean;
|
38971
39195
|
};
|
39196
|
+
striped: {
|
39197
|
+
type: vue.PropType<Striped>;
|
39198
|
+
default: null;
|
39199
|
+
validator: (v: any) => boolean;
|
39200
|
+
};
|
38972
39201
|
hideNoData: BooleanConstructor;
|
38973
39202
|
hover: BooleanConstructor;
|
38974
39203
|
lastFixed: BooleanConstructor;
|
@@ -39085,6 +39314,11 @@ declare const VDataTableVirtual: {
|
|
39085
39314
|
default: string;
|
39086
39315
|
validator: (v: any) => boolean;
|
39087
39316
|
};
|
39317
|
+
striped: {
|
39318
|
+
type: vue.PropType<Striped>;
|
39319
|
+
default: null;
|
39320
|
+
validator: (v: any) => boolean;
|
39321
|
+
};
|
39088
39322
|
hideNoData: BooleanConstructor;
|
39089
39323
|
hover: BooleanConstructor;
|
39090
39324
|
lastFixed: BooleanConstructor;
|
@@ -39128,6 +39362,7 @@ declare const VDataTableServer: {
|
|
39128
39362
|
selectStrategy: "all" | "page" | "single";
|
39129
39363
|
valueComparator: typeof deepEqual;
|
39130
39364
|
density: Density;
|
39365
|
+
striped: Striped;
|
39131
39366
|
nextIcon: IconValue;
|
39132
39367
|
prevIcon: IconValue;
|
39133
39368
|
hideNoData: boolean;
|
@@ -39202,6 +39437,7 @@ declare const VDataTableServer: {
|
|
39202
39437
|
selectStrategy: "all" | "page" | "single";
|
39203
39438
|
valueComparator: typeof deepEqual;
|
39204
39439
|
density: Density;
|
39440
|
+
striped: Striped;
|
39205
39441
|
nextIcon: IconValue;
|
39206
39442
|
prevIcon: IconValue;
|
39207
39443
|
hideNoData: boolean;
|
@@ -39301,6 +39537,7 @@ declare const VDataTableServer: {
|
|
39301
39537
|
selectStrategy: "all" | "page" | "single";
|
39302
39538
|
valueComparator: typeof deepEqual;
|
39303
39539
|
density: Density;
|
39540
|
+
striped: Striped;
|
39304
39541
|
nextIcon: IconValue;
|
39305
39542
|
prevIcon: IconValue;
|
39306
39543
|
hideNoData: boolean;
|
@@ -39367,6 +39604,7 @@ declare const VDataTableServer: {
|
|
39367
39604
|
selectStrategy: "all" | "page" | "single";
|
39368
39605
|
valueComparator: typeof deepEqual;
|
39369
39606
|
density: Density;
|
39607
|
+
striped: Striped;
|
39370
39608
|
nextIcon: IconValue;
|
39371
39609
|
prevIcon: IconValue;
|
39372
39610
|
hideNoData: boolean;
|
@@ -39418,6 +39656,7 @@ declare const VDataTableServer: {
|
|
39418
39656
|
selectStrategy: "all" | "page" | "single";
|
39419
39657
|
valueComparator: typeof deepEqual;
|
39420
39658
|
density: Density;
|
39659
|
+
striped: Striped;
|
39421
39660
|
nextIcon: IconValue;
|
39422
39661
|
prevIcon: IconValue;
|
39423
39662
|
hideNoData: boolean;
|
@@ -39492,6 +39731,7 @@ declare const VDataTableServer: {
|
|
39492
39731
|
selectStrategy: "all" | "page" | "single";
|
39493
39732
|
valueComparator: typeof deepEqual;
|
39494
39733
|
density: Density;
|
39734
|
+
striped: Striped;
|
39495
39735
|
nextIcon: IconValue;
|
39496
39736
|
prevIcon: IconValue;
|
39497
39737
|
hideNoData: boolean;
|
@@ -39641,6 +39881,11 @@ declare const VDataTableServer: {
|
|
39641
39881
|
fixedFooter: BooleanConstructor;
|
39642
39882
|
height: (StringConstructor | NumberConstructor)[];
|
39643
39883
|
hover: BooleanConstructor;
|
39884
|
+
striped: {
|
39885
|
+
type: vue.PropType<Striped>;
|
39886
|
+
default: null;
|
39887
|
+
validator: (v: any) => boolean;
|
39888
|
+
};
|
39644
39889
|
loading: (StringConstructor | BooleanConstructor)[];
|
39645
39890
|
mobile: {
|
39646
39891
|
type: vue.PropType<boolean | null>;
|
@@ -39805,6 +40050,11 @@ declare const VDataTableServer: {
|
|
39805
40050
|
fixedFooter: BooleanConstructor;
|
39806
40051
|
height: (StringConstructor | NumberConstructor)[];
|
39807
40052
|
hover: BooleanConstructor;
|
40053
|
+
striped: {
|
40054
|
+
type: vue.PropType<Striped>;
|
40055
|
+
default: null;
|
40056
|
+
validator: (v: any) => boolean;
|
40057
|
+
};
|
39808
40058
|
loading: (StringConstructor | BooleanConstructor)[];
|
39809
40059
|
mobile: {
|
39810
40060
|
type: vue.PropType<boolean | null>;
|
@@ -77846,179 +78096,6 @@ declare const VTabsWindowItem: {
|
|
77846
78096
|
}>>;
|
77847
78097
|
type VTabsWindowItem = InstanceType<typeof VTabsWindowItem>;
|
77848
78098
|
|
77849
|
-
declare const VTable: {
|
77850
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
77851
|
-
style: vue.StyleValue;
|
77852
|
-
tag: string | JSXComponent;
|
77853
|
-
density: Density;
|
77854
|
-
hover: boolean;
|
77855
|
-
fixedHeader: boolean;
|
77856
|
-
fixedFooter: boolean;
|
77857
|
-
} & {
|
77858
|
-
height?: string | number | undefined;
|
77859
|
-
class?: any;
|
77860
|
-
theme?: string | undefined;
|
77861
|
-
} & {
|
77862
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77863
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77864
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77865
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77866
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77867
|
-
};
|
77868
|
-
'v-slots'?: {
|
77869
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77870
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77871
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77872
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77873
|
-
} | undefined;
|
77874
|
-
} & {
|
77875
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77876
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77877
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77878
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77879
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
77880
|
-
style: vue.StyleValue;
|
77881
|
-
tag: string | JSXComponent;
|
77882
|
-
density: Density;
|
77883
|
-
hover: boolean;
|
77884
|
-
fixedHeader: boolean;
|
77885
|
-
fixedFooter: boolean;
|
77886
|
-
}, true, {}, vue.SlotsType<Partial<{
|
77887
|
-
default: () => vue.VNode[];
|
77888
|
-
top: () => vue.VNode[];
|
77889
|
-
bottom: () => vue.VNode[];
|
77890
|
-
wrapper: () => vue.VNode[];
|
77891
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
77892
|
-
P: {};
|
77893
|
-
B: {};
|
77894
|
-
D: {};
|
77895
|
-
C: {};
|
77896
|
-
M: {};
|
77897
|
-
Defaults: {};
|
77898
|
-
}, {
|
77899
|
-
style: vue.StyleValue;
|
77900
|
-
tag: string | JSXComponent;
|
77901
|
-
density: Density;
|
77902
|
-
hover: boolean;
|
77903
|
-
fixedHeader: boolean;
|
77904
|
-
fixedFooter: boolean;
|
77905
|
-
} & {
|
77906
|
-
height?: string | number | undefined;
|
77907
|
-
class?: any;
|
77908
|
-
theme?: string | undefined;
|
77909
|
-
} & {
|
77910
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77911
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77912
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77913
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77914
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77915
|
-
};
|
77916
|
-
'v-slots'?: {
|
77917
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77918
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77919
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77920
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77921
|
-
} | undefined;
|
77922
|
-
} & {
|
77923
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77924
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77925
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77926
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77927
|
-
}, {}, {}, {}, {}, {
|
77928
|
-
style: vue.StyleValue;
|
77929
|
-
tag: string | JSXComponent;
|
77930
|
-
density: Density;
|
77931
|
-
hover: boolean;
|
77932
|
-
fixedHeader: boolean;
|
77933
|
-
fixedFooter: boolean;
|
77934
|
-
}>;
|
77935
|
-
__isFragment?: never;
|
77936
|
-
__isTeleport?: never;
|
77937
|
-
__isSuspense?: never;
|
77938
|
-
} & vue.ComponentOptionsBase<{
|
77939
|
-
style: vue.StyleValue;
|
77940
|
-
tag: string | JSXComponent;
|
77941
|
-
density: Density;
|
77942
|
-
hover: boolean;
|
77943
|
-
fixedHeader: boolean;
|
77944
|
-
fixedFooter: boolean;
|
77945
|
-
} & {
|
77946
|
-
height?: string | number | undefined;
|
77947
|
-
class?: any;
|
77948
|
-
theme?: string | undefined;
|
77949
|
-
} & {
|
77950
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
77951
|
-
default?: (() => vue.VNodeChild) | undefined;
|
77952
|
-
top?: (() => vue.VNodeChild) | undefined;
|
77953
|
-
bottom?: (() => vue.VNodeChild) | undefined;
|
77954
|
-
wrapper?: (() => vue.VNodeChild) | undefined;
|
77955
|
-
};
|
77956
|
-
'v-slots'?: {
|
77957
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
77958
|
-
top?: false | (() => vue.VNodeChild) | undefined;
|
77959
|
-
bottom?: false | (() => vue.VNodeChild) | undefined;
|
77960
|
-
wrapper?: false | (() => vue.VNodeChild) | undefined;
|
77961
|
-
} | undefined;
|
77962
|
-
} & {
|
77963
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
77964
|
-
"v-slot:top"?: false | (() => vue.VNodeChild) | undefined;
|
77965
|
-
"v-slot:bottom"?: false | (() => vue.VNodeChild) | undefined;
|
77966
|
-
"v-slot:wrapper"?: false | (() => vue.VNodeChild) | undefined;
|
77967
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
77968
|
-
style: vue.StyleValue;
|
77969
|
-
tag: string | JSXComponent;
|
77970
|
-
density: Density;
|
77971
|
-
hover: boolean;
|
77972
|
-
fixedHeader: boolean;
|
77973
|
-
fixedFooter: boolean;
|
77974
|
-
}, {}, string, vue.SlotsType<Partial<{
|
77975
|
-
default: () => vue.VNode[];
|
77976
|
-
top: () => vue.VNode[];
|
77977
|
-
bottom: () => vue.VNode[];
|
77978
|
-
wrapper: () => vue.VNode[];
|
77979
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
77980
|
-
theme: StringConstructor;
|
77981
|
-
tag: {
|
77982
|
-
type: vue.PropType<string | JSXComponent>;
|
77983
|
-
default: string;
|
77984
|
-
};
|
77985
|
-
density: {
|
77986
|
-
type: vue.PropType<Density>;
|
77987
|
-
default: string;
|
77988
|
-
validator: (v: any) => boolean;
|
77989
|
-
};
|
77990
|
-
class: vue.PropType<ClassValue>;
|
77991
|
-
style: {
|
77992
|
-
type: vue.PropType<vue.StyleValue>;
|
77993
|
-
default: null;
|
77994
|
-
};
|
77995
|
-
fixedHeader: BooleanConstructor;
|
77996
|
-
fixedFooter: BooleanConstructor;
|
77997
|
-
height: (StringConstructor | NumberConstructor)[];
|
77998
|
-
hover: BooleanConstructor;
|
77999
|
-
}, vue.ExtractPropTypes<{
|
78000
|
-
theme: StringConstructor;
|
78001
|
-
tag: {
|
78002
|
-
type: vue.PropType<string | JSXComponent>;
|
78003
|
-
default: string;
|
78004
|
-
};
|
78005
|
-
density: {
|
78006
|
-
type: vue.PropType<Density>;
|
78007
|
-
default: string;
|
78008
|
-
validator: (v: any) => boolean;
|
78009
|
-
};
|
78010
|
-
class: vue.PropType<ClassValue>;
|
78011
|
-
style: {
|
78012
|
-
type: vue.PropType<vue.StyleValue>;
|
78013
|
-
default: null;
|
78014
|
-
};
|
78015
|
-
fixedHeader: BooleanConstructor;
|
78016
|
-
fixedFooter: BooleanConstructor;
|
78017
|
-
height: (StringConstructor | NumberConstructor)[];
|
78018
|
-
hover: BooleanConstructor;
|
78019
|
-
}>>;
|
78020
|
-
type VTable = InstanceType<typeof VTable>;
|
78021
|
-
|
78022
78099
|
declare const VTextarea: {
|
78023
78100
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
78024
78101
|
flat: boolean;
|
@@ -102095,10 +102172,10 @@ declare const createVuetify: (options?: VuetifyOptions) => {
|
|
102095
102172
|
startOfYear: (date: unknown) => unknown;
|
102096
102173
|
endOfYear: (date: unknown) => unknown;
|
102097
102174
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
102098
|
-
isAfterDay: (
|
102175
|
+
isAfterDay: (date: unknown, comparing: unknown) => boolean;
|
102099
102176
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
102100
102177
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
102101
|
-
isSameYear: (
|
102178
|
+
isSameYear: (date: unknown, comparing: unknown) => boolean;
|
102102
102179
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
102103
102180
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
102104
102181
|
isValid: (date: any) => boolean;
|
@@ -102168,37 +102245,37 @@ declare module 'vue' {
|
|
102168
102245
|
export interface GlobalComponents {
|
102169
102246
|
VApp: VApp
|
102170
102247
|
VAutocomplete: VAutocomplete
|
102171
|
-
|
102248
|
+
VAppBar: VAppBar
|
102249
|
+
VAppBarNavIcon: VAppBarNavIcon
|
102250
|
+
VAppBarTitle: VAppBarTitle
|
102251
|
+
VBadge: VBadge
|
102172
102252
|
VAlert: VAlert
|
102173
102253
|
VAlertTitle: VAlertTitle
|
102174
|
-
|
102254
|
+
VBottomNavigation: VBottomNavigation
|
102255
|
+
VAvatar: VAvatar
|
102256
|
+
VBtn: VBtn
|
102175
102257
|
VBanner: VBanner
|
102176
102258
|
VBannerActions: VBannerActions
|
102177
102259
|
VBannerText: VBannerText
|
102178
|
-
VBottomSheet: VBottomSheet
|
102179
|
-
VBottomNavigation: VBottomNavigation
|
102180
102260
|
VBtnGroup: VBtnGroup
|
102181
|
-
|
102182
|
-
|
102183
|
-
VBreadcrumbs: VBreadcrumbs
|
102184
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
102185
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
102186
|
-
VBtnToggle: VBtnToggle
|
102187
|
-
VBtn: VBtn
|
102188
|
-
VChip: VChip
|
102261
|
+
VCheckbox: VCheckbox
|
102262
|
+
VCheckboxBtn: VCheckboxBtn
|
102189
102263
|
VCard: VCard
|
102190
102264
|
VCardActions: VCardActions
|
102191
102265
|
VCardItem: VCardItem
|
102192
102266
|
VCardSubtitle: VCardSubtitle
|
102193
102267
|
VCardText: VCardText
|
102194
102268
|
VCardTitle: VCardTitle
|
102269
|
+
VBreadcrumbs: VBreadcrumbs
|
102270
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
102271
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
102272
|
+
VChipGroup: VChipGroup
|
102273
|
+
VCarousel: VCarousel
|
102274
|
+
VCarouselItem: VCarouselItem
|
102275
|
+
VChip: VChip
|
102195
102276
|
VCode: VCode
|
102196
|
-
VCheckbox: VCheckbox
|
102197
|
-
VCheckboxBtn: VCheckboxBtn
|
102198
102277
|
VColorPicker: VColorPicker
|
102199
|
-
VChipGroup: VChipGroup
|
102200
102278
|
VCombobox: VCombobox
|
102201
|
-
VCounter: VCounter
|
102202
102279
|
VDataTable: VDataTable
|
102203
102280
|
VDataTableHeaders: VDataTableHeaders
|
102204
102281
|
VDataTableFooter: VDataTableFooter
|
@@ -102206,36 +102283,39 @@ declare module 'vue' {
|
|
102206
102283
|
VDataTableRow: VDataTableRow
|
102207
102284
|
VDataTableVirtual: VDataTableVirtual
|
102208
102285
|
VDataTableServer: VDataTableServer
|
102286
|
+
VCounter: VCounter
|
102209
102287
|
VDatePicker: VDatePicker
|
102210
102288
|
VDatePickerControls: VDatePickerControls
|
102211
102289
|
VDatePickerHeader: VDatePickerHeader
|
102212
102290
|
VDatePickerMonth: VDatePickerMonth
|
102213
102291
|
VDatePickerMonths: VDatePickerMonths
|
102214
102292
|
VDatePickerYears: VDatePickerYears
|
102215
|
-
|
102293
|
+
VBtnToggle: VBtnToggle
|
102216
102294
|
VDivider: VDivider
|
102295
|
+
VDialog: VDialog
|
102296
|
+
VEmptyState: VEmptyState
|
102217
102297
|
VField: VField
|
102218
102298
|
VFieldLabel: VFieldLabel
|
102219
|
-
VEmptyState: VEmptyState
|
102220
|
-
VFab: VFab
|
102221
102299
|
VExpansionPanels: VExpansionPanels
|
102222
102300
|
VExpansionPanel: VExpansionPanel
|
102223
102301
|
VExpansionPanelText: VExpansionPanelText
|
102224
102302
|
VExpansionPanelTitle: VExpansionPanelTitle
|
102303
|
+
VBottomSheet: VBottomSheet
|
102304
|
+
VFab: VFab
|
102225
102305
|
VFileInput: VFileInput
|
102306
|
+
VFooter: VFooter
|
102307
|
+
VInfiniteScroll: VInfiniteScroll
|
102308
|
+
VImg: VImg
|
102226
102309
|
VIcon: VIcon
|
102227
102310
|
VComponentIcon: VComponentIcon
|
102228
102311
|
VSvgIcon: VSvgIcon
|
102229
102312
|
VLigatureIcon: VLigatureIcon
|
102230
102313
|
VClassIcon: VClassIcon
|
102231
|
-
|
102232
|
-
|
102314
|
+
VKbd: VKbd
|
102315
|
+
VMain: VMain
|
102233
102316
|
VInput: VInput
|
102234
|
-
VImg: VImg
|
102235
102317
|
VItemGroup: VItemGroup
|
102236
102318
|
VItem: VItem
|
102237
|
-
VLabel: VLabel
|
102238
|
-
VKbd: VKbd
|
102239
102319
|
VList: VList
|
102240
102320
|
VListGroup: VListGroup
|
102241
102321
|
VListImg: VListImg
|
@@ -102245,54 +102325,47 @@ declare module 'vue' {
|
|
102245
102325
|
VListItemSubtitle: VListItemSubtitle
|
102246
102326
|
VListItemTitle: VListItemTitle
|
102247
102327
|
VListSubheader: VListSubheader
|
102248
|
-
|
102328
|
+
VLabel: VLabel
|
102249
102329
|
VMessages: VMessages
|
102250
|
-
|
102251
|
-
VNumberInput: VNumberInput
|
102330
|
+
VMenu: VMenu
|
102252
102331
|
VNavigationDrawer: VNavigationDrawer
|
102253
|
-
|
102254
|
-
VPagination: VPagination
|
102332
|
+
VNumberInput: VNumberInput
|
102255
102333
|
VOverlay: VOverlay
|
102256
|
-
|
102334
|
+
VOtpInput: VOtpInput
|
102257
102335
|
VProgressLinear: VProgressLinear
|
102336
|
+
VPagination: VPagination
|
102258
102337
|
VProgressCircular: VProgressCircular
|
102338
|
+
VRadioGroup: VRadioGroup
|
102259
102339
|
VRating: VRating
|
102260
|
-
VSelect: VSelect
|
102261
102340
|
VSelectionControl: VSelectionControl
|
102262
|
-
VSelectionControlGroup: VSelectionControlGroup
|
102263
|
-
VSkeletonLoader: VSkeletonLoader
|
102264
102341
|
VSheet: VSheet
|
102265
|
-
VSnackbar: VSnackbar
|
102266
102342
|
VSlideGroup: VSlideGroup
|
102267
102343
|
VSlideGroupItem: VSlideGroupItem
|
102268
|
-
|
102344
|
+
VSnackbar: VSnackbar
|
102345
|
+
VSkeletonLoader: VSkeletonLoader
|
102269
102346
|
VSwitch: VSwitch
|
102270
|
-
|
102347
|
+
VSelect: VSelect
|
102271
102348
|
VStepper: VStepper
|
102272
102349
|
VStepperActions: VStepperActions
|
102273
102350
|
VStepperHeader: VStepperHeader
|
102274
102351
|
VStepperItem: VStepperItem
|
102275
102352
|
VStepperWindow: VStepperWindow
|
102276
102353
|
VStepperWindowItem: VStepperWindowItem
|
102277
|
-
|
102278
|
-
|
102279
|
-
|
102280
|
-
|
102281
|
-
VTextField: VTextField
|
102354
|
+
VSlider: VSlider
|
102355
|
+
VSelectionControlGroup: VSelectionControlGroup
|
102356
|
+
VTable: VTable
|
102357
|
+
VSystemBar: VSystemBar
|
102282
102358
|
VTextarea: VTextarea
|
102283
|
-
VAppBar: VAppBar
|
102284
|
-
VAppBarNavIcon: VAppBarNavIcon
|
102285
|
-
VAppBarTitle: VAppBarTitle
|
102286
|
-
VTimeline: VTimeline
|
102287
|
-
VTimelineItem: VTimelineItem
|
102288
|
-
VTooltip: VTooltip
|
102289
102359
|
VToolbar: VToolbar
|
102290
102360
|
VToolbarTitle: VToolbarTitle
|
102291
102361
|
VToolbarItems: VToolbarItems
|
102362
|
+
VTooltip: VTooltip
|
102363
|
+
VTextField: VTextField
|
102364
|
+
VTimeline: VTimeline
|
102365
|
+
VTimelineItem: VTimelineItem
|
102292
102366
|
VWindow: VWindow
|
102293
102367
|
VWindowItem: VWindowItem
|
102294
102368
|
VDataIterator: VDataIterator
|
102295
|
-
VConfirmEdit: VConfirmEdit
|
102296
102369
|
VDefaultsProvider: VDefaultsProvider
|
102297
102370
|
VContainer: VContainer
|
102298
102371
|
VCol: VCol
|
@@ -102300,21 +102373,21 @@ declare module 'vue' {
|
|
102300
102373
|
VSpacer: VSpacer
|
102301
102374
|
VForm: VForm
|
102302
102375
|
VHover: VHover
|
102376
|
+
VConfirmEdit: VConfirmEdit
|
102303
102377
|
VLayout: VLayout
|
102304
102378
|
VLayoutItem: VLayoutItem
|
102305
|
-
VLazy: VLazy
|
102306
102379
|
VLocaleProvider: VLocaleProvider
|
102307
|
-
|
102380
|
+
VLazy: VLazy
|
102308
102381
|
VParallax: VParallax
|
102309
102382
|
VRadio: VRadio
|
102310
102383
|
VRangeSlider: VRangeSlider
|
102311
102384
|
VResponsive: VResponsive
|
102312
|
-
|
102313
|
-
VTable: VTable
|
102314
|
-
VSnackbarQueue: VSnackbarQueue
|
102385
|
+
VNoSsr: VNoSsr
|
102315
102386
|
VSpeedDial: VSpeedDial
|
102387
|
+
VSparkline: VSparkline
|
102316
102388
|
VThemeProvider: VThemeProvider
|
102317
102389
|
VValidation: VValidation
|
102390
|
+
VSnackbarQueue: VSnackbarQueue
|
102318
102391
|
VVirtualScroll: VVirtualScroll
|
102319
102392
|
VFabTransition: VFabTransition
|
102320
102393
|
VDialogBottomTransition: VDialogBottomTransition
|
@@ -102332,28 +102405,42 @@ declare module 'vue' {
|
|
102332
102405
|
VExpandTransition: VExpandTransition
|
102333
102406
|
VExpandXTransition: VExpandXTransition
|
102334
102407
|
VDialogTransition: VDialogTransition
|
102335
|
-
|
102336
|
-
|
102337
|
-
|
102338
|
-
|
102339
|
-
VStepperVerticalItem: VStepperVerticalItem
|
102340
|
-
VStepperVerticalActions: VStepperVerticalActions
|
102408
|
+
VTab: VTab
|
102409
|
+
VTabs: VTabs
|
102410
|
+
VTabsWindow: VTabsWindow
|
102411
|
+
VTabsWindowItem: VTabsWindowItem
|
102341
102412
|
VCalendar: VCalendar
|
102342
102413
|
VCalendarDay: VCalendarDay
|
102343
102414
|
VCalendarHeader: VCalendarHeader
|
102344
102415
|
VCalendarInterval: VCalendarInterval
|
102345
102416
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
102346
102417
|
VCalendarMonthDay: VCalendarMonthDay
|
102418
|
+
VIconBtn: VIconBtn
|
102419
|
+
VStepperVertical: VStepperVertical
|
102420
|
+
VStepperVerticalItem: VStepperVerticalItem
|
102421
|
+
VStepperVerticalActions: VStepperVerticalActions
|
102422
|
+
VFileUpload: VFileUpload
|
102423
|
+
VFileUploadItem: VFileUploadItem
|
102347
102424
|
VPicker: VPicker
|
102348
102425
|
VPickerTitle: VPickerTitle
|
102349
|
-
VTreeview: VTreeview
|
102350
|
-
VTreeviewItem: VTreeviewItem
|
102351
|
-
VTreeviewGroup: VTreeviewGroup
|
102352
102426
|
VTimePicker: VTimePicker
|
102353
102427
|
VTimePickerClock: VTimePickerClock
|
102354
102428
|
VTimePickerControls: VTimePickerControls
|
102355
|
-
|
102356
|
-
|
102429
|
+
VTreeview: VTreeview
|
102430
|
+
VTreeviewItem: VTreeviewItem
|
102431
|
+
VTreeviewGroup: VTreeviewGroup
|
102432
|
+
VColorInput: VColorInput
|
102357
102433
|
VPullToRefresh: VPullToRefresh
|
102434
|
+
VDateInput: VDateInput
|
102435
|
+
}
|
102436
|
+
export interface GlobalDirectives {
|
102437
|
+
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
102438
|
+
vIntersect: typeof import('vuetify/directives')['Intersect']
|
102439
|
+
vMutate: typeof import('vuetify/directives')['Mutate']
|
102440
|
+
vResize: typeof import('vuetify/directives')['Resize']
|
102441
|
+
vRipple: typeof import('vuetify/directives')['Ripple']
|
102442
|
+
vScroll: typeof import('vuetify/directives')['Scroll']
|
102443
|
+
vTouch: typeof import('vuetify/directives')['Touch']
|
102444
|
+
vTooltip: typeof import('vuetify/directives')['Tooltip']
|
102358
102445
|
}
|
102359
102446
|
}
|