@vuetify/nightly 3.7.6-master.2025-01-15 → 3.7.6-master.2025-01-18
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 +40 -0
- package/dist/json/attributes.json +3622 -3622
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +6178 -6158
- package/dist/vuetify-labs.css +3425 -3422
- 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 +2764 -2761
- 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
@@ -1,16 +1,31 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, Ref } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
6
|
-
type Density = null | 'default' | 'comfortable' | 'compact';
|
7
|
-
|
8
6
|
declare const block: readonly ["top", "bottom"];
|
9
7
|
declare const inline: readonly ["start", "end", "left", "right"];
|
10
8
|
type Tblock = typeof block[number];
|
11
9
|
type Tinline = typeof inline[number];
|
12
10
|
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
13
11
|
|
12
|
+
declare class Box {
|
13
|
+
x: number;
|
14
|
+
y: number;
|
15
|
+
width: number;
|
16
|
+
height: number;
|
17
|
+
constructor({ x, y, width, height }: {
|
18
|
+
x: number;
|
19
|
+
y: number;
|
20
|
+
width: number;
|
21
|
+
height: number;
|
22
|
+
});
|
23
|
+
get top(): number;
|
24
|
+
get bottom(): number;
|
25
|
+
get left(): number;
|
26
|
+
get right(): number;
|
27
|
+
}
|
28
|
+
|
14
29
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
15
30
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
16
31
|
}
|
@@ -18,6 +33,8 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
18
33
|
type EventProp<T extends any[] = any[], F = (...args: T) => void> = F;
|
19
34
|
declare const EventProp: <T extends any[] = any[]>() => PropType<EventProp<T>>;
|
20
35
|
|
36
|
+
type Density = null | 'default' | 'comfortable' | 'compact';
|
37
|
+
|
21
38
|
type ValidationResult = string | boolean;
|
22
39
|
type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
23
40
|
type ValidateOnValue = 'blur' | 'input' | 'submit' | 'invalid-input';
|
@@ -44,6 +61,45 @@ type JSXComponent<Props = any> = {
|
|
44
61
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
45
62
|
declare const IconValue: PropType<IconValue>;
|
46
63
|
|
64
|
+
interface LocationStrategyData {
|
65
|
+
contentEl: Ref<HTMLElement | undefined>;
|
66
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
67
|
+
isActive: Ref<boolean>;
|
68
|
+
isRtl: Ref<boolean>;
|
69
|
+
}
|
70
|
+
type LocationStrategyFn = (data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>) => undefined | {
|
71
|
+
updateLocation: (e?: Event) => void;
|
72
|
+
};
|
73
|
+
declare const locationStrategies: {
|
74
|
+
static: typeof staticLocationStrategy;
|
75
|
+
connected: typeof connectedLocationStrategy;
|
76
|
+
};
|
77
|
+
interface StrategyProps {
|
78
|
+
locationStrategy: keyof typeof locationStrategies | LocationStrategyFn;
|
79
|
+
location: Anchor;
|
80
|
+
origin: Anchor | 'auto' | 'overlap';
|
81
|
+
offset?: number | string | number[];
|
82
|
+
maxHeight?: number | string;
|
83
|
+
maxWidth?: number | string;
|
84
|
+
minHeight?: number | string;
|
85
|
+
minWidth?: number | string;
|
86
|
+
}
|
87
|
+
declare function staticLocationStrategy(): void;
|
88
|
+
declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps, contentStyles: Ref<Record<string, string>>): {
|
89
|
+
updateLocation: () => {
|
90
|
+
available: {
|
91
|
+
x: number;
|
92
|
+
y: number;
|
93
|
+
};
|
94
|
+
contentBox: Box;
|
95
|
+
} | undefined;
|
96
|
+
};
|
97
|
+
|
98
|
+
type VDateInputActionsSlot = {
|
99
|
+
save: () => void;
|
100
|
+
cancel: () => void;
|
101
|
+
isPristine: boolean;
|
102
|
+
};
|
47
103
|
declare const VDateInput: {
|
48
104
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
49
105
|
flat: boolean;
|
@@ -51,6 +107,7 @@ declare const VDateInput: {
|
|
51
107
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
52
108
|
type: string;
|
53
109
|
error: boolean;
|
110
|
+
location: Anchor;
|
54
111
|
active: boolean;
|
55
112
|
direction: "horizontal" | "vertical";
|
56
113
|
transition: string;
|
@@ -97,7 +154,6 @@ declare const VDateInput: {
|
|
97
154
|
} & {
|
98
155
|
name?: string | undefined;
|
99
156
|
max?: unknown;
|
100
|
-
location?: Anchor | null | undefined;
|
101
157
|
id?: string | undefined;
|
102
158
|
height?: string | number | undefined;
|
103
159
|
width?: string | number | undefined;
|
@@ -146,13 +202,16 @@ declare const VDateInput: {
|
|
146
202
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
147
203
|
displayValue?: unknown;
|
148
204
|
} & {
|
149
|
-
$children?: vue.VNodeChild | {
|
205
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
206
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
150
207
|
default?: (() => vue.VNodeChild) | undefined;
|
151
|
-
}
|
208
|
+
};
|
152
209
|
'v-slots'?: {
|
210
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
153
211
|
default?: false | (() => vue.VNodeChild) | undefined;
|
154
212
|
} | undefined;
|
155
213
|
} & {
|
214
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
156
215
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
157
216
|
} & {
|
158
217
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -164,6 +223,7 @@ declare const VDateInput: {
|
|
164
223
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
165
224
|
type: string;
|
166
225
|
error: boolean;
|
226
|
+
location: Anchor;
|
167
227
|
active: boolean;
|
168
228
|
direction: "horizontal" | "vertical";
|
169
229
|
transition: string;
|
@@ -210,7 +270,6 @@ declare const VDateInput: {
|
|
210
270
|
} & {
|
211
271
|
name?: string | undefined;
|
212
272
|
max?: unknown;
|
213
|
-
location?: Anchor | null | undefined;
|
214
273
|
id?: string | undefined;
|
215
274
|
height?: string | number | undefined;
|
216
275
|
width?: string | number | undefined;
|
@@ -259,13 +318,16 @@ declare const VDateInput: {
|
|
259
318
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
260
319
|
displayValue?: unknown;
|
261
320
|
} & {
|
262
|
-
$children?: vue.VNodeChild | {
|
321
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
322
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
263
323
|
default?: (() => vue.VNodeChild) | undefined;
|
264
|
-
}
|
324
|
+
};
|
265
325
|
'v-slots'?: {
|
326
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
266
327
|
default?: false | (() => vue.VNodeChild) | undefined;
|
267
328
|
} | undefined;
|
268
329
|
} & {
|
330
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
269
331
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
270
332
|
} & {
|
271
333
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -275,6 +337,7 @@ declare const VDateInput: {
|
|
275
337
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
276
338
|
type: string;
|
277
339
|
error: boolean;
|
340
|
+
location: Anchor;
|
278
341
|
active: boolean;
|
279
342
|
direction: "horizontal" | "vertical";
|
280
343
|
transition: string;
|
@@ -321,6 +384,7 @@ declare const VDateInput: {
|
|
321
384
|
hideHeader: boolean;
|
322
385
|
hideActions: boolean;
|
323
386
|
}, true, {}, vue.SlotsType<Partial<{
|
387
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
324
388
|
default: () => vue.VNode[];
|
325
389
|
}>>, {
|
326
390
|
P: {};
|
@@ -335,6 +399,7 @@ declare const VDateInput: {
|
|
335
399
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
336
400
|
type: string;
|
337
401
|
error: boolean;
|
402
|
+
location: Anchor;
|
338
403
|
active: boolean;
|
339
404
|
direction: "horizontal" | "vertical";
|
340
405
|
transition: string;
|
@@ -381,7 +446,6 @@ declare const VDateInput: {
|
|
381
446
|
} & {
|
382
447
|
name?: string | undefined;
|
383
448
|
max?: unknown;
|
384
|
-
location?: Anchor | null | undefined;
|
385
449
|
id?: string | undefined;
|
386
450
|
height?: string | number | undefined;
|
387
451
|
width?: string | number | undefined;
|
@@ -430,13 +494,16 @@ declare const VDateInput: {
|
|
430
494
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
431
495
|
displayValue?: unknown;
|
432
496
|
} & {
|
433
|
-
$children?: vue.VNodeChild | {
|
497
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
498
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
434
499
|
default?: (() => vue.VNodeChild) | undefined;
|
435
|
-
}
|
500
|
+
};
|
436
501
|
'v-slots'?: {
|
502
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
437
503
|
default?: false | (() => vue.VNodeChild) | undefined;
|
438
504
|
} | undefined;
|
439
505
|
} & {
|
506
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
440
507
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
441
508
|
} & {
|
442
509
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -446,6 +513,7 @@ declare const VDateInput: {
|
|
446
513
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
447
514
|
type: string;
|
448
515
|
error: boolean;
|
516
|
+
location: Anchor;
|
449
517
|
active: boolean;
|
450
518
|
direction: "horizontal" | "vertical";
|
451
519
|
transition: string;
|
@@ -501,6 +569,7 @@ declare const VDateInput: {
|
|
501
569
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
502
570
|
type: string;
|
503
571
|
error: boolean;
|
572
|
+
location: Anchor;
|
504
573
|
active: boolean;
|
505
574
|
direction: "horizontal" | "vertical";
|
506
575
|
transition: string;
|
@@ -547,7 +616,6 @@ declare const VDateInput: {
|
|
547
616
|
} & {
|
548
617
|
name?: string | undefined;
|
549
618
|
max?: unknown;
|
550
|
-
location?: Anchor | null | undefined;
|
551
619
|
id?: string | undefined;
|
552
620
|
height?: string | number | undefined;
|
553
621
|
width?: string | number | undefined;
|
@@ -596,13 +664,16 @@ declare const VDateInput: {
|
|
596
664
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
597
665
|
displayValue?: unknown;
|
598
666
|
} & {
|
599
|
-
$children?: vue.VNodeChild | {
|
667
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
668
|
+
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
600
669
|
default?: (() => vue.VNodeChild) | undefined;
|
601
|
-
}
|
670
|
+
};
|
602
671
|
'v-slots'?: {
|
672
|
+
actions?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
603
673
|
default?: false | (() => vue.VNodeChild) | undefined;
|
604
674
|
} | undefined;
|
605
675
|
} & {
|
676
|
+
"v-slot:actions"?: false | ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
606
677
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
607
678
|
} & {
|
608
679
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
@@ -614,6 +685,7 @@ declare const VDateInput: {
|
|
614
685
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
615
686
|
type: string;
|
616
687
|
error: boolean;
|
688
|
+
location: Anchor;
|
617
689
|
active: boolean;
|
618
690
|
direction: "horizontal" | "vertical";
|
619
691
|
transition: string;
|
@@ -660,13 +732,13 @@ declare const VDateInput: {
|
|
660
732
|
hideHeader: boolean;
|
661
733
|
hideActions: boolean;
|
662
734
|
}, {}, string, vue.SlotsType<Partial<{
|
735
|
+
actions: (arg: VDateInputActionsSlot) => vue.VNode[];
|
663
736
|
default: () => vue.VNode[];
|
664
737
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
665
|
-
max:
|
666
|
-
location: vue.PropType<Anchor | null>;
|
738
|
+
max: PropType<unknown>;
|
667
739
|
height: (StringConstructor | NumberConstructor)[];
|
668
740
|
width: (StringConstructor | NumberConstructor)[];
|
669
|
-
min:
|
741
|
+
min: PropType<unknown>;
|
670
742
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
671
743
|
color: StringConstructor;
|
672
744
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -674,7 +746,7 @@ declare const VDateInput: {
|
|
674
746
|
minHeight: (StringConstructor | NumberConstructor)[];
|
675
747
|
minWidth: (StringConstructor | NumberConstructor)[];
|
676
748
|
position: {
|
677
|
-
type:
|
749
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
678
750
|
validator: (v: any) => boolean;
|
679
751
|
};
|
680
752
|
transition: {
|
@@ -686,19 +758,19 @@ declare const VDateInput: {
|
|
686
758
|
default: string;
|
687
759
|
};
|
688
760
|
style: {
|
689
|
-
type:
|
761
|
+
type: PropType<vue.StyleValue>;
|
690
762
|
default: null;
|
691
763
|
};
|
692
764
|
title: {
|
693
|
-
type:
|
765
|
+
type: PropType<string>;
|
694
766
|
default: string;
|
695
767
|
};
|
696
768
|
text: StringConstructor;
|
697
769
|
disabled: BooleanConstructor;
|
698
|
-
multiple:
|
770
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
699
771
|
month: (StringConstructor | NumberConstructor)[];
|
700
772
|
year: NumberConstructor;
|
701
|
-
class:
|
773
|
+
class: PropType<ClassValue>;
|
702
774
|
theme: StringConstructor;
|
703
775
|
tag: {
|
704
776
|
type: StringConstructor;
|
@@ -717,11 +789,11 @@ declare const VDateInput: {
|
|
717
789
|
tile: BooleanConstructor;
|
718
790
|
bgColor: StringConstructor;
|
719
791
|
nextIcon: {
|
720
|
-
type:
|
792
|
+
type: PropType<IconValue>;
|
721
793
|
default: string;
|
722
794
|
};
|
723
795
|
prevIcon: {
|
724
|
-
type:
|
796
|
+
type: PropType<IconValue>;
|
725
797
|
default: string;
|
726
798
|
};
|
727
799
|
reverseTransition: {
|
@@ -729,11 +801,11 @@ declare const VDateInput: {
|
|
729
801
|
default: string;
|
730
802
|
};
|
731
803
|
modeIcon: {
|
732
|
-
type:
|
804
|
+
type: PropType<IconValue>;
|
733
805
|
default: string;
|
734
806
|
};
|
735
807
|
viewMode: {
|
736
|
-
type:
|
808
|
+
type: PropType<"month" | "months" | "year">;
|
737
809
|
default: string;
|
738
810
|
};
|
739
811
|
showAdjacentMonths: BooleanConstructor;
|
@@ -757,29 +829,29 @@ declare const VDateInput: {
|
|
757
829
|
default: () => number[];
|
758
830
|
};
|
759
831
|
weeksInMonth: Omit<Omit<{
|
760
|
-
type:
|
832
|
+
type: PropType<"dynamic" | "static">;
|
761
833
|
default: string;
|
762
834
|
}, "type" | "default"> & {
|
763
|
-
type:
|
835
|
+
type: PropType<"static" | "dynamic">;
|
764
836
|
default: NonNullable<"static" | "dynamic">;
|
765
837
|
}, "type" | "default"> & {
|
766
|
-
type:
|
838
|
+
type: PropType<"static" | "dynamic">;
|
767
839
|
default: NonNullable<"static" | "dynamic">;
|
768
840
|
};
|
769
841
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
770
|
-
allowedDates:
|
771
|
-
displayValue:
|
842
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
843
|
+
displayValue: PropType<unknown>;
|
772
844
|
hideWeekdays: BooleanConstructor;
|
773
845
|
showWeek: BooleanConstructor;
|
774
846
|
hideHeader: {
|
775
|
-
type:
|
847
|
+
type: PropType<boolean>;
|
776
848
|
default: boolean;
|
777
849
|
};
|
778
850
|
loading: (StringConstructor | BooleanConstructor)[];
|
779
|
-
appendInnerIcon:
|
851
|
+
appendInnerIcon: PropType<IconValue>;
|
780
852
|
clearable: BooleanConstructor;
|
781
853
|
clearIcon: {
|
782
|
-
type:
|
854
|
+
type: PropType<IconValue>;
|
783
855
|
default: string;
|
784
856
|
};
|
785
857
|
active: BooleanConstructor;
|
@@ -793,21 +865,21 @@ declare const VDateInput: {
|
|
793
865
|
flat: BooleanConstructor;
|
794
866
|
label: StringConstructor;
|
795
867
|
persistentClear: BooleanConstructor;
|
796
|
-
prependInnerIcon:
|
868
|
+
prependInnerIcon: PropType<IconValue>;
|
797
869
|
reverse: BooleanConstructor;
|
798
870
|
singleLine: BooleanConstructor;
|
799
871
|
variant: {
|
800
|
-
type:
|
872
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
801
873
|
default: string;
|
802
874
|
validator: (v: any) => boolean;
|
803
875
|
};
|
804
|
-
'onClick:clear':
|
805
|
-
'onClick:appendInner':
|
806
|
-
'onClick:prependInner':
|
876
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
877
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
878
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
807
879
|
focused: BooleanConstructor;
|
808
|
-
'onUpdate:focused':
|
880
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
809
881
|
errorMessages: {
|
810
|
-
type:
|
882
|
+
type: PropType<string | readonly string[] | null>;
|
811
883
|
default: () => never[];
|
812
884
|
};
|
813
885
|
maxErrors: {
|
@@ -816,47 +888,47 @@ declare const VDateInput: {
|
|
816
888
|
};
|
817
889
|
name: StringConstructor;
|
818
890
|
readonly: {
|
819
|
-
type:
|
891
|
+
type: PropType<boolean | null>;
|
820
892
|
default: null;
|
821
893
|
};
|
822
894
|
rules: {
|
823
|
-
type:
|
895
|
+
type: PropType<readonly ValidationRule[]>;
|
824
896
|
default: () => never[];
|
825
897
|
};
|
826
|
-
validateOn:
|
898
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
827
899
|
validationValue: null;
|
828
900
|
density: {
|
829
|
-
type:
|
901
|
+
type: PropType<Density>;
|
830
902
|
default: string;
|
831
903
|
validator: (v: any) => boolean;
|
832
904
|
};
|
833
905
|
id: StringConstructor;
|
834
|
-
appendIcon:
|
906
|
+
appendIcon: PropType<IconValue>;
|
835
907
|
prependIcon: {
|
836
|
-
type:
|
908
|
+
type: PropType<IconValue>;
|
837
909
|
default: NonNullable<IconValue>;
|
838
910
|
};
|
839
|
-
hideDetails:
|
911
|
+
hideDetails: PropType<boolean | "auto">;
|
840
912
|
hideSpinButtons: BooleanConstructor;
|
841
913
|
hint: StringConstructor;
|
842
914
|
persistentHint: BooleanConstructor;
|
843
915
|
messages: {
|
844
|
-
type:
|
916
|
+
type: PropType<string | readonly string[]>;
|
845
917
|
default: () => never[];
|
846
918
|
};
|
847
919
|
direction: {
|
848
|
-
type:
|
920
|
+
type: PropType<"horizontal" | "vertical">;
|
849
921
|
default: string;
|
850
922
|
validator: (v: any) => boolean;
|
851
923
|
};
|
852
|
-
'onClick:prepend':
|
853
|
-
'onClick:append':
|
924
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
925
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
854
926
|
autofocus: BooleanConstructor;
|
855
927
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
856
|
-
counterValue:
|
928
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
857
929
|
prefix: StringConstructor;
|
858
930
|
placeholder: {
|
859
|
-
type:
|
931
|
+
type: PropType<string>;
|
860
932
|
default: string;
|
861
933
|
};
|
862
934
|
persistentPlaceholder: BooleanConstructor;
|
@@ -867,7 +939,7 @@ declare const VDateInput: {
|
|
867
939
|
type: StringConstructor;
|
868
940
|
default: string;
|
869
941
|
};
|
870
|
-
modelModifiers:
|
942
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
871
943
|
cancelText: {
|
872
944
|
type: StringConstructor;
|
873
945
|
default: string;
|
@@ -877,12 +949,15 @@ declare const VDateInput: {
|
|
877
949
|
default: string;
|
878
950
|
};
|
879
951
|
hideActions: BooleanConstructor;
|
952
|
+
location: {
|
953
|
+
type: PropType<StrategyProps["location"]>;
|
954
|
+
default: string;
|
955
|
+
};
|
880
956
|
}, vue.ExtractPropTypes<{
|
881
|
-
max:
|
882
|
-
location: vue.PropType<Anchor | null>;
|
957
|
+
max: PropType<unknown>;
|
883
958
|
height: (StringConstructor | NumberConstructor)[];
|
884
959
|
width: (StringConstructor | NumberConstructor)[];
|
885
|
-
min:
|
960
|
+
min: PropType<unknown>;
|
886
961
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
887
962
|
color: StringConstructor;
|
888
963
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -890,7 +965,7 @@ declare const VDateInput: {
|
|
890
965
|
minHeight: (StringConstructor | NumberConstructor)[];
|
891
966
|
minWidth: (StringConstructor | NumberConstructor)[];
|
892
967
|
position: {
|
893
|
-
type:
|
968
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
894
969
|
validator: (v: any) => boolean;
|
895
970
|
};
|
896
971
|
transition: {
|
@@ -902,19 +977,19 @@ declare const VDateInput: {
|
|
902
977
|
default: string;
|
903
978
|
};
|
904
979
|
style: {
|
905
|
-
type:
|
980
|
+
type: PropType<vue.StyleValue>;
|
906
981
|
default: null;
|
907
982
|
};
|
908
983
|
title: {
|
909
|
-
type:
|
984
|
+
type: PropType<string>;
|
910
985
|
default: string;
|
911
986
|
};
|
912
987
|
text: StringConstructor;
|
913
988
|
disabled: BooleanConstructor;
|
914
|
-
multiple:
|
989
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
915
990
|
month: (StringConstructor | NumberConstructor)[];
|
916
991
|
year: NumberConstructor;
|
917
|
-
class:
|
992
|
+
class: PropType<ClassValue>;
|
918
993
|
theme: StringConstructor;
|
919
994
|
tag: {
|
920
995
|
type: StringConstructor;
|
@@ -933,11 +1008,11 @@ declare const VDateInput: {
|
|
933
1008
|
tile: BooleanConstructor;
|
934
1009
|
bgColor: StringConstructor;
|
935
1010
|
nextIcon: {
|
936
|
-
type:
|
1011
|
+
type: PropType<IconValue>;
|
937
1012
|
default: string;
|
938
1013
|
};
|
939
1014
|
prevIcon: {
|
940
|
-
type:
|
1015
|
+
type: PropType<IconValue>;
|
941
1016
|
default: string;
|
942
1017
|
};
|
943
1018
|
reverseTransition: {
|
@@ -945,11 +1020,11 @@ declare const VDateInput: {
|
|
945
1020
|
default: string;
|
946
1021
|
};
|
947
1022
|
modeIcon: {
|
948
|
-
type:
|
1023
|
+
type: PropType<IconValue>;
|
949
1024
|
default: string;
|
950
1025
|
};
|
951
1026
|
viewMode: {
|
952
|
-
type:
|
1027
|
+
type: PropType<"month" | "months" | "year">;
|
953
1028
|
default: string;
|
954
1029
|
};
|
955
1030
|
showAdjacentMonths: BooleanConstructor;
|
@@ -973,29 +1048,29 @@ declare const VDateInput: {
|
|
973
1048
|
default: () => number[];
|
974
1049
|
};
|
975
1050
|
weeksInMonth: Omit<Omit<{
|
976
|
-
type:
|
1051
|
+
type: PropType<"dynamic" | "static">;
|
977
1052
|
default: string;
|
978
1053
|
}, "type" | "default"> & {
|
979
|
-
type:
|
1054
|
+
type: PropType<"static" | "dynamic">;
|
980
1055
|
default: NonNullable<"static" | "dynamic">;
|
981
1056
|
}, "type" | "default"> & {
|
982
|
-
type:
|
1057
|
+
type: PropType<"static" | "dynamic">;
|
983
1058
|
default: NonNullable<"static" | "dynamic">;
|
984
1059
|
};
|
985
1060
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
986
|
-
allowedDates:
|
987
|
-
displayValue:
|
1061
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
1062
|
+
displayValue: PropType<unknown>;
|
988
1063
|
hideWeekdays: BooleanConstructor;
|
989
1064
|
showWeek: BooleanConstructor;
|
990
1065
|
hideHeader: {
|
991
|
-
type:
|
1066
|
+
type: PropType<boolean>;
|
992
1067
|
default: boolean;
|
993
1068
|
};
|
994
1069
|
loading: (StringConstructor | BooleanConstructor)[];
|
995
|
-
appendInnerIcon:
|
1070
|
+
appendInnerIcon: PropType<IconValue>;
|
996
1071
|
clearable: BooleanConstructor;
|
997
1072
|
clearIcon: {
|
998
|
-
type:
|
1073
|
+
type: PropType<IconValue>;
|
999
1074
|
default: string;
|
1000
1075
|
};
|
1001
1076
|
active: BooleanConstructor;
|
@@ -1009,21 +1084,21 @@ declare const VDateInput: {
|
|
1009
1084
|
flat: BooleanConstructor;
|
1010
1085
|
label: StringConstructor;
|
1011
1086
|
persistentClear: BooleanConstructor;
|
1012
|
-
prependInnerIcon:
|
1087
|
+
prependInnerIcon: PropType<IconValue>;
|
1013
1088
|
reverse: BooleanConstructor;
|
1014
1089
|
singleLine: BooleanConstructor;
|
1015
1090
|
variant: {
|
1016
|
-
type:
|
1091
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
1017
1092
|
default: string;
|
1018
1093
|
validator: (v: any) => boolean;
|
1019
1094
|
};
|
1020
|
-
'onClick:clear':
|
1021
|
-
'onClick:appendInner':
|
1022
|
-
'onClick:prependInner':
|
1095
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
1096
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
1097
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
1023
1098
|
focused: BooleanConstructor;
|
1024
|
-
'onUpdate:focused':
|
1099
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
1025
1100
|
errorMessages: {
|
1026
|
-
type:
|
1101
|
+
type: PropType<string | readonly string[] | null>;
|
1027
1102
|
default: () => never[];
|
1028
1103
|
};
|
1029
1104
|
maxErrors: {
|
@@ -1032,47 +1107,47 @@ declare const VDateInput: {
|
|
1032
1107
|
};
|
1033
1108
|
name: StringConstructor;
|
1034
1109
|
readonly: {
|
1035
|
-
type:
|
1110
|
+
type: PropType<boolean | null>;
|
1036
1111
|
default: null;
|
1037
1112
|
};
|
1038
1113
|
rules: {
|
1039
|
-
type:
|
1114
|
+
type: PropType<readonly ValidationRule[]>;
|
1040
1115
|
default: () => never[];
|
1041
1116
|
};
|
1042
|
-
validateOn:
|
1117
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
1043
1118
|
validationValue: null;
|
1044
1119
|
density: {
|
1045
|
-
type:
|
1120
|
+
type: PropType<Density>;
|
1046
1121
|
default: string;
|
1047
1122
|
validator: (v: any) => boolean;
|
1048
1123
|
};
|
1049
1124
|
id: StringConstructor;
|
1050
|
-
appendIcon:
|
1125
|
+
appendIcon: PropType<IconValue>;
|
1051
1126
|
prependIcon: {
|
1052
|
-
type:
|
1127
|
+
type: PropType<IconValue>;
|
1053
1128
|
default: NonNullable<IconValue>;
|
1054
1129
|
};
|
1055
|
-
hideDetails:
|
1130
|
+
hideDetails: PropType<boolean | "auto">;
|
1056
1131
|
hideSpinButtons: BooleanConstructor;
|
1057
1132
|
hint: StringConstructor;
|
1058
1133
|
persistentHint: BooleanConstructor;
|
1059
1134
|
messages: {
|
1060
|
-
type:
|
1135
|
+
type: PropType<string | readonly string[]>;
|
1061
1136
|
default: () => never[];
|
1062
1137
|
};
|
1063
1138
|
direction: {
|
1064
|
-
type:
|
1139
|
+
type: PropType<"horizontal" | "vertical">;
|
1065
1140
|
default: string;
|
1066
1141
|
validator: (v: any) => boolean;
|
1067
1142
|
};
|
1068
|
-
'onClick:prepend':
|
1069
|
-
'onClick:append':
|
1143
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
1144
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
1070
1145
|
autofocus: BooleanConstructor;
|
1071
1146
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
1072
|
-
counterValue:
|
1147
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
1073
1148
|
prefix: StringConstructor;
|
1074
1149
|
placeholder: {
|
1075
|
-
type:
|
1150
|
+
type: PropType<string>;
|
1076
1151
|
default: string;
|
1077
1152
|
};
|
1078
1153
|
persistentPlaceholder: BooleanConstructor;
|
@@ -1083,7 +1158,7 @@ declare const VDateInput: {
|
|
1083
1158
|
type: StringConstructor;
|
1084
1159
|
default: string;
|
1085
1160
|
};
|
1086
|
-
modelModifiers:
|
1161
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
1087
1162
|
cancelText: {
|
1088
1163
|
type: StringConstructor;
|
1089
1164
|
default: string;
|
@@ -1093,6 +1168,10 @@ declare const VDateInput: {
|
|
1093
1168
|
default: string;
|
1094
1169
|
};
|
1095
1170
|
hideActions: BooleanConstructor;
|
1171
|
+
location: {
|
1172
|
+
type: PropType<StrategyProps["location"]>;
|
1173
|
+
default: string;
|
1174
|
+
};
|
1096
1175
|
}>>;
|
1097
1176
|
type VDateInput = InstanceType<typeof VDateInput>;
|
1098
1177
|
|