vuetify 3.7.17 → 3.7.19
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/dist/json/attributes.json +3397 -3385
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +168 -168
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +6343 -6293
- package/dist/vuetify-labs.css +3200 -3200
- package/dist/vuetify-labs.d.ts +77 -35
- package/dist/vuetify-labs.esm.js +116 -37
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +116 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2769 -2769
- package/dist/vuetify.d.ts +95 -92
- package/dist/vuetify.esm.js +43 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +43 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +12 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.mjs +18 -3
- package/lib/components/VDataTable/VDataTableRow.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +91 -88
- package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +21 -12
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +3 -3
- package/lib/components/VIcon/VIcon.mjs +2 -2
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -35
- package/lib/composables/calendar.mjs +1 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VDateInput/VDateInput.mjs +75 -18
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +43 -0
- package/lib/labs/components.d.mts +43 -4
- package/lib/util/helpers.mjs +1 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -24460,20 +24460,12 @@ declare const VDataTableHeaders: {
|
|
|
24460
24460
|
}>>;
|
|
24461
24461
|
type VDataTableHeaders = InstanceType<typeof VDataTableHeaders>;
|
|
24462
24462
|
|
|
24463
|
-
type
|
|
24464
|
-
|
|
24465
|
-
item: Group;
|
|
24466
|
-
count: number;
|
|
24467
|
-
props: Record<string, unknown>;
|
|
24468
|
-
};
|
|
24469
|
-
'data-table-select': {
|
|
24470
|
-
props: Record<string, unknown>;
|
|
24471
|
-
};
|
|
24463
|
+
type VDataTableItemCellColumnSlotProps<T> = Omit<ItemKeySlot<T>, 'value'> & {
|
|
24464
|
+
props: Record<string, unknown>;
|
|
24472
24465
|
};
|
|
24473
|
-
|
|
24474
24466
|
type VDataTableRowSlots<T> = {
|
|
24475
|
-
'item.data-table-select':
|
|
24476
|
-
'item.data-table-expand':
|
|
24467
|
+
'item.data-table-select': VDataTableItemCellColumnSlotProps<T>;
|
|
24468
|
+
'item.data-table-expand': VDataTableItemCellColumnSlotProps<T>;
|
|
24477
24469
|
'header.data-table-select': VDataTableHeaderCellColumnSlotProps;
|
|
24478
24470
|
'header.data-table-expand': VDataTableHeaderCellColumnSlotProps;
|
|
24479
24471
|
} & {
|
|
@@ -24502,8 +24494,8 @@ declare const VDataTableRow: {
|
|
|
24502
24494
|
}, true, {}, vue.SlotsType<Partial<{
|
|
24503
24495
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
24504
24496
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24505
|
-
'item.data-table-select': (arg:
|
|
24506
|
-
'item.data-table-expand': (arg:
|
|
24497
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24498
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24507
24499
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24508
24500
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24509
24501
|
}>>, {
|
|
@@ -24540,8 +24532,8 @@ declare const VDataTableRow: {
|
|
|
24540
24532
|
}, {}, string, vue.SlotsType<Partial<{
|
|
24541
24533
|
[x: `item.${string}`]: (arg: ItemKeySlot<unknown>) => vue.VNode[];
|
|
24542
24534
|
[x: `header.${string}`]: (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24543
|
-
'item.data-table-select': (arg:
|
|
24544
|
-
'item.data-table-expand': (arg:
|
|
24535
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24536
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24545
24537
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24546
24538
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24547
24539
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
@@ -24574,6 +24566,17 @@ declare const VDataTableRow: {
|
|
|
24574
24566
|
}>>;
|
|
24575
24567
|
type VDataTableRow = InstanceType<typeof VDataTableRow>;
|
|
24576
24568
|
|
|
24569
|
+
type VDataTableGroupHeaderRowSlots = {
|
|
24570
|
+
'data-table-group': {
|
|
24571
|
+
item: Group;
|
|
24572
|
+
count: number;
|
|
24573
|
+
props: Record<string, unknown>;
|
|
24574
|
+
};
|
|
24575
|
+
'data-table-select': {
|
|
24576
|
+
props: Record<string, unknown>;
|
|
24577
|
+
};
|
|
24578
|
+
};
|
|
24579
|
+
|
|
24577
24580
|
type VDataTableRowsSlots<T> = VDataTableGroupHeaderRowSlots & VDataTableRowSlots<T> & {
|
|
24578
24581
|
item: ItemSlot$1<T> & {
|
|
24579
24582
|
props: Record<string, any>;
|
|
@@ -24620,8 +24623,8 @@ declare const VDataTableRows: {
|
|
|
24620
24623
|
'data-table-select': (arg: {
|
|
24621
24624
|
props: Record<string, unknown>;
|
|
24622
24625
|
}) => vue.VNode[];
|
|
24623
|
-
'item.data-table-select': (arg:
|
|
24624
|
-
'item.data-table-expand': (arg:
|
|
24626
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24627
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24625
24628
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24626
24629
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24627
24630
|
item: (arg: {
|
|
@@ -24693,8 +24696,8 @@ declare const VDataTableRows: {
|
|
|
24693
24696
|
'data-table-select': (arg: {
|
|
24694
24697
|
props: Record<string, unknown>;
|
|
24695
24698
|
}) => vue.VNode[];
|
|
24696
|
-
'item.data-table-select': (arg:
|
|
24697
|
-
'item.data-table-expand': (arg:
|
|
24699
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24700
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<unknown>) => vue.VNode[];
|
|
24698
24701
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24699
24702
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
24700
24703
|
item: (arg: {
|
|
@@ -25009,8 +25012,8 @@ declare const VDataTable: {
|
|
|
25009
25012
|
'data-table-select': (arg: {
|
|
25010
25013
|
props: Record<string, unknown>;
|
|
25011
25014
|
}) => vue.VNode[];
|
|
25012
|
-
'item.data-table-select': (arg:
|
|
25013
|
-
'item.data-table-expand': (arg:
|
|
25015
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25016
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25014
25017
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25015
25018
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25016
25019
|
item: (arg: {
|
|
@@ -25310,8 +25313,8 @@ declare const VDataTable: {
|
|
|
25310
25313
|
'data-table-select': (arg: {
|
|
25311
25314
|
props: Record<string, unknown>;
|
|
25312
25315
|
}) => vue.VNode[];
|
|
25313
|
-
'item.data-table-select': (arg:
|
|
25314
|
-
'item.data-table-expand': (arg:
|
|
25316
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25317
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
25315
25318
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25316
25319
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
25317
25320
|
item: (arg: {
|
|
@@ -26212,8 +26215,8 @@ declare const VDataTableVirtual: {
|
|
|
26212
26215
|
'data-table-select': (arg: {
|
|
26213
26216
|
props: Record<string, unknown>;
|
|
26214
26217
|
}) => vue.VNode[];
|
|
26215
|
-
'item.data-table-select': (arg:
|
|
26216
|
-
'item.data-table-expand': (arg:
|
|
26218
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26219
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26217
26220
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26218
26221
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26219
26222
|
item: (arg: {
|
|
@@ -26522,8 +26525,8 @@ declare const VDataTableVirtual: {
|
|
|
26522
26525
|
'data-table-select': (arg: {
|
|
26523
26526
|
props: Record<string, unknown>;
|
|
26524
26527
|
}) => vue.VNode[];
|
|
26525
|
-
'item.data-table-select': (arg:
|
|
26526
|
-
'item.data-table-expand': (arg:
|
|
26528
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26529
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
26527
26530
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26528
26531
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
26529
26532
|
item: (arg: {
|
|
@@ -27070,8 +27073,8 @@ declare const VDataTableServer: {
|
|
|
27070
27073
|
'data-table-select': (arg: {
|
|
27071
27074
|
props: Record<string, unknown>;
|
|
27072
27075
|
}) => vue.VNode[];
|
|
27073
|
-
'item.data-table-select': (arg:
|
|
27074
|
-
'item.data-table-expand': (arg:
|
|
27076
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27077
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27075
27078
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27076
27079
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27077
27080
|
item: (arg: {
|
|
@@ -27442,8 +27445,8 @@ declare const VDataTableServer: {
|
|
|
27442
27445
|
'data-table-select': (arg: {
|
|
27443
27446
|
props: Record<string, unknown>;
|
|
27444
27447
|
}) => vue.VNode[];
|
|
27445
|
-
'item.data-table-select': (arg:
|
|
27446
|
-
'item.data-table-expand': (arg:
|
|
27448
|
+
'item.data-table-select': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27449
|
+
'item.data-table-expand': (arg: VDataTableItemCellColumnSlotProps<any>) => vue.VNode[];
|
|
27447
27450
|
'header.data-table-select': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27448
27451
|
'header.data-table-expand': (arg: VDataTableHeaderCellColumnSlotProps) => vue.VNode[];
|
|
27449
27452
|
item: (arg: {
|
|
@@ -29028,7 +29031,7 @@ declare const VDatePickerMonth: {
|
|
|
29028
29031
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
29029
29032
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
29030
29033
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
29031
|
-
},
|
|
29034
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
29032
29035
|
'update:modelValue': (date: unknown) => true;
|
|
29033
29036
|
'update:month': (date: number) => true;
|
|
29034
29037
|
'update:year': (date: number) => true;
|
|
@@ -29156,7 +29159,7 @@ declare const VDatePickerMonth: {
|
|
|
29156
29159
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
29157
29160
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
29158
29161
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
29159
|
-
},
|
|
29162
|
+
}, () => JSX.Element, {}, {}, {}, {
|
|
29160
29163
|
transition: string;
|
|
29161
29164
|
disabled: boolean;
|
|
29162
29165
|
reverseTransition: string;
|
|
@@ -29219,7 +29222,7 @@ declare const VDatePickerMonth: {
|
|
|
29219
29222
|
"onUpdate:modelValue"?: ((date: unknown) => any) | undefined;
|
|
29220
29223
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
29221
29224
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
29222
|
-
},
|
|
29225
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
29223
29226
|
'update:modelValue': (date: unknown) => true;
|
|
29224
29227
|
'update:month': (date: number) => true;
|
|
29225
29228
|
'update:year': (date: number) => true;
|
|
@@ -68759,6 +68762,7 @@ declare const VDateInput: {
|
|
|
68759
68762
|
style: vue.StyleValue;
|
|
68760
68763
|
title: string;
|
|
68761
68764
|
autofocus: boolean;
|
|
68765
|
+
mobile: boolean | null;
|
|
68762
68766
|
disabled: boolean;
|
|
68763
68767
|
readonly: boolean | null;
|
|
68764
68768
|
tag: string;
|
|
@@ -68821,6 +68825,7 @@ declare const VDateInput: {
|
|
|
68821
68825
|
theme?: string | undefined;
|
|
68822
68826
|
elevation?: string | number | undefined;
|
|
68823
68827
|
counter?: string | number | boolean | undefined;
|
|
68828
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
68824
68829
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
68825
68830
|
modelValue?: any;
|
|
68826
68831
|
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;
|
|
@@ -68844,6 +68849,7 @@ declare const VDateInput: {
|
|
|
68844
68849
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
68845
68850
|
firstDayOfWeek?: string | number | undefined;
|
|
68846
68851
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
68852
|
+
displayFormat?: string | Function | undefined;
|
|
68847
68853
|
} & {
|
|
68848
68854
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
68849
68855
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -68902,8 +68908,12 @@ declare const VDateInput: {
|
|
|
68902
68908
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
68903
68909
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
68904
68910
|
} & {
|
|
68911
|
+
onCancel?: (() => any) | undefined;
|
|
68905
68912
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
68913
|
+
onSave?: ((value: string) => any) | undefined;
|
|
68906
68914
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
68915
|
+
save: (value: string) => true;
|
|
68916
|
+
cancel: () => true;
|
|
68907
68917
|
'update:modelValue': (val: string) => true;
|
|
68908
68918
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
68909
68919
|
flat: boolean;
|
|
@@ -68919,6 +68929,7 @@ declare const VDateInput: {
|
|
|
68919
68929
|
style: vue.StyleValue;
|
|
68920
68930
|
title: string;
|
|
68921
68931
|
autofocus: boolean;
|
|
68932
|
+
mobile: boolean | null;
|
|
68922
68933
|
disabled: boolean;
|
|
68923
68934
|
readonly: boolean | null;
|
|
68924
68935
|
tag: string;
|
|
@@ -68981,6 +68992,7 @@ declare const VDateInput: {
|
|
|
68981
68992
|
theme?: string | undefined;
|
|
68982
68993
|
elevation?: string | number | undefined;
|
|
68983
68994
|
counter?: string | number | boolean | undefined;
|
|
68995
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
68984
68996
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
68985
68997
|
modelValue?: any;
|
|
68986
68998
|
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;
|
|
@@ -69004,6 +69016,7 @@ declare const VDateInput: {
|
|
|
69004
69016
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
69005
69017
|
firstDayOfWeek?: string | number | undefined;
|
|
69006
69018
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
69019
|
+
displayFormat?: string | Function | undefined;
|
|
69007
69020
|
} & {
|
|
69008
69021
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69009
69022
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -69062,7 +69075,9 @@ declare const VDateInput: {
|
|
|
69062
69075
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
69063
69076
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69064
69077
|
} & {
|
|
69078
|
+
onCancel?: (() => any) | undefined;
|
|
69065
69079
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
69080
|
+
onSave?: ((value: string) => any) | undefined;
|
|
69066
69081
|
}, {
|
|
69067
69082
|
flat: boolean;
|
|
69068
69083
|
reverse: boolean;
|
|
@@ -69077,6 +69092,7 @@ declare const VDateInput: {
|
|
|
69077
69092
|
style: vue.StyleValue;
|
|
69078
69093
|
title: string;
|
|
69079
69094
|
autofocus: boolean;
|
|
69095
|
+
mobile: boolean | null;
|
|
69080
69096
|
disabled: boolean;
|
|
69081
69097
|
readonly: boolean | null;
|
|
69082
69098
|
tag: string;
|
|
@@ -69154,6 +69170,7 @@ declare const VDateInput: {
|
|
|
69154
69170
|
style: vue.StyleValue;
|
|
69155
69171
|
title: string;
|
|
69156
69172
|
autofocus: boolean;
|
|
69173
|
+
mobile: boolean | null;
|
|
69157
69174
|
disabled: boolean;
|
|
69158
69175
|
readonly: boolean | null;
|
|
69159
69176
|
tag: string;
|
|
@@ -69216,6 +69233,7 @@ declare const VDateInput: {
|
|
|
69216
69233
|
theme?: string | undefined;
|
|
69217
69234
|
elevation?: string | number | undefined;
|
|
69218
69235
|
counter?: string | number | boolean | undefined;
|
|
69236
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
69219
69237
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
69220
69238
|
modelValue?: any;
|
|
69221
69239
|
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;
|
|
@@ -69239,6 +69257,7 @@ declare const VDateInput: {
|
|
|
69239
69257
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
69240
69258
|
firstDayOfWeek?: string | number | undefined;
|
|
69241
69259
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
69260
|
+
displayFormat?: string | Function | undefined;
|
|
69242
69261
|
} & {
|
|
69243
69262
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69244
69263
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -69297,7 +69316,9 @@ declare const VDateInput: {
|
|
|
69297
69316
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
69298
69317
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69299
69318
|
} & {
|
|
69319
|
+
onCancel?: (() => any) | undefined;
|
|
69300
69320
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
69321
|
+
onSave?: ((value: string) => any) | undefined;
|
|
69301
69322
|
}, any, {}, {}, {}, {
|
|
69302
69323
|
flat: boolean;
|
|
69303
69324
|
reverse: boolean;
|
|
@@ -69312,6 +69333,7 @@ declare const VDateInput: {
|
|
|
69312
69333
|
style: vue.StyleValue;
|
|
69313
69334
|
title: string;
|
|
69314
69335
|
autofocus: boolean;
|
|
69336
|
+
mobile: boolean | null;
|
|
69315
69337
|
disabled: boolean;
|
|
69316
69338
|
readonly: boolean | null;
|
|
69317
69339
|
tag: string;
|
|
@@ -69368,6 +69390,7 @@ declare const VDateInput: {
|
|
|
69368
69390
|
style: vue.StyleValue;
|
|
69369
69391
|
title: string;
|
|
69370
69392
|
autofocus: boolean;
|
|
69393
|
+
mobile: boolean | null;
|
|
69371
69394
|
disabled: boolean;
|
|
69372
69395
|
readonly: boolean | null;
|
|
69373
69396
|
tag: string;
|
|
@@ -69430,6 +69453,7 @@ declare const VDateInput: {
|
|
|
69430
69453
|
theme?: string | undefined;
|
|
69431
69454
|
elevation?: string | number | undefined;
|
|
69432
69455
|
counter?: string | number | boolean | undefined;
|
|
69456
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
69433
69457
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
69434
69458
|
modelValue?: any;
|
|
69435
69459
|
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;
|
|
@@ -69453,6 +69477,7 @@ declare const VDateInput: {
|
|
|
69453
69477
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
69454
69478
|
firstDayOfWeek?: string | number | undefined;
|
|
69455
69479
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
69480
|
+
displayFormat?: string | Function | undefined;
|
|
69456
69481
|
} & {
|
|
69457
69482
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69458
69483
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
@@ -69511,8 +69536,12 @@ declare const VDateInput: {
|
|
|
69511
69536
|
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
69512
69537
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69513
69538
|
} & {
|
|
69539
|
+
onCancel?: (() => any) | undefined;
|
|
69514
69540
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
69541
|
+
onSave?: ((value: string) => any) | undefined;
|
|
69515
69542
|
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
69543
|
+
save: (value: string) => true;
|
|
69544
|
+
cancel: () => true;
|
|
69516
69545
|
'update:modelValue': (val: string) => true;
|
|
69517
69546
|
}, string, {
|
|
69518
69547
|
flat: boolean;
|
|
@@ -69528,6 +69557,7 @@ declare const VDateInput: {
|
|
|
69528
69557
|
style: vue.StyleValue;
|
|
69529
69558
|
title: string;
|
|
69530
69559
|
autofocus: boolean;
|
|
69560
|
+
mobile: boolean | null;
|
|
69531
69561
|
disabled: boolean;
|
|
69532
69562
|
readonly: boolean | null;
|
|
69533
69563
|
tag: string;
|
|
@@ -69800,6 +69830,12 @@ declare const VDateInput: {
|
|
|
69800
69830
|
type: StringConstructor;
|
|
69801
69831
|
default: string;
|
|
69802
69832
|
};
|
|
69833
|
+
mobile: {
|
|
69834
|
+
type: PropType<boolean | null>;
|
|
69835
|
+
default: boolean;
|
|
69836
|
+
};
|
|
69837
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
69838
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
|
69803
69839
|
hideActions: BooleanConstructor;
|
|
69804
69840
|
location: {
|
|
69805
69841
|
type: PropType<StrategyProps["location"]>;
|
|
@@ -70021,6 +70057,12 @@ declare const VDateInput: {
|
|
|
70021
70057
|
type: StringConstructor;
|
|
70022
70058
|
default: string;
|
|
70023
70059
|
};
|
|
70060
|
+
mobile: {
|
|
70061
|
+
type: PropType<boolean | null>;
|
|
70062
|
+
default: boolean;
|
|
70063
|
+
};
|
|
70064
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
70065
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
|
70024
70066
|
hideActions: BooleanConstructor;
|
|
70025
70067
|
location: {
|
|
70026
70068
|
type: PropType<StrategyProps["location"]>;
|