@vuetify/nightly 3.8.0-beta.0-dev.2025-03-24 → 3.8.0-beta.0-dev.2025-03-26
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 +83 -3
- package/dist/json/attributes.json +1534 -1522
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +3219 -3169
- package/dist/vuetify-labs.cjs +101 -28
- package/dist/vuetify-labs.css +3682 -3682
- package/dist/vuetify-labs.d.ts +124 -81
- package/dist/vuetify-labs.esm.js +101 -28
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +101 -28
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +25 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5460 -5460
- package/dist/vuetify.d.ts +82 -79
- package/dist/vuetify.esm.js +25 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +25 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableRow.d.ts +9 -6
- package/lib/components/VDataTable/VDataTableRow.js +18 -3
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableServer.d.ts +4 -4
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +4 -4
- package/lib/components/VDatePicker/VDatePicker.js +1 -1
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VIcon/VIcon.js +2 -2
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/composables/calendar.js +1 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +47 -47
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +70 -3
- package/lib/labs/VDateInput/VDateInput.js +78 -19
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -23031,20 +23031,12 @@ declare const VDataTableHeaders: {
|
|
23031
23031
|
}>>;
|
23032
23032
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
23033
23033
|
|
23034
|
-
type
|
23035
|
-
|
23036
|
-
item: Group;
|
23037
|
-
count: number;
|
23038
|
-
props: Record<string, unknown>;
|
23039
|
-
};
|
23040
|
-
'data-table-select': {
|
23041
|
-
props: Record<string, unknown>;
|
23042
|
-
};
|
23034
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
23035
|
+
props: Record<string, unknown>;
|
23043
23036
|
};
|
23044
|
-
|
23045
23037
|
type VDataTableRowSlots<T> = {
|
23046
|
-
'item.data-table-select':
|
23047
|
-
'item.data-table-expand':
|
23038
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
23039
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
23048
23040
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
23049
23041
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
23050
23042
|
} & {
|
@@ -23065,8 +23057,8 @@ declare const VDataTableRow: {
|
|
23065
23057
|
}, true, {}, vue.SlotsType<Partial<{
|
23066
23058
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
23067
23059
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23068
|
-
'item.data-table-select': (arg:
|
23069
|
-
'item.data-table-expand': (arg:
|
23060
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23061
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23070
23062
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23071
23063
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23072
23064
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
@@ -23103,8 +23095,8 @@ declare const VDataTableRow: {
|
|
23103
23095
|
}, {}, string, vue.SlotsType<Partial<{
|
23104
23096
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
23105
23097
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23106
|
-
'item.data-table-select': (arg:
|
23107
|
-
'item.data-table-expand': (arg:
|
23098
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23099
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23108
23100
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23109
23101
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23110
23102
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
@@ -23137,6 +23129,17 @@ declare const VDataTableRow: {
|
|
23137
23129
|
}>>;
|
23138
23130
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
23139
23131
|
|
23132
|
+
type VDataTableGroupHeaderRowSlots = {
|
23133
|
+
'data-table-group': {
|
23134
|
+
item: Group;
|
23135
|
+
count: number;
|
23136
|
+
props: Record<string, unknown>;
|
23137
|
+
};
|
23138
|
+
'data-table-select': {
|
23139
|
+
props: Record<string, unknown>;
|
23140
|
+
};
|
23141
|
+
};
|
23142
|
+
|
23140
23143
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
23141
23144
|
item: ItemSlot$1<T> & {
|
23142
23145
|
props: Record<string, any>;
|
@@ -23173,8 +23176,8 @@ declare const VDataTableRows: {
|
|
23173
23176
|
'data-table-select': (arg: {
|
23174
23177
|
props: Record<string, unknown>;
|
23175
23178
|
}) => vue.VNode[];
|
23176
|
-
'item.data-table-select': (arg:
|
23177
|
-
'item.data-table-expand': (arg:
|
23179
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23180
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23178
23181
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23179
23182
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23180
23183
|
item: (arg: {
|
@@ -23246,8 +23249,8 @@ declare const VDataTableRows: {
|
|
23246
23249
|
'data-table-select': (arg: {
|
23247
23250
|
props: Record<string, unknown>;
|
23248
23251
|
}) => vue.VNode[];
|
23249
|
-
'item.data-table-select': (arg:
|
23250
|
-
'item.data-table-expand': (arg:
|
23252
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23253
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
23251
23254
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23252
23255
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23253
23256
|
item: (arg: {
|
@@ -23492,8 +23495,8 @@ declare const VDataTable: {
|
|
23492
23495
|
'data-table-select': (arg: {
|
23493
23496
|
props: Record<string, unknown>;
|
23494
23497
|
}) => vue.VNode[];
|
23495
|
-
'item.data-table-select': (arg:
|
23496
|
-
'item.data-table-expand': (arg:
|
23498
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23499
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23497
23500
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23498
23501
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23499
23502
|
item: (arg: {
|
@@ -23793,8 +23796,8 @@ declare const VDataTable: {
|
|
23793
23796
|
'data-table-select': (arg: {
|
23794
23797
|
props: Record<string, unknown>;
|
23795
23798
|
}) => vue.VNode[];
|
23796
|
-
'item.data-table-select': (arg:
|
23797
|
-
'item.data-table-expand': (arg:
|
23799
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23800
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
23798
23801
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23799
23802
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
23800
23803
|
item: (arg: {
|
@@ -24584,8 +24587,8 @@ declare const VDataTableVirtual: {
|
|
24584
24587
|
'data-table-select': (arg: {
|
24585
24588
|
props: Record<string, unknown>;
|
24586
24589
|
}) => vue.VNode[];
|
24587
|
-
'item.data-table-select': (arg:
|
24588
|
-
'item.data-table-expand': (arg:
|
24590
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24591
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24589
24592
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24590
24593
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24591
24594
|
item: (arg: {
|
@@ -24907,8 +24910,8 @@ declare const VDataTableVirtual: {
|
|
24907
24910
|
'data-table-select': (arg: {
|
24908
24911
|
props: Record<string, unknown>;
|
24909
24912
|
}) => vue.VNode[];
|
24910
|
-
'item.data-table-select': (arg:
|
24911
|
-
'item.data-table-expand': (arg:
|
24913
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24914
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
24912
24915
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24913
24916
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
24914
24917
|
item: (arg: {
|
@@ -25358,8 +25361,8 @@ declare const VDataTableServer: {
|
|
25358
25361
|
'data-table-select': (arg: {
|
25359
25362
|
props: Record<string, unknown>;
|
25360
25363
|
}) => vue.VNode[];
|
25361
|
-
'item.data-table-select': (arg:
|
25362
|
-
'item.data-table-expand': (arg:
|
25364
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25365
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25363
25366
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25364
25367
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25365
25368
|
item: (arg: {
|
@@ -25730,8 +25733,8 @@ declare const VDataTableServer: {
|
|
25730
25733
|
'data-table-select': (arg: {
|
25731
25734
|
props: Record<string, unknown>;
|
25732
25735
|
}) => vue.VNode[];
|
25733
|
-
'item.data-table-select': (arg:
|
25734
|
-
'item.data-table-expand': (arg:
|
25736
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25737
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
25735
25738
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25736
25739
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
25737
25740
|
item: (arg: {
|
@@ -66772,6 +66775,7 @@ declare const VDateInput: {
|
|
66772
66775
|
style: vue.StyleValue;
|
66773
66776
|
title: string;
|
66774
66777
|
autofocus: boolean;
|
66778
|
+
mobile: boolean | null;
|
66775
66779
|
disabled: boolean;
|
66776
66780
|
readonly: boolean | null;
|
66777
66781
|
tag: string | JSXComponent;
|
@@ -66836,6 +66840,7 @@ declare const VDateInput: {
|
|
66836
66840
|
theme?: string | undefined;
|
66837
66841
|
elevation?: string | number | undefined;
|
66838
66842
|
counter?: string | number | boolean | undefined;
|
66843
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
66839
66844
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
66840
66845
|
modelValue?: any;
|
66841
66846
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
@@ -66862,6 +66867,7 @@ declare const VDateInput: {
|
|
66862
66867
|
modelModifiers?: Record<string, boolean> | undefined;
|
66863
66868
|
firstDayOfWeek?: string | number | undefined;
|
66864
66869
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
66870
|
+
displayFormat?: string | Function | undefined;
|
66865
66871
|
} & {
|
66866
66872
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
66867
66873
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -66920,8 +66926,12 @@ declare const VDateInput: {
|
|
66920
66926
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
66921
66927
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
66922
66928
|
} & {
|
66929
|
+
onCancel?: (() => any) | undefined;
|
66923
66930
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
66931
|
+
onSave?: ((value: string) => any) | undefined;
|
66924
66932
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
66933
|
+
save: (value: string) => true;
|
66934
|
+
cancel: () => true;
|
66925
66935
|
'update:modelValue': (val: string) => true;
|
66926
66936
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
66927
66937
|
flat: boolean;
|
@@ -66937,6 +66947,7 @@ declare const VDateInput: {
|
|
66937
66947
|
style: vue.StyleValue;
|
66938
66948
|
title: string;
|
66939
66949
|
autofocus: boolean;
|
66950
|
+
mobile: boolean | null;
|
66940
66951
|
disabled: boolean;
|
66941
66952
|
readonly: boolean | null;
|
66942
66953
|
tag: string | JSXComponent;
|
@@ -67016,6 +67027,7 @@ declare const VDateInput: {
|
|
67016
67027
|
style: vue.StyleValue;
|
67017
67028
|
title: string;
|
67018
67029
|
autofocus: boolean;
|
67030
|
+
mobile: boolean | null;
|
67019
67031
|
disabled: boolean;
|
67020
67032
|
readonly: boolean | null;
|
67021
67033
|
tag: string | JSXComponent;
|
@@ -67080,6 +67092,7 @@ declare const VDateInput: {
|
|
67080
67092
|
theme?: string | undefined;
|
67081
67093
|
elevation?: string | number | undefined;
|
67082
67094
|
counter?: string | number | boolean | undefined;
|
67095
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
67083
67096
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
67084
67097
|
modelValue?: any;
|
67085
67098
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
@@ -67106,6 +67119,7 @@ declare const VDateInput: {
|
|
67106
67119
|
modelModifiers?: Record<string, boolean> | undefined;
|
67107
67120
|
firstDayOfWeek?: string | number | undefined;
|
67108
67121
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
67122
|
+
displayFormat?: string | Function | undefined;
|
67109
67123
|
} & {
|
67110
67124
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
67111
67125
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -67164,7 +67178,9 @@ declare const VDateInput: {
|
|
67164
67178
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
67165
67179
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
67166
67180
|
} & {
|
67181
|
+
onCancel?: (() => any) | undefined;
|
67167
67182
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
67183
|
+
onSave?: ((value: string) => any) | undefined;
|
67168
67184
|
}, any, {}, {}, {}, {
|
67169
67185
|
flat: boolean;
|
67170
67186
|
reverse: boolean;
|
@@ -67179,6 +67195,7 @@ declare const VDateInput: {
|
|
67179
67195
|
style: vue.StyleValue;
|
67180
67196
|
title: string;
|
67181
67197
|
autofocus: boolean;
|
67198
|
+
mobile: boolean | null;
|
67182
67199
|
disabled: boolean;
|
67183
67200
|
readonly: boolean | null;
|
67184
67201
|
tag: string | JSXComponent;
|
@@ -67237,6 +67254,7 @@ declare const VDateInput: {
|
|
67237
67254
|
style: vue.StyleValue;
|
67238
67255
|
title: string;
|
67239
67256
|
autofocus: boolean;
|
67257
|
+
mobile: boolean | null;
|
67240
67258
|
disabled: boolean;
|
67241
67259
|
readonly: boolean | null;
|
67242
67260
|
tag: string | JSXComponent;
|
@@ -67301,6 +67319,7 @@ declare const VDateInput: {
|
|
67301
67319
|
theme?: string | undefined;
|
67302
67320
|
elevation?: string | number | undefined;
|
67303
67321
|
counter?: string | number | boolean | undefined;
|
67322
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
67304
67323
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
67305
67324
|
modelValue?: any;
|
67306
67325
|
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
@@ -67327,6 +67346,7 @@ declare const VDateInput: {
|
|
67327
67346
|
modelModifiers?: Record<string, boolean> | undefined;
|
67328
67347
|
firstDayOfWeek?: string | number | undefined;
|
67329
67348
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
67349
|
+
displayFormat?: string | Function | undefined;
|
67330
67350
|
} & {
|
67331
67351
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
67332
67352
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -67385,8 +67405,12 @@ declare const VDateInput: {
|
|
67385
67405
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
67386
67406
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
67387
67407
|
} & {
|
67408
|
+
onCancel?: (() => any) | undefined;
|
67388
67409
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
67410
|
+
onSave?: ((value: string) => any) | undefined;
|
67389
67411
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
67412
|
+
save: (value: string) => true;
|
67413
|
+
cancel: () => true;
|
67390
67414
|
'update:modelValue': (val: string) => true;
|
67391
67415
|
}, string, {
|
67392
67416
|
flat: boolean;
|
@@ -67402,6 +67426,7 @@ declare const VDateInput: {
|
|
67402
67426
|
style: vue.StyleValue;
|
67403
67427
|
title: string;
|
67404
67428
|
autofocus: boolean;
|
67429
|
+
mobile: boolean | null;
|
67405
67430
|
disabled: boolean;
|
67406
67431
|
readonly: boolean | null;
|
67407
67432
|
tag: string | JSXComponent;
|
@@ -67681,7 +67706,16 @@ declare const VDateInput: {
|
|
67681
67706
|
type: StringConstructor;
|
67682
67707
|
default: string;
|
67683
67708
|
};
|
67684
|
-
hideActions:
|
67709
|
+
hideActions: {
|
67710
|
+
type: PropType<boolean>;
|
67711
|
+
default: boolean;
|
67712
|
+
};
|
67713
|
+
mobile: {
|
67714
|
+
type: PropType<boolean | null>;
|
67715
|
+
default: boolean;
|
67716
|
+
};
|
67717
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
67718
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
67685
67719
|
location: {
|
67686
67720
|
type: PropType<StrategyProps$1["location"]>;
|
67687
67721
|
default: string;
|
@@ -67907,7 +67941,16 @@ declare const VDateInput: {
|
|
67907
67941
|
type: StringConstructor;
|
67908
67942
|
default: string;
|
67909
67943
|
};
|
67910
|
-
hideActions:
|
67944
|
+
hideActions: {
|
67945
|
+
type: PropType<boolean>;
|
67946
|
+
default: boolean;
|
67947
|
+
};
|
67948
|
+
mobile: {
|
67949
|
+
type: PropType<boolean | null>;
|
67950
|
+
default: boolean;
|
67951
|
+
};
|
67952
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
67953
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
67911
67954
|
location: {
|
67912
67955
|
type: PropType<StrategyProps$1["location"]>;
|
67913
67956
|
default: string;
|
@@ -73029,42 +73072,39 @@ declare module 'vue' {
|
|
73029
73072
|
}
|
73030
73073
|
export interface GlobalComponents {
|
73031
73074
|
VApp: VApp
|
73075
|
+
VAlert: VAlert
|
73076
|
+
VAlertTitle: VAlertTitle
|
73077
|
+
VAutocomplete: VAutocomplete
|
73032
73078
|
VAvatar: VAvatar
|
73079
|
+
VBadge: VBadge
|
73080
|
+
VBottomNavigation: VBottomNavigation
|
73033
73081
|
VAppBar: VAppBar
|
73034
73082
|
VAppBarNavIcon: VAppBarNavIcon
|
73035
73083
|
VAppBarTitle: VAppBarTitle
|
73036
|
-
VAlert: VAlert
|
73037
|
-
VAlertTitle: VAlertTitle
|
73038
|
-
VBottomNavigation: VBottomNavigation
|
73039
73084
|
VBanner: VBanner
|
73040
73085
|
VBannerActions: VBannerActions
|
73041
73086
|
VBannerText: VBannerText
|
73042
|
-
VBadge: VBadge
|
73043
|
-
VAutocomplete: VAutocomplete
|
73044
|
-
VBottomSheet: VBottomSheet
|
73045
73087
|
VBreadcrumbs: VBreadcrumbs
|
73046
73088
|
VBreadcrumbsItem: VBreadcrumbsItem
|
73047
73089
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
73090
|
+
VBtnToggle: VBtnToggle
|
73091
|
+
VBtn: VBtn
|
73048
73092
|
VCarousel: VCarousel
|
73049
73093
|
VCarouselItem: VCarouselItem
|
73050
|
-
|
73051
|
-
VBtnToggle: VBtnToggle
|
73094
|
+
VBottomSheet: VBottomSheet
|
73052
73095
|
VBtnGroup: VBtnGroup
|
73096
|
+
VChip: VChip
|
73097
|
+
VChipGroup: VChipGroup
|
73098
|
+
VCheckbox: VCheckbox
|
73099
|
+
VCheckboxBtn: VCheckboxBtn
|
73100
|
+
VCode: VCode
|
73053
73101
|
VCard: VCard
|
73054
73102
|
VCardActions: VCardActions
|
73055
73103
|
VCardItem: VCardItem
|
73056
73104
|
VCardSubtitle: VCardSubtitle
|
73057
73105
|
VCardText: VCardText
|
73058
73106
|
VCardTitle: VCardTitle
|
73059
|
-
VChip: VChip
|
73060
|
-
VCheckbox: VCheckbox
|
73061
|
-
VCheckboxBtn: VCheckboxBtn
|
73062
|
-
VCode: VCode
|
73063
|
-
VChipGroup: VChipGroup
|
73064
|
-
VColorPicker: VColorPicker
|
73065
|
-
VCombobox: VCombobox
|
73066
73107
|
VCounter: VCounter
|
73067
|
-
VDialog: VDialog
|
73068
73108
|
VDatePicker: VDatePicker
|
73069
73109
|
VDatePickerControls: VDatePickerControls
|
73070
73110
|
VDatePickerHeader: VDatePickerHeader
|
@@ -73078,28 +73118,31 @@ declare module 'vue' {
|
|
73078
73118
|
VDataTableRow: VDataTableRow
|
73079
73119
|
VDataTableVirtual: VDataTableVirtual
|
73080
73120
|
VDataTableServer: VDataTableServer
|
73121
|
+
VColorPicker: VColorPicker
|
73122
|
+
VCombobox: VCombobox
|
73081
73123
|
VEmptyState: VEmptyState
|
73124
|
+
VDialog: VDialog
|
73082
73125
|
VExpansionPanels: VExpansionPanels
|
73083
73126
|
VExpansionPanel: VExpansionPanel
|
73084
73127
|
VExpansionPanelText: VExpansionPanelText
|
73085
73128
|
VExpansionPanelTitle: VExpansionPanelTitle
|
73086
73129
|
VDivider: VDivider
|
73087
|
-
VFooter: VFooter
|
73088
73130
|
VFab: VFab
|
73089
73131
|
VFileInput: VFileInput
|
73090
73132
|
VField: VField
|
73091
73133
|
VFieldLabel: VFieldLabel
|
73134
|
+
VFooter: VFooter
|
73135
|
+
VImg: VImg
|
73092
73136
|
VInfiniteScroll: VInfiniteScroll
|
73137
|
+
VKbd: VKbd
|
73138
|
+
VInput: VInput
|
73093
73139
|
VIcon: VIcon
|
73094
73140
|
VComponentIcon: VComponentIcon
|
73095
73141
|
VSvgIcon: VSvgIcon
|
73096
73142
|
VLigatureIcon: VLigatureIcon
|
73097
73143
|
VClassIcon: VClassIcon
|
73098
|
-
VKbd: VKbd
|
73099
|
-
VImg: VImg
|
73100
73144
|
VItemGroup: VItemGroup
|
73101
73145
|
VItem: VItem
|
73102
|
-
VInput: VInput
|
73103
73146
|
VLabel: VLabel
|
73104
73147
|
VMenu: VMenu
|
73105
73148
|
VList: VList
|
@@ -73111,43 +73154,43 @@ declare module 'vue' {
|
|
73111
73154
|
VListItemSubtitle: VListItemSubtitle
|
73112
73155
|
VListItemTitle: VListItemTitle
|
73113
73156
|
VListSubheader: VListSubheader
|
73114
|
-
VNavigationDrawer: VNavigationDrawer
|
73115
73157
|
VMain: VMain
|
73116
|
-
|
73158
|
+
VOtpInput: VOtpInput
|
73117
73159
|
VMessages: VMessages
|
73118
|
-
|
73160
|
+
VNavigationDrawer: VNavigationDrawer
|
73119
73161
|
VPagination: VPagination
|
73162
|
+
VOverlay: VOverlay
|
73163
|
+
VProgressCircular: VProgressCircular
|
73164
|
+
VNumberInput: VNumberInput
|
73120
73165
|
VRadioGroup: VRadioGroup
|
73121
|
-
|
73166
|
+
VSelectionControl: VSelectionControl
|
73122
73167
|
VProgressLinear: VProgressLinear
|
73123
|
-
VSelect: VSelect
|
73124
|
-
VProgressCircular: VProgressCircular
|
73125
73168
|
VRating: VRating
|
73126
|
-
VSelectionControl: VSelectionControl
|
73127
73169
|
VSelectionControlGroup: VSelectionControlGroup
|
73128
|
-
|
73129
|
-
VSlider: VSlider
|
73170
|
+
VSelect: VSelect
|
73130
73171
|
VSkeletonLoader: VSkeletonLoader
|
73172
|
+
VSheet: VSheet
|
73131
73173
|
VSnackbar: VSnackbar
|
73174
|
+
VSlideGroup: VSlideGroup
|
73175
|
+
VSlideGroupItem: VSlideGroupItem
|
73176
|
+
VSlider: VSlider
|
73132
73177
|
VStepper: VStepper
|
73133
73178
|
VStepperActions: VStepperActions
|
73134
73179
|
VStepperHeader: VStepperHeader
|
73135
73180
|
VStepperItem: VStepperItem
|
73136
73181
|
VStepperWindow: VStepperWindow
|
73137
73182
|
VStepperWindowItem: VStepperWindowItem
|
73138
|
-
VSlideGroup: VSlideGroup
|
73139
|
-
VSlideGroupItem: VSlideGroupItem
|
73140
73183
|
VTab: VTab
|
73141
73184
|
VTabs: VTabs
|
73142
73185
|
VTabsWindow: VTabsWindow
|
73143
73186
|
VTabsWindowItem: VTabsWindowItem
|
73144
73187
|
VSystemBar: VSystemBar
|
73145
|
-
VTextarea: VTextarea
|
73146
|
-
VTimeline: VTimeline
|
73147
|
-
VTimelineItem: VTimelineItem
|
73148
73188
|
VSwitch: VSwitch
|
73149
73189
|
VTable: VTable
|
73150
73190
|
VTextField: VTextField
|
73191
|
+
VTextarea: VTextarea
|
73192
|
+
VTimeline: VTimeline
|
73193
|
+
VTimelineItem: VTimelineItem
|
73151
73194
|
VTooltip: VTooltip
|
73152
73195
|
VToolbar: VToolbar
|
73153
73196
|
VToolbarTitle: VToolbarTitle
|
@@ -73162,10 +73205,10 @@ declare module 'vue' {
|
|
73162
73205
|
VCol: VCol
|
73163
73206
|
VRow: VRow
|
73164
73207
|
VSpacer: VSpacer
|
73165
|
-
VLayout: VLayout
|
73166
|
-
VLayoutItem: VLayoutItem
|
73167
73208
|
VHover: VHover
|
73168
73209
|
VLazy: VLazy
|
73210
|
+
VLayout: VLayout
|
73211
|
+
VLayoutItem: VLayoutItem
|
73169
73212
|
VLocaleProvider: VLocaleProvider
|
73170
73213
|
VNoSsr: VNoSsr
|
73171
73214
|
VParallax: VParallax
|
@@ -73173,8 +73216,8 @@ declare module 'vue' {
|
|
73173
73216
|
VRangeSlider: VRangeSlider
|
73174
73217
|
VResponsive: VResponsive
|
73175
73218
|
VSnackbarQueue: VSnackbarQueue
|
73176
|
-
VSpeedDial: VSpeedDial
|
73177
73219
|
VSparkline: VSparkline
|
73220
|
+
VSpeedDial: VSpeedDial
|
73178
73221
|
VThemeProvider: VThemeProvider
|
73179
73222
|
VValidation: VValidation
|
73180
73223
|
VVirtualScroll: VVirtualScroll
|
@@ -73194,25 +73237,25 @@ declare module 'vue' {
|
|
73194
73237
|
VExpandTransition: VExpandTransition
|
73195
73238
|
VExpandXTransition: VExpandXTransition
|
73196
73239
|
VDialogTransition: VDialogTransition
|
73240
|
+
VTimePicker: VTimePicker
|
73241
|
+
VTimePickerClock: VTimePickerClock
|
73242
|
+
VTimePickerControls: VTimePickerControls
|
73243
|
+
VPicker: VPicker
|
73244
|
+
VPickerTitle: VPickerTitle
|
73197
73245
|
VCalendar: VCalendar
|
73198
73246
|
VCalendarDay: VCalendarDay
|
73199
73247
|
VCalendarHeader: VCalendarHeader
|
73200
73248
|
VCalendarInterval: VCalendarInterval
|
73201
73249
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
73202
73250
|
VCalendarMonthDay: VCalendarMonthDay
|
73203
|
-
VFileUpload: VFileUpload
|
73204
|
-
VFileUploadItem: VFileUploadItem
|
73205
|
-
VPicker: VPicker
|
73206
|
-
VPickerTitle: VPickerTitle
|
73207
|
-
VStepperVertical: VStepperVertical
|
73208
|
-
VStepperVerticalItem: VStepperVerticalItem
|
73209
|
-
VStepperVerticalActions: VStepperVerticalActions
|
73210
|
-
VTimePicker: VTimePicker
|
73211
|
-
VTimePickerClock: VTimePickerClock
|
73212
|
-
VTimePickerControls: VTimePickerControls
|
73213
73251
|
VTreeview: VTreeview
|
73214
73252
|
VTreeviewItem: VTreeviewItem
|
73215
73253
|
VTreeviewGroup: VTreeviewGroup
|
73254
|
+
VStepperVertical: VStepperVertical
|
73255
|
+
VStepperVerticalItem: VStepperVerticalItem
|
73256
|
+
VStepperVerticalActions: VStepperVerticalActions
|
73257
|
+
VFileUpload: VFileUpload
|
73258
|
+
VFileUploadItem: VFileUploadItem
|
73216
73259
|
VDateInput: VDateInput
|
73217
73260
|
VPullToRefresh: VPullToRefresh
|
73218
73261
|
}
|