vuetify 3.3.15 → 3.4.0-alpha.1
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 +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { Ref, EffectScope, ComponentPropsOptions, ExtractPropTypes } from 'vue';
|
|
2
|
+
import { Ref, EffectScope, ComponentPropsOptions, ExtractPropTypes, nextTick } from 'vue';
|
|
3
3
|
|
|
4
4
|
interface ScrollStrategyData {
|
|
5
5
|
root: Ref<HTMLElement | undefined>;
|
|
6
6
|
contentEl: Ref<HTMLElement | undefined>;
|
|
7
|
-
|
|
7
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
8
8
|
isActive: Ref<boolean>;
|
|
9
9
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
10
10
|
}
|
|
@@ -52,7 +52,7 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
|
52
52
|
|
|
53
53
|
interface LocationStrategyData {
|
|
54
54
|
contentEl: Ref<HTMLElement | undefined>;
|
|
55
|
-
|
|
55
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
56
56
|
isActive: Ref<boolean>;
|
|
57
57
|
isRtl: Ref<boolean>;
|
|
58
58
|
}
|
|
@@ -125,6 +125,7 @@ declare const VSnackbar: {
|
|
|
125
125
|
minHeight?: string | number | undefined;
|
|
126
126
|
minWidth?: string | number | undefined;
|
|
127
127
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
128
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
128
129
|
class?: any;
|
|
129
130
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
130
131
|
activator?: ((arg: {
|
|
@@ -137,6 +138,7 @@ declare const VSnackbar: {
|
|
|
137
138
|
ref?: vue.VNodeRef | undefined;
|
|
138
139
|
ref_for?: boolean | undefined;
|
|
139
140
|
ref_key?: string | undefined;
|
|
141
|
+
timer?: string | boolean | undefined;
|
|
140
142
|
theme?: string | undefined;
|
|
141
143
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
142
144
|
'v-slots'?: {
|
|
@@ -187,7 +189,7 @@ declare const VSnackbar: {
|
|
|
187
189
|
[key: string]: any;
|
|
188
190
|
}>) => void)[] | undefined;
|
|
189
191
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
190
|
-
activator?:
|
|
192
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
191
193
|
"v-slot:activator"?: false | ((arg: {
|
|
192
194
|
isActive: boolean;
|
|
193
195
|
props: Record<string, any>;
|
|
@@ -256,11 +258,13 @@ declare const VSnackbar: {
|
|
|
256
258
|
minHeight?: string | number | undefined;
|
|
257
259
|
minWidth?: string | number | undefined;
|
|
258
260
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
261
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
259
262
|
class?: any;
|
|
263
|
+
timer?: string | boolean | undefined;
|
|
260
264
|
theme?: string | undefined;
|
|
261
265
|
contentClass?: any;
|
|
262
266
|
rounded?: string | number | boolean | undefined;
|
|
263
|
-
activator?:
|
|
267
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
264
268
|
closeDelay?: string | number | undefined;
|
|
265
269
|
openDelay?: string | number | undefined;
|
|
266
270
|
openOnClick?: boolean | undefined;
|
|
@@ -331,6 +335,7 @@ declare const VSnackbar: {
|
|
|
331
335
|
maxWidth?: string | number | undefined;
|
|
332
336
|
minHeight?: string | number | undefined;
|
|
333
337
|
minWidth?: string | number | undefined;
|
|
338
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
334
339
|
class?: any;
|
|
335
340
|
onAfterLeave?: (() => any) | undefined;
|
|
336
341
|
$children?: vue.VNodeChild | {
|
|
@@ -400,7 +405,7 @@ declare const VSnackbar: {
|
|
|
400
405
|
[key: string]: any;
|
|
401
406
|
}>) => void)[] | undefined;
|
|
402
407
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
403
|
-
activator?:
|
|
408
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
404
409
|
"v-slot:activator"?: false | ((arg: {
|
|
405
410
|
isActive: boolean;
|
|
406
411
|
props: Record<string, any>;
|
|
@@ -467,10 +472,11 @@ declare const VSnackbar: {
|
|
|
467
472
|
maxWidth?: string | number | undefined;
|
|
468
473
|
minHeight?: string | number | undefined;
|
|
469
474
|
minWidth?: string | number | undefined;
|
|
475
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
470
476
|
class?: any;
|
|
471
477
|
theme?: string | undefined;
|
|
472
478
|
contentClass?: any;
|
|
473
|
-
activator?:
|
|
479
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
474
480
|
closeDelay?: string | number | undefined;
|
|
475
481
|
openDelay?: string | number | undefined;
|
|
476
482
|
openOnClick?: boolean | undefined;
|
|
@@ -512,6 +518,7 @@ declare const VSnackbar: {
|
|
|
512
518
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
513
519
|
}, {
|
|
514
520
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
521
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
515
522
|
animateClick: () => void;
|
|
516
523
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
517
524
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -578,7 +585,7 @@ declare const VSnackbar: {
|
|
|
578
585
|
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
579
586
|
};
|
|
580
587
|
$forceUpdate: () => void;
|
|
581
|
-
$nextTick: typeof
|
|
588
|
+
$nextTick: typeof nextTick;
|
|
582
589
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
583
590
|
} & {
|
|
584
591
|
absolute: boolean;
|
|
@@ -613,10 +620,11 @@ declare const VSnackbar: {
|
|
|
613
620
|
maxWidth?: string | number | undefined;
|
|
614
621
|
minHeight?: string | number | undefined;
|
|
615
622
|
minWidth?: string | number | undefined;
|
|
623
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
616
624
|
class?: any;
|
|
617
625
|
theme?: string | undefined;
|
|
618
626
|
contentClass?: any;
|
|
619
|
-
activator?:
|
|
627
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
620
628
|
closeDelay?: string | number | undefined;
|
|
621
629
|
openDelay?: string | number | undefined;
|
|
622
630
|
openOnClick?: boolean | undefined;
|
|
@@ -658,12 +666,13 @@ declare const VSnackbar: {
|
|
|
658
666
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
659
667
|
} & vue.ShallowUnwrapRef<{
|
|
660
668
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
669
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
661
670
|
animateClick: () => void;
|
|
662
671
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
663
672
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
664
673
|
localTop: vue.ComputedRef<boolean>;
|
|
665
674
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
666
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
675
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
667
676
|
'update:modelValue': (v: boolean) => boolean;
|
|
668
677
|
}, string, {
|
|
669
678
|
absolute: boolean;
|
|
@@ -723,7 +732,7 @@ declare const VSnackbar: {
|
|
|
723
732
|
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
724
733
|
};
|
|
725
734
|
$forceUpdate: () => void;
|
|
726
|
-
$nextTick: typeof
|
|
735
|
+
$nextTick: typeof nextTick;
|
|
727
736
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
728
737
|
} & {
|
|
729
738
|
absolute: boolean;
|
|
@@ -759,11 +768,13 @@ declare const VSnackbar: {
|
|
|
759
768
|
minHeight?: string | number | undefined;
|
|
760
769
|
minWidth?: string | number | undefined;
|
|
761
770
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
771
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
762
772
|
class?: any;
|
|
773
|
+
timer?: string | boolean | undefined;
|
|
763
774
|
theme?: string | undefined;
|
|
764
775
|
contentClass?: any;
|
|
765
776
|
rounded?: string | number | boolean | undefined;
|
|
766
|
-
activator?:
|
|
777
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
767
778
|
closeDelay?: string | number | undefined;
|
|
768
779
|
openDelay?: string | number | undefined;
|
|
769
780
|
openOnClick?: boolean | undefined;
|
|
@@ -834,6 +845,7 @@ declare const VSnackbar: {
|
|
|
834
845
|
maxWidth?: string | number | undefined;
|
|
835
846
|
minHeight?: string | number | undefined;
|
|
836
847
|
minWidth?: string | number | undefined;
|
|
848
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
837
849
|
class?: any;
|
|
838
850
|
onAfterLeave?: (() => any) | undefined;
|
|
839
851
|
$children?: vue.VNodeChild | {
|
|
@@ -903,7 +915,7 @@ declare const VSnackbar: {
|
|
|
903
915
|
[key: string]: any;
|
|
904
916
|
}>) => void)[] | undefined;
|
|
905
917
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
906
|
-
activator?:
|
|
918
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
907
919
|
"v-slot:activator"?: false | ((arg: {
|
|
908
920
|
isActive: boolean;
|
|
909
921
|
props: Record<string, any>;
|
|
@@ -970,10 +982,11 @@ declare const VSnackbar: {
|
|
|
970
982
|
maxWidth?: string | number | undefined;
|
|
971
983
|
minHeight?: string | number | undefined;
|
|
972
984
|
minWidth?: string | number | undefined;
|
|
985
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
973
986
|
class?: any;
|
|
974
987
|
theme?: string | undefined;
|
|
975
988
|
contentClass?: any;
|
|
976
|
-
activator?:
|
|
989
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
977
990
|
closeDelay?: string | number | undefined;
|
|
978
991
|
openDelay?: string | number | undefined;
|
|
979
992
|
openOnClick?: boolean | undefined;
|
|
@@ -1015,6 +1028,7 @@ declare const VSnackbar: {
|
|
|
1015
1028
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1016
1029
|
}, {
|
|
1017
1030
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1031
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1018
1032
|
animateClick: () => void;
|
|
1019
1033
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1020
1034
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -1081,7 +1095,7 @@ declare const VSnackbar: {
|
|
|
1081
1095
|
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
1082
1096
|
};
|
|
1083
1097
|
$forceUpdate: () => void;
|
|
1084
|
-
$nextTick: typeof
|
|
1098
|
+
$nextTick: typeof nextTick;
|
|
1085
1099
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
1086
1100
|
} & {
|
|
1087
1101
|
absolute: boolean;
|
|
@@ -1116,10 +1130,11 @@ declare const VSnackbar: {
|
|
|
1116
1130
|
maxWidth?: string | number | undefined;
|
|
1117
1131
|
minHeight?: string | number | undefined;
|
|
1118
1132
|
minWidth?: string | number | undefined;
|
|
1133
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1119
1134
|
class?: any;
|
|
1120
1135
|
theme?: string | undefined;
|
|
1121
1136
|
contentClass?: any;
|
|
1122
|
-
activator?:
|
|
1137
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1123
1138
|
closeDelay?: string | number | undefined;
|
|
1124
1139
|
openDelay?: string | number | undefined;
|
|
1125
1140
|
openOnClick?: boolean | undefined;
|
|
@@ -1161,12 +1176,13 @@ declare const VSnackbar: {
|
|
|
1161
1176
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1162
1177
|
} & vue.ShallowUnwrapRef<{
|
|
1163
1178
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1179
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1164
1180
|
animateClick: () => void;
|
|
1165
1181
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1166
1182
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
1167
1183
|
localTop: vue.ComputedRef<boolean>;
|
|
1168
1184
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
1169
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
|
|
1185
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
|
|
1170
1186
|
__isFragment?: undefined;
|
|
1171
1187
|
__isTeleport?: undefined;
|
|
1172
1188
|
__isSuspense?: undefined;
|
|
@@ -1204,11 +1220,13 @@ declare const VSnackbar: {
|
|
|
1204
1220
|
minHeight?: string | number | undefined;
|
|
1205
1221
|
minWidth?: string | number | undefined;
|
|
1206
1222
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
1223
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1207
1224
|
class?: any;
|
|
1225
|
+
timer?: string | boolean | undefined;
|
|
1208
1226
|
theme?: string | undefined;
|
|
1209
1227
|
contentClass?: any;
|
|
1210
1228
|
rounded?: string | number | boolean | undefined;
|
|
1211
|
-
activator?:
|
|
1229
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1212
1230
|
closeDelay?: string | number | undefined;
|
|
1213
1231
|
openDelay?: string | number | undefined;
|
|
1214
1232
|
openOnClick?: boolean | undefined;
|
|
@@ -1279,6 +1297,7 @@ declare const VSnackbar: {
|
|
|
1279
1297
|
maxWidth?: string | number | undefined;
|
|
1280
1298
|
minHeight?: string | number | undefined;
|
|
1281
1299
|
minWidth?: string | number | undefined;
|
|
1300
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1282
1301
|
class?: any;
|
|
1283
1302
|
onAfterLeave?: (() => any) | undefined;
|
|
1284
1303
|
$children?: vue.VNodeChild | {
|
|
@@ -1348,7 +1367,7 @@ declare const VSnackbar: {
|
|
|
1348
1367
|
[key: string]: any;
|
|
1349
1368
|
}>) => void)[] | undefined;
|
|
1350
1369
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1351
|
-
activator?:
|
|
1370
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1352
1371
|
"v-slot:activator"?: false | ((arg: {
|
|
1353
1372
|
isActive: boolean;
|
|
1354
1373
|
props: Record<string, any>;
|
|
@@ -1415,10 +1434,11 @@ declare const VSnackbar: {
|
|
|
1415
1434
|
maxWidth?: string | number | undefined;
|
|
1416
1435
|
minHeight?: string | number | undefined;
|
|
1417
1436
|
minWidth?: string | number | undefined;
|
|
1437
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1418
1438
|
class?: any;
|
|
1419
1439
|
theme?: string | undefined;
|
|
1420
1440
|
contentClass?: any;
|
|
1421
|
-
activator?:
|
|
1441
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1422
1442
|
closeDelay?: string | number | undefined;
|
|
1423
1443
|
openDelay?: string | number | undefined;
|
|
1424
1444
|
openOnClick?: boolean | undefined;
|
|
@@ -1460,6 +1480,7 @@ declare const VSnackbar: {
|
|
|
1460
1480
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1461
1481
|
}, {
|
|
1462
1482
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1483
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1463
1484
|
animateClick: () => void;
|
|
1464
1485
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1465
1486
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -1526,7 +1547,7 @@ declare const VSnackbar: {
|
|
|
1526
1547
|
errorCaptured?: (((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
1527
1548
|
};
|
|
1528
1549
|
$forceUpdate: () => void;
|
|
1529
|
-
$nextTick: typeof
|
|
1550
|
+
$nextTick: typeof nextTick;
|
|
1530
1551
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
1531
1552
|
} & {
|
|
1532
1553
|
absolute: boolean;
|
|
@@ -1561,10 +1582,11 @@ declare const VSnackbar: {
|
|
|
1561
1582
|
maxWidth?: string | number | undefined;
|
|
1562
1583
|
minHeight?: string | number | undefined;
|
|
1563
1584
|
minWidth?: string | number | undefined;
|
|
1585
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1564
1586
|
class?: any;
|
|
1565
1587
|
theme?: string | undefined;
|
|
1566
1588
|
contentClass?: any;
|
|
1567
|
-
activator?:
|
|
1589
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1568
1590
|
closeDelay?: string | number | undefined;
|
|
1569
1591
|
openDelay?: string | number | undefined;
|
|
1570
1592
|
openOnClick?: boolean | undefined;
|
|
@@ -1606,12 +1628,13 @@ declare const VSnackbar: {
|
|
|
1606
1628
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1607
1629
|
} & vue.ShallowUnwrapRef<{
|
|
1608
1630
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1631
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1609
1632
|
animateClick: () => void;
|
|
1610
1633
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1611
1634
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
1612
1635
|
localTop: vue.ComputedRef<boolean>;
|
|
1613
1636
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
1614
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1637
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1615
1638
|
'update:modelValue': (v: boolean) => boolean;
|
|
1616
1639
|
}, string, {
|
|
1617
1640
|
absolute: boolean;
|
|
@@ -1692,13 +1715,14 @@ declare const VSnackbar: {
|
|
|
1692
1715
|
type: vue.PropType<vue.StyleValue>;
|
|
1693
1716
|
default: null;
|
|
1694
1717
|
};
|
|
1718
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
1695
1719
|
eager: BooleanConstructor;
|
|
1696
1720
|
disabled: BooleanConstructor;
|
|
1697
1721
|
class: vue.PropType<any>;
|
|
1698
1722
|
theme: StringConstructor;
|
|
1699
1723
|
contentClass: null;
|
|
1700
1724
|
modelValue: BooleanConstructor;
|
|
1701
|
-
activator: vue.PropType<
|
|
1725
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
1702
1726
|
locationStrategy: {
|
|
1703
1727
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
1704
1728
|
updateLocation: (e: Event) => void;
|
|
@@ -1744,6 +1768,7 @@ declare const VSnackbar: {
|
|
|
1744
1768
|
validator: (v: any) => boolean;
|
|
1745
1769
|
};
|
|
1746
1770
|
multiLine: BooleanConstructor;
|
|
1771
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
1747
1772
|
timeout: {
|
|
1748
1773
|
type: (StringConstructor | NumberConstructor)[];
|
|
1749
1774
|
default: number;
|
|
@@ -1788,13 +1813,14 @@ declare const VSnackbar: {
|
|
|
1788
1813
|
type: vue.PropType<vue.StyleValue>;
|
|
1789
1814
|
default: null;
|
|
1790
1815
|
};
|
|
1816
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
1791
1817
|
eager: BooleanConstructor;
|
|
1792
1818
|
disabled: BooleanConstructor;
|
|
1793
1819
|
class: vue.PropType<any>;
|
|
1794
1820
|
theme: StringConstructor;
|
|
1795
1821
|
contentClass: null;
|
|
1796
1822
|
modelValue: BooleanConstructor;
|
|
1797
|
-
activator: vue.PropType<
|
|
1823
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
1798
1824
|
locationStrategy: {
|
|
1799
1825
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
1800
1826
|
updateLocation: (e: Event) => void;
|
|
@@ -1840,6 +1866,7 @@ declare const VSnackbar: {
|
|
|
1840
1866
|
validator: (v: any) => boolean;
|
|
1841
1867
|
};
|
|
1842
1868
|
multiLine: BooleanConstructor;
|
|
1869
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
1843
1870
|
timeout: {
|
|
1844
1871
|
type: (StringConstructor | NumberConstructor)[];
|
|
1845
1872
|
default: number;
|
|
@@ -180,6 +180,7 @@ declare const VSwitch: {
|
|
|
180
180
|
defaultsTarget?: string | undefined;
|
|
181
181
|
falseIcon?: IconValue | undefined;
|
|
182
182
|
trueIcon?: IconValue | undefined;
|
|
183
|
+
baseColor?: string | undefined;
|
|
183
184
|
trueValue?: any;
|
|
184
185
|
falseValue?: any;
|
|
185
186
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -277,6 +278,7 @@ declare const VSwitch: {
|
|
|
277
278
|
defaultsTarget?: string | undefined;
|
|
278
279
|
falseIcon?: IconValue | undefined;
|
|
279
280
|
trueIcon?: IconValue | undefined;
|
|
281
|
+
baseColor?: string | undefined;
|
|
280
282
|
trueValue?: any;
|
|
281
283
|
falseValue?: any;
|
|
282
284
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -455,6 +457,7 @@ declare const VSwitch: {
|
|
|
455
457
|
defaultsTarget?: string | undefined;
|
|
456
458
|
falseIcon?: IconValue | undefined;
|
|
457
459
|
trueIcon?: IconValue | undefined;
|
|
460
|
+
baseColor?: string | undefined;
|
|
458
461
|
trueValue?: any;
|
|
459
462
|
falseValue?: any;
|
|
460
463
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -560,6 +563,7 @@ declare const VSwitch: {
|
|
|
560
563
|
defaultsTarget?: string | undefined;
|
|
561
564
|
falseIcon?: IconValue | undefined;
|
|
562
565
|
trueIcon?: IconValue | undefined;
|
|
566
|
+
baseColor?: string | undefined;
|
|
563
567
|
trueValue?: any;
|
|
564
568
|
falseValue?: any;
|
|
565
569
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -721,6 +725,7 @@ declare const VSwitch: {
|
|
|
721
725
|
default: typeof deepEqual;
|
|
722
726
|
};
|
|
723
727
|
label: StringConstructor;
|
|
728
|
+
baseColor: StringConstructor;
|
|
724
729
|
trueValue: null;
|
|
725
730
|
falseValue: null;
|
|
726
731
|
value: null;
|
|
@@ -807,6 +812,7 @@ declare const VSwitch: {
|
|
|
807
812
|
default: typeof deepEqual;
|
|
808
813
|
};
|
|
809
814
|
label: StringConstructor;
|
|
815
|
+
baseColor: StringConstructor;
|
|
810
816
|
trueValue: null;
|
|
811
817
|
falseValue: null;
|
|
812
818
|
value: null;
|
|
@@ -33,6 +33,10 @@ interface GroupProvide {
|
|
|
33
33
|
getItemIndex: (value: unknown) => number;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
|
37
|
+
type Breakpoint = typeof breakpoints[number];
|
|
38
|
+
type DisplayBreakpoint = 'xs' | Breakpoint;
|
|
39
|
+
|
|
36
40
|
type Density = null | 'default' | 'comfortable' | 'compact';
|
|
37
41
|
|
|
38
42
|
type TabItem = string | Record<string, any>;
|
|
@@ -115,6 +119,7 @@ declare const VTabs: {
|
|
|
115
119
|
}>) => void)[] | undefined;
|
|
116
120
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
117
121
|
bgColor?: string | undefined;
|
|
122
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
118
123
|
showArrows?: string | boolean | undefined;
|
|
119
124
|
sliderColor?: string | undefined;
|
|
120
125
|
};
|
|
@@ -159,6 +164,7 @@ declare const VTabs: {
|
|
|
159
164
|
class?: any;
|
|
160
165
|
modelValue?: any;
|
|
161
166
|
bgColor?: string | undefined;
|
|
167
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
162
168
|
showArrows?: string | boolean | undefined;
|
|
163
169
|
sliderColor?: string | undefined;
|
|
164
170
|
} & {
|
|
@@ -245,6 +251,7 @@ declare const VTabs: {
|
|
|
245
251
|
class?: any;
|
|
246
252
|
modelValue?: any;
|
|
247
253
|
bgColor?: string | undefined;
|
|
254
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
248
255
|
showArrows?: string | boolean | undefined;
|
|
249
256
|
sliderColor?: string | undefined;
|
|
250
257
|
} & {
|
|
@@ -288,6 +295,7 @@ declare const VTabs: {
|
|
|
288
295
|
class?: any;
|
|
289
296
|
modelValue?: any;
|
|
290
297
|
bgColor?: string | undefined;
|
|
298
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
291
299
|
showArrows?: string | boolean | undefined;
|
|
292
300
|
sliderColor?: string | undefined;
|
|
293
301
|
} & {
|
|
@@ -353,6 +361,7 @@ declare const VTabs: {
|
|
|
353
361
|
default: string;
|
|
354
362
|
};
|
|
355
363
|
disabled: BooleanConstructor;
|
|
364
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
356
365
|
class: PropType<any>;
|
|
357
366
|
style: {
|
|
358
367
|
type: PropType<vue.StyleValue>;
|
|
@@ -423,6 +432,7 @@ declare const VTabs: {
|
|
|
423
432
|
default: string;
|
|
424
433
|
};
|
|
425
434
|
disabled: BooleanConstructor;
|
|
435
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
426
436
|
class: PropType<any>;
|
|
427
437
|
style: {
|
|
428
438
|
type: PropType<vue.StyleValue>;
|