@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-05-01
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 +24 -3
- package/dist/json/attributes.json +1686 -1682
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3486 -3476
- package/dist/vuetify-labs.cjs +47 -24
- package/dist/vuetify-labs.css +3884 -3888
- package/dist/vuetify-labs.d.ts +4043 -859
- package/dist/vuetify-labs.esm.js +47 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +20 -17
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2938 -2942
- package/dist/vuetify.d.ts +4021 -857
- package/dist/vuetify.esm.js +20 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -17
- 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/VAutocomplete/VAutocomplete.d.ts +792 -74
- package/lib/components/VBadge/VBadge.d.ts +22 -46
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
- package/lib/components/VCombobox/VCombobox.d.ts +792 -74
- package/lib/components/VCounter/VCounter.d.ts +22 -46
- package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
- package/lib/components/VDataTable/composables/select.js +1 -1
- package/lib/components/VDataTable/composables/select.js.map +1 -1
- package/lib/components/VDialog/VDialog.d.ts +1048 -146
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VFab/VFab.d.ts +22 -46
- package/lib/components/VImg/VImg.d.ts +22 -49
- package/lib/components/VLazy/VLazy.d.ts +22 -46
- package/lib/components/VMenu/VMenu.d.ts +1048 -146
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VMessages/VMessages.d.ts +22 -46
- package/lib/components/VOverlay/VOverlay.d.ts +22 -49
- package/lib/components/VSelect/VSelect.d.ts +1232 -90
- package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
- package/lib/components/VTable/VTable.css +2 -6
- package/lib/components/VTable/VTable.sass +4 -22
- package/lib/components/VTooltip/VTooltip.d.ts +58 -109
- package/lib/components/VTooltip/VTooltip.js +2 -2
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/composables/transition.d.ts +10 -20
- package/lib/composables/transition.js +15 -12
- package/lib/composables/transition.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +93 -132
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
- package/lib/labs/VDateInput/VDateInput.js +27 -7
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/package.json +1 -1
@@ -102,43 +102,31 @@ export declare const makeVSnackbarProps: <Defaults extends {
|
|
102
102
|
type: import("vue").PropType<unknown extends Defaults["opacity"] ? string | number : string | number | Defaults["opacity"]>;
|
103
103
|
default: unknown extends Defaults["opacity"] ? string | number : NonNullable<string | number> | Defaults["opacity"];
|
104
104
|
};
|
105
|
-
transition: unknown extends Defaults["transition"] ?
|
105
|
+
transition: unknown extends Defaults["transition"] ? {
|
106
106
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
107
107
|
component?: import("vue").Component;
|
108
|
-
})>;
|
109
|
-
default: string;
|
110
|
-
validator: (val: unknown) => boolean;
|
111
|
-
}, "type" | "default"> & {
|
112
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
113
|
-
component?: import("vue").Component;
|
114
|
-
})>;
|
108
|
+
}) | null>;
|
115
109
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
116
110
|
component?: import("vue").Component;
|
117
|
-
})>;
|
118
|
-
} : Omit<
|
119
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
120
|
-
component?: import("vue").Component;
|
121
|
-
})>;
|
122
|
-
default: string;
|
123
|
-
validator: (val: unknown) => boolean;
|
124
|
-
}, "type" | "default"> & {
|
111
|
+
}) | null>;
|
112
|
+
} : Omit<{
|
125
113
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
126
114
|
component?: import("vue").Component;
|
127
|
-
})>;
|
115
|
+
}) | null>;
|
128
116
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
129
117
|
component?: import("vue").Component;
|
130
|
-
})>;
|
118
|
+
}) | null>;
|
131
119
|
}, "type" | "default"> & {
|
132
120
|
type: import("vue").PropType<unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
|
133
121
|
component?: import("vue").Component;
|
134
|
-
}) : string | boolean | (import("vue").TransitionProps & {
|
122
|
+
}) | null : string | boolean | (import("vue").TransitionProps & {
|
135
123
|
component?: import("vue").Component;
|
136
|
-
}) | Defaults["transition"]>;
|
124
|
+
}) | Defaults["transition"] | null>;
|
137
125
|
default: unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
|
138
126
|
component?: import("vue").Component;
|
139
|
-
}) : NonNullable<string | boolean | (import("vue").TransitionProps & {
|
127
|
+
}) | null : NonNullable<string | boolean | (import("vue").TransitionProps & {
|
140
128
|
component?: import("vue").Component;
|
141
|
-
})> | Defaults["transition"];
|
129
|
+
}) | null> | Defaults["transition"];
|
142
130
|
};
|
143
131
|
zIndex: unknown extends Defaults["zIndex"] ? {
|
144
132
|
type: (StringConstructor | NumberConstructor)[];
|
@@ -347,7 +335,7 @@ export declare const VSnackbar: {
|
|
347
335
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
348
336
|
transition: string | boolean | (import("vue").TransitionProps & {
|
349
337
|
component?: import("vue").Component;
|
350
|
-
});
|
338
|
+
}) | null;
|
351
339
|
zIndex: string | number;
|
352
340
|
style: import("vue").StyleValue;
|
353
341
|
eager: boolean;
|
@@ -430,9 +418,6 @@ export declare const VSnackbar: {
|
|
430
418
|
absolute: boolean;
|
431
419
|
location: import("../../util/index.js").Anchor;
|
432
420
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
433
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
434
|
-
component?: import("vue").Component;
|
435
|
-
});
|
436
421
|
zIndex: string | number;
|
437
422
|
style: import("vue").StyleValue;
|
438
423
|
eager: boolean;
|
@@ -455,9 +440,6 @@ export declare const VSnackbar: {
|
|
455
440
|
absolute: boolean;
|
456
441
|
location: import("../../util/index.js").Anchor;
|
457
442
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
458
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
459
|
-
component?: import("vue").Component;
|
460
|
-
});
|
461
443
|
zIndex: string | number;
|
462
444
|
style: import("vue").StyleValue;
|
463
445
|
eager: boolean;
|
@@ -482,6 +464,9 @@ export declare const VSnackbar: {
|
|
482
464
|
minHeight?: string | number | undefined;
|
483
465
|
minWidth?: string | number | undefined;
|
484
466
|
opacity?: string | number | undefined;
|
467
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
468
|
+
component?: import("vue").Component;
|
469
|
+
}) | null | undefined;
|
485
470
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
486
471
|
class?: any;
|
487
472
|
theme?: string | undefined;
|
@@ -528,7 +513,7 @@ export declare const VSnackbar: {
|
|
528
513
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
529
514
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
530
515
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
531
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "
|
516
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
532
517
|
$attrs: {
|
533
518
|
[x: string]: unknown;
|
534
519
|
};
|
@@ -554,9 +539,6 @@ export declare const VSnackbar: {
|
|
554
539
|
absolute: boolean;
|
555
540
|
location: import("../../util/index.js").Anchor;
|
556
541
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
557
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
558
|
-
component?: import("vue").Component;
|
559
|
-
});
|
560
542
|
zIndex: string | number;
|
561
543
|
style: import("vue").StyleValue;
|
562
544
|
eager: boolean;
|
@@ -582,6 +564,9 @@ export declare const VSnackbar: {
|
|
582
564
|
minHeight?: string | number | undefined;
|
583
565
|
minWidth?: string | number | undefined;
|
584
566
|
opacity?: string | number | undefined;
|
567
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
568
|
+
component?: import("vue").Component;
|
569
|
+
}) | null | undefined;
|
585
570
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
586
571
|
class?: any;
|
587
572
|
theme?: string | undefined;
|
@@ -650,9 +635,6 @@ export declare const VSnackbar: {
|
|
650
635
|
absolute: boolean;
|
651
636
|
location: import("../../util/index.js").Anchor;
|
652
637
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
653
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
654
|
-
component?: import("vue").Component;
|
655
|
-
});
|
656
638
|
zIndex: string | number;
|
657
639
|
style: import("vue").StyleValue;
|
658
640
|
eager: boolean;
|
@@ -704,9 +686,6 @@ export declare const VSnackbar: {
|
|
704
686
|
absolute: boolean;
|
705
687
|
location: import("../../util/index.js").Anchor;
|
706
688
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
707
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
708
|
-
component?: import("vue").Component;
|
709
|
-
});
|
710
689
|
zIndex: string | number;
|
711
690
|
style: import("vue").StyleValue;
|
712
691
|
eager: boolean;
|
@@ -729,9 +708,6 @@ export declare const VSnackbar: {
|
|
729
708
|
absolute: boolean;
|
730
709
|
location: import("../../util/index.js").Anchor;
|
731
710
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
732
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
733
|
-
component?: import("vue").Component;
|
734
|
-
});
|
735
711
|
zIndex: string | number;
|
736
712
|
style: import("vue").StyleValue;
|
737
713
|
eager: boolean;
|
@@ -757,6 +733,9 @@ export declare const VSnackbar: {
|
|
757
733
|
minHeight?: string | number | undefined;
|
758
734
|
minWidth?: string | number | undefined;
|
759
735
|
opacity?: string | number | undefined;
|
736
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
737
|
+
component?: import("vue").Component;
|
738
|
+
}) | null | undefined;
|
760
739
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
761
740
|
class?: any;
|
762
741
|
theme?: string | undefined;
|
@@ -806,7 +785,7 @@ export declare const VSnackbar: {
|
|
806
785
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
807
786
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
808
787
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
809
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
788
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & import("vue").ShallowUnwrapRef<{
|
810
789
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
811
790
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
812
791
|
target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -815,7 +794,7 @@ export declare const VSnackbar: {
|
|
815
794
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
816
795
|
localTop: Readonly<Ref<boolean, boolean>>;
|
817
796
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
818
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
797
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
819
798
|
_allExposed: {
|
820
799
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
821
800
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -835,7 +814,7 @@ export declare const VSnackbar: {
|
|
835
814
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
836
815
|
transition: string | boolean | (import("vue").TransitionProps & {
|
837
816
|
component?: import("vue").Component;
|
838
|
-
});
|
817
|
+
}) | null;
|
839
818
|
zIndex: string | number;
|
840
819
|
style: import("vue").StyleValue;
|
841
820
|
eager: boolean;
|
@@ -878,7 +857,7 @@ export declare const VSnackbar: {
|
|
878
857
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
879
858
|
transition: string | boolean | (import("vue").TransitionProps & {
|
880
859
|
component?: import("vue").Component;
|
881
|
-
});
|
860
|
+
}) | null;
|
882
861
|
zIndex: string | number;
|
883
862
|
style: import("vue").StyleValue;
|
884
863
|
eager: boolean;
|
@@ -961,9 +940,6 @@ export declare const VSnackbar: {
|
|
961
940
|
absolute: boolean;
|
962
941
|
location: import("../../util/index.js").Anchor;
|
963
942
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
964
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
965
|
-
component?: import("vue").Component;
|
966
|
-
});
|
967
943
|
zIndex: string | number;
|
968
944
|
style: import("vue").StyleValue;
|
969
945
|
eager: boolean;
|
@@ -986,9 +962,6 @@ export declare const VSnackbar: {
|
|
986
962
|
absolute: boolean;
|
987
963
|
location: import("../../util/index.js").Anchor;
|
988
964
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
989
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
990
|
-
component?: import("vue").Component;
|
991
|
-
});
|
992
965
|
zIndex: string | number;
|
993
966
|
style: import("vue").StyleValue;
|
994
967
|
eager: boolean;
|
@@ -1013,6 +986,9 @@ export declare const VSnackbar: {
|
|
1013
986
|
minHeight?: string | number | undefined;
|
1014
987
|
minWidth?: string | number | undefined;
|
1015
988
|
opacity?: string | number | undefined;
|
989
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
990
|
+
component?: import("vue").Component;
|
991
|
+
}) | null | undefined;
|
1016
992
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1017
993
|
class?: any;
|
1018
994
|
theme?: string | undefined;
|
@@ -1059,7 +1035,7 @@ export declare const VSnackbar: {
|
|
1059
1035
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1060
1036
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1061
1037
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1062
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "
|
1038
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
1063
1039
|
$attrs: {
|
1064
1040
|
[x: string]: unknown;
|
1065
1041
|
};
|
@@ -1085,9 +1061,6 @@ export declare const VSnackbar: {
|
|
1085
1061
|
absolute: boolean;
|
1086
1062
|
location: import("../../util/index.js").Anchor;
|
1087
1063
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1088
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1089
|
-
component?: import("vue").Component;
|
1090
|
-
});
|
1091
1064
|
zIndex: string | number;
|
1092
1065
|
style: import("vue").StyleValue;
|
1093
1066
|
eager: boolean;
|
@@ -1113,6 +1086,9 @@ export declare const VSnackbar: {
|
|
1113
1086
|
minHeight?: string | number | undefined;
|
1114
1087
|
minWidth?: string | number | undefined;
|
1115
1088
|
opacity?: string | number | undefined;
|
1089
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
1090
|
+
component?: import("vue").Component;
|
1091
|
+
}) | null | undefined;
|
1116
1092
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1117
1093
|
class?: any;
|
1118
1094
|
theme?: string | undefined;
|
@@ -1181,9 +1157,6 @@ export declare const VSnackbar: {
|
|
1181
1157
|
absolute: boolean;
|
1182
1158
|
location: import("../../util/index.js").Anchor;
|
1183
1159
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1184
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1185
|
-
component?: import("vue").Component;
|
1186
|
-
});
|
1187
1160
|
zIndex: string | number;
|
1188
1161
|
style: import("vue").StyleValue;
|
1189
1162
|
eager: boolean;
|
@@ -1235,9 +1208,6 @@ export declare const VSnackbar: {
|
|
1235
1208
|
absolute: boolean;
|
1236
1209
|
location: import("../../util/index.js").Anchor;
|
1237
1210
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1238
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1239
|
-
component?: import("vue").Component;
|
1240
|
-
});
|
1241
1211
|
zIndex: string | number;
|
1242
1212
|
style: import("vue").StyleValue;
|
1243
1213
|
eager: boolean;
|
@@ -1260,9 +1230,6 @@ export declare const VSnackbar: {
|
|
1260
1230
|
absolute: boolean;
|
1261
1231
|
location: import("../../util/index.js").Anchor;
|
1262
1232
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1263
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1264
|
-
component?: import("vue").Component;
|
1265
|
-
});
|
1266
1233
|
zIndex: string | number;
|
1267
1234
|
style: import("vue").StyleValue;
|
1268
1235
|
eager: boolean;
|
@@ -1288,6 +1255,9 @@ export declare const VSnackbar: {
|
|
1288
1255
|
minHeight?: string | number | undefined;
|
1289
1256
|
minWidth?: string | number | undefined;
|
1290
1257
|
opacity?: string | number | undefined;
|
1258
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
1259
|
+
component?: import("vue").Component;
|
1260
|
+
}) | null | undefined;
|
1291
1261
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1292
1262
|
class?: any;
|
1293
1263
|
theme?: string | undefined;
|
@@ -1337,7 +1307,7 @@ export declare const VSnackbar: {
|
|
1337
1307
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1338
1308
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1339
1309
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1340
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
1310
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & import("vue").ShallowUnwrapRef<{
|
1341
1311
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1342
1312
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1343
1313
|
target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -1346,7 +1316,7 @@ export declare const VSnackbar: {
|
|
1346
1316
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
1347
1317
|
localTop: Readonly<Ref<boolean, boolean>>;
|
1348
1318
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
1349
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
1319
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
1350
1320
|
_allExposed: {
|
1351
1321
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1352
1322
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -1364,7 +1334,7 @@ export declare const VSnackbar: {
|
|
1364
1334
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1365
1335
|
transition: string | boolean | (import("vue").TransitionProps & {
|
1366
1336
|
component?: import("vue").Component;
|
1367
|
-
});
|
1337
|
+
}) | null;
|
1368
1338
|
zIndex: string | number;
|
1369
1339
|
style: import("vue").StyleValue;
|
1370
1340
|
eager: boolean;
|
@@ -1394,7 +1364,7 @@ export declare const VSnackbar: {
|
|
1394
1364
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1395
1365
|
transition: string | boolean | (import("vue").TransitionProps & {
|
1396
1366
|
component?: import("vue").Component;
|
1397
|
-
});
|
1367
|
+
}) | null;
|
1398
1368
|
zIndex: string | number;
|
1399
1369
|
style: import("vue").StyleValue;
|
1400
1370
|
eager: boolean;
|
@@ -1477,9 +1447,6 @@ export declare const VSnackbar: {
|
|
1477
1447
|
absolute: boolean;
|
1478
1448
|
location: import("../../util/index.js").Anchor;
|
1479
1449
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1480
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1481
|
-
component?: import("vue").Component;
|
1482
|
-
});
|
1483
1450
|
zIndex: string | number;
|
1484
1451
|
style: import("vue").StyleValue;
|
1485
1452
|
eager: boolean;
|
@@ -1502,9 +1469,6 @@ export declare const VSnackbar: {
|
|
1502
1469
|
absolute: boolean;
|
1503
1470
|
location: import("../../util/index.js").Anchor;
|
1504
1471
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1505
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1506
|
-
component?: import("vue").Component;
|
1507
|
-
});
|
1508
1472
|
zIndex: string | number;
|
1509
1473
|
style: import("vue").StyleValue;
|
1510
1474
|
eager: boolean;
|
@@ -1529,6 +1493,9 @@ export declare const VSnackbar: {
|
|
1529
1493
|
minHeight?: string | number | undefined;
|
1530
1494
|
minWidth?: string | number | undefined;
|
1531
1495
|
opacity?: string | number | undefined;
|
1496
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
1497
|
+
component?: import("vue").Component;
|
1498
|
+
}) | null | undefined;
|
1532
1499
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1533
1500
|
class?: any;
|
1534
1501
|
theme?: string | undefined;
|
@@ -1575,7 +1542,7 @@ export declare const VSnackbar: {
|
|
1575
1542
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1576
1543
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1577
1544
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1578
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "
|
1545
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
1579
1546
|
$attrs: {
|
1580
1547
|
[x: string]: unknown;
|
1581
1548
|
};
|
@@ -1601,9 +1568,6 @@ export declare const VSnackbar: {
|
|
1601
1568
|
absolute: boolean;
|
1602
1569
|
location: import("../../util/index.js").Anchor;
|
1603
1570
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1604
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1605
|
-
component?: import("vue").Component;
|
1606
|
-
});
|
1607
1571
|
zIndex: string | number;
|
1608
1572
|
style: import("vue").StyleValue;
|
1609
1573
|
eager: boolean;
|
@@ -1629,6 +1593,9 @@ export declare const VSnackbar: {
|
|
1629
1593
|
minHeight?: string | number | undefined;
|
1630
1594
|
minWidth?: string | number | undefined;
|
1631
1595
|
opacity?: string | number | undefined;
|
1596
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
1597
|
+
component?: import("vue").Component;
|
1598
|
+
}) | null | undefined;
|
1632
1599
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1633
1600
|
class?: any;
|
1634
1601
|
theme?: string | undefined;
|
@@ -1697,9 +1664,6 @@ export declare const VSnackbar: {
|
|
1697
1664
|
absolute: boolean;
|
1698
1665
|
location: import("../../util/index.js").Anchor;
|
1699
1666
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1700
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1701
|
-
component?: import("vue").Component;
|
1702
|
-
});
|
1703
1667
|
zIndex: string | number;
|
1704
1668
|
style: import("vue").StyleValue;
|
1705
1669
|
eager: boolean;
|
@@ -1751,9 +1715,6 @@ export declare const VSnackbar: {
|
|
1751
1715
|
absolute: boolean;
|
1752
1716
|
location: import("../../util/index.js").Anchor;
|
1753
1717
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1754
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1755
|
-
component?: import("vue").Component;
|
1756
|
-
});
|
1757
1718
|
zIndex: string | number;
|
1758
1719
|
style: import("vue").StyleValue;
|
1759
1720
|
eager: boolean;
|
@@ -1776,9 +1737,6 @@ export declare const VSnackbar: {
|
|
1776
1737
|
absolute: boolean;
|
1777
1738
|
location: import("../../util/index.js").Anchor;
|
1778
1739
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1779
|
-
transition: string | boolean | (import("vue").TransitionProps & {
|
1780
|
-
component?: import("vue").Component;
|
1781
|
-
});
|
1782
1740
|
zIndex: string | number;
|
1783
1741
|
style: import("vue").StyleValue;
|
1784
1742
|
eager: boolean;
|
@@ -1804,6 +1762,9 @@ export declare const VSnackbar: {
|
|
1804
1762
|
minHeight?: string | number | undefined;
|
1805
1763
|
minWidth?: string | number | undefined;
|
1806
1764
|
opacity?: string | number | undefined;
|
1765
|
+
transition?: string | boolean | (import("vue").TransitionProps & {
|
1766
|
+
component?: import("vue").Component;
|
1767
|
+
}) | null | undefined;
|
1807
1768
|
target?: Element | "cursor" | "parent" | (string & {}) | import("vue").ComponentPublicInstance | [x: number, y: number] | undefined;
|
1808
1769
|
class?: any;
|
1809
1770
|
theme?: string | undefined;
|
@@ -1853,7 +1814,7 @@ export declare const VSnackbar: {
|
|
1853
1814
|
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1854
1815
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1855
1816
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1856
|
-
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "
|
1817
|
+
}, "target" | "contentEl" | "activatorEl" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & import("vue").ShallowUnwrapRef<{
|
1857
1818
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1858
1819
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1859
1820
|
target: import("vue").ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -1862,7 +1823,7 @@ export declare const VSnackbar: {
|
|
1862
1823
|
globalTop: Readonly<Ref<boolean, boolean>>;
|
1863
1824
|
localTop: Readonly<Ref<boolean, boolean>>;
|
1864
1825
|
updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
1865
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "
|
1826
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "transition" | "target" | "class" | "theme" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:modelValue" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack") | "v-slot:activator">, `$${any}`> & {
|
1866
1827
|
_allExposed: {
|
1867
1828
|
activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1868
1829
|
scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
@@ -1882,7 +1843,7 @@ export declare const VSnackbar: {
|
|
1882
1843
|
origin: "auto" | import("../../util/index.js").Anchor | "overlap";
|
1883
1844
|
transition: string | boolean | (import("vue").TransitionProps & {
|
1884
1845
|
component?: import("vue").Component;
|
1885
|
-
});
|
1846
|
+
}) | null;
|
1886
1847
|
zIndex: string | number;
|
1887
1848
|
style: import("vue").StyleValue;
|
1888
1849
|
eager: boolean;
|
@@ -1929,19 +1890,13 @@ export declare const VSnackbar: {
|
|
1929
1890
|
minHeight: (StringConstructor | NumberConstructor)[];
|
1930
1891
|
minWidth: (StringConstructor | NumberConstructor)[];
|
1931
1892
|
opacity: (StringConstructor | NumberConstructor)[];
|
1932
|
-
transition:
|
1893
|
+
transition: {
|
1933
1894
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
1934
1895
|
component?: import("vue").Component;
|
1935
|
-
})>;
|
1936
|
-
default: string;
|
1937
|
-
validator: (val: unknown) => boolean;
|
1938
|
-
}, "type" | "default"> & {
|
1939
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
1940
|
-
component?: import("vue").Component;
|
1941
|
-
})>;
|
1896
|
+
}) | null>;
|
1942
1897
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
1943
1898
|
component?: import("vue").Component;
|
1944
|
-
})>;
|
1899
|
+
}) | null>;
|
1945
1900
|
};
|
1946
1901
|
zIndex: {
|
1947
1902
|
type: (StringConstructor | NumberConstructor)[];
|
@@ -2028,19 +1983,13 @@ export declare const VSnackbar: {
|
|
2028
1983
|
minHeight: (StringConstructor | NumberConstructor)[];
|
2029
1984
|
minWidth: (StringConstructor | NumberConstructor)[];
|
2030
1985
|
opacity: (StringConstructor | NumberConstructor)[];
|
2031
|
-
transition:
|
2032
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
2033
|
-
component?: import("vue").Component;
|
2034
|
-
})>;
|
2035
|
-
default: string;
|
2036
|
-
validator: (val: unknown) => boolean;
|
2037
|
-
}, "type" | "default"> & {
|
1986
|
+
transition: {
|
2038
1987
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
2039
1988
|
component?: import("vue").Component;
|
2040
|
-
})>;
|
1989
|
+
}) | null>;
|
2041
1990
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
2042
1991
|
component?: import("vue").Component;
|
2043
|
-
})>;
|
1992
|
+
}) | null>;
|
2044
1993
|
};
|
2045
1994
|
zIndex: {
|
2046
1995
|
type: (StringConstructor | NumberConstructor)[];
|