@vuetify/nightly 3.9.2-master.2025-07-23 → 3.9.2-master.2025-07-25
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 +15 -3
- package/dist/_component-variables-labs.sass +3 -1
- package/dist/json/attributes.json +4029 -3617
- package/dist/json/importMap-labs.json +38 -14
- package/dist/json/importMap.json +148 -148
- package/dist/json/tags.json +133 -0
- package/dist/json/web-types.json +13484 -11867
- package/dist/vuetify-labs.cjs +1525 -126
- package/dist/vuetify-labs.css +5448 -5007
- package/dist/vuetify-labs.d.ts +7670 -974
- package/dist/vuetify-labs.esm.js +1526 -127
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +1525 -126
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +74 -34
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3415 -3415
- package/dist/vuetify.d.ts +86 -61
- package/dist/vuetify.esm.js +74 -34
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +74 -34
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +976 -977
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +6 -6
- package/lib/components/VDialog/VDialog.d.ts +6 -6
- package/lib/components/VOverlay/VOverlay.js +1 -0
- package/lib/components/VOverlay/VOverlay.js.map +1 -1
- package/lib/components/VOverlay/locationStrategies.js +16 -10
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.d.ts +1 -0
- package/lib/components/VOverlay/scrollStrategies.js +6 -4
- package/lib/components/VOverlay/scrollStrategies.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +13 -0
- package/lib/components/VSlider/VSlider.d.ts +13 -0
- package/lib/components/VSlider/VSlider.js +3 -1
- package/lib/components/VSlider/VSlider.js.map +1 -1
- package/lib/components/VSlider/VSliderThumb.d.ts +13 -0
- package/lib/components/VSlider/VSliderThumb.js +2 -0
- package/lib/components/VSlider/VSliderThumb.js.map +1 -1
- package/lib/components/VSlider/slider.d.ts +6 -0
- package/lib/components/VSlider/slider.js +2 -0
- package/lib/components/VSlider/slider.js.map +1 -1
- package/lib/components/index.js +2 -2
- package/lib/components/index.js.map +1 -1
- package/lib/composables/goto.d.ts +3 -2
- package/lib/composables/goto.js +2 -16
- package/lib/composables/goto.js.map +1 -1
- package/lib/composables/reveal.d.ts +36 -0
- package/lib/composables/reveal.js +30 -0
- package/lib/composables/reveal.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +142 -133
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +9 -1
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +9 -1
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +9 -1
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +9 -1
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/iconsets/mdi.js +9 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VPie/VPie.css +105 -0
- package/lib/labs/VPie/VPie.d.ts +891 -0
- package/lib/labs/VPie/VPie.js +291 -0
- package/lib/labs/VPie/VPie.js.map +1 -0
- package/lib/labs/VPie/VPie.sass +109 -0
- package/lib/labs/VPie/VPieSegment.d.ts +310 -0
- package/lib/labs/VPie/VPieSegment.js +103 -0
- package/lib/labs/VPie/VPieSegment.js.map +1 -0
- package/lib/labs/VPie/VPieTooltip.d.ts +279 -0
- package/lib/labs/VPie/VPieTooltip.js +84 -0
- package/lib/labs/VPie/VPieTooltip.js.map +1 -0
- package/lib/labs/VPie/_variables.scss +11 -0
- package/lib/labs/VPie/index.d.ts +3 -0
- package/lib/labs/VPie/index.js +4 -0
- package/lib/labs/VPie/index.js.map +1 -0
- package/lib/labs/VPie/types.d.ts +16 -0
- package/lib/labs/VPie/types.js +2 -0
- package/lib/labs/VPie/types.js.map +1 -0
- package/lib/labs/VPie/utils.d.ts +23 -0
- package/lib/labs/VPie/utils.js +49 -0
- package/lib/labs/VPie/utils.js.map +1 -0
- package/lib/labs/VVideo/VVideo.css +322 -0
- package/lib/labs/VVideo/VVideo.d.ts +6932 -0
- package/lib/labs/VVideo/VVideo.js +424 -0
- package/lib/labs/VVideo/VVideo.js.map +1 -0
- package/lib/labs/VVideo/VVideo.sass +304 -0
- package/lib/labs/VVideo/VVideoControls.d.ts +3524 -0
- package/lib/labs/VVideo/VVideoControls.js +236 -0
- package/lib/labs/VVideo/VVideoControls.js.map +1 -0
- package/lib/labs/VVideo/VVideoVolume.d.ts +3088 -0
- package/lib/labs/VVideo/VVideoVolume.js +94 -0
- package/lib/labs/VVideo/VVideoVolume.js.map +1 -0
- package/lib/labs/VVideo/_variables.scss +58 -0
- package/lib/labs/VVideo/index.d.ts +3 -0
- package/lib/labs/VVideo/index.js +4 -0
- package/lib/labs/VVideo/index.js.map +1 -0
- package/lib/labs/components.d.ts +2 -0
- package/lib/labs/components.js +2 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/locale/af.d.ts +11 -0
- package/lib/locale/af.js +11 -0
- package/lib/locale/af.js.map +1 -1
- package/lib/locale/ar.d.ts +11 -0
- package/lib/locale/ar.js +11 -0
- package/lib/locale/ar.js.map +1 -1
- package/lib/locale/az.d.ts +11 -0
- package/lib/locale/az.js +11 -0
- package/lib/locale/az.js.map +1 -1
- package/lib/locale/bg.d.ts +11 -0
- package/lib/locale/bg.js +11 -0
- package/lib/locale/bg.js.map +1 -1
- package/lib/locale/ca.d.ts +11 -0
- package/lib/locale/ca.js +11 -0
- package/lib/locale/ca.js.map +1 -1
- package/lib/locale/ckb.d.ts +11 -0
- package/lib/locale/ckb.js +11 -0
- package/lib/locale/ckb.js.map +1 -1
- package/lib/locale/cs.d.ts +11 -0
- package/lib/locale/cs.js +11 -0
- package/lib/locale/cs.js.map +1 -1
- package/lib/locale/da.d.ts +11 -0
- package/lib/locale/da.js +11 -0
- package/lib/locale/da.js.map +1 -1
- package/lib/locale/de.d.ts +11 -0
- package/lib/locale/de.js +11 -0
- package/lib/locale/de.js.map +1 -1
- package/lib/locale/el.d.ts +11 -0
- package/lib/locale/el.js +11 -0
- package/lib/locale/el.js.map +1 -1
- package/lib/locale/en.d.ts +11 -0
- package/lib/locale/en.js +11 -0
- package/lib/locale/en.js.map +1 -1
- package/lib/locale/es.d.ts +11 -0
- package/lib/locale/es.js +11 -0
- package/lib/locale/es.js.map +1 -1
- package/lib/locale/et.d.ts +11 -0
- package/lib/locale/et.js +11 -0
- package/lib/locale/et.js.map +1 -1
- package/lib/locale/fa.d.ts +11 -0
- package/lib/locale/fa.js +11 -0
- package/lib/locale/fa.js.map +1 -1
- package/lib/locale/fi.d.ts +11 -0
- package/lib/locale/fi.js +11 -0
- package/lib/locale/fi.js.map +1 -1
- package/lib/locale/fr.d.ts +11 -0
- package/lib/locale/fr.js +11 -0
- package/lib/locale/fr.js.map +1 -1
- package/lib/locale/he.d.ts +11 -0
- package/lib/locale/he.js +11 -0
- package/lib/locale/he.js.map +1 -1
- package/lib/locale/hr.d.ts +11 -0
- package/lib/locale/hr.js +11 -0
- package/lib/locale/hr.js.map +1 -1
- package/lib/locale/hu.d.ts +11 -0
- package/lib/locale/hu.js +11 -0
- package/lib/locale/hu.js.map +1 -1
- package/lib/locale/id.d.ts +11 -0
- package/lib/locale/id.js +11 -0
- package/lib/locale/id.js.map +1 -1
- package/lib/locale/it.d.ts +11 -0
- package/lib/locale/it.js +11 -0
- package/lib/locale/it.js.map +1 -1
- package/lib/locale/ja.d.ts +11 -0
- package/lib/locale/ja.js +11 -0
- package/lib/locale/ja.js.map +1 -1
- package/lib/locale/km.d.ts +11 -0
- package/lib/locale/km.js +11 -0
- package/lib/locale/km.js.map +1 -1
- package/lib/locale/ko.d.ts +11 -0
- package/lib/locale/ko.js +11 -0
- package/lib/locale/ko.js.map +1 -1
- package/lib/locale/lt.d.ts +11 -0
- package/lib/locale/lt.js +11 -0
- package/lib/locale/lt.js.map +1 -1
- package/lib/locale/lv.d.ts +11 -0
- package/lib/locale/lv.js +11 -0
- package/lib/locale/lv.js.map +1 -1
- package/lib/locale/nl.d.ts +11 -0
- package/lib/locale/nl.js +11 -0
- package/lib/locale/nl.js.map +1 -1
- package/lib/locale/no.d.ts +11 -0
- package/lib/locale/no.js +11 -0
- package/lib/locale/no.js.map +1 -1
- package/lib/locale/pl.d.ts +11 -0
- package/lib/locale/pl.js +11 -0
- package/lib/locale/pl.js.map +1 -1
- package/lib/locale/pt.d.ts +11 -0
- package/lib/locale/pt.js +11 -0
- package/lib/locale/pt.js.map +1 -1
- package/lib/locale/ro.d.ts +11 -0
- package/lib/locale/ro.js +11 -0
- package/lib/locale/ro.js.map +1 -1
- package/lib/locale/ru.d.ts +11 -0
- package/lib/locale/ru.js +11 -0
- package/lib/locale/ru.js.map +1 -1
- package/lib/locale/sk.d.ts +11 -0
- package/lib/locale/sk.js +11 -0
- package/lib/locale/sk.js.map +1 -1
- package/lib/locale/sl.d.ts +11 -0
- package/lib/locale/sl.js +11 -0
- package/lib/locale/sl.js.map +1 -1
- package/lib/locale/sr-Cyrl.d.ts +11 -0
- package/lib/locale/sr-Cyrl.js +11 -0
- package/lib/locale/sr-Cyrl.js.map +1 -1
- package/lib/locale/sr-Latn.d.ts +11 -0
- package/lib/locale/sr-Latn.js +11 -0
- package/lib/locale/sr-Latn.js.map +1 -1
- package/lib/locale/sv.d.ts +11 -0
- package/lib/locale/sv.js +11 -0
- package/lib/locale/sv.js.map +1 -1
- package/lib/locale/th.d.ts +11 -0
- package/lib/locale/th.js +11 -0
- package/lib/locale/th.js.map +1 -1
- package/lib/locale/tr.d.ts +11 -0
- package/lib/locale/tr.js +11 -0
- package/lib/locale/tr.js.map +1 -1
- package/lib/locale/uk.d.ts +11 -0
- package/lib/locale/uk.js +11 -0
- package/lib/locale/uk.js.map +1 -1
- package/lib/locale/vi.d.ts +11 -0
- package/lib/locale/vi.js +11 -0
- package/lib/locale/vi.js.map +1 -1
- package/lib/locale/zh-Hans.d.ts +11 -0
- package/lib/locale/zh-Hans.js +11 -0
- package/lib/locale/zh-Hans.js.map +1 -1
- package/lib/locale/zh-Hant.d.ts +11 -0
- package/lib/locale/zh-Hant.js +11 -0
- package/lib/locale/zh-Hant.js.map +1 -1
- package/lib/util/easing.d.ts +22 -0
- package/lib/util/easing.js +53 -0
- package/lib/util/easing.js.map +1 -1
- package/lib/util/index.d.ts +1 -0
- package/lib/util/index.js +1 -0
- package/lib/util/index.js.map +1 -1
- package/lib/util/svg-arc-corners.d.ts +4 -0
- package/lib/util/svg-arc-corners.js +73 -0
- package/lib/util/svg-arc-corners.js.map +1 -0
- package/lib/util/timeUtils.d.ts +1 -0
- package/lib/util/timeUtils.js +4 -0
- package/lib/util/timeUtils.js.map +1 -0
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -251,6 +251,8 @@ type JSXComponent<Props = any> = {
|
|
251
251
|
|
252
252
|
type ClassValue = any;
|
253
253
|
|
254
|
+
type EasingFunction = (n: number) => number;
|
255
|
+
|
254
256
|
declare function deepEqual(a: any, b: any): boolean;
|
255
257
|
type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
|
256
258
|
type MaybeRef<T> = T | Ref<T>;
|
@@ -771,8 +773,8 @@ interface InternalGoToOptions {
|
|
771
773
|
duration: number;
|
772
774
|
layout: boolean;
|
773
775
|
offset: number;
|
774
|
-
easing: string |
|
775
|
-
patterns: Record<string,
|
776
|
+
easing: string | EasingFunction;
|
777
|
+
patterns: Record<string, EasingFunction>;
|
776
778
|
}
|
777
779
|
type GoToOptions = Partial<InternalGoToOptions>;
|
778
780
|
declare function useGoTo(_options?: GoToOptions): {
|
@@ -1056,6 +1058,7 @@ interface ScrollStrategyData {
|
|
1056
1058
|
root: Ref<HTMLElement | undefined>;
|
1057
1059
|
contentEl: Ref<HTMLElement | undefined>;
|
1058
1060
|
targetEl: Ref<HTMLElement | undefined>;
|
1061
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
1059
1062
|
isActive: Ref<boolean>;
|
1060
1063
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1061
1064
|
}
|
@@ -20559,6 +20562,7 @@ declare const VBottomSheet: {
|
|
20559
20562
|
eager: boolean;
|
20560
20563
|
disabled: boolean;
|
20561
20564
|
persistent: boolean;
|
20565
|
+
fullscreen: boolean;
|
20562
20566
|
modelValue: boolean;
|
20563
20567
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
20564
20568
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -20569,7 +20573,6 @@ declare const VBottomSheet: {
|
|
20569
20573
|
contained: boolean;
|
20570
20574
|
noClickAnimation: boolean;
|
20571
20575
|
scrim: string | boolean;
|
20572
|
-
fullscreen: boolean;
|
20573
20576
|
retainFocus: boolean;
|
20574
20577
|
scrollable: boolean;
|
20575
20578
|
} & {
|
@@ -20704,6 +20707,7 @@ declare const VBottomSheet: {
|
|
20704
20707
|
eager: boolean;
|
20705
20708
|
disabled: boolean;
|
20706
20709
|
persistent: boolean;
|
20710
|
+
fullscreen: boolean;
|
20707
20711
|
modelValue: boolean;
|
20708
20712
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
20709
20713
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -20716,7 +20720,6 @@ declare const VBottomSheet: {
|
|
20716
20720
|
contained: boolean;
|
20717
20721
|
noClickAnimation: boolean;
|
20718
20722
|
scrim: string | boolean;
|
20719
|
-
fullscreen: boolean;
|
20720
20723
|
retainFocus: boolean;
|
20721
20724
|
scrollable: boolean;
|
20722
20725
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -20809,6 +20812,7 @@ declare const VBottomSheet: {
|
|
20809
20812
|
eager: boolean;
|
20810
20813
|
disabled: boolean;
|
20811
20814
|
persistent: boolean;
|
20815
|
+
fullscreen: boolean;
|
20812
20816
|
modelValue: boolean;
|
20813
20817
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
20814
20818
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -20819,7 +20823,6 @@ declare const VBottomSheet: {
|
|
20819
20823
|
contained: boolean;
|
20820
20824
|
noClickAnimation: boolean;
|
20821
20825
|
scrim: string | boolean;
|
20822
|
-
fullscreen: boolean;
|
20823
20826
|
retainFocus: boolean;
|
20824
20827
|
scrollable: boolean;
|
20825
20828
|
} & {
|
@@ -20952,6 +20955,7 @@ declare const VBottomSheet: {
|
|
20952
20955
|
eager: boolean;
|
20953
20956
|
disabled: boolean;
|
20954
20957
|
persistent: boolean;
|
20958
|
+
fullscreen: boolean;
|
20955
20959
|
modelValue: boolean;
|
20956
20960
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
20957
20961
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -20964,7 +20968,6 @@ declare const VBottomSheet: {
|
|
20964
20968
|
contained: boolean;
|
20965
20969
|
noClickAnimation: boolean;
|
20966
20970
|
scrim: string | boolean;
|
20967
|
-
fullscreen: boolean;
|
20968
20971
|
retainFocus: boolean;
|
20969
20972
|
scrollable: boolean;
|
20970
20973
|
}>;
|
@@ -21045,6 +21048,7 @@ declare const VBottomSheet: {
|
|
21045
21048
|
eager: boolean;
|
21046
21049
|
disabled: boolean;
|
21047
21050
|
persistent: boolean;
|
21051
|
+
fullscreen: boolean;
|
21048
21052
|
modelValue: boolean;
|
21049
21053
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
21050
21054
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -21055,7 +21059,6 @@ declare const VBottomSheet: {
|
|
21055
21059
|
contained: boolean;
|
21056
21060
|
noClickAnimation: boolean;
|
21057
21061
|
scrim: string | boolean;
|
21058
|
-
fullscreen: boolean;
|
21059
21062
|
retainFocus: boolean;
|
21060
21063
|
scrollable: boolean;
|
21061
21064
|
} & {
|
@@ -21190,6 +21193,7 @@ declare const VBottomSheet: {
|
|
21190
21193
|
eager: boolean;
|
21191
21194
|
disabled: boolean;
|
21192
21195
|
persistent: boolean;
|
21196
|
+
fullscreen: boolean;
|
21193
21197
|
modelValue: boolean;
|
21194
21198
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
21195
21199
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -21202,7 +21206,6 @@ declare const VBottomSheet: {
|
|
21202
21206
|
contained: boolean;
|
21203
21207
|
noClickAnimation: boolean;
|
21204
21208
|
scrim: string | boolean;
|
21205
|
-
fullscreen: boolean;
|
21206
21209
|
retainFocus: boolean;
|
21207
21210
|
scrollable: boolean;
|
21208
21211
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -43209,6 +43212,7 @@ declare const VDialog: {
|
|
43209
43212
|
eager: boolean;
|
43210
43213
|
disabled: boolean;
|
43211
43214
|
persistent: boolean;
|
43215
|
+
fullscreen: boolean;
|
43212
43216
|
modelValue: boolean;
|
43213
43217
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
43214
43218
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -43219,7 +43223,6 @@ declare const VDialog: {
|
|
43219
43223
|
contained: boolean;
|
43220
43224
|
noClickAnimation: boolean;
|
43221
43225
|
scrim: string | boolean;
|
43222
|
-
fullscreen: boolean;
|
43223
43226
|
retainFocus: boolean;
|
43224
43227
|
scrollable: boolean;
|
43225
43228
|
} & {
|
@@ -43757,6 +43760,7 @@ declare const VDialog: {
|
|
43757
43760
|
eager: boolean;
|
43758
43761
|
disabled: boolean;
|
43759
43762
|
persistent: boolean;
|
43763
|
+
fullscreen: boolean;
|
43760
43764
|
modelValue: boolean;
|
43761
43765
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
43762
43766
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -43769,7 +43773,6 @@ declare const VDialog: {
|
|
43769
43773
|
contained: boolean;
|
43770
43774
|
noClickAnimation: boolean;
|
43771
43775
|
scrim: string | boolean;
|
43772
|
-
fullscreen: boolean;
|
43773
43776
|
retainFocus: boolean;
|
43774
43777
|
scrollable: boolean;
|
43775
43778
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -43861,6 +43864,7 @@ declare const VDialog: {
|
|
43861
43864
|
eager: boolean;
|
43862
43865
|
disabled: boolean;
|
43863
43866
|
persistent: boolean;
|
43867
|
+
fullscreen: boolean;
|
43864
43868
|
modelValue: boolean;
|
43865
43869
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
43866
43870
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -43871,7 +43875,6 @@ declare const VDialog: {
|
|
43871
43875
|
contained: boolean;
|
43872
43876
|
noClickAnimation: boolean;
|
43873
43877
|
scrim: string | boolean;
|
43874
|
-
fullscreen: boolean;
|
43875
43878
|
retainFocus: boolean;
|
43876
43879
|
scrollable: boolean;
|
43877
43880
|
} & {
|
@@ -44405,6 +44408,7 @@ declare const VDialog: {
|
|
44405
44408
|
eager: boolean;
|
44406
44409
|
disabled: boolean;
|
44407
44410
|
persistent: boolean;
|
44411
|
+
fullscreen: boolean;
|
44408
44412
|
modelValue: boolean;
|
44409
44413
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
44410
44414
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -44417,7 +44421,6 @@ declare const VDialog: {
|
|
44417
44421
|
contained: boolean;
|
44418
44422
|
noClickAnimation: boolean;
|
44419
44423
|
scrim: string | boolean;
|
44420
|
-
fullscreen: boolean;
|
44421
44424
|
retainFocus: boolean;
|
44422
44425
|
scrollable: boolean;
|
44423
44426
|
}>;
|
@@ -44497,6 +44500,7 @@ declare const VDialog: {
|
|
44497
44500
|
eager: boolean;
|
44498
44501
|
disabled: boolean;
|
44499
44502
|
persistent: boolean;
|
44503
|
+
fullscreen: boolean;
|
44500
44504
|
modelValue: boolean;
|
44501
44505
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
44502
44506
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -44507,7 +44511,6 @@ declare const VDialog: {
|
|
44507
44511
|
contained: boolean;
|
44508
44512
|
noClickAnimation: boolean;
|
44509
44513
|
scrim: string | boolean;
|
44510
|
-
fullscreen: boolean;
|
44511
44514
|
retainFocus: boolean;
|
44512
44515
|
scrollable: boolean;
|
44513
44516
|
} & {
|
@@ -45045,6 +45048,7 @@ declare const VDialog: {
|
|
45045
45048
|
eager: boolean;
|
45046
45049
|
disabled: boolean;
|
45047
45050
|
persistent: boolean;
|
45051
|
+
fullscreen: boolean;
|
45048
45052
|
modelValue: boolean;
|
45049
45053
|
locationStrategy: "connected" | "static" | LocationStrategyFunction;
|
45050
45054
|
scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
|
@@ -45057,7 +45061,6 @@ declare const VDialog: {
|
|
45057
45061
|
contained: boolean;
|
45058
45062
|
noClickAnimation: boolean;
|
45059
45063
|
scrim: string | boolean;
|
45060
|
-
fullscreen: boolean;
|
45061
45064
|
retainFocus: boolean;
|
45062
45065
|
scrollable: boolean;
|
45063
45066
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -63899,6 +63902,7 @@ declare const VRangeSlider: {
|
|
63899
63902
|
tickSize: string | number;
|
63900
63903
|
trackSize: string | number;
|
63901
63904
|
thumbSize: string | number;
|
63905
|
+
noKeyboard: boolean;
|
63902
63906
|
} & {
|
63903
63907
|
name?: string | undefined;
|
63904
63908
|
id?: string | undefined;
|
@@ -64249,6 +64253,7 @@ declare const VRangeSlider: {
|
|
64249
64253
|
trackSize: string | number;
|
64250
64254
|
thumbLabel: boolean | "always" | undefined;
|
64251
64255
|
thumbSize: string | number;
|
64256
|
+
noKeyboard: boolean;
|
64252
64257
|
}, true, {}, vue.SlotsType<Partial<{
|
64253
64258
|
default: (arg: VInputSlot) => vue.VNode[];
|
64254
64259
|
prepend: (arg: VInputSlot) => vue.VNode[];
|
@@ -64299,6 +64304,7 @@ declare const VRangeSlider: {
|
|
64299
64304
|
tickSize: string | number;
|
64300
64305
|
trackSize: string | number;
|
64301
64306
|
thumbSize: string | number;
|
64307
|
+
noKeyboard: boolean;
|
64302
64308
|
} & {
|
64303
64309
|
name?: string | undefined;
|
64304
64310
|
id?: string | undefined;
|
@@ -64644,6 +64650,7 @@ declare const VRangeSlider: {
|
|
64644
64650
|
trackSize: string | number;
|
64645
64651
|
thumbLabel: boolean | "always" | undefined;
|
64646
64652
|
thumbSize: string | number;
|
64653
|
+
noKeyboard: boolean;
|
64647
64654
|
}>;
|
64648
64655
|
__isFragment?: never;
|
64649
64656
|
__isTeleport?: never;
|
@@ -64677,6 +64684,7 @@ declare const VRangeSlider: {
|
|
64677
64684
|
tickSize: string | number;
|
64678
64685
|
trackSize: string | number;
|
64679
64686
|
thumbSize: string | number;
|
64687
|
+
noKeyboard: boolean;
|
64680
64688
|
} & {
|
64681
64689
|
name?: string | undefined;
|
64682
64690
|
id?: string | undefined;
|
@@ -65027,6 +65035,7 @@ declare const VRangeSlider: {
|
|
65027
65035
|
trackSize: string | number;
|
65028
65036
|
thumbLabel: boolean | "always" | undefined;
|
65029
65037
|
thumbSize: string | number;
|
65038
|
+
noKeyboard: boolean;
|
65030
65039
|
}, {}, string, vue.SlotsType<Partial<{
|
65031
65040
|
default: (arg: VInputSlot) => vue.VNode[];
|
65032
65041
|
prepend: (arg: VInputSlot) => vue.VNode[];
|
@@ -65119,6 +65128,7 @@ declare const VRangeSlider: {
|
|
65119
65128
|
validator: (v: any) => boolean;
|
65120
65129
|
};
|
65121
65130
|
reverse: BooleanConstructor;
|
65131
|
+
noKeyboard: BooleanConstructor;
|
65122
65132
|
focused: BooleanConstructor;
|
65123
65133
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
65124
65134
|
errorMessages: {
|
@@ -65249,6 +65259,7 @@ declare const VRangeSlider: {
|
|
65249
65259
|
validator: (v: any) => boolean;
|
65250
65260
|
};
|
65251
65261
|
reverse: BooleanConstructor;
|
65262
|
+
noKeyboard: BooleanConstructor;
|
65252
65263
|
focused: BooleanConstructor;
|
65253
65264
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
65254
65265
|
errorMessages: {
|
@@ -74658,6 +74669,7 @@ declare const VSlider: {
|
|
74658
74669
|
tickSize: string | number;
|
74659
74670
|
trackSize: string | number;
|
74660
74671
|
thumbSize: string | number;
|
74672
|
+
noKeyboard: boolean;
|
74661
74673
|
} & {
|
74662
74674
|
name?: string | undefined;
|
74663
74675
|
id?: string | undefined;
|
@@ -75007,6 +75019,7 @@ declare const VSlider: {
|
|
75007
75019
|
trackSize: string | number;
|
75008
75020
|
thumbLabel: boolean | "always" | undefined;
|
75009
75021
|
thumbSize: string | number;
|
75022
|
+
noKeyboard: boolean;
|
75010
75023
|
}, true, {}, vue.SlotsType<Partial<{
|
75011
75024
|
default: (arg: VInputSlot) => vue.VNode[];
|
75012
75025
|
prepend: (arg: VInputSlot) => vue.VNode[];
|
@@ -75056,6 +75069,7 @@ declare const VSlider: {
|
|
75056
75069
|
tickSize: string | number;
|
75057
75070
|
trackSize: string | number;
|
75058
75071
|
thumbSize: string | number;
|
75072
|
+
noKeyboard: boolean;
|
75059
75073
|
} & {
|
75060
75074
|
name?: string | undefined;
|
75061
75075
|
id?: string | undefined;
|
@@ -75400,6 +75414,7 @@ declare const VSlider: {
|
|
75400
75414
|
trackSize: string | number;
|
75401
75415
|
thumbLabel: boolean | "always" | undefined;
|
75402
75416
|
thumbSize: string | number;
|
75417
|
+
noKeyboard: boolean;
|
75403
75418
|
}>;
|
75404
75419
|
__isFragment?: never;
|
75405
75420
|
__isTeleport?: never;
|
@@ -75432,6 +75447,7 @@ declare const VSlider: {
|
|
75432
75447
|
tickSize: string | number;
|
75433
75448
|
trackSize: string | number;
|
75434
75449
|
thumbSize: string | number;
|
75450
|
+
noKeyboard: boolean;
|
75435
75451
|
} & {
|
75436
75452
|
name?: string | undefined;
|
75437
75453
|
id?: string | undefined;
|
@@ -75781,6 +75797,7 @@ declare const VSlider: {
|
|
75781
75797
|
trackSize: string | number;
|
75782
75798
|
thumbLabel: boolean | "always" | undefined;
|
75783
75799
|
thumbSize: string | number;
|
75800
|
+
noKeyboard: boolean;
|
75784
75801
|
}, {}, string, vue.SlotsType<Partial<{
|
75785
75802
|
default: (arg: VInputSlot) => vue.VNode[];
|
75786
75803
|
prepend: (arg: VInputSlot) => vue.VNode[];
|
@@ -75924,6 +75941,7 @@ declare const VSlider: {
|
|
75924
75941
|
default: number;
|
75925
75942
|
};
|
75926
75943
|
reverse: BooleanConstructor;
|
75944
|
+
noKeyboard: BooleanConstructor;
|
75927
75945
|
}, vue.ExtractPropTypes<{
|
75928
75946
|
modelValue: {
|
75929
75947
|
type: (StringConstructor | NumberConstructor)[];
|
@@ -76053,6 +76071,7 @@ declare const VSlider: {
|
|
76053
76071
|
default: number;
|
76054
76072
|
};
|
76055
76073
|
reverse: BooleanConstructor;
|
76074
|
+
noKeyboard: BooleanConstructor;
|
76056
76075
|
}>>;
|
76057
76076
|
type VSlider = InstanceType<typeof VSlider>;
|
76058
76077
|
|
@@ -95357,39 +95376,40 @@ declare module 'vue' {
|
|
95357
95376
|
}
|
95358
95377
|
export interface GlobalComponents {
|
95359
95378
|
VApp: VApp
|
95360
|
-
VAlert: VAlert
|
95361
|
-
VAlertTitle: VAlertTitle
|
95362
95379
|
VAppBar: VAppBar
|
95363
95380
|
VAppBarNavIcon: VAppBarNavIcon
|
95364
95381
|
VAppBarTitle: VAppBarTitle
|
95365
|
-
VAutocomplete: VAutocomplete
|
95366
95382
|
VAvatar: VAvatar
|
95383
|
+
VAutocomplete: VAutocomplete
|
95384
|
+
VAlert: VAlert
|
95385
|
+
VAlertTitle: VAlertTitle
|
95367
95386
|
VBadge: VBadge
|
95368
95387
|
VBanner: VBanner
|
95369
95388
|
VBannerActions: VBannerActions
|
95370
95389
|
VBannerText: VBannerText
|
95390
|
+
VBottomSheet: VBottomSheet
|
95371
95391
|
VBottomNavigation: VBottomNavigation
|
95372
95392
|
VBreadcrumbs: VBreadcrumbs
|
95373
95393
|
VBreadcrumbsItem: VBreadcrumbsItem
|
95374
95394
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
95375
|
-
VBottomSheet: VBottomSheet
|
95376
95395
|
VBtn: VBtn
|
95377
95396
|
VBtnGroup: VBtnGroup
|
95397
|
+
VBtnToggle: VBtnToggle
|
95378
95398
|
VCard: VCard
|
95379
95399
|
VCardActions: VCardActions
|
95380
95400
|
VCardItem: VCardItem
|
95381
95401
|
VCardSubtitle: VCardSubtitle
|
95382
95402
|
VCardText: VCardText
|
95383
95403
|
VCardTitle: VCardTitle
|
95384
|
-
VChip: VChip
|
95385
|
-
VCode: VCode
|
95386
|
-
VChipGroup: VChipGroup
|
95387
|
-
VCounter: VCounter
|
95388
95404
|
VCheckbox: VCheckbox
|
95389
95405
|
VCheckboxBtn: VCheckboxBtn
|
95390
|
-
VBtnToggle: VBtnToggle
|
95391
95406
|
VCarousel: VCarousel
|
95392
95407
|
VCarouselItem: VCarouselItem
|
95408
|
+
VChip: VChip
|
95409
|
+
VColorPicker: VColorPicker
|
95410
|
+
VCode: VCode
|
95411
|
+
VChipGroup: VChipGroup
|
95412
|
+
VCounter: VCounter
|
95393
95413
|
VDataTable: VDataTable
|
95394
95414
|
VDataTableHeaders: VDataTableHeaders
|
95395
95415
|
VDataTableFooter: VDataTableFooter
|
@@ -95397,34 +95417,35 @@ declare module 'vue' {
|
|
95397
95417
|
VDataTableRow: VDataTableRow
|
95398
95418
|
VDataTableVirtual: VDataTableVirtual
|
95399
95419
|
VDataTableServer: VDataTableServer
|
95400
|
-
|
95420
|
+
VCombobox: VCombobox
|
95401
95421
|
VDatePicker: VDatePicker
|
95402
95422
|
VDatePickerControls: VDatePickerControls
|
95403
95423
|
VDatePickerHeader: VDatePickerHeader
|
95404
95424
|
VDatePickerMonth: VDatePickerMonth
|
95405
95425
|
VDatePickerMonths: VDatePickerMonths
|
95406
95426
|
VDatePickerYears: VDatePickerYears
|
95407
|
-
|
95408
|
-
VEmptyState: VEmptyState
|
95427
|
+
VDialog: VDialog
|
95409
95428
|
VExpansionPanels: VExpansionPanels
|
95410
95429
|
VExpansionPanel: VExpansionPanel
|
95411
95430
|
VExpansionPanelText: VExpansionPanelText
|
95412
95431
|
VExpansionPanelTitle: VExpansionPanelTitle
|
95413
95432
|
VField: VField
|
95414
95433
|
VFieldLabel: VFieldLabel
|
95415
|
-
VFileInput: VFileInput
|
95416
95434
|
VFab: VFab
|
95435
|
+
VDivider: VDivider
|
95436
|
+
VFileInput: VFileInput
|
95417
95437
|
VFooter: VFooter
|
95438
|
+
VInfiniteScroll: VInfiniteScroll
|
95439
|
+
VEmptyState: VEmptyState
|
95440
|
+
VImg: VImg
|
95418
95441
|
VIcon: VIcon
|
95419
95442
|
VComponentIcon: VComponentIcon
|
95420
95443
|
VSvgIcon: VSvgIcon
|
95421
95444
|
VLigatureIcon: VLigatureIcon
|
95422
95445
|
VClassIcon: VClassIcon
|
95423
|
-
VInfiniteScroll: VInfiniteScroll
|
95424
|
-
VImg: VImg
|
95425
95446
|
VInput: VInput
|
95426
|
-
VKbd: VKbd
|
95427
95447
|
VLabel: VLabel
|
95448
|
+
VKbd: VKbd
|
95428
95449
|
VItemGroup: VItemGroup
|
95429
95450
|
VItem: VItem
|
95430
95451
|
VList: VList
|
@@ -95436,82 +95457,76 @@ declare module 'vue' {
|
|
95436
95457
|
VListItemSubtitle: VListItemSubtitle
|
95437
95458
|
VListItemTitle: VListItemTitle
|
95438
95459
|
VListSubheader: VListSubheader
|
95439
|
-
VMenu: VMenu
|
95440
95460
|
VMain: VMain
|
95441
|
-
|
95461
|
+
VMenu: VMenu
|
95462
|
+
VMessages: VMessages
|
95442
95463
|
VOverlay: VOverlay
|
95464
|
+
VOtpInput: VOtpInput
|
95443
95465
|
VPagination: VPagination
|
95444
|
-
VNumberInput: VNumberInput
|
95445
95466
|
VProgressCircular: VProgressCircular
|
95446
|
-
|
95447
|
-
|
95467
|
+
VNumberInput: VNumberInput
|
95468
|
+
VNavigationDrawer: VNavigationDrawer
|
95448
95469
|
VRadioGroup: VRadioGroup
|
95449
95470
|
VRating: VRating
|
95450
|
-
VSelectionControlGroup: VSelectionControlGroup
|
95451
95471
|
VSelect: VSelect
|
95472
|
+
VSelectionControl: VSelectionControl
|
95452
95473
|
VSheet: VSheet
|
95474
|
+
VSelectionControlGroup: VSelectionControlGroup
|
95453
95475
|
VSkeletonLoader: VSkeletonLoader
|
95454
|
-
VSelectionControl: VSelectionControl
|
95455
|
-
VSlideGroup: VSlideGroup
|
95456
|
-
VSlideGroupItem: VSlideGroupItem
|
95457
95476
|
VSnackbar: VSnackbar
|
95458
95477
|
VSlider: VSlider
|
95459
|
-
VSystemBar: VSystemBar
|
95460
95478
|
VStepper: VStepper
|
95461
95479
|
VStepperActions: VStepperActions
|
95462
95480
|
VStepperHeader: VStepperHeader
|
95463
95481
|
VStepperItem: VStepperItem
|
95464
95482
|
VStepperWindow: VStepperWindow
|
95465
95483
|
VStepperWindowItem: VStepperWindowItem
|
95484
|
+
VSlideGroup: VSlideGroup
|
95485
|
+
VSlideGroupItem: VSlideGroupItem
|
95466
95486
|
VTab: VTab
|
95467
95487
|
VTabs: VTabs
|
95468
95488
|
VTabsWindow: VTabsWindow
|
95469
95489
|
VTabsWindowItem: VTabsWindowItem
|
95470
|
-
|
95490
|
+
VSwitch: VSwitch
|
95471
95491
|
VTextarea: VTextarea
|
95492
|
+
VTimeline: VTimeline
|
95493
|
+
VTimelineItem: VTimelineItem
|
95472
95494
|
VTextField: VTextField
|
95495
|
+
VSystemBar: VSystemBar
|
95473
95496
|
VTimePicker: VTimePicker
|
95474
95497
|
VTimePickerClock: VTimePickerClock
|
95475
95498
|
VTimePickerControls: VTimePickerControls
|
95476
|
-
VSwitch: VSwitch
|
95477
|
-
VTimeline: VTimeline
|
95478
|
-
VTimelineItem: VTimelineItem
|
95479
95499
|
VToolbar: VToolbar
|
95480
95500
|
VToolbarTitle: VToolbarTitle
|
95481
95501
|
VToolbarItems: VToolbarItems
|
95502
|
+
VTooltip: VTooltip
|
95482
95503
|
VTreeview: VTreeview
|
95483
95504
|
VTreeviewItem: VTreeviewItem
|
95484
95505
|
VTreeviewGroup: VTreeviewGroup
|
95485
|
-
|
95486
|
-
VTooltip: VTooltip
|
95506
|
+
VTable: VTable
|
95487
95507
|
VWindow: VWindow
|
95488
95508
|
VWindowItem: VWindowItem
|
95489
|
-
VCombobox: VCombobox
|
95490
95509
|
VConfirmEdit: VConfirmEdit
|
95491
|
-
VOtpInput: VOtpInput
|
95492
|
-
VDataIterator: VDataIterator
|
95493
95510
|
VDefaultsProvider: VDefaultsProvider
|
95494
|
-
VForm: VForm
|
95495
|
-
VHover: VHover
|
95496
95511
|
VContainer: VContainer
|
95497
95512
|
VCol: VCol
|
95498
95513
|
VRow: VRow
|
95499
95514
|
VSpacer: VSpacer
|
95515
|
+
VHover: VHover
|
95500
95516
|
VLayout: VLayout
|
95501
95517
|
VLayoutItem: VLayoutItem
|
95502
|
-
VLocaleProvider: VLocaleProvider
|
95503
95518
|
VLazy: VLazy
|
95519
|
+
VLocaleProvider: VLocaleProvider
|
95504
95520
|
VNoSsr: VNoSsr
|
95505
95521
|
VParallax: VParallax
|
95522
|
+
VRangeSlider: VRangeSlider
|
95506
95523
|
VRadio: VRadio
|
95507
95524
|
VResponsive: VResponsive
|
95508
|
-
VRangeSlider: VRangeSlider
|
95509
95525
|
VSnackbarQueue: VSnackbarQueue
|
95510
|
-
VSpeedDial: VSpeedDial
|
95511
95526
|
VSparkline: VSparkline
|
95512
|
-
|
95513
|
-
VValidation: VValidation
|
95527
|
+
VSpeedDial: VSpeedDial
|
95514
95528
|
VVirtualScroll: VVirtualScroll
|
95529
|
+
VThemeProvider: VThemeProvider
|
95515
95530
|
VFabTransition: VFabTransition
|
95516
95531
|
VDialogBottomTransition: VDialogBottomTransition
|
95517
95532
|
VDialogTopTransition: VDialogTopTransition
|
@@ -95528,25 +95543,35 @@ declare module 'vue' {
|
|
95528
95543
|
VExpandTransition: VExpandTransition
|
95529
95544
|
VExpandXTransition: VExpandXTransition
|
95530
95545
|
VDialogTransition: VDialogTransition
|
95546
|
+
VValidation: VValidation
|
95547
|
+
VProgressLinear: VProgressLinear
|
95548
|
+
VDataIterator: VDataIterator
|
95549
|
+
VForm: VForm
|
95531
95550
|
VCalendar: VCalendar
|
95532
95551
|
VCalendarDay: VCalendarDay
|
95533
95552
|
VCalendarHeader: VCalendarHeader
|
95534
95553
|
VCalendarInterval: VCalendarInterval
|
95535
95554
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
95536
95555
|
VCalendarMonthDay: VCalendarMonthDay
|
95537
|
-
|
95538
|
-
|
95539
|
-
|
95556
|
+
VPie: VPie
|
95557
|
+
VPieSegment: VPieSegment
|
95558
|
+
VPieTooltip: VPieTooltip
|
95540
95559
|
VPicker: VPicker
|
95541
95560
|
VPickerTitle: VPickerTitle
|
95542
|
-
VIconBtn: VIconBtn
|
95543
95561
|
VStepperVertical: VStepperVertical
|
95544
95562
|
VStepperVerticalItem: VStepperVerticalItem
|
95545
95563
|
VStepperVerticalActions: VStepperVerticalActions
|
95546
|
-
VMaskInput: VMaskInput
|
95547
95564
|
VHotkey: VHotkey
|
95565
|
+
VFileUpload: VFileUpload
|
95566
|
+
VFileUploadItem: VFileUploadItem
|
95567
|
+
VVideo: VVideo
|
95568
|
+
VVideoControls: VVideoControls
|
95569
|
+
VVideoVolume: VVideoVolume
|
95548
95570
|
VDateInput: VDateInput
|
95549
95571
|
VPullToRefresh: VPullToRefresh
|
95572
|
+
VMaskInput: VMaskInput
|
95573
|
+
VColorInput: VColorInput
|
95574
|
+
VIconBtn: VIconBtn
|
95550
95575
|
}
|
95551
95576
|
export interface GlobalDirectives {
|
95552
95577
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|