@vuetify/nightly 3.7.6-master.2025-01-15 → 3.7.6-master.2025-01-16
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 +3190 -3190
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +6252 -6232
- package/dist/vuetify-labs.css +2912 -2909
- package/dist/vuetify-labs.d.ts +129 -104
- package/dist/vuetify-labs.esm.js +53 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3437 -3434
- package/dist/vuetify.d.ts +62 -65
- package/dist/vuetify.esm.js +33 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +33 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +29 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.css +5 -2
- package/lib/components/VDialog/VDialog.sass +6 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs +12 -2
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSparkline/VBarline.mjs +3 -2
- package/lib/components/VSparkline/VBarline.mjs.map +1 -1
- package/lib/components/VSparkline/VTrendline.mjs +2 -1
- package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/components/VSparkline/index.d.mts +7 -10
- package/lib/components/VSparkline/util/line.mjs +1 -1
- package/lib/components/VSparkline/util/line.mjs.map +1 -1
- package/lib/components/index.d.mts +7 -10
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +55 -55
- package/lib/labs/VDateInput/VDateInput.mjs +19 -5
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +176 -97
- package/lib/labs/components.d.mts +227 -199
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -51448,7 +51448,7 @@ declare const VSnackbar: {
|
|
51448
51448
|
}>>;
|
51449
51449
|
type VSnackbar = InstanceType<typeof VSnackbar>;
|
51450
51450
|
|
51451
|
-
type SparklineItem = number | {
|
51451
|
+
type SparklineItem = string | number | {
|
51452
51452
|
value: number;
|
51453
51453
|
};
|
51454
51454
|
|
@@ -51458,7 +51458,6 @@ declare const VSparkline: {
|
|
51458
51458
|
type: "bar" | "trend";
|
51459
51459
|
height: string | number;
|
51460
51460
|
width: string | number;
|
51461
|
-
smooth: boolean;
|
51462
51461
|
padding: string | number;
|
51463
51462
|
labels: SparklineItem[];
|
51464
51463
|
modelValue: SparklineItem[];
|
@@ -51474,6 +51473,7 @@ declare const VSparkline: {
|
|
51474
51473
|
} & {
|
51475
51474
|
max?: string | number | undefined;
|
51476
51475
|
id?: string | undefined;
|
51476
|
+
smooth?: string | number | boolean | undefined;
|
51477
51477
|
min?: string | number | undefined;
|
51478
51478
|
color?: string | undefined;
|
51479
51479
|
autoDrawDuration?: string | number | undefined;
|
@@ -51503,7 +51503,6 @@ declare const VSparkline: {
|
|
51503
51503
|
type: "bar" | "trend";
|
51504
51504
|
height: string | number;
|
51505
51505
|
width: string | number;
|
51506
|
-
smooth: boolean;
|
51507
51506
|
padding: string | number;
|
51508
51507
|
labels: SparklineItem[];
|
51509
51508
|
modelValue: SparklineItem[];
|
@@ -51519,6 +51518,7 @@ declare const VSparkline: {
|
|
51519
51518
|
} & {
|
51520
51519
|
max?: string | number | undefined;
|
51521
51520
|
id?: string | undefined;
|
51521
|
+
smooth?: string | number | boolean | undefined;
|
51522
51522
|
min?: string | number | undefined;
|
51523
51523
|
color?: string | undefined;
|
51524
51524
|
autoDrawDuration?: string | number | undefined;
|
@@ -51548,7 +51548,6 @@ declare const VSparkline: {
|
|
51548
51548
|
type: "bar" | "trend";
|
51549
51549
|
height: string | number;
|
51550
51550
|
width: string | number;
|
51551
|
-
smooth: boolean;
|
51552
51551
|
padding: string | number;
|
51553
51552
|
labels: SparklineItem[];
|
51554
51553
|
modelValue: SparklineItem[];
|
@@ -51579,7 +51578,6 @@ declare const VSparkline: {
|
|
51579
51578
|
type: "bar" | "trend";
|
51580
51579
|
height: string | number;
|
51581
51580
|
width: string | number;
|
51582
|
-
smooth: boolean;
|
51583
51581
|
padding: string | number;
|
51584
51582
|
labels: SparklineItem[];
|
51585
51583
|
modelValue: SparklineItem[];
|
@@ -51595,6 +51593,7 @@ declare const VSparkline: {
|
|
51595
51593
|
} & {
|
51596
51594
|
max?: string | number | undefined;
|
51597
51595
|
id?: string | undefined;
|
51596
|
+
smooth?: string | number | boolean | undefined;
|
51598
51597
|
min?: string | number | undefined;
|
51599
51598
|
color?: string | undefined;
|
51600
51599
|
autoDrawDuration?: string | number | undefined;
|
@@ -51624,7 +51623,6 @@ declare const VSparkline: {
|
|
51624
51623
|
type: "bar" | "trend";
|
51625
51624
|
height: string | number;
|
51626
51625
|
width: string | number;
|
51627
|
-
smooth: boolean;
|
51628
51626
|
padding: string | number;
|
51629
51627
|
labels: SparklineItem[];
|
51630
51628
|
modelValue: SparklineItem[];
|
@@ -51646,7 +51644,6 @@ declare const VSparkline: {
|
|
51646
51644
|
type: "bar" | "trend";
|
51647
51645
|
height: string | number;
|
51648
51646
|
width: string | number;
|
51649
|
-
smooth: boolean;
|
51650
51647
|
padding: string | number;
|
51651
51648
|
labels: SparklineItem[];
|
51652
51649
|
modelValue: SparklineItem[];
|
@@ -51662,6 +51659,7 @@ declare const VSparkline: {
|
|
51662
51659
|
} & {
|
51663
51660
|
max?: string | number | undefined;
|
51664
51661
|
id?: string | undefined;
|
51662
|
+
smooth?: string | number | boolean | undefined;
|
51665
51663
|
min?: string | number | undefined;
|
51666
51664
|
color?: string | undefined;
|
51667
51665
|
autoDrawDuration?: string | number | undefined;
|
@@ -51691,7 +51689,6 @@ declare const VSparkline: {
|
|
51691
51689
|
type: "bar" | "trend";
|
51692
51690
|
height: string | number;
|
51693
51691
|
width: string | number;
|
51694
|
-
smooth: boolean;
|
51695
51692
|
padding: string | number;
|
51696
51693
|
labels: SparklineItem[];
|
51697
51694
|
modelValue: SparklineItem[];
|
@@ -51759,7 +51756,7 @@ declare const VSparkline: {
|
|
51759
51756
|
default: number;
|
51760
51757
|
};
|
51761
51758
|
showLabels: BooleanConstructor;
|
51762
|
-
smooth: BooleanConstructor;
|
51759
|
+
smooth: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
51763
51760
|
width: {
|
51764
51761
|
type: (StringConstructor | NumberConstructor)[];
|
51765
51762
|
default: number;
|
@@ -51819,7 +51816,7 @@ declare const VSparkline: {
|
|
51819
51816
|
default: number;
|
51820
51817
|
};
|
51821
51818
|
showLabels: BooleanConstructor;
|
51822
|
-
smooth: BooleanConstructor;
|
51819
|
+
smooth: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
51823
51820
|
width: {
|
51824
51821
|
type: (StringConstructor | NumberConstructor)[];
|
51825
51822
|
default: number;
|
@@ -68695,6 +68692,11 @@ declare const VCalendarMonthDay: {
|
|
68695
68692
|
}>>;
|
68696
68693
|
type VCalendarMonthDay = InstanceType<typeof VCalendarMonthDay>;
|
68697
68694
|
|
68695
|
+
type VDateInputActionsSlot = {
|
68696
|
+
save: () => void;
|
68697
|
+
cancel: () => void;
|
68698
|
+
isPristine: boolean;
|
68699
|
+
};
|
68698
68700
|
declare const VDateInput: {
|
68699
68701
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
68700
68702
|
flat: boolean;
|
@@ -68702,6 +68704,7 @@ declare const VDateInput: {
|
|
68702
68704
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
68703
68705
|
type: string;
|
68704
68706
|
error: boolean;
|
68707
|
+
location: Anchor;
|
68705
68708
|
active: boolean;
|
68706
68709
|
direction: "horizontal" | "vertical";
|
68707
68710
|
transition: string;
|
@@ -68748,7 +68751,6 @@ declare const VDateInput: {
|
|
68748
68751
|
} & {
|
68749
68752
|
name?: string | undefined;
|
68750
68753
|
max?: unknown;
|
68751
|
-
location?: Anchor | null | undefined;
|
68752
68754
|
id?: string | undefined;
|
68753
68755
|
height?: string | number | undefined;
|
68754
68756
|
width?: string | number | undefined;
|
@@ -68797,13 +68799,16 @@ declare const VDateInput: {
|
|
68797
68799
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
68798
68800
|
displayValue?: unknown;
|
68799
68801
|
} & {
|
68800
|
-
$children?: vue.VNodeChild | {
|
68802
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
68803
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68801
68804
|
default?: (() => vue.VNodeChild) | undefined;
|
68802
|
-
}
|
68805
|
+
};
|
68803
68806
|
'v-slots'?: {
|
68807
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68804
68808
|
default?: false | (() => vue.VNodeChild) | undefined;
|
68805
68809
|
} | undefined;
|
68806
68810
|
} & {
|
68811
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68807
68812
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
68808
68813
|
} & {
|
68809
68814
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -68815,6 +68820,7 @@ declare const VDateInput: {
|
|
68815
68820
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
68816
68821
|
type: string;
|
68817
68822
|
error: boolean;
|
68823
|
+
location: Anchor;
|
68818
68824
|
active: boolean;
|
68819
68825
|
direction: "horizontal" | "vertical";
|
68820
68826
|
transition: string;
|
@@ -68861,7 +68867,6 @@ declare const VDateInput: {
|
|
68861
68867
|
} & {
|
68862
68868
|
name?: string | undefined;
|
68863
68869
|
max?: unknown;
|
68864
|
-
location?: Anchor | null | undefined;
|
68865
68870
|
id?: string | undefined;
|
68866
68871
|
height?: string | number | undefined;
|
68867
68872
|
width?: string | number | undefined;
|
@@ -68910,13 +68915,16 @@ declare const VDateInput: {
|
|
68910
68915
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
68911
68916
|
displayValue?: unknown;
|
68912
68917
|
} & {
|
68913
|
-
$children?: vue.VNodeChild | {
|
68918
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
68919
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68914
68920
|
default?: (() => vue.VNodeChild) | undefined;
|
68915
|
-
}
|
68921
|
+
};
|
68916
68922
|
'v-slots'?: {
|
68923
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68917
68924
|
default?: false | (() => vue.VNodeChild) | undefined;
|
68918
68925
|
} | undefined;
|
68919
68926
|
} & {
|
68927
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
68920
68928
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
68921
68929
|
} & {
|
68922
68930
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -68926,6 +68934,7 @@ declare const VDateInput: {
|
|
68926
68934
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
68927
68935
|
type: string;
|
68928
68936
|
error: boolean;
|
68937
|
+
location: Anchor;
|
68929
68938
|
active: boolean;
|
68930
68939
|
direction: "horizontal" | "vertical";
|
68931
68940
|
transition: string;
|
@@ -68972,6 +68981,7 @@ declare const VDateInput: {
|
|
68972
68981
|
hideHeader: boolean;
|
68973
68982
|
hideActions: boolean;
|
68974
68983
|
}, true, {}, vue.SlotsType<Partial<{
|
68984
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
68975
68985
|
default: () => vue.VNode[];
|
68976
68986
|
}>>, {
|
68977
68987
|
P: {};
|
@@ -68986,6 +68996,7 @@ declare const VDateInput: {
|
|
68986
68996
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
68987
68997
|
type: string;
|
68988
68998
|
error: boolean;
|
68999
|
+
location: Anchor;
|
68989
69000
|
active: boolean;
|
68990
69001
|
direction: "horizontal" | "vertical";
|
68991
69002
|
transition: string;
|
@@ -69032,7 +69043,6 @@ declare const VDateInput: {
|
|
69032
69043
|
} & {
|
69033
69044
|
name?: string | undefined;
|
69034
69045
|
max?: unknown;
|
69035
|
-
location?: Anchor | null | undefined;
|
69036
69046
|
id?: string | undefined;
|
69037
69047
|
height?: string | number | undefined;
|
69038
69048
|
width?: string | number | undefined;
|
@@ -69081,13 +69091,16 @@ declare const VDateInput: {
|
|
69081
69091
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
69082
69092
|
displayValue?: unknown;
|
69083
69093
|
} & {
|
69084
|
-
$children?: vue.VNodeChild | {
|
69094
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
69095
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69085
69096
|
default?: (() => vue.VNodeChild) | undefined;
|
69086
|
-
}
|
69097
|
+
};
|
69087
69098
|
'v-slots'?: {
|
69099
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69088
69100
|
default?: false | (() => vue.VNodeChild) | undefined;
|
69089
69101
|
} | undefined;
|
69090
69102
|
} & {
|
69103
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69091
69104
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
69092
69105
|
} & {
|
69093
69106
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -69097,6 +69110,7 @@ declare const VDateInput: {
|
|
69097
69110
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
69098
69111
|
type: string;
|
69099
69112
|
error: boolean;
|
69113
|
+
location: Anchor;
|
69100
69114
|
active: boolean;
|
69101
69115
|
direction: "horizontal" | "vertical";
|
69102
69116
|
transition: string;
|
@@ -69152,6 +69166,7 @@ declare const VDateInput: {
|
|
69152
69166
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
69153
69167
|
type: string;
|
69154
69168
|
error: boolean;
|
69169
|
+
location: Anchor;
|
69155
69170
|
active: boolean;
|
69156
69171
|
direction: "horizontal" | "vertical";
|
69157
69172
|
transition: string;
|
@@ -69198,7 +69213,6 @@ declare const VDateInput: {
|
|
69198
69213
|
} & {
|
69199
69214
|
name?: string | undefined;
|
69200
69215
|
max?: unknown;
|
69201
|
-
location?: Anchor | null | undefined;
|
69202
69216
|
id?: string | undefined;
|
69203
69217
|
height?: string | number | undefined;
|
69204
69218
|
width?: string | number | undefined;
|
@@ -69247,13 +69261,16 @@ declare const VDateInput: {
|
|
69247
69261
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
69248
69262
|
displayValue?: unknown;
|
69249
69263
|
} & {
|
69250
|
-
$children?: vue.VNodeChild | {
|
69264
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
69265
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69251
69266
|
default?: (() => vue.VNodeChild) | undefined;
|
69252
|
-
}
|
69267
|
+
};
|
69253
69268
|
'v-slots'?: {
|
69269
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69254
69270
|
default?: false | (() => vue.VNodeChild) | undefined;
|
69255
69271
|
} | undefined;
|
69256
69272
|
} & {
|
69273
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
69257
69274
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
69258
69275
|
} & {
|
69259
69276
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -69265,6 +69282,7 @@ declare const VDateInput: {
|
|
69265
69282
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
69266
69283
|
type: string;
|
69267
69284
|
error: boolean;
|
69285
|
+
location: Anchor;
|
69268
69286
|
active: boolean;
|
69269
69287
|
direction: "horizontal" | "vertical";
|
69270
69288
|
transition: string;
|
@@ -69311,13 +69329,13 @@ declare const VDateInput: {
|
|
69311
69329
|
hideHeader: boolean;
|
69312
69330
|
hideActions: boolean;
|
69313
69331
|
}, {}, string, vue.SlotsType<Partial<{
|
69332
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
69314
69333
|
default: () => vue.VNode[];
|
69315
69334
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
69316
|
-
max:
|
69317
|
-
location: vue.PropType<Anchor | null>;
|
69335
|
+
max: PropType<unknown>;
|
69318
69336
|
height: (StringConstructor | NumberConstructor)[];
|
69319
69337
|
width: (StringConstructor | NumberConstructor)[];
|
69320
|
-
min:
|
69338
|
+
min: PropType<unknown>;
|
69321
69339
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69322
69340
|
color: StringConstructor;
|
69323
69341
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -69325,7 +69343,7 @@ declare const VDateInput: {
|
|
69325
69343
|
minHeight: (StringConstructor | NumberConstructor)[];
|
69326
69344
|
minWidth: (StringConstructor | NumberConstructor)[];
|
69327
69345
|
position: {
|
69328
|
-
type:
|
69346
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
69329
69347
|
validator: (v: any) => boolean;
|
69330
69348
|
};
|
69331
69349
|
transition: {
|
@@ -69337,19 +69355,19 @@ declare const VDateInput: {
|
|
69337
69355
|
default: string;
|
69338
69356
|
};
|
69339
69357
|
style: {
|
69340
|
-
type:
|
69358
|
+
type: PropType<vue.StyleValue>;
|
69341
69359
|
default: null;
|
69342
69360
|
};
|
69343
69361
|
title: {
|
69344
|
-
type:
|
69362
|
+
type: PropType<string>;
|
69345
69363
|
default: string;
|
69346
69364
|
};
|
69347
69365
|
text: StringConstructor;
|
69348
69366
|
disabled: BooleanConstructor;
|
69349
|
-
multiple:
|
69367
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
69350
69368
|
month: (StringConstructor | NumberConstructor)[];
|
69351
69369
|
year: NumberConstructor;
|
69352
|
-
class:
|
69370
|
+
class: PropType<ClassValue>;
|
69353
69371
|
theme: StringConstructor;
|
69354
69372
|
tag: {
|
69355
69373
|
type: StringConstructor;
|
@@ -69368,11 +69386,11 @@ declare const VDateInput: {
|
|
69368
69386
|
tile: BooleanConstructor;
|
69369
69387
|
bgColor: StringConstructor;
|
69370
69388
|
nextIcon: {
|
69371
|
-
type:
|
69389
|
+
type: PropType<IconValue>;
|
69372
69390
|
default: string;
|
69373
69391
|
};
|
69374
69392
|
prevIcon: {
|
69375
|
-
type:
|
69393
|
+
type: PropType<IconValue>;
|
69376
69394
|
default: string;
|
69377
69395
|
};
|
69378
69396
|
reverseTransition: {
|
@@ -69380,11 +69398,11 @@ declare const VDateInput: {
|
|
69380
69398
|
default: string;
|
69381
69399
|
};
|
69382
69400
|
modeIcon: {
|
69383
|
-
type:
|
69401
|
+
type: PropType<IconValue>;
|
69384
69402
|
default: string;
|
69385
69403
|
};
|
69386
69404
|
viewMode: {
|
69387
|
-
type:
|
69405
|
+
type: PropType<"month" | "months" | "year">;
|
69388
69406
|
default: string;
|
69389
69407
|
};
|
69390
69408
|
showAdjacentMonths: BooleanConstructor;
|
@@ -69408,29 +69426,29 @@ declare const VDateInput: {
|
|
69408
69426
|
default: () => number[];
|
69409
69427
|
};
|
69410
69428
|
weeksInMonth: Omit<Omit<{
|
69411
|
-
type:
|
69429
|
+
type: PropType<"dynamic" | "static">;
|
69412
69430
|
default: string;
|
69413
69431
|
}, "type" | "default"> & {
|
69414
|
-
type:
|
69432
|
+
type: PropType<"static" | "dynamic">;
|
69415
69433
|
default: NonNullable<"static" | "dynamic">;
|
69416
69434
|
}, "type" | "default"> & {
|
69417
|
-
type:
|
69435
|
+
type: PropType<"static" | "dynamic">;
|
69418
69436
|
default: NonNullable<"static" | "dynamic">;
|
69419
69437
|
};
|
69420
69438
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69421
|
-
allowedDates:
|
69422
|
-
displayValue:
|
69439
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
69440
|
+
displayValue: PropType<unknown>;
|
69423
69441
|
hideWeekdays: BooleanConstructor;
|
69424
69442
|
showWeek: BooleanConstructor;
|
69425
69443
|
hideHeader: {
|
69426
|
-
type:
|
69444
|
+
type: PropType<boolean>;
|
69427
69445
|
default: boolean;
|
69428
69446
|
};
|
69429
69447
|
loading: (StringConstructor | BooleanConstructor)[];
|
69430
|
-
appendInnerIcon:
|
69448
|
+
appendInnerIcon: PropType<IconValue>;
|
69431
69449
|
clearable: BooleanConstructor;
|
69432
69450
|
clearIcon: {
|
69433
|
-
type:
|
69451
|
+
type: PropType<IconValue>;
|
69434
69452
|
default: string;
|
69435
69453
|
};
|
69436
69454
|
active: BooleanConstructor;
|
@@ -69444,21 +69462,21 @@ declare const VDateInput: {
|
|
69444
69462
|
flat: BooleanConstructor;
|
69445
69463
|
label: StringConstructor;
|
69446
69464
|
persistentClear: BooleanConstructor;
|
69447
|
-
prependInnerIcon:
|
69465
|
+
prependInnerIcon: PropType<IconValue>;
|
69448
69466
|
reverse: BooleanConstructor;
|
69449
69467
|
singleLine: BooleanConstructor;
|
69450
69468
|
variant: {
|
69451
|
-
type:
|
69469
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
69452
69470
|
default: string;
|
69453
69471
|
validator: (v: any) => boolean;
|
69454
69472
|
};
|
69455
|
-
'onClick:clear':
|
69456
|
-
'onClick:appendInner':
|
69457
|
-
'onClick:prependInner':
|
69473
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
69474
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
69475
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
69458
69476
|
focused: BooleanConstructor;
|
69459
|
-
'onUpdate:focused':
|
69477
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
69460
69478
|
errorMessages: {
|
69461
|
-
type:
|
69479
|
+
type: PropType<string | readonly string[] | null>;
|
69462
69480
|
default: () => never[];
|
69463
69481
|
};
|
69464
69482
|
maxErrors: {
|
@@ -69467,47 +69485,47 @@ declare const VDateInput: {
|
|
69467
69485
|
};
|
69468
69486
|
name: StringConstructor;
|
69469
69487
|
readonly: {
|
69470
|
-
type:
|
69488
|
+
type: PropType<boolean | null>;
|
69471
69489
|
default: null;
|
69472
69490
|
};
|
69473
69491
|
rules: {
|
69474
|
-
type:
|
69492
|
+
type: PropType<readonly ValidationRule$1[]>;
|
69475
69493
|
default: () => never[];
|
69476
69494
|
};
|
69477
|
-
validateOn:
|
69495
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
69478
69496
|
validationValue: null;
|
69479
69497
|
density: {
|
69480
|
-
type:
|
69498
|
+
type: PropType<Density>;
|
69481
69499
|
default: string;
|
69482
69500
|
validator: (v: any) => boolean;
|
69483
69501
|
};
|
69484
69502
|
id: StringConstructor;
|
69485
|
-
appendIcon:
|
69503
|
+
appendIcon: PropType<IconValue>;
|
69486
69504
|
prependIcon: {
|
69487
|
-
type:
|
69505
|
+
type: PropType<IconValue>;
|
69488
69506
|
default: NonNullable<IconValue>;
|
69489
69507
|
};
|
69490
|
-
hideDetails:
|
69508
|
+
hideDetails: PropType<boolean | "auto">;
|
69491
69509
|
hideSpinButtons: BooleanConstructor;
|
69492
69510
|
hint: StringConstructor;
|
69493
69511
|
persistentHint: BooleanConstructor;
|
69494
69512
|
messages: {
|
69495
|
-
type:
|
69513
|
+
type: PropType<string | readonly string[]>;
|
69496
69514
|
default: () => never[];
|
69497
69515
|
};
|
69498
69516
|
direction: {
|
69499
|
-
type:
|
69517
|
+
type: PropType<"horizontal" | "vertical">;
|
69500
69518
|
default: string;
|
69501
69519
|
validator: (v: any) => boolean;
|
69502
69520
|
};
|
69503
|
-
'onClick:prepend':
|
69504
|
-
'onClick:append':
|
69521
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
69522
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
69505
69523
|
autofocus: BooleanConstructor;
|
69506
69524
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69507
|
-
counterValue:
|
69525
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
69508
69526
|
prefix: StringConstructor;
|
69509
69527
|
placeholder: {
|
69510
|
-
type:
|
69528
|
+
type: PropType<string>;
|
69511
69529
|
default: string;
|
69512
69530
|
};
|
69513
69531
|
persistentPlaceholder: BooleanConstructor;
|
@@ -69518,7 +69536,7 @@ declare const VDateInput: {
|
|
69518
69536
|
type: StringConstructor;
|
69519
69537
|
default: string;
|
69520
69538
|
};
|
69521
|
-
modelModifiers:
|
69539
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
69522
69540
|
cancelText: {
|
69523
69541
|
type: StringConstructor;
|
69524
69542
|
default: string;
|
@@ -69528,12 +69546,15 @@ declare const VDateInput: {
|
|
69528
69546
|
default: string;
|
69529
69547
|
};
|
69530
69548
|
hideActions: BooleanConstructor;
|
69549
|
+
location: {
|
69550
|
+
type: PropType<StrategyProps["location"]>;
|
69551
|
+
default: string;
|
69552
|
+
};
|
69531
69553
|
}, vue.ExtractPropTypes<{
|
69532
|
-
max:
|
69533
|
-
location: vue.PropType<Anchor | null>;
|
69554
|
+
max: PropType<unknown>;
|
69534
69555
|
height: (StringConstructor | NumberConstructor)[];
|
69535
69556
|
width: (StringConstructor | NumberConstructor)[];
|
69536
|
-
min:
|
69557
|
+
min: PropType<unknown>;
|
69537
69558
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69538
69559
|
color: StringConstructor;
|
69539
69560
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -69541,7 +69562,7 @@ declare const VDateInput: {
|
|
69541
69562
|
minHeight: (StringConstructor | NumberConstructor)[];
|
69542
69563
|
minWidth: (StringConstructor | NumberConstructor)[];
|
69543
69564
|
position: {
|
69544
|
-
type:
|
69565
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
69545
69566
|
validator: (v: any) => boolean;
|
69546
69567
|
};
|
69547
69568
|
transition: {
|
@@ -69553,19 +69574,19 @@ declare const VDateInput: {
|
|
69553
69574
|
default: string;
|
69554
69575
|
};
|
69555
69576
|
style: {
|
69556
|
-
type:
|
69577
|
+
type: PropType<vue.StyleValue>;
|
69557
69578
|
default: null;
|
69558
69579
|
};
|
69559
69580
|
title: {
|
69560
|
-
type:
|
69581
|
+
type: PropType<string>;
|
69561
69582
|
default: string;
|
69562
69583
|
};
|
69563
69584
|
text: StringConstructor;
|
69564
69585
|
disabled: BooleanConstructor;
|
69565
|
-
multiple:
|
69586
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
69566
69587
|
month: (StringConstructor | NumberConstructor)[];
|
69567
69588
|
year: NumberConstructor;
|
69568
|
-
class:
|
69589
|
+
class: PropType<ClassValue>;
|
69569
69590
|
theme: StringConstructor;
|
69570
69591
|
tag: {
|
69571
69592
|
type: StringConstructor;
|
@@ -69584,11 +69605,11 @@ declare const VDateInput: {
|
|
69584
69605
|
tile: BooleanConstructor;
|
69585
69606
|
bgColor: StringConstructor;
|
69586
69607
|
nextIcon: {
|
69587
|
-
type:
|
69608
|
+
type: PropType<IconValue>;
|
69588
69609
|
default: string;
|
69589
69610
|
};
|
69590
69611
|
prevIcon: {
|
69591
|
-
type:
|
69612
|
+
type: PropType<IconValue>;
|
69592
69613
|
default: string;
|
69593
69614
|
};
|
69594
69615
|
reverseTransition: {
|
@@ -69596,11 +69617,11 @@ declare const VDateInput: {
|
|
69596
69617
|
default: string;
|
69597
69618
|
};
|
69598
69619
|
modeIcon: {
|
69599
|
-
type:
|
69620
|
+
type: PropType<IconValue>;
|
69600
69621
|
default: string;
|
69601
69622
|
};
|
69602
69623
|
viewMode: {
|
69603
|
-
type:
|
69624
|
+
type: PropType<"month" | "months" | "year">;
|
69604
69625
|
default: string;
|
69605
69626
|
};
|
69606
69627
|
showAdjacentMonths: BooleanConstructor;
|
@@ -69624,29 +69645,29 @@ declare const VDateInput: {
|
|
69624
69645
|
default: () => number[];
|
69625
69646
|
};
|
69626
69647
|
weeksInMonth: Omit<Omit<{
|
69627
|
-
type:
|
69648
|
+
type: PropType<"dynamic" | "static">;
|
69628
69649
|
default: string;
|
69629
69650
|
}, "type" | "default"> & {
|
69630
|
-
type:
|
69651
|
+
type: PropType<"static" | "dynamic">;
|
69631
69652
|
default: NonNullable<"static" | "dynamic">;
|
69632
69653
|
}, "type" | "default"> & {
|
69633
|
-
type:
|
69654
|
+
type: PropType<"static" | "dynamic">;
|
69634
69655
|
default: NonNullable<"static" | "dynamic">;
|
69635
69656
|
};
|
69636
69657
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69637
|
-
allowedDates:
|
69638
|
-
displayValue:
|
69658
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
69659
|
+
displayValue: PropType<unknown>;
|
69639
69660
|
hideWeekdays: BooleanConstructor;
|
69640
69661
|
showWeek: BooleanConstructor;
|
69641
69662
|
hideHeader: {
|
69642
|
-
type:
|
69663
|
+
type: PropType<boolean>;
|
69643
69664
|
default: boolean;
|
69644
69665
|
};
|
69645
69666
|
loading: (StringConstructor | BooleanConstructor)[];
|
69646
|
-
appendInnerIcon:
|
69667
|
+
appendInnerIcon: PropType<IconValue>;
|
69647
69668
|
clearable: BooleanConstructor;
|
69648
69669
|
clearIcon: {
|
69649
|
-
type:
|
69670
|
+
type: PropType<IconValue>;
|
69650
69671
|
default: string;
|
69651
69672
|
};
|
69652
69673
|
active: BooleanConstructor;
|
@@ -69660,21 +69681,21 @@ declare const VDateInput: {
|
|
69660
69681
|
flat: BooleanConstructor;
|
69661
69682
|
label: StringConstructor;
|
69662
69683
|
persistentClear: BooleanConstructor;
|
69663
|
-
prependInnerIcon:
|
69684
|
+
prependInnerIcon: PropType<IconValue>;
|
69664
69685
|
reverse: BooleanConstructor;
|
69665
69686
|
singleLine: BooleanConstructor;
|
69666
69687
|
variant: {
|
69667
|
-
type:
|
69688
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
69668
69689
|
default: string;
|
69669
69690
|
validator: (v: any) => boolean;
|
69670
69691
|
};
|
69671
|
-
'onClick:clear':
|
69672
|
-
'onClick:appendInner':
|
69673
|
-
'onClick:prependInner':
|
69692
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
69693
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
69694
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
69674
69695
|
focused: BooleanConstructor;
|
69675
|
-
'onUpdate:focused':
|
69696
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
69676
69697
|
errorMessages: {
|
69677
|
-
type:
|
69698
|
+
type: PropType<string | readonly string[] | null>;
|
69678
69699
|
default: () => never[];
|
69679
69700
|
};
|
69680
69701
|
maxErrors: {
|
@@ -69683,47 +69704,47 @@ declare const VDateInput: {
|
|
69683
69704
|
};
|
69684
69705
|
name: StringConstructor;
|
69685
69706
|
readonly: {
|
69686
|
-
type:
|
69707
|
+
type: PropType<boolean | null>;
|
69687
69708
|
default: null;
|
69688
69709
|
};
|
69689
69710
|
rules: {
|
69690
|
-
type:
|
69711
|
+
type: PropType<readonly ValidationRule$1[]>;
|
69691
69712
|
default: () => never[];
|
69692
69713
|
};
|
69693
|
-
validateOn:
|
69714
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
69694
69715
|
validationValue: null;
|
69695
69716
|
density: {
|
69696
|
-
type:
|
69717
|
+
type: PropType<Density>;
|
69697
69718
|
default: string;
|
69698
69719
|
validator: (v: any) => boolean;
|
69699
69720
|
};
|
69700
69721
|
id: StringConstructor;
|
69701
|
-
appendIcon:
|
69722
|
+
appendIcon: PropType<IconValue>;
|
69702
69723
|
prependIcon: {
|
69703
|
-
type:
|
69724
|
+
type: PropType<IconValue>;
|
69704
69725
|
default: NonNullable<IconValue>;
|
69705
69726
|
};
|
69706
|
-
hideDetails:
|
69727
|
+
hideDetails: PropType<boolean | "auto">;
|
69707
69728
|
hideSpinButtons: BooleanConstructor;
|
69708
69729
|
hint: StringConstructor;
|
69709
69730
|
persistentHint: BooleanConstructor;
|
69710
69731
|
messages: {
|
69711
|
-
type:
|
69732
|
+
type: PropType<string | readonly string[]>;
|
69712
69733
|
default: () => never[];
|
69713
69734
|
};
|
69714
69735
|
direction: {
|
69715
|
-
type:
|
69736
|
+
type: PropType<"horizontal" | "vertical">;
|
69716
69737
|
default: string;
|
69717
69738
|
validator: (v: any) => boolean;
|
69718
69739
|
};
|
69719
|
-
'onClick:prepend':
|
69720
|
-
'onClick:append':
|
69740
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
69741
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
69721
69742
|
autofocus: BooleanConstructor;
|
69722
69743
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69723
|
-
counterValue:
|
69744
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
69724
69745
|
prefix: StringConstructor;
|
69725
69746
|
placeholder: {
|
69726
|
-
type:
|
69747
|
+
type: PropType<string>;
|
69727
69748
|
default: string;
|
69728
69749
|
};
|
69729
69750
|
persistentPlaceholder: BooleanConstructor;
|
@@ -69734,7 +69755,7 @@ declare const VDateInput: {
|
|
69734
69755
|
type: StringConstructor;
|
69735
69756
|
default: string;
|
69736
69757
|
};
|
69737
|
-
modelModifiers:
|
69758
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
69738
69759
|
cancelText: {
|
69739
69760
|
type: StringConstructor;
|
69740
69761
|
default: string;
|
@@ -69744,6 +69765,10 @@ declare const VDateInput: {
|
|
69744
69765
|
default: string;
|
69745
69766
|
};
|
69746
69767
|
hideActions: BooleanConstructor;
|
69768
|
+
location: {
|
69769
|
+
type: PropType<StrategyProps["location"]>;
|
69770
|
+
default: string;
|
69771
|
+
};
|
69747
69772
|
}>>;
|
69748
69773
|
type VDateInput = InstanceType<typeof VDateInput>;
|
69749
69774
|
|