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
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -101,6 +101,9 @@ type DisplayBreakpoint = 'xs' | Breakpoint;
|
|
|
101
101
|
type DisplayThresholds = {
|
|
102
102
|
[key in DisplayBreakpoint]: number;
|
|
103
103
|
};
|
|
104
|
+
interface DisplayProps {
|
|
105
|
+
mobileBreakpoint?: number | DisplayBreakpoint;
|
|
106
|
+
}
|
|
104
107
|
interface DisplayOptions {
|
|
105
108
|
mobileBreakpoint?: number | DisplayBreakpoint;
|
|
106
109
|
thresholds?: Partial<DisplayThresholds>;
|
|
@@ -148,7 +151,35 @@ interface DisplayInstance {
|
|
|
148
151
|
thresholds: Ref<DisplayThresholds>;
|
|
149
152
|
update(): void;
|
|
150
153
|
}
|
|
151
|
-
declare function useDisplay():
|
|
154
|
+
declare function useDisplay(props?: DisplayProps, name?: string): {
|
|
155
|
+
displayClasses: vue.ComputedRef<{
|
|
156
|
+
[x: string]: boolean;
|
|
157
|
+
}>;
|
|
158
|
+
mobile: vue.ComputedRef<boolean>;
|
|
159
|
+
xs: Ref<boolean>;
|
|
160
|
+
sm: Ref<boolean>;
|
|
161
|
+
md: Ref<boolean>;
|
|
162
|
+
lg: Ref<boolean>;
|
|
163
|
+
xl: Ref<boolean>;
|
|
164
|
+
xxl: Ref<boolean>;
|
|
165
|
+
smAndUp: Ref<boolean>;
|
|
166
|
+
mdAndUp: Ref<boolean>;
|
|
167
|
+
lgAndUp: Ref<boolean>;
|
|
168
|
+
xlAndUp: Ref<boolean>;
|
|
169
|
+
smAndDown: Ref<boolean>;
|
|
170
|
+
mdAndDown: Ref<boolean>;
|
|
171
|
+
lgAndDown: Ref<boolean>;
|
|
172
|
+
xlAndDown: Ref<boolean>;
|
|
173
|
+
name: Ref<DisplayBreakpoint>;
|
|
174
|
+
height: Ref<number>;
|
|
175
|
+
width: Ref<number>;
|
|
176
|
+
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
|
177
|
+
platform: Ref<DisplayPlatform>;
|
|
178
|
+
thresholds: Ref<DisplayThresholds>;
|
|
179
|
+
/** @internal */
|
|
180
|
+
ssr: boolean;
|
|
181
|
+
update(): void;
|
|
182
|
+
};
|
|
152
183
|
|
|
153
184
|
declare const block: readonly ["top", "bottom"];
|
|
154
185
|
declare const inline: readonly ["start", "end", "left", "right"];
|
|
@@ -3784,13 +3815,13 @@ declare const VField: {
|
|
|
3784
3815
|
}>) => void)[] | undefined;
|
|
3785
3816
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3786
3817
|
bgColor?: string | undefined;
|
|
3818
|
+
baseColor?: string | undefined;
|
|
3787
3819
|
appendInnerIcon?: IconValue | undefined;
|
|
3788
3820
|
prependInnerIcon?: IconValue | undefined;
|
|
3789
3821
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3790
3822
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3791
3823
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3792
3824
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
3793
|
-
baseColor?: string | undefined;
|
|
3794
3825
|
};
|
|
3795
3826
|
$attrs: {
|
|
3796
3827
|
[x: string]: unknown;
|
|
@@ -3848,6 +3879,7 @@ declare const VField: {
|
|
|
3848
3879
|
theme?: string | undefined;
|
|
3849
3880
|
rounded?: string | number | boolean | undefined;
|
|
3850
3881
|
bgColor?: string | undefined;
|
|
3882
|
+
baseColor?: string | undefined;
|
|
3851
3883
|
appendInnerIcon?: IconValue | undefined;
|
|
3852
3884
|
prependInnerIcon?: IconValue | undefined;
|
|
3853
3885
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3855,7 +3887,6 @@ declare const VField: {
|
|
|
3855
3887
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3856
3888
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3857
3889
|
centerAffix?: boolean | undefined;
|
|
3858
|
-
baseColor?: string | undefined;
|
|
3859
3890
|
} & {
|
|
3860
3891
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3861
3892
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -3945,6 +3976,7 @@ declare const VField: {
|
|
|
3945
3976
|
theme?: string | undefined;
|
|
3946
3977
|
rounded?: string | number | boolean | undefined;
|
|
3947
3978
|
bgColor?: string | undefined;
|
|
3979
|
+
baseColor?: string | undefined;
|
|
3948
3980
|
appendInnerIcon?: IconValue | undefined;
|
|
3949
3981
|
prependInnerIcon?: IconValue | undefined;
|
|
3950
3982
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3952,7 +3984,6 @@ declare const VField: {
|
|
|
3952
3984
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3953
3985
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3954
3986
|
centerAffix?: boolean | undefined;
|
|
3955
|
-
baseColor?: string | undefined;
|
|
3956
3987
|
} & {
|
|
3957
3988
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3958
3989
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -3985,6 +4016,7 @@ declare const VField: {
|
|
|
3985
4016
|
theme?: string | undefined;
|
|
3986
4017
|
rounded?: string | number | boolean | undefined;
|
|
3987
4018
|
bgColor?: string | undefined;
|
|
4019
|
+
baseColor?: string | undefined;
|
|
3988
4020
|
appendInnerIcon?: IconValue | undefined;
|
|
3989
4021
|
prependInnerIcon?: IconValue | undefined;
|
|
3990
4022
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3992,7 +4024,6 @@ declare const VField: {
|
|
|
3992
4024
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3993
4025
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3994
4026
|
centerAffix?: boolean | undefined;
|
|
3995
|
-
baseColor?: string | undefined;
|
|
3996
4027
|
} & {
|
|
3997
4028
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3998
4029
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -4961,7 +4992,7 @@ type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
|
4961
4992
|
interface ScrollStrategyData {
|
|
4962
4993
|
root: Ref<HTMLElement | undefined>;
|
|
4963
4994
|
contentEl: Ref<HTMLElement | undefined>;
|
|
4964
|
-
|
|
4995
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
4965
4996
|
isActive: Ref<boolean>;
|
|
4966
4997
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
4967
4998
|
}
|
|
@@ -4982,7 +5013,7 @@ declare function repositionScrollStrategy(data: ScrollStrategyData, props: Strat
|
|
|
4982
5013
|
|
|
4983
5014
|
interface LocationStrategyData {
|
|
4984
5015
|
contentEl: Ref<HTMLElement | undefined>;
|
|
4985
|
-
|
|
5016
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
4986
5017
|
isActive: Ref<boolean>;
|
|
4987
5018
|
isRtl: Ref<boolean>;
|
|
4988
5019
|
}
|
|
@@ -5140,6 +5171,7 @@ declare const VAutocomplete: {
|
|
|
5140
5171
|
bgColor?: string | undefined;
|
|
5141
5172
|
prependIcon?: IconValue | undefined;
|
|
5142
5173
|
appendIcon?: IconValue | undefined;
|
|
5174
|
+
baseColor?: string | undefined;
|
|
5143
5175
|
prependInnerIcon?: IconValue | undefined;
|
|
5144
5176
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5145
5177
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5150,7 +5182,6 @@ declare const VAutocomplete: {
|
|
|
5150
5182
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
5151
5183
|
hint?: string | undefined;
|
|
5152
5184
|
hideDetails?: boolean | "auto" | undefined;
|
|
5153
|
-
baseColor?: string | undefined;
|
|
5154
5185
|
suffix?: string | undefined;
|
|
5155
5186
|
counterValue?: ((value: any) => number) | undefined;
|
|
5156
5187
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5192,6 +5223,7 @@ declare const VAutocomplete: {
|
|
|
5192
5223
|
maxWidth?: string | number | undefined;
|
|
5193
5224
|
minHeight?: string | number | undefined;
|
|
5194
5225
|
minWidth?: string | number | undefined;
|
|
5226
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5195
5227
|
class?: any;
|
|
5196
5228
|
$children?: vue.VNodeChild | {
|
|
5197
5229
|
default?: ((arg: {
|
|
@@ -5260,7 +5292,7 @@ declare const VAutocomplete: {
|
|
|
5260
5292
|
[key: string]: any;
|
|
5261
5293
|
}>) => void)[] | undefined;
|
|
5262
5294
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5263
|
-
activator?:
|
|
5295
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5264
5296
|
"v-slot:activator"?: false | ((arg: {
|
|
5265
5297
|
isActive: boolean;
|
|
5266
5298
|
props: Record<string, any>;
|
|
@@ -5410,6 +5442,7 @@ declare const VAutocomplete: {
|
|
|
5410
5442
|
bgColor?: string | undefined;
|
|
5411
5443
|
prependIcon?: IconValue | undefined;
|
|
5412
5444
|
appendIcon?: IconValue | undefined;
|
|
5445
|
+
baseColor?: string | undefined;
|
|
5413
5446
|
prependInnerIcon?: IconValue | undefined;
|
|
5414
5447
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5415
5448
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5421,7 +5454,6 @@ declare const VAutocomplete: {
|
|
|
5421
5454
|
centerAffix?: boolean | undefined;
|
|
5422
5455
|
hint?: string | undefined;
|
|
5423
5456
|
hideDetails?: boolean | "auto" | undefined;
|
|
5424
|
-
baseColor?: string | undefined;
|
|
5425
5457
|
suffix?: string | undefined;
|
|
5426
5458
|
counterValue?: ((value: any) => number) | undefined;
|
|
5427
5459
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5463,6 +5495,7 @@ declare const VAutocomplete: {
|
|
|
5463
5495
|
maxWidth?: string | number | undefined;
|
|
5464
5496
|
minHeight?: string | number | undefined;
|
|
5465
5497
|
minWidth?: string | number | undefined;
|
|
5498
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5466
5499
|
class?: any;
|
|
5467
5500
|
$children?: vue.VNodeChild | {
|
|
5468
5501
|
default?: ((arg: {
|
|
@@ -5531,7 +5564,7 @@ declare const VAutocomplete: {
|
|
|
5531
5564
|
[key: string]: any;
|
|
5532
5565
|
}>) => void)[] | undefined;
|
|
5533
5566
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5534
|
-
activator?:
|
|
5567
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5535
5568
|
"v-slot:activator"?: false | ((arg: {
|
|
5536
5569
|
isActive: boolean;
|
|
5537
5570
|
props: Record<string, any>;
|
|
@@ -5747,6 +5780,7 @@ declare const VAutocomplete: {
|
|
|
5747
5780
|
bgColor?: string | undefined;
|
|
5748
5781
|
prependIcon?: IconValue | undefined;
|
|
5749
5782
|
appendIcon?: IconValue | undefined;
|
|
5783
|
+
baseColor?: string | undefined;
|
|
5750
5784
|
prependInnerIcon?: IconValue | undefined;
|
|
5751
5785
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5752
5786
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5758,7 +5792,6 @@ declare const VAutocomplete: {
|
|
|
5758
5792
|
centerAffix?: boolean | undefined;
|
|
5759
5793
|
hint?: string | undefined;
|
|
5760
5794
|
hideDetails?: boolean | "auto" | undefined;
|
|
5761
|
-
baseColor?: string | undefined;
|
|
5762
5795
|
suffix?: string | undefined;
|
|
5763
5796
|
counterValue?: ((value: any) => number) | undefined;
|
|
5764
5797
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5800,6 +5833,7 @@ declare const VAutocomplete: {
|
|
|
5800
5833
|
maxWidth?: string | number | undefined;
|
|
5801
5834
|
minHeight?: string | number | undefined;
|
|
5802
5835
|
minWidth?: string | number | undefined;
|
|
5836
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5803
5837
|
class?: any;
|
|
5804
5838
|
$children?: vue.VNodeChild | {
|
|
5805
5839
|
default?: ((arg: {
|
|
@@ -5868,7 +5902,7 @@ declare const VAutocomplete: {
|
|
|
5868
5902
|
[key: string]: any;
|
|
5869
5903
|
}>) => void)[] | undefined;
|
|
5870
5904
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5871
|
-
activator?:
|
|
5905
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5872
5906
|
"v-slot:activator"?: false | ((arg: {
|
|
5873
5907
|
isActive: boolean;
|
|
5874
5908
|
props: Record<string, any>;
|
|
@@ -5953,6 +5987,7 @@ declare const VAutocomplete: {
|
|
|
5953
5987
|
bgColor?: string | undefined;
|
|
5954
5988
|
prependIcon?: IconValue | undefined;
|
|
5955
5989
|
appendIcon?: IconValue | undefined;
|
|
5990
|
+
baseColor?: string | undefined;
|
|
5956
5991
|
prependInnerIcon?: IconValue | undefined;
|
|
5957
5992
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5958
5993
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5964,7 +5999,6 @@ declare const VAutocomplete: {
|
|
|
5964
5999
|
centerAffix?: boolean | undefined;
|
|
5965
6000
|
hint?: string | undefined;
|
|
5966
6001
|
hideDetails?: boolean | "auto" | undefined;
|
|
5967
|
-
baseColor?: string | undefined;
|
|
5968
6002
|
suffix?: string | undefined;
|
|
5969
6003
|
counterValue?: ((value: any) => number) | undefined;
|
|
5970
6004
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -6006,6 +6040,7 @@ declare const VAutocomplete: {
|
|
|
6006
6040
|
maxWidth?: string | number | undefined;
|
|
6007
6041
|
minHeight?: string | number | undefined;
|
|
6008
6042
|
minWidth?: string | number | undefined;
|
|
6043
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
6009
6044
|
class?: any;
|
|
6010
6045
|
$children?: vue.VNodeChild | {
|
|
6011
6046
|
default?: ((arg: {
|
|
@@ -6074,7 +6109,7 @@ declare const VAutocomplete: {
|
|
|
6074
6109
|
[key: string]: any;
|
|
6075
6110
|
}>) => void)[] | undefined;
|
|
6076
6111
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6077
|
-
activator?:
|
|
6112
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
6078
6113
|
"v-slot:activator"?: false | ((arg: {
|
|
6079
6114
|
isActive: boolean;
|
|
6080
6115
|
props: Record<string, any>;
|
|
@@ -6334,6 +6369,7 @@ declare const VAutocomplete: {
|
|
|
6334
6369
|
bgColor: StringConstructor;
|
|
6335
6370
|
prependIcon: PropType<IconValue>;
|
|
6336
6371
|
appendIcon: PropType<IconValue>;
|
|
6372
|
+
baseColor: StringConstructor;
|
|
6337
6373
|
clearIcon: {
|
|
6338
6374
|
type: PropType<IconValue>;
|
|
6339
6375
|
default: string;
|
|
@@ -6366,7 +6402,6 @@ declare const VAutocomplete: {
|
|
|
6366
6402
|
hint: StringConstructor;
|
|
6367
6403
|
persistentHint: BooleanConstructor;
|
|
6368
6404
|
hideDetails: PropType<boolean | "auto">;
|
|
6369
|
-
baseColor: StringConstructor;
|
|
6370
6405
|
clearable: BooleanConstructor;
|
|
6371
6406
|
persistentClear: BooleanConstructor;
|
|
6372
6407
|
singleLine: BooleanConstructor;
|
|
@@ -6456,6 +6491,7 @@ declare const VAutocomplete: {
|
|
|
6456
6491
|
maxWidth?: string | number | undefined;
|
|
6457
6492
|
minHeight?: string | number | undefined;
|
|
6458
6493
|
minWidth?: string | number | undefined;
|
|
6494
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
6459
6495
|
class?: any;
|
|
6460
6496
|
$children?: vue.VNodeChild | {
|
|
6461
6497
|
default?: ((arg: {
|
|
@@ -6524,7 +6560,7 @@ declare const VAutocomplete: {
|
|
|
6524
6560
|
[key: string]: any;
|
|
6525
6561
|
}>) => void)[] | undefined;
|
|
6526
6562
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6527
|
-
activator?:
|
|
6563
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
6528
6564
|
"v-slot:activator"?: false | ((arg: {
|
|
6529
6565
|
isActive: boolean;
|
|
6530
6566
|
props: Record<string, any>;
|
|
@@ -6639,6 +6675,7 @@ declare const VAutocomplete: {
|
|
|
6639
6675
|
bgColor: StringConstructor;
|
|
6640
6676
|
prependIcon: PropType<IconValue>;
|
|
6641
6677
|
appendIcon: PropType<IconValue>;
|
|
6678
|
+
baseColor: StringConstructor;
|
|
6642
6679
|
clearIcon: {
|
|
6643
6680
|
type: PropType<IconValue>;
|
|
6644
6681
|
default: string;
|
|
@@ -6671,7 +6708,6 @@ declare const VAutocomplete: {
|
|
|
6671
6708
|
hint: StringConstructor;
|
|
6672
6709
|
persistentHint: BooleanConstructor;
|
|
6673
6710
|
hideDetails: PropType<boolean | "auto">;
|
|
6674
|
-
baseColor: StringConstructor;
|
|
6675
6711
|
clearable: BooleanConstructor;
|
|
6676
6712
|
persistentClear: BooleanConstructor;
|
|
6677
6713
|
singleLine: BooleanConstructor;
|
|
@@ -6761,6 +6797,7 @@ declare const VAutocomplete: {
|
|
|
6761
6797
|
maxWidth?: string | number | undefined;
|
|
6762
6798
|
minHeight?: string | number | undefined;
|
|
6763
6799
|
minWidth?: string | number | undefined;
|
|
6800
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
6764
6801
|
class?: any;
|
|
6765
6802
|
$children?: vue.VNodeChild | {
|
|
6766
6803
|
default?: ((arg: {
|
|
@@ -6829,7 +6866,7 @@ declare const VAutocomplete: {
|
|
|
6829
6866
|
[key: string]: any;
|
|
6830
6867
|
}>) => void)[] | undefined;
|
|
6831
6868
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6832
|
-
activator?:
|
|
6869
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
6833
6870
|
"v-slot:activator"?: false | ((arg: {
|
|
6834
6871
|
isActive: boolean;
|
|
6835
6872
|
props: Record<string, any>;
|
|
@@ -6883,6 +6920,7 @@ declare const VAvatar: {
|
|
|
6883
6920
|
key?: string | number | symbol | undefined;
|
|
6884
6921
|
color?: string | undefined;
|
|
6885
6922
|
image?: string | undefined;
|
|
6923
|
+
text?: string | undefined;
|
|
6886
6924
|
class?: any;
|
|
6887
6925
|
icon?: IconValue | undefined;
|
|
6888
6926
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -6961,6 +6999,7 @@ declare const VAvatar: {
|
|
|
6961
6999
|
} & {
|
|
6962
7000
|
color?: string | undefined;
|
|
6963
7001
|
image?: string | undefined;
|
|
7002
|
+
text?: string | undefined;
|
|
6964
7003
|
class?: any;
|
|
6965
7004
|
icon?: IconValue | undefined;
|
|
6966
7005
|
theme?: string | undefined;
|
|
@@ -7018,6 +7057,7 @@ declare const VAvatar: {
|
|
|
7018
7057
|
} & {
|
|
7019
7058
|
color?: string | undefined;
|
|
7020
7059
|
image?: string | undefined;
|
|
7060
|
+
text?: string | undefined;
|
|
7021
7061
|
class?: any;
|
|
7022
7062
|
icon?: IconValue | undefined;
|
|
7023
7063
|
theme?: string | undefined;
|
|
@@ -7046,6 +7086,7 @@ declare const VAvatar: {
|
|
|
7046
7086
|
} & {
|
|
7047
7087
|
color?: string | undefined;
|
|
7048
7088
|
image?: string | undefined;
|
|
7089
|
+
text?: string | undefined;
|
|
7049
7090
|
class?: any;
|
|
7050
7091
|
icon?: IconValue | undefined;
|
|
7051
7092
|
theme?: string | undefined;
|
|
@@ -7109,6 +7150,7 @@ declare const VAvatar: {
|
|
|
7109
7150
|
end: BooleanConstructor;
|
|
7110
7151
|
icon: vue.PropType<IconValue>;
|
|
7111
7152
|
image: StringConstructor;
|
|
7153
|
+
text: StringConstructor;
|
|
7112
7154
|
}, vue.ExtractPropTypes<{
|
|
7113
7155
|
color: StringConstructor;
|
|
7114
7156
|
variant: Omit<{
|
|
@@ -7146,6 +7188,7 @@ declare const VAvatar: {
|
|
|
7146
7188
|
end: BooleanConstructor;
|
|
7147
7189
|
icon: vue.PropType<IconValue>;
|
|
7148
7190
|
image: StringConstructor;
|
|
7191
|
+
text: StringConstructor;
|
|
7149
7192
|
}>>;
|
|
7150
7193
|
type VAvatar = InstanceType<typeof VAvatar>;
|
|
7151
7194
|
|
|
@@ -7612,6 +7655,7 @@ declare const VBanner: {
|
|
|
7612
7655
|
}>) => void)[] | undefined;
|
|
7613
7656
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
7614
7657
|
lines?: "one" | "two" | "three" | undefined;
|
|
7658
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7615
7659
|
avatar?: string | undefined;
|
|
7616
7660
|
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
7617
7661
|
};
|
|
@@ -7663,6 +7707,7 @@ declare const VBanner: {
|
|
|
7663
7707
|
theme?: string | undefined;
|
|
7664
7708
|
rounded?: string | number | boolean | undefined;
|
|
7665
7709
|
lines?: "one" | "two" | "three" | undefined;
|
|
7710
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7666
7711
|
avatar?: string | undefined;
|
|
7667
7712
|
} & {
|
|
7668
7713
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7746,6 +7791,7 @@ declare const VBanner: {
|
|
|
7746
7791
|
theme?: string | undefined;
|
|
7747
7792
|
rounded?: string | number | boolean | undefined;
|
|
7748
7793
|
lines?: "one" | "two" | "three" | undefined;
|
|
7794
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7749
7795
|
avatar?: string | undefined;
|
|
7750
7796
|
} & {
|
|
7751
7797
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7793,6 +7839,7 @@ declare const VBanner: {
|
|
|
7793
7839
|
theme?: string | undefined;
|
|
7794
7840
|
rounded?: string | number | boolean | undefined;
|
|
7795
7841
|
lines?: "one" | "two" | "three" | undefined;
|
|
7842
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7796
7843
|
avatar?: string | undefined;
|
|
7797
7844
|
} & {
|
|
7798
7845
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7851,6 +7898,7 @@ declare const VBanner: {
|
|
|
7851
7898
|
type: (StringConstructor | NumberConstructor)[];
|
|
7852
7899
|
validator(v: any): boolean;
|
|
7853
7900
|
};
|
|
7901
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
7854
7902
|
height: (StringConstructor | NumberConstructor)[];
|
|
7855
7903
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7856
7904
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -7894,6 +7942,7 @@ declare const VBanner: {
|
|
|
7894
7942
|
type: (StringConstructor | NumberConstructor)[];
|
|
7895
7943
|
validator(v: any): boolean;
|
|
7896
7944
|
};
|
|
7945
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
7897
7946
|
height: (StringConstructor | NumberConstructor)[];
|
|
7898
7947
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7899
7948
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -8779,6 +8828,12 @@ declare const VBreadcrumbs: {
|
|
|
8779
8828
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8780
8829
|
[key: string]: any;
|
|
8781
8830
|
}>[]) | undefined;
|
|
8831
|
+
item?: ((arg: {
|
|
8832
|
+
item: BreadcrumbItem;
|
|
8833
|
+
index: number;
|
|
8834
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8835
|
+
[key: string]: any;
|
|
8836
|
+
}>[]) | undefined;
|
|
8782
8837
|
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8783
8838
|
[key: string]: any;
|
|
8784
8839
|
}>[]) | undefined;
|
|
@@ -8801,7 +8856,7 @@ declare const VBreadcrumbs: {
|
|
|
8801
8856
|
bgColor?: string | undefined;
|
|
8802
8857
|
activeClass?: string | undefined;
|
|
8803
8858
|
activeColor?: string | undefined;
|
|
8804
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "v-slot:title" | "v-slot:prepend" | "v-slot:divider">, string, {
|
|
8859
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "v-slot:title" | "v-slot:prepend" | "v-slot:item" | "v-slot:divider">, string, {
|
|
8805
8860
|
style: vue.StyleValue;
|
|
8806
8861
|
disabled: boolean;
|
|
8807
8862
|
tag: string;
|
|
@@ -8824,6 +8879,12 @@ declare const VBreadcrumbs: {
|
|
|
8824
8879
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8825
8880
|
[key: string]: any;
|
|
8826
8881
|
}>[];
|
|
8882
|
+
item: (arg: {
|
|
8883
|
+
item: BreadcrumbItem;
|
|
8884
|
+
index: number;
|
|
8885
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8886
|
+
[key: string]: any;
|
|
8887
|
+
}>[];
|
|
8827
8888
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8828
8889
|
[key: string]: any;
|
|
8829
8890
|
}>[];
|
|
@@ -8879,7 +8940,7 @@ declare const VBreadcrumbs: {
|
|
|
8879
8940
|
bgColor?: string | undefined;
|
|
8880
8941
|
activeClass?: string | undefined;
|
|
8881
8942
|
activeColor?: string | undefined;
|
|
8882
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "v-slot:title" | "v-slot:prepend" | "v-slot:divider">, string, {
|
|
8943
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "v-slot:title" | "v-slot:prepend" | "v-slot:item" | "v-slot:divider">, string, {
|
|
8883
8944
|
style: vue.StyleValue;
|
|
8884
8945
|
disabled: boolean;
|
|
8885
8946
|
tag: string;
|
|
@@ -8902,6 +8963,12 @@ declare const VBreadcrumbs: {
|
|
|
8902
8963
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8903
8964
|
[key: string]: any;
|
|
8904
8965
|
}>[];
|
|
8966
|
+
item: (arg: {
|
|
8967
|
+
item: BreadcrumbItem;
|
|
8968
|
+
index: number;
|
|
8969
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8970
|
+
[key: string]: any;
|
|
8971
|
+
}>[];
|
|
8905
8972
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8906
8973
|
[key: string]: any;
|
|
8907
8974
|
}>[];
|
|
@@ -8917,6 +8984,10 @@ declare const VBreadcrumbs: {
|
|
|
8917
8984
|
item: T_1;
|
|
8918
8985
|
index: number;
|
|
8919
8986
|
};
|
|
8987
|
+
item: {
|
|
8988
|
+
item: T_1;
|
|
8989
|
+
index: number;
|
|
8990
|
+
};
|
|
8920
8991
|
default: never;
|
|
8921
8992
|
}) => GenericProps<{
|
|
8922
8993
|
items?: T_1[] | undefined;
|
|
@@ -8930,6 +9001,10 @@ declare const VBreadcrumbs: {
|
|
|
8930
9001
|
item: T_1;
|
|
8931
9002
|
index: number;
|
|
8932
9003
|
};
|
|
9004
|
+
item: {
|
|
9005
|
+
item: T_1;
|
|
9006
|
+
index: number;
|
|
9007
|
+
};
|
|
8933
9008
|
default: never;
|
|
8934
9009
|
}>) & FilterPropsOptions<{
|
|
8935
9010
|
tag: Omit<{
|
|
@@ -13202,6 +13277,7 @@ declare const VImg: {
|
|
|
13202
13277
|
component?: vue.Component | undefined;
|
|
13203
13278
|
}) | undefined;
|
|
13204
13279
|
style?: vue.StyleValue | undefined;
|
|
13280
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13205
13281
|
eager?: boolean | undefined;
|
|
13206
13282
|
options?: IntersectionObserverInit | undefined;
|
|
13207
13283
|
cover?: boolean | undefined;
|
|
@@ -13224,7 +13300,9 @@ declare const VImg: {
|
|
|
13224
13300
|
error?: (() => vue.VNodeChild) | undefined;
|
|
13225
13301
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
13226
13302
|
};
|
|
13303
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13227
13304
|
alt?: string | undefined;
|
|
13305
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13228
13306
|
sizes?: string | undefined;
|
|
13229
13307
|
srcset?: string | undefined;
|
|
13230
13308
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -13324,8 +13402,11 @@ declare const VImg: {
|
|
|
13324
13402
|
maxWidth?: string | number | undefined;
|
|
13325
13403
|
minHeight?: string | number | undefined;
|
|
13326
13404
|
minWidth?: string | number | undefined;
|
|
13405
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13327
13406
|
class?: any;
|
|
13407
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13328
13408
|
alt?: string | undefined;
|
|
13409
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13329
13410
|
sizes?: string | undefined;
|
|
13330
13411
|
srcset?: string | undefined;
|
|
13331
13412
|
contentClass?: string | undefined;
|
|
@@ -13369,6 +13450,7 @@ declare const VImg: {
|
|
|
13369
13450
|
component?: vue.Component | undefined;
|
|
13370
13451
|
});
|
|
13371
13452
|
style: vue.StyleValue;
|
|
13453
|
+
draggable: boolean | "false" | "true";
|
|
13372
13454
|
eager: boolean;
|
|
13373
13455
|
options: IntersectionObserverInit;
|
|
13374
13456
|
cover: boolean;
|
|
@@ -13424,8 +13506,11 @@ declare const VImg: {
|
|
|
13424
13506
|
maxWidth?: string | number | undefined;
|
|
13425
13507
|
minHeight?: string | number | undefined;
|
|
13426
13508
|
minWidth?: string | number | undefined;
|
|
13509
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13427
13510
|
class?: any;
|
|
13511
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13428
13512
|
alt?: string | undefined;
|
|
13513
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13429
13514
|
sizes?: string | undefined;
|
|
13430
13515
|
srcset?: string | undefined;
|
|
13431
13516
|
contentClass?: string | undefined;
|
|
@@ -13481,8 +13566,11 @@ declare const VImg: {
|
|
|
13481
13566
|
maxWidth?: string | number | undefined;
|
|
13482
13567
|
minHeight?: string | number | undefined;
|
|
13483
13568
|
minWidth?: string | number | undefined;
|
|
13569
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13484
13570
|
class?: any;
|
|
13571
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13485
13572
|
alt?: string | undefined;
|
|
13573
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13486
13574
|
sizes?: string | undefined;
|
|
13487
13575
|
srcset?: string | undefined;
|
|
13488
13576
|
contentClass?: string | undefined;
|
|
@@ -13526,6 +13614,7 @@ declare const VImg: {
|
|
|
13526
13614
|
component?: vue.Component | undefined;
|
|
13527
13615
|
});
|
|
13528
13616
|
style: vue.StyleValue;
|
|
13617
|
+
draggable: boolean | "false" | "true";
|
|
13529
13618
|
eager: boolean;
|
|
13530
13619
|
options: IntersectionObserverInit;
|
|
13531
13620
|
cover: boolean;
|
|
@@ -13567,6 +13656,10 @@ declare const VImg: {
|
|
|
13567
13656
|
inline: BooleanConstructor;
|
|
13568
13657
|
alt: StringConstructor;
|
|
13569
13658
|
cover: BooleanConstructor;
|
|
13659
|
+
draggable: {
|
|
13660
|
+
type: PropType<boolean | "false" | "true">;
|
|
13661
|
+
default: undefined;
|
|
13662
|
+
};
|
|
13570
13663
|
eager: BooleanConstructor;
|
|
13571
13664
|
gradient: StringConstructor;
|
|
13572
13665
|
lazySrc: StringConstructor;
|
|
@@ -13583,6 +13676,8 @@ declare const VImg: {
|
|
|
13583
13676
|
type: PropType<string | srcObject>;
|
|
13584
13677
|
default: string;
|
|
13585
13678
|
};
|
|
13679
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
13680
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
13586
13681
|
srcset: StringConstructor;
|
|
13587
13682
|
}, vue.ExtractPropTypes<{
|
|
13588
13683
|
transition: {
|
|
@@ -13608,6 +13703,10 @@ declare const VImg: {
|
|
|
13608
13703
|
inline: BooleanConstructor;
|
|
13609
13704
|
alt: StringConstructor;
|
|
13610
13705
|
cover: BooleanConstructor;
|
|
13706
|
+
draggable: {
|
|
13707
|
+
type: PropType<boolean | "false" | "true">;
|
|
13708
|
+
default: undefined;
|
|
13709
|
+
};
|
|
13611
13710
|
eager: BooleanConstructor;
|
|
13612
13711
|
gradient: StringConstructor;
|
|
13613
13712
|
lazySrc: StringConstructor;
|
|
@@ -13624,6 +13723,8 @@ declare const VImg: {
|
|
|
13624
13723
|
type: PropType<string | srcObject>;
|
|
13625
13724
|
default: string;
|
|
13626
13725
|
};
|
|
13726
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
13727
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
13627
13728
|
srcset: StringConstructor;
|
|
13628
13729
|
}>>;
|
|
13629
13730
|
type VImg = InstanceType<typeof VImg>;
|
|
@@ -13636,6 +13737,7 @@ declare const VCarouselItem: {
|
|
|
13636
13737
|
inline?: boolean | undefined;
|
|
13637
13738
|
transition?: string | boolean | undefined;
|
|
13638
13739
|
style?: vue.StyleValue | undefined;
|
|
13740
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13639
13741
|
eager?: boolean | undefined;
|
|
13640
13742
|
disabled?: boolean | undefined;
|
|
13641
13743
|
options?: IntersectionObserverInit | undefined;
|
|
@@ -13658,7 +13760,9 @@ declare const VCarouselItem: {
|
|
|
13658
13760
|
error?: (() => vue.VNodeChild) | undefined;
|
|
13659
13761
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
13660
13762
|
};
|
|
13763
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13661
13764
|
alt?: string | undefined;
|
|
13765
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13662
13766
|
sizes?: string | undefined;
|
|
13663
13767
|
srcset?: string | undefined;
|
|
13664
13768
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -13759,8 +13863,11 @@ declare const VCarouselItem: {
|
|
|
13759
13863
|
minWidth?: string | number | undefined;
|
|
13760
13864
|
transition?: string | boolean | undefined;
|
|
13761
13865
|
value?: any;
|
|
13866
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13762
13867
|
class?: any;
|
|
13868
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13763
13869
|
alt?: string | undefined;
|
|
13870
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13764
13871
|
sizes?: string | undefined;
|
|
13765
13872
|
srcset?: string | undefined;
|
|
13766
13873
|
contentClass?: string | undefined;
|
|
@@ -13790,6 +13897,7 @@ declare const VCarouselItem: {
|
|
|
13790
13897
|
inline: boolean;
|
|
13791
13898
|
transition: string | boolean;
|
|
13792
13899
|
style: vue.StyleValue;
|
|
13900
|
+
draggable: boolean | "false" | "true";
|
|
13793
13901
|
eager: boolean;
|
|
13794
13902
|
disabled: boolean;
|
|
13795
13903
|
options: IntersectionObserverInit;
|
|
@@ -13847,8 +13955,11 @@ declare const VCarouselItem: {
|
|
|
13847
13955
|
minWidth?: string | number | undefined;
|
|
13848
13956
|
transition?: string | boolean | undefined;
|
|
13849
13957
|
value?: any;
|
|
13958
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13850
13959
|
class?: any;
|
|
13960
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13851
13961
|
alt?: string | undefined;
|
|
13962
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13852
13963
|
sizes?: string | undefined;
|
|
13853
13964
|
srcset?: string | undefined;
|
|
13854
13965
|
contentClass?: string | undefined;
|
|
@@ -13896,8 +14007,11 @@ declare const VCarouselItem: {
|
|
|
13896
14007
|
minWidth?: string | number | undefined;
|
|
13897
14008
|
transition?: string | boolean | undefined;
|
|
13898
14009
|
value?: any;
|
|
14010
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13899
14011
|
class?: any;
|
|
14012
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13900
14013
|
alt?: string | undefined;
|
|
14014
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13901
14015
|
sizes?: string | undefined;
|
|
13902
14016
|
srcset?: string | undefined;
|
|
13903
14017
|
contentClass?: string | undefined;
|
|
@@ -13927,6 +14041,7 @@ declare const VCarouselItem: {
|
|
|
13927
14041
|
inline: boolean;
|
|
13928
14042
|
transition: string | boolean;
|
|
13929
14043
|
style: vue.StyleValue;
|
|
14044
|
+
draggable: boolean | "false" | "true";
|
|
13930
14045
|
eager: boolean;
|
|
13931
14046
|
disabled: boolean;
|
|
13932
14047
|
options: IntersectionObserverInit;
|
|
@@ -13975,6 +14090,10 @@ declare const VCarouselItem: {
|
|
|
13975
14090
|
inline: BooleanConstructor;
|
|
13976
14091
|
alt: StringConstructor;
|
|
13977
14092
|
cover: BooleanConstructor;
|
|
14093
|
+
draggable: {
|
|
14094
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
14095
|
+
default: undefined;
|
|
14096
|
+
};
|
|
13978
14097
|
gradient: StringConstructor;
|
|
13979
14098
|
lazySrc: StringConstructor;
|
|
13980
14099
|
options: {
|
|
@@ -13990,6 +14109,8 @@ declare const VCarouselItem: {
|
|
|
13990
14109
|
type: vue.PropType<string | srcObject>;
|
|
13991
14110
|
default: string;
|
|
13992
14111
|
};
|
|
14112
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
14113
|
+
referrerpolicy: vue.PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
13993
14114
|
srcset: StringConstructor;
|
|
13994
14115
|
}, vue.ExtractPropTypes<{
|
|
13995
14116
|
eager: BooleanConstructor;
|
|
@@ -14020,6 +14141,10 @@ declare const VCarouselItem: {
|
|
|
14020
14141
|
inline: BooleanConstructor;
|
|
14021
14142
|
alt: StringConstructor;
|
|
14022
14143
|
cover: BooleanConstructor;
|
|
14144
|
+
draggable: {
|
|
14145
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
14146
|
+
default: undefined;
|
|
14147
|
+
};
|
|
14023
14148
|
gradient: StringConstructor;
|
|
14024
14149
|
lazySrc: StringConstructor;
|
|
14025
14150
|
options: {
|
|
@@ -14035,6 +14160,8 @@ declare const VCarouselItem: {
|
|
|
14035
14160
|
type: vue.PropType<string | srcObject>;
|
|
14036
14161
|
default: string;
|
|
14037
14162
|
};
|
|
14163
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
14164
|
+
referrerpolicy: vue.PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
14038
14165
|
srcset: StringConstructor;
|
|
14039
14166
|
}>>;
|
|
14040
14167
|
type VCarouselItem = InstanceType<typeof VCarouselItem>;
|
|
@@ -14463,6 +14590,7 @@ declare const VSelectionControl: {
|
|
|
14463
14590
|
defaultsTarget?: string | undefined;
|
|
14464
14591
|
falseIcon?: IconValue | undefined;
|
|
14465
14592
|
trueIcon?: IconValue | undefined;
|
|
14593
|
+
baseColor?: string | undefined;
|
|
14466
14594
|
trueValue?: any;
|
|
14467
14595
|
falseValue?: any;
|
|
14468
14596
|
};
|
|
@@ -14515,6 +14643,7 @@ declare const VSelectionControl: {
|
|
|
14515
14643
|
defaultsTarget?: string | undefined;
|
|
14516
14644
|
falseIcon?: IconValue | undefined;
|
|
14517
14645
|
trueIcon?: IconValue | undefined;
|
|
14646
|
+
baseColor?: string | undefined;
|
|
14518
14647
|
trueValue?: any;
|
|
14519
14648
|
falseValue?: any;
|
|
14520
14649
|
} & {
|
|
@@ -14592,6 +14721,7 @@ declare const VSelectionControl: {
|
|
|
14592
14721
|
defaultsTarget?: string | undefined;
|
|
14593
14722
|
falseIcon?: IconValue | undefined;
|
|
14594
14723
|
trueIcon?: IconValue | undefined;
|
|
14724
|
+
baseColor?: string | undefined;
|
|
14595
14725
|
trueValue?: any;
|
|
14596
14726
|
falseValue?: any;
|
|
14597
14727
|
} & {
|
|
@@ -14625,6 +14755,7 @@ declare const VSelectionControl: {
|
|
|
14625
14755
|
defaultsTarget?: string | undefined;
|
|
14626
14756
|
falseIcon?: IconValue | undefined;
|
|
14627
14757
|
trueIcon?: IconValue | undefined;
|
|
14758
|
+
baseColor?: string | undefined;
|
|
14628
14759
|
trueValue?: any;
|
|
14629
14760
|
falseValue?: any;
|
|
14630
14761
|
} & {
|
|
@@ -14706,6 +14837,7 @@ declare const VSelectionControl: {
|
|
|
14706
14837
|
default: typeof deepEqual;
|
|
14707
14838
|
};
|
|
14708
14839
|
label: StringConstructor;
|
|
14840
|
+
baseColor: StringConstructor;
|
|
14709
14841
|
trueValue: null;
|
|
14710
14842
|
falseValue: null;
|
|
14711
14843
|
value: null;
|
|
@@ -14749,6 +14881,7 @@ declare const VSelectionControl: {
|
|
|
14749
14881
|
default: typeof deepEqual;
|
|
14750
14882
|
};
|
|
14751
14883
|
label: StringConstructor;
|
|
14884
|
+
baseColor: StringConstructor;
|
|
14752
14885
|
trueValue: null;
|
|
14753
14886
|
falseValue: null;
|
|
14754
14887
|
value: null;
|
|
@@ -14874,6 +15007,7 @@ declare const VCheckbox: {
|
|
|
14874
15007
|
prependIcon?: IconValue | undefined;
|
|
14875
15008
|
appendIcon?: IconValue | undefined;
|
|
14876
15009
|
defaultsTarget?: string | undefined;
|
|
15010
|
+
baseColor?: string | undefined;
|
|
14877
15011
|
trueValue?: any;
|
|
14878
15012
|
falseValue?: any;
|
|
14879
15013
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -14964,6 +15098,7 @@ declare const VCheckbox: {
|
|
|
14964
15098
|
prependIcon?: IconValue | undefined;
|
|
14965
15099
|
appendIcon?: IconValue | undefined;
|
|
14966
15100
|
defaultsTarget?: string | undefined;
|
|
15101
|
+
baseColor?: string | undefined;
|
|
14967
15102
|
trueValue?: any;
|
|
14968
15103
|
falseValue?: any;
|
|
14969
15104
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -15130,6 +15265,7 @@ declare const VCheckbox: {
|
|
|
15130
15265
|
prependIcon?: IconValue | undefined;
|
|
15131
15266
|
appendIcon?: IconValue | undefined;
|
|
15132
15267
|
defaultsTarget?: string | undefined;
|
|
15268
|
+
baseColor?: string | undefined;
|
|
15133
15269
|
trueValue?: any;
|
|
15134
15270
|
falseValue?: any;
|
|
15135
15271
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -15228,6 +15364,7 @@ declare const VCheckbox: {
|
|
|
15228
15364
|
prependIcon?: IconValue | undefined;
|
|
15229
15365
|
appendIcon?: IconValue | undefined;
|
|
15230
15366
|
defaultsTarget?: string | undefined;
|
|
15367
|
+
baseColor?: string | undefined;
|
|
15231
15368
|
trueValue?: any;
|
|
15232
15369
|
falseValue?: any;
|
|
15233
15370
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -15387,6 +15524,7 @@ declare const VCheckbox: {
|
|
|
15387
15524
|
type: vue.PropType<typeof deepEqual>;
|
|
15388
15525
|
default: typeof deepEqual;
|
|
15389
15526
|
};
|
|
15527
|
+
baseColor: StringConstructor;
|
|
15390
15528
|
trueValue: null;
|
|
15391
15529
|
falseValue: null;
|
|
15392
15530
|
indeterminateIcon: {
|
|
@@ -15476,6 +15614,7 @@ declare const VCheckbox: {
|
|
|
15476
15614
|
type: vue.PropType<typeof deepEqual>;
|
|
15477
15615
|
default: typeof deepEqual;
|
|
15478
15616
|
};
|
|
15617
|
+
baseColor: StringConstructor;
|
|
15479
15618
|
trueValue: null;
|
|
15480
15619
|
falseValue: null;
|
|
15481
15620
|
indeterminateIcon: {
|
|
@@ -15621,6 +15760,7 @@ declare const VCheckboxBtn: {
|
|
|
15621
15760
|
modelValue?: any;
|
|
15622
15761
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15623
15762
|
defaultsTarget?: string | undefined;
|
|
15763
|
+
baseColor?: string | undefined;
|
|
15624
15764
|
trueValue?: any;
|
|
15625
15765
|
falseValue?: any;
|
|
15626
15766
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -15682,6 +15822,7 @@ declare const VCheckboxBtn: {
|
|
|
15682
15822
|
theme?: string | undefined;
|
|
15683
15823
|
modelValue?: any;
|
|
15684
15824
|
defaultsTarget?: string | undefined;
|
|
15825
|
+
baseColor?: string | undefined;
|
|
15685
15826
|
trueValue?: any;
|
|
15686
15827
|
falseValue?: any;
|
|
15687
15828
|
} & {
|
|
@@ -15801,6 +15942,7 @@ declare const VCheckboxBtn: {
|
|
|
15801
15942
|
theme?: string | undefined;
|
|
15802
15943
|
modelValue?: any;
|
|
15803
15944
|
defaultsTarget?: string | undefined;
|
|
15945
|
+
baseColor?: string | undefined;
|
|
15804
15946
|
trueValue?: any;
|
|
15805
15947
|
falseValue?: any;
|
|
15806
15948
|
} & {
|
|
@@ -15871,6 +16013,7 @@ declare const VCheckboxBtn: {
|
|
|
15871
16013
|
theme?: string | undefined;
|
|
15872
16014
|
modelValue?: any;
|
|
15873
16015
|
defaultsTarget?: string | undefined;
|
|
16016
|
+
baseColor?: string | undefined;
|
|
15874
16017
|
trueValue?: any;
|
|
15875
16018
|
falseValue?: any;
|
|
15876
16019
|
} & {
|
|
@@ -15991,6 +16134,7 @@ declare const VCheckboxBtn: {
|
|
|
15991
16134
|
default: typeof deepEqual;
|
|
15992
16135
|
};
|
|
15993
16136
|
label: StringConstructor;
|
|
16137
|
+
baseColor: StringConstructor;
|
|
15994
16138
|
trueValue: null;
|
|
15995
16139
|
falseValue: null;
|
|
15996
16140
|
value: null;
|
|
@@ -16045,6 +16189,7 @@ declare const VCheckboxBtn: {
|
|
|
16045
16189
|
default: typeof deepEqual;
|
|
16046
16190
|
};
|
|
16047
16191
|
label: StringConstructor;
|
|
16192
|
+
baseColor: StringConstructor;
|
|
16048
16193
|
trueValue: null;
|
|
16049
16194
|
falseValue: null;
|
|
16050
16195
|
value: null;
|
|
@@ -18160,6 +18305,7 @@ declare const VCombobox: {
|
|
|
18160
18305
|
bgColor?: string | undefined;
|
|
18161
18306
|
prependIcon?: IconValue | undefined;
|
|
18162
18307
|
appendIcon?: IconValue | undefined;
|
|
18308
|
+
baseColor?: string | undefined;
|
|
18163
18309
|
prependInnerIcon?: IconValue | undefined;
|
|
18164
18310
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18165
18311
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18170,7 +18316,6 @@ declare const VCombobox: {
|
|
|
18170
18316
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
18171
18317
|
hint?: string | undefined;
|
|
18172
18318
|
hideDetails?: boolean | "auto" | undefined;
|
|
18173
|
-
baseColor?: string | undefined;
|
|
18174
18319
|
suffix?: string | undefined;
|
|
18175
18320
|
counterValue?: ((value: any) => number) | undefined;
|
|
18176
18321
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18212,6 +18357,7 @@ declare const VCombobox: {
|
|
|
18212
18357
|
maxWidth?: string | number | undefined;
|
|
18213
18358
|
minHeight?: string | number | undefined;
|
|
18214
18359
|
minWidth?: string | number | undefined;
|
|
18360
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18215
18361
|
class?: any;
|
|
18216
18362
|
$children?: vue.VNodeChild | {
|
|
18217
18363
|
default?: ((arg: {
|
|
@@ -18280,7 +18426,7 @@ declare const VCombobox: {
|
|
|
18280
18426
|
[key: string]: any;
|
|
18281
18427
|
}>) => void)[] | undefined;
|
|
18282
18428
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18283
|
-
activator?:
|
|
18429
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18284
18430
|
"v-slot:activator"?: false | ((arg: {
|
|
18285
18431
|
isActive: boolean;
|
|
18286
18432
|
props: Record<string, any>;
|
|
@@ -18430,6 +18576,7 @@ declare const VCombobox: {
|
|
|
18430
18576
|
bgColor?: string | undefined;
|
|
18431
18577
|
prependIcon?: IconValue | undefined;
|
|
18432
18578
|
appendIcon?: IconValue | undefined;
|
|
18579
|
+
baseColor?: string | undefined;
|
|
18433
18580
|
prependInnerIcon?: IconValue | undefined;
|
|
18434
18581
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18435
18582
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18441,7 +18588,6 @@ declare const VCombobox: {
|
|
|
18441
18588
|
centerAffix?: boolean | undefined;
|
|
18442
18589
|
hint?: string | undefined;
|
|
18443
18590
|
hideDetails?: boolean | "auto" | undefined;
|
|
18444
|
-
baseColor?: string | undefined;
|
|
18445
18591
|
suffix?: string | undefined;
|
|
18446
18592
|
counterValue?: ((value: any) => number) | undefined;
|
|
18447
18593
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18483,6 +18629,7 @@ declare const VCombobox: {
|
|
|
18483
18629
|
maxWidth?: string | number | undefined;
|
|
18484
18630
|
minHeight?: string | number | undefined;
|
|
18485
18631
|
minWidth?: string | number | undefined;
|
|
18632
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18486
18633
|
class?: any;
|
|
18487
18634
|
$children?: vue.VNodeChild | {
|
|
18488
18635
|
default?: ((arg: {
|
|
@@ -18551,7 +18698,7 @@ declare const VCombobox: {
|
|
|
18551
18698
|
[key: string]: any;
|
|
18552
18699
|
}>) => void)[] | undefined;
|
|
18553
18700
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18554
|
-
activator?:
|
|
18701
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18555
18702
|
"v-slot:activator"?: false | ((arg: {
|
|
18556
18703
|
isActive: boolean;
|
|
18557
18704
|
props: Record<string, any>;
|
|
@@ -18767,6 +18914,7 @@ declare const VCombobox: {
|
|
|
18767
18914
|
bgColor?: string | undefined;
|
|
18768
18915
|
prependIcon?: IconValue | undefined;
|
|
18769
18916
|
appendIcon?: IconValue | undefined;
|
|
18917
|
+
baseColor?: string | undefined;
|
|
18770
18918
|
prependInnerIcon?: IconValue | undefined;
|
|
18771
18919
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18772
18920
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18778,7 +18926,6 @@ declare const VCombobox: {
|
|
|
18778
18926
|
centerAffix?: boolean | undefined;
|
|
18779
18927
|
hint?: string | undefined;
|
|
18780
18928
|
hideDetails?: boolean | "auto" | undefined;
|
|
18781
|
-
baseColor?: string | undefined;
|
|
18782
18929
|
suffix?: string | undefined;
|
|
18783
18930
|
counterValue?: ((value: any) => number) | undefined;
|
|
18784
18931
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18820,6 +18967,7 @@ declare const VCombobox: {
|
|
|
18820
18967
|
maxWidth?: string | number | undefined;
|
|
18821
18968
|
minHeight?: string | number | undefined;
|
|
18822
18969
|
minWidth?: string | number | undefined;
|
|
18970
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18823
18971
|
class?: any;
|
|
18824
18972
|
$children?: vue.VNodeChild | {
|
|
18825
18973
|
default?: ((arg: {
|
|
@@ -18888,7 +19036,7 @@ declare const VCombobox: {
|
|
|
18888
19036
|
[key: string]: any;
|
|
18889
19037
|
}>) => void)[] | undefined;
|
|
18890
19038
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18891
|
-
activator?:
|
|
19039
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18892
19040
|
"v-slot:activator"?: false | ((arg: {
|
|
18893
19041
|
isActive: boolean;
|
|
18894
19042
|
props: Record<string, any>;
|
|
@@ -18973,6 +19121,7 @@ declare const VCombobox: {
|
|
|
18973
19121
|
bgColor?: string | undefined;
|
|
18974
19122
|
prependIcon?: IconValue | undefined;
|
|
18975
19123
|
appendIcon?: IconValue | undefined;
|
|
19124
|
+
baseColor?: string | undefined;
|
|
18976
19125
|
prependInnerIcon?: IconValue | undefined;
|
|
18977
19126
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18978
19127
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18984,7 +19133,6 @@ declare const VCombobox: {
|
|
|
18984
19133
|
centerAffix?: boolean | undefined;
|
|
18985
19134
|
hint?: string | undefined;
|
|
18986
19135
|
hideDetails?: boolean | "auto" | undefined;
|
|
18987
|
-
baseColor?: string | undefined;
|
|
18988
19136
|
suffix?: string | undefined;
|
|
18989
19137
|
counterValue?: ((value: any) => number) | undefined;
|
|
18990
19138
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -19026,6 +19174,7 @@ declare const VCombobox: {
|
|
|
19026
19174
|
maxWidth?: string | number | undefined;
|
|
19027
19175
|
minHeight?: string | number | undefined;
|
|
19028
19176
|
minWidth?: string | number | undefined;
|
|
19177
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
19029
19178
|
class?: any;
|
|
19030
19179
|
$children?: vue.VNodeChild | {
|
|
19031
19180
|
default?: ((arg: {
|
|
@@ -19094,7 +19243,7 @@ declare const VCombobox: {
|
|
|
19094
19243
|
[key: string]: any;
|
|
19095
19244
|
}>) => void)[] | undefined;
|
|
19096
19245
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19097
|
-
activator?:
|
|
19246
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
19098
19247
|
"v-slot:activator"?: false | ((arg: {
|
|
19099
19248
|
isActive: boolean;
|
|
19100
19249
|
props: Record<string, any>;
|
|
@@ -19354,6 +19503,7 @@ declare const VCombobox: {
|
|
|
19354
19503
|
bgColor: StringConstructor;
|
|
19355
19504
|
prependIcon: PropType<IconValue>;
|
|
19356
19505
|
appendIcon: PropType<IconValue>;
|
|
19506
|
+
baseColor: StringConstructor;
|
|
19357
19507
|
clearIcon: {
|
|
19358
19508
|
type: PropType<IconValue>;
|
|
19359
19509
|
default: string;
|
|
@@ -19386,7 +19536,6 @@ declare const VCombobox: {
|
|
|
19386
19536
|
hint: StringConstructor;
|
|
19387
19537
|
persistentHint: BooleanConstructor;
|
|
19388
19538
|
hideDetails: PropType<boolean | "auto">;
|
|
19389
|
-
baseColor: StringConstructor;
|
|
19390
19539
|
clearable: BooleanConstructor;
|
|
19391
19540
|
persistentClear: BooleanConstructor;
|
|
19392
19541
|
singleLine: BooleanConstructor;
|
|
@@ -19482,6 +19631,7 @@ declare const VCombobox: {
|
|
|
19482
19631
|
maxWidth?: string | number | undefined;
|
|
19483
19632
|
minHeight?: string | number | undefined;
|
|
19484
19633
|
minWidth?: string | number | undefined;
|
|
19634
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
19485
19635
|
class?: any;
|
|
19486
19636
|
$children?: vue.VNodeChild | {
|
|
19487
19637
|
default?: ((arg: {
|
|
@@ -19550,7 +19700,7 @@ declare const VCombobox: {
|
|
|
19550
19700
|
[key: string]: any;
|
|
19551
19701
|
}>) => void)[] | undefined;
|
|
19552
19702
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19553
|
-
activator?:
|
|
19703
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
19554
19704
|
"v-slot:activator"?: false | ((arg: {
|
|
19555
19705
|
isActive: boolean;
|
|
19556
19706
|
props: Record<string, any>;
|
|
@@ -19665,6 +19815,7 @@ declare const VCombobox: {
|
|
|
19665
19815
|
bgColor: StringConstructor;
|
|
19666
19816
|
prependIcon: PropType<IconValue>;
|
|
19667
19817
|
appendIcon: PropType<IconValue>;
|
|
19818
|
+
baseColor: StringConstructor;
|
|
19668
19819
|
clearIcon: {
|
|
19669
19820
|
type: PropType<IconValue>;
|
|
19670
19821
|
default: string;
|
|
@@ -19697,7 +19848,6 @@ declare const VCombobox: {
|
|
|
19697
19848
|
hint: StringConstructor;
|
|
19698
19849
|
persistentHint: BooleanConstructor;
|
|
19699
19850
|
hideDetails: PropType<boolean | "auto">;
|
|
19700
|
-
baseColor: StringConstructor;
|
|
19701
19851
|
clearable: BooleanConstructor;
|
|
19702
19852
|
persistentClear: BooleanConstructor;
|
|
19703
19853
|
singleLine: BooleanConstructor;
|
|
@@ -19793,6 +19943,7 @@ declare const VCombobox: {
|
|
|
19793
19943
|
maxWidth?: string | number | undefined;
|
|
19794
19944
|
minHeight?: string | number | undefined;
|
|
19795
19945
|
minWidth?: string | number | undefined;
|
|
19946
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
19796
19947
|
class?: any;
|
|
19797
19948
|
$children?: vue.VNodeChild | {
|
|
19798
19949
|
default?: ((arg: {
|
|
@@ -19861,7 +20012,7 @@ declare const VCombobox: {
|
|
|
19861
20012
|
[key: string]: any;
|
|
19862
20013
|
}>) => void)[] | undefined;
|
|
19863
20014
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19864
|
-
activator?:
|
|
20015
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
19865
20016
|
"v-slot:activator"?: false | ((arg: {
|
|
19866
20017
|
isActive: boolean;
|
|
19867
20018
|
props: Record<string, any>;
|
|
@@ -20387,6 +20538,7 @@ declare const VDialog: {
|
|
|
20387
20538
|
maxWidth?: string | number | undefined;
|
|
20388
20539
|
minHeight?: string | number | undefined;
|
|
20389
20540
|
minWidth?: string | number | undefined;
|
|
20541
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20390
20542
|
class?: any;
|
|
20391
20543
|
$children?: vue.VNodeChild | {
|
|
20392
20544
|
default?: ((arg: {
|
|
@@ -20455,7 +20607,7 @@ declare const VDialog: {
|
|
|
20455
20607
|
[key: string]: any;
|
|
20456
20608
|
}>) => void)[] | undefined;
|
|
20457
20609
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20458
|
-
activator?:
|
|
20610
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20459
20611
|
"v-slot:activator"?: false | ((arg: {
|
|
20460
20612
|
isActive: boolean;
|
|
20461
20613
|
props: Record<string, any>;
|
|
@@ -20525,10 +20677,11 @@ declare const VDialog: {
|
|
|
20525
20677
|
maxWidth?: string | number | undefined;
|
|
20526
20678
|
minHeight?: string | number | undefined;
|
|
20527
20679
|
minWidth?: string | number | undefined;
|
|
20680
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20528
20681
|
class?: any;
|
|
20529
20682
|
theme?: string | undefined;
|
|
20530
20683
|
contentClass?: any;
|
|
20531
|
-
activator?:
|
|
20684
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20532
20685
|
closeDelay?: string | number | undefined;
|
|
20533
20686
|
openDelay?: string | number | undefined;
|
|
20534
20687
|
openOnClick?: boolean | undefined;
|
|
@@ -20604,6 +20757,7 @@ declare const VDialog: {
|
|
|
20604
20757
|
maxWidth?: string | number | undefined;
|
|
20605
20758
|
minHeight?: string | number | undefined;
|
|
20606
20759
|
minWidth?: string | number | undefined;
|
|
20760
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20607
20761
|
class?: any;
|
|
20608
20762
|
onAfterLeave?: (() => any) | undefined;
|
|
20609
20763
|
$children?: vue.VNodeChild | {
|
|
@@ -20673,7 +20827,7 @@ declare const VDialog: {
|
|
|
20673
20827
|
[key: string]: any;
|
|
20674
20828
|
}>) => void)[] | undefined;
|
|
20675
20829
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20676
|
-
activator?:
|
|
20830
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20677
20831
|
"v-slot:activator"?: false | ((arg: {
|
|
20678
20832
|
isActive: boolean;
|
|
20679
20833
|
props: Record<string, any>;
|
|
@@ -20740,10 +20894,11 @@ declare const VDialog: {
|
|
|
20740
20894
|
maxWidth?: string | number | undefined;
|
|
20741
20895
|
minHeight?: string | number | undefined;
|
|
20742
20896
|
minWidth?: string | number | undefined;
|
|
20897
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20743
20898
|
class?: any;
|
|
20744
20899
|
theme?: string | undefined;
|
|
20745
20900
|
contentClass?: any;
|
|
20746
|
-
activator?:
|
|
20901
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20747
20902
|
closeDelay?: string | number | undefined;
|
|
20748
20903
|
openDelay?: string | number | undefined;
|
|
20749
20904
|
openOnClick?: boolean | undefined;
|
|
@@ -20785,6 +20940,7 @@ declare const VDialog: {
|
|
|
20785
20940
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
20786
20941
|
}, {
|
|
20787
20942
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
20943
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
20788
20944
|
animateClick: () => void;
|
|
20789
20945
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
20790
20946
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -20886,10 +21042,11 @@ declare const VDialog: {
|
|
|
20886
21042
|
maxWidth?: string | number | undefined;
|
|
20887
21043
|
minHeight?: string | number | undefined;
|
|
20888
21044
|
minWidth?: string | number | undefined;
|
|
21045
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20889
21046
|
class?: any;
|
|
20890
21047
|
theme?: string | undefined;
|
|
20891
21048
|
contentClass?: any;
|
|
20892
|
-
activator?:
|
|
21049
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20893
21050
|
closeDelay?: string | number | undefined;
|
|
20894
21051
|
openDelay?: string | number | undefined;
|
|
20895
21052
|
openOnClick?: boolean | undefined;
|
|
@@ -20931,12 +21088,13 @@ declare const VDialog: {
|
|
|
20931
21088
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
20932
21089
|
} & vue.ShallowUnwrapRef<{
|
|
20933
21090
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21091
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
20934
21092
|
animateClick: () => void;
|
|
20935
21093
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
20936
21094
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
20937
21095
|
localTop: vue.ComputedRef<boolean>;
|
|
20938
21096
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
20939
|
-
}> & {} & 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, {
|
|
21097
|
+
}> & {} & 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, {
|
|
20940
21098
|
'update:modelValue': (value: boolean) => boolean;
|
|
20941
21099
|
}, string, {
|
|
20942
21100
|
absolute: boolean;
|
|
@@ -21038,10 +21196,11 @@ declare const VDialog: {
|
|
|
21038
21196
|
maxWidth?: string | number | undefined;
|
|
21039
21197
|
minHeight?: string | number | undefined;
|
|
21040
21198
|
minWidth?: string | number | undefined;
|
|
21199
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21041
21200
|
class?: any;
|
|
21042
21201
|
theme?: string | undefined;
|
|
21043
21202
|
contentClass?: any;
|
|
21044
|
-
activator?:
|
|
21203
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21045
21204
|
closeDelay?: string | number | undefined;
|
|
21046
21205
|
openDelay?: string | number | undefined;
|
|
21047
21206
|
openOnClick?: boolean | undefined;
|
|
@@ -21117,6 +21276,7 @@ declare const VDialog: {
|
|
|
21117
21276
|
maxWidth?: string | number | undefined;
|
|
21118
21277
|
minHeight?: string | number | undefined;
|
|
21119
21278
|
minWidth?: string | number | undefined;
|
|
21279
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21120
21280
|
class?: any;
|
|
21121
21281
|
onAfterLeave?: (() => any) | undefined;
|
|
21122
21282
|
$children?: vue.VNodeChild | {
|
|
@@ -21186,7 +21346,7 @@ declare const VDialog: {
|
|
|
21186
21346
|
[key: string]: any;
|
|
21187
21347
|
}>) => void)[] | undefined;
|
|
21188
21348
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21189
|
-
activator?:
|
|
21349
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21190
21350
|
"v-slot:activator"?: false | ((arg: {
|
|
21191
21351
|
isActive: boolean;
|
|
21192
21352
|
props: Record<string, any>;
|
|
@@ -21253,10 +21413,11 @@ declare const VDialog: {
|
|
|
21253
21413
|
maxWidth?: string | number | undefined;
|
|
21254
21414
|
minHeight?: string | number | undefined;
|
|
21255
21415
|
minWidth?: string | number | undefined;
|
|
21416
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21256
21417
|
class?: any;
|
|
21257
21418
|
theme?: string | undefined;
|
|
21258
21419
|
contentClass?: any;
|
|
21259
|
-
activator?:
|
|
21420
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21260
21421
|
closeDelay?: string | number | undefined;
|
|
21261
21422
|
openDelay?: string | number | undefined;
|
|
21262
21423
|
openOnClick?: boolean | undefined;
|
|
@@ -21298,6 +21459,7 @@ declare const VDialog: {
|
|
|
21298
21459
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21299
21460
|
}, {
|
|
21300
21461
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21462
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21301
21463
|
animateClick: () => void;
|
|
21302
21464
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21303
21465
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -21399,10 +21561,11 @@ declare const VDialog: {
|
|
|
21399
21561
|
maxWidth?: string | number | undefined;
|
|
21400
21562
|
minHeight?: string | number | undefined;
|
|
21401
21563
|
minWidth?: string | number | undefined;
|
|
21564
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21402
21565
|
class?: any;
|
|
21403
21566
|
theme?: string | undefined;
|
|
21404
21567
|
contentClass?: any;
|
|
21405
|
-
activator?:
|
|
21568
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21406
21569
|
closeDelay?: string | number | undefined;
|
|
21407
21570
|
openDelay?: string | number | undefined;
|
|
21408
21571
|
openOnClick?: boolean | undefined;
|
|
@@ -21444,12 +21607,13 @@ declare const VDialog: {
|
|
|
21444
21607
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21445
21608
|
} & vue.ShallowUnwrapRef<{
|
|
21446
21609
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21610
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21447
21611
|
animateClick: () => void;
|
|
21448
21612
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21449
21613
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
21450
21614
|
localTop: vue.ComputedRef<boolean>;
|
|
21451
21615
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
21452
|
-
}> & {} & 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 & {};
|
|
21616
|
+
}> & {} & 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 & {};
|
|
21453
21617
|
__isFragment?: undefined;
|
|
21454
21618
|
__isTeleport?: undefined;
|
|
21455
21619
|
__isSuspense?: undefined;
|
|
@@ -21490,10 +21654,11 @@ declare const VDialog: {
|
|
|
21490
21654
|
maxWidth?: string | number | undefined;
|
|
21491
21655
|
minHeight?: string | number | undefined;
|
|
21492
21656
|
minWidth?: string | number | undefined;
|
|
21657
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21493
21658
|
class?: any;
|
|
21494
21659
|
theme?: string | undefined;
|
|
21495
21660
|
contentClass?: any;
|
|
21496
|
-
activator?:
|
|
21661
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21497
21662
|
closeDelay?: string | number | undefined;
|
|
21498
21663
|
openDelay?: string | number | undefined;
|
|
21499
21664
|
openOnClick?: boolean | undefined;
|
|
@@ -21569,6 +21734,7 @@ declare const VDialog: {
|
|
|
21569
21734
|
maxWidth?: string | number | undefined;
|
|
21570
21735
|
minHeight?: string | number | undefined;
|
|
21571
21736
|
minWidth?: string | number | undefined;
|
|
21737
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21572
21738
|
class?: any;
|
|
21573
21739
|
onAfterLeave?: (() => any) | undefined;
|
|
21574
21740
|
$children?: vue.VNodeChild | {
|
|
@@ -21638,7 +21804,7 @@ declare const VDialog: {
|
|
|
21638
21804
|
[key: string]: any;
|
|
21639
21805
|
}>) => void)[] | undefined;
|
|
21640
21806
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21641
|
-
activator?:
|
|
21807
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21642
21808
|
"v-slot:activator"?: false | ((arg: {
|
|
21643
21809
|
isActive: boolean;
|
|
21644
21810
|
props: Record<string, any>;
|
|
@@ -21705,10 +21871,11 @@ declare const VDialog: {
|
|
|
21705
21871
|
maxWidth?: string | number | undefined;
|
|
21706
21872
|
minHeight?: string | number | undefined;
|
|
21707
21873
|
minWidth?: string | number | undefined;
|
|
21874
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21708
21875
|
class?: any;
|
|
21709
21876
|
theme?: string | undefined;
|
|
21710
21877
|
contentClass?: any;
|
|
21711
|
-
activator?:
|
|
21878
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21712
21879
|
closeDelay?: string | number | undefined;
|
|
21713
21880
|
openDelay?: string | number | undefined;
|
|
21714
21881
|
openOnClick?: boolean | undefined;
|
|
@@ -21750,6 +21917,7 @@ declare const VDialog: {
|
|
|
21750
21917
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21751
21918
|
}, {
|
|
21752
21919
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21920
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21753
21921
|
animateClick: () => void;
|
|
21754
21922
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21755
21923
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -21851,10 +22019,11 @@ declare const VDialog: {
|
|
|
21851
22019
|
maxWidth?: string | number | undefined;
|
|
21852
22020
|
minHeight?: string | number | undefined;
|
|
21853
22021
|
minWidth?: string | number | undefined;
|
|
22022
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21854
22023
|
class?: any;
|
|
21855
22024
|
theme?: string | undefined;
|
|
21856
22025
|
contentClass?: any;
|
|
21857
|
-
activator?:
|
|
22026
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21858
22027
|
closeDelay?: string | number | undefined;
|
|
21859
22028
|
openDelay?: string | number | undefined;
|
|
21860
22029
|
openOnClick?: boolean | undefined;
|
|
@@ -21896,12 +22065,13 @@ declare const VDialog: {
|
|
|
21896
22065
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21897
22066
|
} & vue.ShallowUnwrapRef<{
|
|
21898
22067
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
22068
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21899
22069
|
animateClick: () => void;
|
|
21900
22070
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21901
22071
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
21902
22072
|
localTop: vue.ComputedRef<boolean>;
|
|
21903
22073
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
21904
|
-
}> & {} & 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, {
|
|
22074
|
+
}> & {} & 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, {
|
|
21905
22075
|
'update:modelValue': (value: boolean) => boolean;
|
|
21906
22076
|
}, string, {
|
|
21907
22077
|
absolute: boolean;
|
|
@@ -22007,7 +22177,8 @@ declare const VDialog: {
|
|
|
22007
22177
|
};
|
|
22008
22178
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
22009
22179
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
22010
|
-
|
|
22180
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
22181
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
22011
22182
|
activatorProps: {
|
|
22012
22183
|
type: vue.PropType<Record<string, any>>;
|
|
22013
22184
|
default: () => {};
|
|
@@ -22113,7 +22284,8 @@ declare const VDialog: {
|
|
|
22113
22284
|
};
|
|
22114
22285
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
22115
22286
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
22116
|
-
|
|
22287
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
22288
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
22117
22289
|
activatorProps: {
|
|
22118
22290
|
type: vue.PropType<Record<string, any>>;
|
|
22119
22291
|
default: () => {};
|
|
@@ -23773,6 +23945,7 @@ declare const VFileInput: {
|
|
|
23773
23945
|
bgColor?: string | undefined;
|
|
23774
23946
|
appendIcon?: IconValue | undefined;
|
|
23775
23947
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23948
|
+
baseColor?: string | undefined;
|
|
23776
23949
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
23777
23950
|
label: string | undefined;
|
|
23778
23951
|
props: Record<string, any>;
|
|
@@ -23791,7 +23964,6 @@ declare const VFileInput: {
|
|
|
23791
23964
|
hint?: string | undefined;
|
|
23792
23965
|
hideDetails?: boolean | "auto" | undefined;
|
|
23793
23966
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
23794
|
-
baseColor?: string | undefined;
|
|
23795
23967
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
23796
23968
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
23797
23969
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -23900,6 +24072,7 @@ declare const VFileInput: {
|
|
|
23900
24072
|
rounded?: string | number | boolean | undefined;
|
|
23901
24073
|
bgColor?: string | undefined;
|
|
23902
24074
|
appendIcon?: IconValue | undefined;
|
|
24075
|
+
baseColor?: string | undefined;
|
|
23903
24076
|
appendInnerIcon?: IconValue | undefined;
|
|
23904
24077
|
prependInnerIcon?: IconValue | undefined;
|
|
23905
24078
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -23913,7 +24086,6 @@ declare const VFileInput: {
|
|
|
23913
24086
|
centerAffix?: boolean | undefined;
|
|
23914
24087
|
hint?: string | undefined;
|
|
23915
24088
|
hideDetails?: boolean | "auto" | undefined;
|
|
23916
|
-
baseColor?: string | undefined;
|
|
23917
24089
|
} & {
|
|
23918
24090
|
$children?: vue.VNodeChild | {
|
|
23919
24091
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -24409,6 +24581,7 @@ declare const VFileInput: {
|
|
|
24409
24581
|
rounded?: string | number | boolean | undefined;
|
|
24410
24582
|
bgColor?: string | undefined;
|
|
24411
24583
|
appendIcon?: IconValue | undefined;
|
|
24584
|
+
baseColor?: string | undefined;
|
|
24412
24585
|
appendInnerIcon?: IconValue | undefined;
|
|
24413
24586
|
prependInnerIcon?: IconValue | undefined;
|
|
24414
24587
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -24422,7 +24595,6 @@ declare const VFileInput: {
|
|
|
24422
24595
|
centerAffix?: boolean | undefined;
|
|
24423
24596
|
hint?: string | undefined;
|
|
24424
24597
|
hideDetails?: boolean | "auto" | undefined;
|
|
24425
|
-
baseColor?: string | undefined;
|
|
24426
24598
|
} & {
|
|
24427
24599
|
$children?: vue.VNodeChild | {
|
|
24428
24600
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -24821,6 +24993,7 @@ declare const VFileInput: {
|
|
|
24821
24993
|
rounded?: string | number | boolean | undefined;
|
|
24822
24994
|
bgColor?: string | undefined;
|
|
24823
24995
|
appendIcon?: IconValue | undefined;
|
|
24996
|
+
baseColor?: string | undefined;
|
|
24824
24997
|
appendInnerIcon?: IconValue | undefined;
|
|
24825
24998
|
prependInnerIcon?: IconValue | undefined;
|
|
24826
24999
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -24834,7 +25007,6 @@ declare const VFileInput: {
|
|
|
24834
25007
|
centerAffix?: boolean | undefined;
|
|
24835
25008
|
hint?: string | undefined;
|
|
24836
25009
|
hideDetails?: boolean | "auto" | undefined;
|
|
24837
|
-
baseColor?: string | undefined;
|
|
24838
25010
|
} & {
|
|
24839
25011
|
$children?: vue.VNodeChild | {
|
|
24840
25012
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -30083,11 +30255,11 @@ declare const VListItem: {
|
|
|
30083
30255
|
"v-slot:prepend"?: false | ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
|
30084
30256
|
prependIcon?: IconValue | undefined;
|
|
30085
30257
|
appendIcon?: IconValue | undefined;
|
|
30258
|
+
baseColor?: string | undefined;
|
|
30086
30259
|
activeClass?: string | undefined;
|
|
30087
30260
|
appendAvatar?: string | undefined;
|
|
30088
30261
|
prependAvatar?: string | undefined;
|
|
30089
30262
|
activeColor?: string | undefined;
|
|
30090
|
-
baseColor?: string | undefined;
|
|
30091
30263
|
subtitle?: string | number | boolean | undefined;
|
|
30092
30264
|
lines?: "one" | "two" | "three" | undefined;
|
|
30093
30265
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
@@ -30154,11 +30326,11 @@ declare const VListItem: {
|
|
|
30154
30326
|
rounded?: string | number | boolean | undefined;
|
|
30155
30327
|
prependIcon?: IconValue | undefined;
|
|
30156
30328
|
appendIcon?: IconValue | undefined;
|
|
30329
|
+
baseColor?: string | undefined;
|
|
30157
30330
|
activeClass?: string | undefined;
|
|
30158
30331
|
appendAvatar?: string | undefined;
|
|
30159
30332
|
prependAvatar?: string | undefined;
|
|
30160
30333
|
activeColor?: string | undefined;
|
|
30161
|
-
baseColor?: string | undefined;
|
|
30162
30334
|
subtitle?: string | number | boolean | undefined;
|
|
30163
30335
|
lines?: "one" | "two" | "three" | undefined;
|
|
30164
30336
|
} & {
|
|
@@ -30272,11 +30444,11 @@ declare const VListItem: {
|
|
|
30272
30444
|
rounded?: string | number | boolean | undefined;
|
|
30273
30445
|
prependIcon?: IconValue | undefined;
|
|
30274
30446
|
appendIcon?: IconValue | undefined;
|
|
30447
|
+
baseColor?: string | undefined;
|
|
30275
30448
|
activeClass?: string | undefined;
|
|
30276
30449
|
appendAvatar?: string | undefined;
|
|
30277
30450
|
prependAvatar?: string | undefined;
|
|
30278
30451
|
activeColor?: string | undefined;
|
|
30279
|
-
baseColor?: string | undefined;
|
|
30280
30452
|
subtitle?: string | number | boolean | undefined;
|
|
30281
30453
|
lines?: "one" | "two" | "three" | undefined;
|
|
30282
30454
|
} & {
|
|
@@ -30341,11 +30513,11 @@ declare const VListItem: {
|
|
|
30341
30513
|
rounded?: string | number | boolean | undefined;
|
|
30342
30514
|
prependIcon?: IconValue | undefined;
|
|
30343
30515
|
appendIcon?: IconValue | undefined;
|
|
30516
|
+
baseColor?: string | undefined;
|
|
30344
30517
|
activeClass?: string | undefined;
|
|
30345
30518
|
appendAvatar?: string | undefined;
|
|
30346
30519
|
prependAvatar?: string | undefined;
|
|
30347
30520
|
activeColor?: string | undefined;
|
|
30348
|
-
baseColor?: string | undefined;
|
|
30349
30521
|
subtitle?: string | number | boolean | undefined;
|
|
30350
30522
|
lines?: "one" | "two" | "three" | undefined;
|
|
30351
30523
|
} & {
|
|
@@ -30687,12 +30859,12 @@ declare const VList: {
|
|
|
30687
30859
|
[key: string]: any;
|
|
30688
30860
|
}>) => void)[] | undefined;
|
|
30689
30861
|
bgColor?: string | undefined;
|
|
30862
|
+
baseColor?: string | undefined;
|
|
30690
30863
|
activeClass?: string | undefined;
|
|
30691
30864
|
opened?: readonly unknown[] | undefined;
|
|
30692
30865
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30693
30866
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
30694
30867
|
activeColor?: string | undefined;
|
|
30695
|
-
baseColor?: string | undefined;
|
|
30696
30868
|
"onClick:open"?: ((value: {
|
|
30697
30869
|
id: unknown;
|
|
30698
30870
|
value: boolean;
|
|
@@ -30825,10 +30997,10 @@ declare const VList: {
|
|
|
30825
30997
|
theme?: string | undefined;
|
|
30826
30998
|
rounded?: string | number | boolean | undefined;
|
|
30827
30999
|
bgColor?: string | undefined;
|
|
31000
|
+
baseColor?: string | undefined;
|
|
30828
31001
|
activeClass?: string | undefined;
|
|
30829
31002
|
opened?: readonly unknown[] | undefined;
|
|
30830
31003
|
activeColor?: string | undefined;
|
|
30831
|
-
baseColor?: string | undefined;
|
|
30832
31004
|
} & {
|
|
30833
31005
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30834
31006
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -30999,10 +31171,10 @@ declare const VList: {
|
|
|
30999
31171
|
theme?: string | undefined;
|
|
31000
31172
|
rounded?: string | number | boolean | undefined;
|
|
31001
31173
|
bgColor?: string | undefined;
|
|
31174
|
+
baseColor?: string | undefined;
|
|
31002
31175
|
activeClass?: string | undefined;
|
|
31003
31176
|
opened?: readonly unknown[] | undefined;
|
|
31004
31177
|
activeColor?: string | undefined;
|
|
31005
|
-
baseColor?: string | undefined;
|
|
31006
31178
|
} & {
|
|
31007
31179
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
31008
31180
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -31056,10 +31228,10 @@ declare const VList: {
|
|
|
31056
31228
|
theme?: string | undefined;
|
|
31057
31229
|
rounded?: string | number | boolean | undefined;
|
|
31058
31230
|
bgColor?: string | undefined;
|
|
31231
|
+
baseColor?: string | undefined;
|
|
31059
31232
|
activeClass?: string | undefined;
|
|
31060
31233
|
opened?: readonly unknown[] | undefined;
|
|
31061
31234
|
activeColor?: string | undefined;
|
|
31062
|
-
baseColor?: string | undefined;
|
|
31063
31235
|
} & {
|
|
31064
31236
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
31065
31237
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -31431,8 +31603,8 @@ declare const VListGroup: {
|
|
|
31431
31603
|
}>) => void)[] | undefined;
|
|
31432
31604
|
prependIcon?: IconValue | undefined;
|
|
31433
31605
|
appendIcon?: IconValue | undefined;
|
|
31434
|
-
activeColor?: string | undefined;
|
|
31435
31606
|
baseColor?: string | undefined;
|
|
31607
|
+
activeColor?: string | undefined;
|
|
31436
31608
|
"v-slot:activator"?: false | ((arg: {
|
|
31437
31609
|
isOpen: boolean;
|
|
31438
31610
|
props: Record<string, unknown>;
|
|
@@ -31473,8 +31645,8 @@ declare const VListGroup: {
|
|
|
31473
31645
|
class?: any;
|
|
31474
31646
|
prependIcon?: IconValue | undefined;
|
|
31475
31647
|
appendIcon?: IconValue | undefined;
|
|
31476
|
-
activeColor?: string | undefined;
|
|
31477
31648
|
baseColor?: string | undefined;
|
|
31649
|
+
activeColor?: string | undefined;
|
|
31478
31650
|
} & {
|
|
31479
31651
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31480
31652
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -31547,8 +31719,8 @@ declare const VListGroup: {
|
|
|
31547
31719
|
class?: any;
|
|
31548
31720
|
prependIcon?: IconValue | undefined;
|
|
31549
31721
|
appendIcon?: IconValue | undefined;
|
|
31550
|
-
activeColor?: string | undefined;
|
|
31551
31722
|
baseColor?: string | undefined;
|
|
31723
|
+
activeColor?: string | undefined;
|
|
31552
31724
|
} & {
|
|
31553
31725
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31554
31726
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -31588,8 +31760,8 @@ declare const VListGroup: {
|
|
|
31588
31760
|
class?: any;
|
|
31589
31761
|
prependIcon?: IconValue | undefined;
|
|
31590
31762
|
appendIcon?: IconValue | undefined;
|
|
31591
|
-
activeColor?: string | undefined;
|
|
31592
31763
|
baseColor?: string | undefined;
|
|
31764
|
+
activeColor?: string | undefined;
|
|
31593
31765
|
} & {
|
|
31594
31766
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31595
31767
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -33245,6 +33417,7 @@ declare const VMenu: {
|
|
|
33245
33417
|
maxWidth?: string | number | undefined;
|
|
33246
33418
|
minHeight?: string | number | undefined;
|
|
33247
33419
|
minWidth?: string | number | undefined;
|
|
33420
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33248
33421
|
class?: any;
|
|
33249
33422
|
$children?: vue.VNodeChild | {
|
|
33250
33423
|
default?: ((arg: {
|
|
@@ -33313,7 +33486,7 @@ declare const VMenu: {
|
|
|
33313
33486
|
[key: string]: any;
|
|
33314
33487
|
}>) => void)[] | undefined;
|
|
33315
33488
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33316
|
-
activator?:
|
|
33489
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33317
33490
|
"v-slot:activator"?: false | ((arg: {
|
|
33318
33491
|
isActive: boolean;
|
|
33319
33492
|
props: Record<string, any>;
|
|
@@ -33380,10 +33553,11 @@ declare const VMenu: {
|
|
|
33380
33553
|
maxWidth?: string | number | undefined;
|
|
33381
33554
|
minHeight?: string | number | undefined;
|
|
33382
33555
|
minWidth?: string | number | undefined;
|
|
33556
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33383
33557
|
class?: any;
|
|
33384
33558
|
theme?: string | undefined;
|
|
33385
33559
|
contentClass?: any;
|
|
33386
|
-
activator?:
|
|
33560
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33387
33561
|
openOnClick?: boolean | undefined;
|
|
33388
33562
|
openOnFocus?: boolean | undefined;
|
|
33389
33563
|
contentProps?: any;
|
|
@@ -33460,6 +33634,7 @@ declare const VMenu: {
|
|
|
33460
33634
|
maxWidth?: string | number | undefined;
|
|
33461
33635
|
minHeight?: string | number | undefined;
|
|
33462
33636
|
minWidth?: string | number | undefined;
|
|
33637
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33463
33638
|
class?: any;
|
|
33464
33639
|
onAfterLeave?: (() => any) | undefined;
|
|
33465
33640
|
$children?: vue.VNodeChild | {
|
|
@@ -33529,7 +33704,7 @@ declare const VMenu: {
|
|
|
33529
33704
|
[key: string]: any;
|
|
33530
33705
|
}>) => void)[] | undefined;
|
|
33531
33706
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33532
|
-
activator?:
|
|
33707
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33533
33708
|
"v-slot:activator"?: false | ((arg: {
|
|
33534
33709
|
isActive: boolean;
|
|
33535
33710
|
props: Record<string, any>;
|
|
@@ -33596,10 +33771,11 @@ declare const VMenu: {
|
|
|
33596
33771
|
maxWidth?: string | number | undefined;
|
|
33597
33772
|
minHeight?: string | number | undefined;
|
|
33598
33773
|
minWidth?: string | number | undefined;
|
|
33774
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33599
33775
|
class?: any;
|
|
33600
33776
|
theme?: string | undefined;
|
|
33601
33777
|
contentClass?: any;
|
|
33602
|
-
activator?:
|
|
33778
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33603
33779
|
closeDelay?: string | number | undefined;
|
|
33604
33780
|
openDelay?: string | number | undefined;
|
|
33605
33781
|
openOnClick?: boolean | undefined;
|
|
@@ -33641,6 +33817,7 @@ declare const VMenu: {
|
|
|
33641
33817
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
33642
33818
|
}, {
|
|
33643
33819
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
33820
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
33644
33821
|
animateClick: () => void;
|
|
33645
33822
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
33646
33823
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -33742,10 +33919,11 @@ declare const VMenu: {
|
|
|
33742
33919
|
maxWidth?: string | number | undefined;
|
|
33743
33920
|
minHeight?: string | number | undefined;
|
|
33744
33921
|
minWidth?: string | number | undefined;
|
|
33922
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33745
33923
|
class?: any;
|
|
33746
33924
|
theme?: string | undefined;
|
|
33747
33925
|
contentClass?: any;
|
|
33748
|
-
activator?:
|
|
33926
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33749
33927
|
closeDelay?: string | number | undefined;
|
|
33750
33928
|
openDelay?: string | number | undefined;
|
|
33751
33929
|
openOnClick?: boolean | undefined;
|
|
@@ -33787,12 +33965,13 @@ declare const VMenu: {
|
|
|
33787
33965
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
33788
33966
|
} & vue.ShallowUnwrapRef<{
|
|
33789
33967
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
33968
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
33790
33969
|
animateClick: () => void;
|
|
33791
33970
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
33792
33971
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
33793
33972
|
localTop: vue.ComputedRef<boolean>;
|
|
33794
33973
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
33795
|
-
}> & {} & 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, {
|
|
33974
|
+
}> & {} & 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, {
|
|
33796
33975
|
'update:modelValue': (value: boolean) => boolean;
|
|
33797
33976
|
}, string, {
|
|
33798
33977
|
location: Anchor;
|
|
@@ -33891,10 +34070,11 @@ declare const VMenu: {
|
|
|
33891
34070
|
maxWidth?: string | number | undefined;
|
|
33892
34071
|
minHeight?: string | number | undefined;
|
|
33893
34072
|
minWidth?: string | number | undefined;
|
|
34073
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33894
34074
|
class?: any;
|
|
33895
34075
|
theme?: string | undefined;
|
|
33896
34076
|
contentClass?: any;
|
|
33897
|
-
activator?:
|
|
34077
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33898
34078
|
openOnClick?: boolean | undefined;
|
|
33899
34079
|
openOnFocus?: boolean | undefined;
|
|
33900
34080
|
contentProps?: any;
|
|
@@ -33971,6 +34151,7 @@ declare const VMenu: {
|
|
|
33971
34151
|
maxWidth?: string | number | undefined;
|
|
33972
34152
|
minHeight?: string | number | undefined;
|
|
33973
34153
|
minWidth?: string | number | undefined;
|
|
34154
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33974
34155
|
class?: any;
|
|
33975
34156
|
onAfterLeave?: (() => any) | undefined;
|
|
33976
34157
|
$children?: vue.VNodeChild | {
|
|
@@ -34040,7 +34221,7 @@ declare const VMenu: {
|
|
|
34040
34221
|
[key: string]: any;
|
|
34041
34222
|
}>) => void)[] | undefined;
|
|
34042
34223
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
34043
|
-
activator?:
|
|
34224
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34044
34225
|
"v-slot:activator"?: false | ((arg: {
|
|
34045
34226
|
isActive: boolean;
|
|
34046
34227
|
props: Record<string, any>;
|
|
@@ -34107,10 +34288,11 @@ declare const VMenu: {
|
|
|
34107
34288
|
maxWidth?: string | number | undefined;
|
|
34108
34289
|
minHeight?: string | number | undefined;
|
|
34109
34290
|
minWidth?: string | number | undefined;
|
|
34291
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34110
34292
|
class?: any;
|
|
34111
34293
|
theme?: string | undefined;
|
|
34112
34294
|
contentClass?: any;
|
|
34113
|
-
activator?:
|
|
34295
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34114
34296
|
closeDelay?: string | number | undefined;
|
|
34115
34297
|
openDelay?: string | number | undefined;
|
|
34116
34298
|
openOnClick?: boolean | undefined;
|
|
@@ -34152,6 +34334,7 @@ declare const VMenu: {
|
|
|
34152
34334
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34153
34335
|
}, {
|
|
34154
34336
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34337
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34155
34338
|
animateClick: () => void;
|
|
34156
34339
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34157
34340
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -34253,10 +34436,11 @@ declare const VMenu: {
|
|
|
34253
34436
|
maxWidth?: string | number | undefined;
|
|
34254
34437
|
minHeight?: string | number | undefined;
|
|
34255
34438
|
minWidth?: string | number | undefined;
|
|
34439
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34256
34440
|
class?: any;
|
|
34257
34441
|
theme?: string | undefined;
|
|
34258
34442
|
contentClass?: any;
|
|
34259
|
-
activator?:
|
|
34443
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34260
34444
|
closeDelay?: string | number | undefined;
|
|
34261
34445
|
openDelay?: string | number | undefined;
|
|
34262
34446
|
openOnClick?: boolean | undefined;
|
|
@@ -34298,12 +34482,13 @@ declare const VMenu: {
|
|
|
34298
34482
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34299
34483
|
} & vue.ShallowUnwrapRef<{
|
|
34300
34484
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34485
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34301
34486
|
animateClick: () => void;
|
|
34302
34487
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34303
34488
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
34304
34489
|
localTop: vue.ComputedRef<boolean>;
|
|
34305
34490
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
34306
|
-
}> & {} & 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 & {};
|
|
34491
|
+
}> & {} & 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 & {};
|
|
34307
34492
|
__isFragment?: undefined;
|
|
34308
34493
|
__isTeleport?: undefined;
|
|
34309
34494
|
__isSuspense?: undefined;
|
|
@@ -34343,10 +34528,11 @@ declare const VMenu: {
|
|
|
34343
34528
|
maxWidth?: string | number | undefined;
|
|
34344
34529
|
minHeight?: string | number | undefined;
|
|
34345
34530
|
minWidth?: string | number | undefined;
|
|
34531
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34346
34532
|
class?: any;
|
|
34347
34533
|
theme?: string | undefined;
|
|
34348
34534
|
contentClass?: any;
|
|
34349
|
-
activator?:
|
|
34535
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34350
34536
|
openOnClick?: boolean | undefined;
|
|
34351
34537
|
openOnFocus?: boolean | undefined;
|
|
34352
34538
|
contentProps?: any;
|
|
@@ -34423,6 +34609,7 @@ declare const VMenu: {
|
|
|
34423
34609
|
maxWidth?: string | number | undefined;
|
|
34424
34610
|
minHeight?: string | number | undefined;
|
|
34425
34611
|
minWidth?: string | number | undefined;
|
|
34612
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34426
34613
|
class?: any;
|
|
34427
34614
|
onAfterLeave?: (() => any) | undefined;
|
|
34428
34615
|
$children?: vue.VNodeChild | {
|
|
@@ -34492,7 +34679,7 @@ declare const VMenu: {
|
|
|
34492
34679
|
[key: string]: any;
|
|
34493
34680
|
}>) => void)[] | undefined;
|
|
34494
34681
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
34495
|
-
activator?:
|
|
34682
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34496
34683
|
"v-slot:activator"?: false | ((arg: {
|
|
34497
34684
|
isActive: boolean;
|
|
34498
34685
|
props: Record<string, any>;
|
|
@@ -34559,10 +34746,11 @@ declare const VMenu: {
|
|
|
34559
34746
|
maxWidth?: string | number | undefined;
|
|
34560
34747
|
minHeight?: string | number | undefined;
|
|
34561
34748
|
minWidth?: string | number | undefined;
|
|
34749
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34562
34750
|
class?: any;
|
|
34563
34751
|
theme?: string | undefined;
|
|
34564
34752
|
contentClass?: any;
|
|
34565
|
-
activator?:
|
|
34753
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34566
34754
|
closeDelay?: string | number | undefined;
|
|
34567
34755
|
openDelay?: string | number | undefined;
|
|
34568
34756
|
openOnClick?: boolean | undefined;
|
|
@@ -34604,6 +34792,7 @@ declare const VMenu: {
|
|
|
34604
34792
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34605
34793
|
}, {
|
|
34606
34794
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34795
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34607
34796
|
animateClick: () => void;
|
|
34608
34797
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34609
34798
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -34705,10 +34894,11 @@ declare const VMenu: {
|
|
|
34705
34894
|
maxWidth?: string | number | undefined;
|
|
34706
34895
|
minHeight?: string | number | undefined;
|
|
34707
34896
|
minWidth?: string | number | undefined;
|
|
34897
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34708
34898
|
class?: any;
|
|
34709
34899
|
theme?: string | undefined;
|
|
34710
34900
|
contentClass?: any;
|
|
34711
|
-
activator?:
|
|
34901
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34712
34902
|
closeDelay?: string | number | undefined;
|
|
34713
34903
|
openDelay?: string | number | undefined;
|
|
34714
34904
|
openOnClick?: boolean | undefined;
|
|
@@ -34750,12 +34940,13 @@ declare const VMenu: {
|
|
|
34750
34940
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34751
34941
|
} & vue.ShallowUnwrapRef<{
|
|
34752
34942
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34943
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34753
34944
|
animateClick: () => void;
|
|
34754
34945
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34755
34946
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
34756
34947
|
localTop: vue.ComputedRef<boolean>;
|
|
34757
34948
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
34758
|
-
}> & {} & 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, {
|
|
34949
|
+
}> & {} & 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, {
|
|
34759
34950
|
'update:modelValue': (value: boolean) => boolean;
|
|
34760
34951
|
}, string, {
|
|
34761
34952
|
location: Anchor;
|
|
@@ -34840,13 +35031,14 @@ declare const VMenu: {
|
|
|
34840
35031
|
type: vue.PropType<vue.StyleValue>;
|
|
34841
35032
|
default: null;
|
|
34842
35033
|
};
|
|
35034
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
34843
35035
|
eager: BooleanConstructor;
|
|
34844
35036
|
disabled: BooleanConstructor;
|
|
34845
35037
|
class: vue.PropType<any>;
|
|
34846
35038
|
theme: StringConstructor;
|
|
34847
35039
|
contentClass: null;
|
|
34848
35040
|
modelValue: BooleanConstructor;
|
|
34849
|
-
activator: vue.PropType<
|
|
35041
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
34850
35042
|
locationStrategy: Omit<{
|
|
34851
35043
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
34852
35044
|
updateLocation: (e: Event) => void;
|
|
@@ -34953,13 +35145,14 @@ declare const VMenu: {
|
|
|
34953
35145
|
type: vue.PropType<vue.StyleValue>;
|
|
34954
35146
|
default: null;
|
|
34955
35147
|
};
|
|
35148
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
34956
35149
|
eager: BooleanConstructor;
|
|
34957
35150
|
disabled: BooleanConstructor;
|
|
34958
35151
|
class: vue.PropType<any>;
|
|
34959
35152
|
theme: StringConstructor;
|
|
34960
35153
|
contentClass: null;
|
|
34961
35154
|
modelValue: BooleanConstructor;
|
|
34962
|
-
activator: vue.PropType<
|
|
35155
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
34963
35156
|
locationStrategy: Omit<{
|
|
34964
35157
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
34965
35158
|
updateLocation: (e: Event) => void;
|
|
@@ -35120,6 +35313,7 @@ declare const VNavigationDrawer: {
|
|
|
35120
35313
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
35121
35314
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
35122
35315
|
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
35316
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35123
35317
|
"onUpdate:rail"?: ((val: boolean) => any) | undefined;
|
|
35124
35318
|
};
|
|
35125
35319
|
$attrs: {
|
|
@@ -35174,6 +35368,7 @@ declare const VNavigationDrawer: {
|
|
|
35174
35368
|
elevation?: string | number | undefined;
|
|
35175
35369
|
theme?: string | undefined;
|
|
35176
35370
|
rounded?: string | number | boolean | undefined;
|
|
35371
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35177
35372
|
} & {
|
|
35178
35373
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
35179
35374
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35281,6 +35476,7 @@ declare const VNavigationDrawer: {
|
|
|
35281
35476
|
elevation?: string | number | undefined;
|
|
35282
35477
|
theme?: string | undefined;
|
|
35283
35478
|
rounded?: string | number | boolean | undefined;
|
|
35479
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35284
35480
|
} & {
|
|
35285
35481
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
35286
35482
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35336,6 +35532,7 @@ declare const VNavigationDrawer: {
|
|
|
35336
35532
|
elevation?: string | number | undefined;
|
|
35337
35533
|
theme?: string | undefined;
|
|
35338
35534
|
rounded?: string | number | boolean | undefined;
|
|
35535
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35339
35536
|
} & {
|
|
35340
35537
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
35341
35538
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35420,6 +35617,7 @@ declare const VNavigationDrawer: {
|
|
|
35420
35617
|
type: (StringConstructor | NumberConstructor)[];
|
|
35421
35618
|
validator(v: any): boolean;
|
|
35422
35619
|
};
|
|
35620
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
35423
35621
|
class: PropType<any>;
|
|
35424
35622
|
style: {
|
|
35425
35623
|
type: PropType<vue.StyleValue>;
|
|
@@ -35486,6 +35684,7 @@ declare const VNavigationDrawer: {
|
|
|
35486
35684
|
type: (StringConstructor | NumberConstructor)[];
|
|
35487
35685
|
validator(v: any): boolean;
|
|
35488
35686
|
};
|
|
35687
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
35489
35688
|
class: PropType<any>;
|
|
35490
35689
|
style: {
|
|
35491
35690
|
type: PropType<vue.StyleValue>;
|
|
@@ -35574,6 +35773,7 @@ declare const VOverlay: {
|
|
|
35574
35773
|
maxWidth?: string | number | undefined;
|
|
35575
35774
|
minHeight?: string | number | undefined;
|
|
35576
35775
|
minWidth?: string | number | undefined;
|
|
35776
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35577
35777
|
class?: any;
|
|
35578
35778
|
onAfterLeave?: (() => any) | undefined;
|
|
35579
35779
|
$children?: vue.VNodeChild | {
|
|
@@ -35643,7 +35843,7 @@ declare const VOverlay: {
|
|
|
35643
35843
|
[key: string]: any;
|
|
35644
35844
|
}>) => void)[] | undefined;
|
|
35645
35845
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
35646
|
-
activator?:
|
|
35846
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35647
35847
|
"v-slot:activator"?: false | ((arg: {
|
|
35648
35848
|
isActive: boolean;
|
|
35649
35849
|
props: Record<string, any>;
|
|
@@ -35710,10 +35910,11 @@ declare const VOverlay: {
|
|
|
35710
35910
|
maxWidth?: string | number | undefined;
|
|
35711
35911
|
minHeight?: string | number | undefined;
|
|
35712
35912
|
minWidth?: string | number | undefined;
|
|
35913
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35713
35914
|
class?: any;
|
|
35714
35915
|
theme?: string | undefined;
|
|
35715
35916
|
contentClass?: any;
|
|
35716
|
-
activator?:
|
|
35917
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35717
35918
|
closeDelay?: string | number | undefined;
|
|
35718
35919
|
openDelay?: string | number | undefined;
|
|
35719
35920
|
openOnClick?: boolean | undefined;
|
|
@@ -35755,6 +35956,7 @@ declare const VOverlay: {
|
|
|
35755
35956
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35756
35957
|
}, {
|
|
35757
35958
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
35959
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35758
35960
|
animateClick: () => void;
|
|
35759
35961
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35760
35962
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -35856,10 +36058,11 @@ declare const VOverlay: {
|
|
|
35856
36058
|
maxWidth?: string | number | undefined;
|
|
35857
36059
|
minHeight?: string | number | undefined;
|
|
35858
36060
|
minWidth?: string | number | undefined;
|
|
36061
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35859
36062
|
class?: any;
|
|
35860
36063
|
theme?: string | undefined;
|
|
35861
36064
|
contentClass?: any;
|
|
35862
|
-
activator?:
|
|
36065
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35863
36066
|
closeDelay?: string | number | undefined;
|
|
35864
36067
|
openDelay?: string | number | undefined;
|
|
35865
36068
|
openOnClick?: boolean | undefined;
|
|
@@ -35901,6 +36104,7 @@ declare const VOverlay: {
|
|
|
35901
36104
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35902
36105
|
} & vue.ShallowUnwrapRef<{
|
|
35903
36106
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
36107
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35904
36108
|
animateClick: () => void;
|
|
35905
36109
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35906
36110
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -35943,10 +36147,11 @@ declare const VOverlay: {
|
|
|
35943
36147
|
maxWidth?: string | number | undefined;
|
|
35944
36148
|
minHeight?: string | number | undefined;
|
|
35945
36149
|
minWidth?: string | number | undefined;
|
|
36150
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35946
36151
|
class?: any;
|
|
35947
36152
|
theme?: string | undefined;
|
|
35948
36153
|
contentClass?: any;
|
|
35949
|
-
activator?:
|
|
36154
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35950
36155
|
closeDelay?: string | number | undefined;
|
|
35951
36156
|
openDelay?: string | number | undefined;
|
|
35952
36157
|
openOnClick?: boolean | undefined;
|
|
@@ -35988,6 +36193,7 @@ declare const VOverlay: {
|
|
|
35988
36193
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35989
36194
|
}, {
|
|
35990
36195
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
36196
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35991
36197
|
animateClick: () => void;
|
|
35992
36198
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35993
36199
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -36080,7 +36286,8 @@ declare const VOverlay: {
|
|
|
36080
36286
|
};
|
|
36081
36287
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
36082
36288
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
36083
|
-
|
|
36289
|
+
target: PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
36290
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
36084
36291
|
activatorProps: {
|
|
36085
36292
|
type: PropType<Record<string, any>>;
|
|
36086
36293
|
default: () => {};
|
|
@@ -36161,7 +36368,8 @@ declare const VOverlay: {
|
|
|
36161
36368
|
};
|
|
36162
36369
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
36163
36370
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
36164
|
-
|
|
36371
|
+
target: PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
36372
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
36165
36373
|
activatorProps: {
|
|
36166
36374
|
type: PropType<Record<string, any>>;
|
|
36167
36375
|
default: () => {};
|
|
@@ -37909,6 +38117,7 @@ declare const VRadio: {
|
|
|
37909
38117
|
}>) => void)[] | undefined;
|
|
37910
38118
|
modelValue?: any;
|
|
37911
38119
|
defaultsTarget?: string | undefined;
|
|
38120
|
+
baseColor?: string | undefined;
|
|
37912
38121
|
trueValue?: any;
|
|
37913
38122
|
falseValue?: any;
|
|
37914
38123
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -37967,6 +38176,7 @@ declare const VRadio: {
|
|
|
37967
38176
|
theme?: string | undefined;
|
|
37968
38177
|
modelValue?: any;
|
|
37969
38178
|
defaultsTarget?: string | undefined;
|
|
38179
|
+
baseColor?: string | undefined;
|
|
37970
38180
|
trueValue?: any;
|
|
37971
38181
|
falseValue?: any;
|
|
37972
38182
|
} & {
|
|
@@ -38076,6 +38286,7 @@ declare const VRadio: {
|
|
|
38076
38286
|
theme?: string | undefined;
|
|
38077
38287
|
modelValue?: any;
|
|
38078
38288
|
defaultsTarget?: string | undefined;
|
|
38289
|
+
baseColor?: string | undefined;
|
|
38079
38290
|
trueValue?: any;
|
|
38080
38291
|
falseValue?: any;
|
|
38081
38292
|
} & {
|
|
@@ -38141,6 +38352,7 @@ declare const VRadio: {
|
|
|
38141
38352
|
theme?: string | undefined;
|
|
38142
38353
|
modelValue?: any;
|
|
38143
38354
|
defaultsTarget?: string | undefined;
|
|
38355
|
+
baseColor?: string | undefined;
|
|
38144
38356
|
trueValue?: any;
|
|
38145
38357
|
falseValue?: any;
|
|
38146
38358
|
} & {
|
|
@@ -38253,6 +38465,7 @@ declare const VRadio: {
|
|
|
38253
38465
|
default: typeof deepEqual;
|
|
38254
38466
|
};
|
|
38255
38467
|
label: StringConstructor;
|
|
38468
|
+
baseColor: StringConstructor;
|
|
38256
38469
|
trueValue: null;
|
|
38257
38470
|
falseValue: null;
|
|
38258
38471
|
value: null;
|
|
@@ -38302,6 +38515,7 @@ declare const VRadio: {
|
|
|
38302
38515
|
default: typeof deepEqual;
|
|
38303
38516
|
};
|
|
38304
38517
|
label: StringConstructor;
|
|
38518
|
+
baseColor: StringConstructor;
|
|
38305
38519
|
trueValue: null;
|
|
38306
38520
|
falseValue: null;
|
|
38307
38521
|
value: null;
|
|
@@ -38993,6 +39207,7 @@ declare const VRangeSlider: {
|
|
|
38993
39207
|
rounded?: string | number | boolean | undefined;
|
|
38994
39208
|
density?: Density | undefined;
|
|
38995
39209
|
modelValue?: readonly (string | number)[] | undefined;
|
|
39210
|
+
ripple?: boolean | undefined;
|
|
38996
39211
|
focused?: boolean | undefined;
|
|
38997
39212
|
errorMessages?: string | readonly string[] | undefined;
|
|
38998
39213
|
maxErrors?: string | number | undefined;
|
|
@@ -39167,6 +39382,7 @@ declare const VRangeSlider: {
|
|
|
39167
39382
|
messages: string | readonly string[];
|
|
39168
39383
|
density: Density;
|
|
39169
39384
|
modelValue: readonly (string | number)[];
|
|
39385
|
+
ripple: boolean;
|
|
39170
39386
|
focused: boolean;
|
|
39171
39387
|
errorMessages: string | readonly string[];
|
|
39172
39388
|
maxErrors: string | number;
|
|
@@ -39269,6 +39485,7 @@ declare const VRangeSlider: {
|
|
|
39269
39485
|
rounded: string | number | boolean;
|
|
39270
39486
|
density: Density;
|
|
39271
39487
|
modelValue: readonly (string | number)[];
|
|
39488
|
+
ripple: boolean;
|
|
39272
39489
|
focused: boolean;
|
|
39273
39490
|
errorMessages: string | readonly string[];
|
|
39274
39491
|
maxErrors: string | number;
|
|
@@ -39345,6 +39562,7 @@ declare const VRangeSlider: {
|
|
|
39345
39562
|
messages: string | readonly string[];
|
|
39346
39563
|
density: Density;
|
|
39347
39564
|
modelValue: readonly (string | number)[];
|
|
39565
|
+
ripple: boolean;
|
|
39348
39566
|
focused: boolean;
|
|
39349
39567
|
errorMessages: string | readonly string[];
|
|
39350
39568
|
maxErrors: string | number;
|
|
@@ -39445,6 +39663,7 @@ declare const VRangeSlider: {
|
|
|
39445
39663
|
messages: string | readonly string[];
|
|
39446
39664
|
density: Density;
|
|
39447
39665
|
modelValue: readonly (string | number)[];
|
|
39666
|
+
ripple: boolean;
|
|
39448
39667
|
focused: boolean;
|
|
39449
39668
|
errorMessages: string | readonly string[];
|
|
39450
39669
|
maxErrors: string | number;
|
|
@@ -39547,6 +39766,7 @@ declare const VRangeSlider: {
|
|
|
39547
39766
|
rounded: string | number | boolean;
|
|
39548
39767
|
density: Density;
|
|
39549
39768
|
modelValue: readonly (string | number)[];
|
|
39769
|
+
ripple: boolean;
|
|
39550
39770
|
focused: boolean;
|
|
39551
39771
|
errorMessages: string | readonly string[];
|
|
39552
39772
|
maxErrors: string | number;
|
|
@@ -39594,6 +39814,10 @@ declare const VRangeSlider: {
|
|
|
39594
39814
|
type: PropType<readonly (string | number)[]>;
|
|
39595
39815
|
default: () => number[];
|
|
39596
39816
|
};
|
|
39817
|
+
ripple: {
|
|
39818
|
+
type: BooleanConstructor;
|
|
39819
|
+
default: boolean;
|
|
39820
|
+
};
|
|
39597
39821
|
elevation: Omit<{
|
|
39598
39822
|
type: (StringConstructor | NumberConstructor)[];
|
|
39599
39823
|
validator(v: any): boolean;
|
|
@@ -39711,6 +39935,10 @@ declare const VRangeSlider: {
|
|
|
39711
39935
|
type: PropType<readonly (string | number)[]>;
|
|
39712
39936
|
default: () => number[];
|
|
39713
39937
|
};
|
|
39938
|
+
ripple: {
|
|
39939
|
+
type: BooleanConstructor;
|
|
39940
|
+
default: boolean;
|
|
39941
|
+
};
|
|
39714
39942
|
elevation: Omit<{
|
|
39715
39943
|
type: (StringConstructor | NumberConstructor)[];
|
|
39716
39944
|
validator(v: any): boolean;
|
|
@@ -40593,6 +40821,7 @@ declare const VSelect: {
|
|
|
40593
40821
|
bgColor?: string | undefined;
|
|
40594
40822
|
prependIcon?: IconValue | undefined;
|
|
40595
40823
|
appendIcon?: IconValue | undefined;
|
|
40824
|
+
baseColor?: string | undefined;
|
|
40596
40825
|
prependInnerIcon?: IconValue | undefined;
|
|
40597
40826
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
40598
40827
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -40603,7 +40832,6 @@ declare const VSelect: {
|
|
|
40603
40832
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
40604
40833
|
hint?: string | undefined;
|
|
40605
40834
|
hideDetails?: boolean | "auto" | undefined;
|
|
40606
|
-
baseColor?: string | undefined;
|
|
40607
40835
|
suffix?: string | undefined;
|
|
40608
40836
|
counterValue?: ((value: any) => number) | undefined;
|
|
40609
40837
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -40645,6 +40873,7 @@ declare const VSelect: {
|
|
|
40645
40873
|
maxWidth?: string | number | undefined;
|
|
40646
40874
|
minHeight?: string | number | undefined;
|
|
40647
40875
|
minWidth?: string | number | undefined;
|
|
40876
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
40648
40877
|
class?: any;
|
|
40649
40878
|
$children?: vue.VNodeChild | {
|
|
40650
40879
|
default?: ((arg: {
|
|
@@ -40713,7 +40942,7 @@ declare const VSelect: {
|
|
|
40713
40942
|
[key: string]: any;
|
|
40714
40943
|
}>) => void)[] | undefined;
|
|
40715
40944
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40716
|
-
activator?:
|
|
40945
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
40717
40946
|
"v-slot:activator"?: false | ((arg: {
|
|
40718
40947
|
isActive: boolean;
|
|
40719
40948
|
props: Record<string, any>;
|
|
@@ -40857,6 +41086,7 @@ declare const VSelect: {
|
|
|
40857
41086
|
bgColor?: string | undefined;
|
|
40858
41087
|
prependIcon?: IconValue | undefined;
|
|
40859
41088
|
appendIcon?: IconValue | undefined;
|
|
41089
|
+
baseColor?: string | undefined;
|
|
40860
41090
|
prependInnerIcon?: IconValue | undefined;
|
|
40861
41091
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
40862
41092
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -40868,7 +41098,6 @@ declare const VSelect: {
|
|
|
40868
41098
|
centerAffix?: boolean | undefined;
|
|
40869
41099
|
hint?: string | undefined;
|
|
40870
41100
|
hideDetails?: boolean | "auto" | undefined;
|
|
40871
|
-
baseColor?: string | undefined;
|
|
40872
41101
|
suffix?: string | undefined;
|
|
40873
41102
|
counterValue?: ((value: any) => number) | undefined;
|
|
40874
41103
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -40910,6 +41139,7 @@ declare const VSelect: {
|
|
|
40910
41139
|
maxWidth?: string | number | undefined;
|
|
40911
41140
|
minHeight?: string | number | undefined;
|
|
40912
41141
|
minWidth?: string | number | undefined;
|
|
41142
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
40913
41143
|
class?: any;
|
|
40914
41144
|
$children?: vue.VNodeChild | {
|
|
40915
41145
|
default?: ((arg: {
|
|
@@ -40978,7 +41208,7 @@ declare const VSelect: {
|
|
|
40978
41208
|
[key: string]: any;
|
|
40979
41209
|
}>) => void)[] | undefined;
|
|
40980
41210
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40981
|
-
activator?:
|
|
41211
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
40982
41212
|
"v-slot:activator"?: false | ((arg: {
|
|
40983
41213
|
isActive: boolean;
|
|
40984
41214
|
props: Record<string, any>;
|
|
@@ -41186,6 +41416,7 @@ declare const VSelect: {
|
|
|
41186
41416
|
bgColor?: string | undefined;
|
|
41187
41417
|
prependIcon?: IconValue | undefined;
|
|
41188
41418
|
appendIcon?: IconValue | undefined;
|
|
41419
|
+
baseColor?: string | undefined;
|
|
41189
41420
|
prependInnerIcon?: IconValue | undefined;
|
|
41190
41421
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
41191
41422
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -41197,7 +41428,6 @@ declare const VSelect: {
|
|
|
41197
41428
|
centerAffix?: boolean | undefined;
|
|
41198
41429
|
hint?: string | undefined;
|
|
41199
41430
|
hideDetails?: boolean | "auto" | undefined;
|
|
41200
|
-
baseColor?: string | undefined;
|
|
41201
41431
|
suffix?: string | undefined;
|
|
41202
41432
|
counterValue?: ((value: any) => number) | undefined;
|
|
41203
41433
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -41239,6 +41469,7 @@ declare const VSelect: {
|
|
|
41239
41469
|
maxWidth?: string | number | undefined;
|
|
41240
41470
|
minHeight?: string | number | undefined;
|
|
41241
41471
|
minWidth?: string | number | undefined;
|
|
41472
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41242
41473
|
class?: any;
|
|
41243
41474
|
$children?: vue.VNodeChild | {
|
|
41244
41475
|
default?: ((arg: {
|
|
@@ -41307,7 +41538,7 @@ declare const VSelect: {
|
|
|
41307
41538
|
[key: string]: any;
|
|
41308
41539
|
}>) => void)[] | undefined;
|
|
41309
41540
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41310
|
-
activator?:
|
|
41541
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41311
41542
|
"v-slot:activator"?: false | ((arg: {
|
|
41312
41543
|
isActive: boolean;
|
|
41313
41544
|
props: Record<string, any>;
|
|
@@ -41386,6 +41617,7 @@ declare const VSelect: {
|
|
|
41386
41617
|
bgColor?: string | undefined;
|
|
41387
41618
|
prependIcon?: IconValue | undefined;
|
|
41388
41619
|
appendIcon?: IconValue | undefined;
|
|
41620
|
+
baseColor?: string | undefined;
|
|
41389
41621
|
prependInnerIcon?: IconValue | undefined;
|
|
41390
41622
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
41391
41623
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -41397,7 +41629,6 @@ declare const VSelect: {
|
|
|
41397
41629
|
centerAffix?: boolean | undefined;
|
|
41398
41630
|
hint?: string | undefined;
|
|
41399
41631
|
hideDetails?: boolean | "auto" | undefined;
|
|
41400
|
-
baseColor?: string | undefined;
|
|
41401
41632
|
suffix?: string | undefined;
|
|
41402
41633
|
counterValue?: ((value: any) => number) | undefined;
|
|
41403
41634
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -41439,6 +41670,7 @@ declare const VSelect: {
|
|
|
41439
41670
|
maxWidth?: string | number | undefined;
|
|
41440
41671
|
minHeight?: string | number | undefined;
|
|
41441
41672
|
minWidth?: string | number | undefined;
|
|
41673
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41442
41674
|
class?: any;
|
|
41443
41675
|
$children?: vue.VNodeChild | {
|
|
41444
41676
|
default?: ((arg: {
|
|
@@ -41507,7 +41739,7 @@ declare const VSelect: {
|
|
|
41507
41739
|
[key: string]: any;
|
|
41508
41740
|
}>) => void)[] | undefined;
|
|
41509
41741
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41510
|
-
activator?:
|
|
41742
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41511
41743
|
"v-slot:activator"?: false | ((arg: {
|
|
41512
41744
|
isActive: boolean;
|
|
41513
41745
|
props: Record<string, any>;
|
|
@@ -41765,6 +41997,7 @@ declare const VSelect: {
|
|
|
41765
41997
|
bgColor: StringConstructor;
|
|
41766
41998
|
prependIcon: PropType<IconValue>;
|
|
41767
41999
|
appendIcon: PropType<IconValue>;
|
|
42000
|
+
baseColor: StringConstructor;
|
|
41768
42001
|
clearIcon: {
|
|
41769
42002
|
type: PropType<IconValue>;
|
|
41770
42003
|
default: string;
|
|
@@ -41797,7 +42030,6 @@ declare const VSelect: {
|
|
|
41797
42030
|
hint: StringConstructor;
|
|
41798
42031
|
persistentHint: BooleanConstructor;
|
|
41799
42032
|
hideDetails: PropType<boolean | "auto">;
|
|
41800
|
-
baseColor: StringConstructor;
|
|
41801
42033
|
clearable: BooleanConstructor;
|
|
41802
42034
|
persistentClear: BooleanConstructor;
|
|
41803
42035
|
singleLine: BooleanConstructor;
|
|
@@ -41887,6 +42119,7 @@ declare const VSelect: {
|
|
|
41887
42119
|
maxWidth?: string | number | undefined;
|
|
41888
42120
|
minHeight?: string | number | undefined;
|
|
41889
42121
|
minWidth?: string | number | undefined;
|
|
42122
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41890
42123
|
class?: any;
|
|
41891
42124
|
$children?: vue.VNodeChild | {
|
|
41892
42125
|
default?: ((arg: {
|
|
@@ -41955,7 +42188,7 @@ declare const VSelect: {
|
|
|
41955
42188
|
[key: string]: any;
|
|
41956
42189
|
}>) => void)[] | undefined;
|
|
41957
42190
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41958
|
-
activator?:
|
|
42191
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41959
42192
|
"v-slot:activator"?: false | ((arg: {
|
|
41960
42193
|
isActive: boolean;
|
|
41961
42194
|
props: Record<string, any>;
|
|
@@ -42059,6 +42292,7 @@ declare const VSelect: {
|
|
|
42059
42292
|
bgColor: StringConstructor;
|
|
42060
42293
|
prependIcon: PropType<IconValue>;
|
|
42061
42294
|
appendIcon: PropType<IconValue>;
|
|
42295
|
+
baseColor: StringConstructor;
|
|
42062
42296
|
clearIcon: {
|
|
42063
42297
|
type: PropType<IconValue>;
|
|
42064
42298
|
default: string;
|
|
@@ -42091,7 +42325,6 @@ declare const VSelect: {
|
|
|
42091
42325
|
hint: StringConstructor;
|
|
42092
42326
|
persistentHint: BooleanConstructor;
|
|
42093
42327
|
hideDetails: PropType<boolean | "auto">;
|
|
42094
|
-
baseColor: StringConstructor;
|
|
42095
42328
|
clearable: BooleanConstructor;
|
|
42096
42329
|
persistentClear: BooleanConstructor;
|
|
42097
42330
|
singleLine: BooleanConstructor;
|
|
@@ -42181,6 +42414,7 @@ declare const VSelect: {
|
|
|
42181
42414
|
maxWidth?: string | number | undefined;
|
|
42182
42415
|
minHeight?: string | number | undefined;
|
|
42183
42416
|
minWidth?: string | number | undefined;
|
|
42417
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
42184
42418
|
class?: any;
|
|
42185
42419
|
$children?: vue.VNodeChild | {
|
|
42186
42420
|
default?: ((arg: {
|
|
@@ -42249,7 +42483,7 @@ declare const VSelect: {
|
|
|
42249
42483
|
[key: string]: any;
|
|
42250
42484
|
}>) => void)[] | undefined;
|
|
42251
42485
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
42252
|
-
activator?:
|
|
42486
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
42253
42487
|
"v-slot:activator"?: false | ((arg: {
|
|
42254
42488
|
isActive: boolean;
|
|
42255
42489
|
props: Record<string, any>;
|
|
@@ -42625,6 +42859,7 @@ declare const VSlideGroup: {
|
|
|
42625
42859
|
[key: string]: any;
|
|
42626
42860
|
}>) => void)[] | undefined;
|
|
42627
42861
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42862
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42628
42863
|
showArrows?: string | boolean | undefined;
|
|
42629
42864
|
"v-slot:next"?: false | ((arg: SlideGroupSlot) => vue.VNodeChild) | undefined;
|
|
42630
42865
|
"v-slot:prev"?: false | ((arg: SlideGroupSlot) => vue.VNodeChild) | undefined;
|
|
@@ -42666,6 +42901,7 @@ declare const VSlideGroup: {
|
|
|
42666
42901
|
class?: any;
|
|
42667
42902
|
mandatory?: boolean | "force" | undefined;
|
|
42668
42903
|
modelValue?: any;
|
|
42904
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42669
42905
|
showArrows?: string | boolean | undefined;
|
|
42670
42906
|
} & {
|
|
42671
42907
|
$children?: vue.VNodeChild | {
|
|
@@ -42749,6 +42985,7 @@ declare const VSlideGroup: {
|
|
|
42749
42985
|
class?: any;
|
|
42750
42986
|
mandatory?: boolean | "force" | undefined;
|
|
42751
42987
|
modelValue?: any;
|
|
42988
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42752
42989
|
showArrows?: string | boolean | undefined;
|
|
42753
42990
|
} & {
|
|
42754
42991
|
$children?: vue.VNodeChild | {
|
|
@@ -42792,6 +43029,7 @@ declare const VSlideGroup: {
|
|
|
42792
43029
|
class?: any;
|
|
42793
43030
|
mandatory?: boolean | "force" | undefined;
|
|
42794
43031
|
modelValue?: any;
|
|
43032
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42795
43033
|
showArrows?: string | boolean | undefined;
|
|
42796
43034
|
} & {
|
|
42797
43035
|
$children?: vue.VNodeChild | {
|
|
@@ -42856,6 +43094,7 @@ declare const VSlideGroup: {
|
|
|
42856
43094
|
type: StringConstructor;
|
|
42857
43095
|
default: string;
|
|
42858
43096
|
};
|
|
43097
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
42859
43098
|
class: PropType<any>;
|
|
42860
43099
|
style: {
|
|
42861
43100
|
type: PropType<vue.StyleValue>;
|
|
@@ -42899,6 +43138,7 @@ declare const VSlideGroup: {
|
|
|
42899
43138
|
type: StringConstructor;
|
|
42900
43139
|
default: string;
|
|
42901
43140
|
};
|
|
43141
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
42902
43142
|
class: PropType<any>;
|
|
42903
43143
|
style: {
|
|
42904
43144
|
type: PropType<vue.StyleValue>;
|
|
@@ -43237,6 +43477,7 @@ declare const VSlider: {
|
|
|
43237
43477
|
rounded?: string | number | boolean | undefined;
|
|
43238
43478
|
density?: Density | undefined;
|
|
43239
43479
|
modelValue?: string | number | undefined;
|
|
43480
|
+
ripple?: boolean | undefined;
|
|
43240
43481
|
focused?: boolean | undefined;
|
|
43241
43482
|
errorMessages?: string | readonly string[] | undefined;
|
|
43242
43483
|
maxErrors?: string | number | undefined;
|
|
@@ -43410,6 +43651,7 @@ declare const VSlider: {
|
|
|
43410
43651
|
messages: string | readonly string[];
|
|
43411
43652
|
density: Density;
|
|
43412
43653
|
modelValue: string | number;
|
|
43654
|
+
ripple: boolean;
|
|
43413
43655
|
focused: boolean;
|
|
43414
43656
|
errorMessages: string | readonly string[];
|
|
43415
43657
|
maxErrors: string | number;
|
|
@@ -43511,6 +43753,7 @@ declare const VSlider: {
|
|
|
43511
43753
|
rounded: string | number | boolean;
|
|
43512
43754
|
density: Density;
|
|
43513
43755
|
modelValue: string | number;
|
|
43756
|
+
ripple: boolean;
|
|
43514
43757
|
focused: boolean;
|
|
43515
43758
|
errorMessages: string | readonly string[];
|
|
43516
43759
|
maxErrors: string | number;
|
|
@@ -43586,6 +43829,7 @@ declare const VSlider: {
|
|
|
43586
43829
|
messages: string | readonly string[];
|
|
43587
43830
|
density: Density;
|
|
43588
43831
|
modelValue: string | number;
|
|
43832
|
+
ripple: boolean;
|
|
43589
43833
|
focused: boolean;
|
|
43590
43834
|
errorMessages: string | readonly string[];
|
|
43591
43835
|
maxErrors: string | number;
|
|
@@ -43685,6 +43929,7 @@ declare const VSlider: {
|
|
|
43685
43929
|
messages: string | readonly string[];
|
|
43686
43930
|
density: Density;
|
|
43687
43931
|
modelValue: string | number;
|
|
43932
|
+
ripple: boolean;
|
|
43688
43933
|
focused: boolean;
|
|
43689
43934
|
errorMessages: string | readonly string[];
|
|
43690
43935
|
maxErrors: string | number;
|
|
@@ -43786,6 +44031,7 @@ declare const VSlider: {
|
|
|
43786
44031
|
rounded: string | number | boolean;
|
|
43787
44032
|
density: Density;
|
|
43788
44033
|
modelValue: string | number;
|
|
44034
|
+
ripple: boolean;
|
|
43789
44035
|
focused: boolean;
|
|
43790
44036
|
errorMessages: string | readonly string[];
|
|
43791
44037
|
maxErrors: string | number;
|
|
@@ -43890,6 +44136,10 @@ declare const VSlider: {
|
|
|
43890
44136
|
};
|
|
43891
44137
|
'onClick:prepend': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
43892
44138
|
'onClick:append': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
44139
|
+
ripple: {
|
|
44140
|
+
type: BooleanConstructor;
|
|
44141
|
+
default: boolean;
|
|
44142
|
+
};
|
|
43893
44143
|
elevation: Omit<{
|
|
43894
44144
|
type: (StringConstructor | NumberConstructor)[];
|
|
43895
44145
|
validator(v: any): boolean;
|
|
@@ -44006,6 +44256,10 @@ declare const VSlider: {
|
|
|
44006
44256
|
};
|
|
44007
44257
|
'onClick:prepend': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
44008
44258
|
'onClick:append': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
44259
|
+
ripple: {
|
|
44260
|
+
type: BooleanConstructor;
|
|
44261
|
+
default: boolean;
|
|
44262
|
+
};
|
|
44009
44263
|
elevation: Omit<{
|
|
44010
44264
|
type: (StringConstructor | NumberConstructor)[];
|
|
44011
44265
|
validator(v: any): boolean;
|
|
@@ -44103,6 +44357,7 @@ declare const VSnackbar: {
|
|
|
44103
44357
|
minHeight?: string | number | undefined;
|
|
44104
44358
|
minWidth?: string | number | undefined;
|
|
44105
44359
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
44360
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44106
44361
|
class?: any;
|
|
44107
44362
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
44108
44363
|
activator?: ((arg: {
|
|
@@ -44115,6 +44370,7 @@ declare const VSnackbar: {
|
|
|
44115
44370
|
ref?: vue.VNodeRef | undefined;
|
|
44116
44371
|
ref_for?: boolean | undefined;
|
|
44117
44372
|
ref_key?: string | undefined;
|
|
44373
|
+
timer?: string | boolean | undefined;
|
|
44118
44374
|
theme?: string | undefined;
|
|
44119
44375
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
44120
44376
|
'v-slots'?: {
|
|
@@ -44165,7 +44421,7 @@ declare const VSnackbar: {
|
|
|
44165
44421
|
[key: string]: any;
|
|
44166
44422
|
}>) => void)[] | undefined;
|
|
44167
44423
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
44168
|
-
activator?:
|
|
44424
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44169
44425
|
"v-slot:activator"?: false | ((arg: {
|
|
44170
44426
|
isActive: boolean;
|
|
44171
44427
|
props: Record<string, any>;
|
|
@@ -44234,11 +44490,13 @@ declare const VSnackbar: {
|
|
|
44234
44490
|
minHeight?: string | number | undefined;
|
|
44235
44491
|
minWidth?: string | number | undefined;
|
|
44236
44492
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
44493
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44237
44494
|
class?: any;
|
|
44495
|
+
timer?: string | boolean | undefined;
|
|
44238
44496
|
theme?: string | undefined;
|
|
44239
44497
|
contentClass?: any;
|
|
44240
44498
|
rounded?: string | number | boolean | undefined;
|
|
44241
|
-
activator?:
|
|
44499
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44242
44500
|
closeDelay?: string | number | undefined;
|
|
44243
44501
|
openDelay?: string | number | undefined;
|
|
44244
44502
|
openOnClick?: boolean | undefined;
|
|
@@ -44309,6 +44567,7 @@ declare const VSnackbar: {
|
|
|
44309
44567
|
maxWidth?: string | number | undefined;
|
|
44310
44568
|
minHeight?: string | number | undefined;
|
|
44311
44569
|
minWidth?: string | number | undefined;
|
|
44570
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44312
44571
|
class?: any;
|
|
44313
44572
|
onAfterLeave?: (() => any) | undefined;
|
|
44314
44573
|
$children?: vue.VNodeChild | {
|
|
@@ -44378,7 +44637,7 @@ declare const VSnackbar: {
|
|
|
44378
44637
|
[key: string]: any;
|
|
44379
44638
|
}>) => void)[] | undefined;
|
|
44380
44639
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44381
|
-
activator?:
|
|
44640
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44382
44641
|
"v-slot:activator"?: false | ((arg: {
|
|
44383
44642
|
isActive: boolean;
|
|
44384
44643
|
props: Record<string, any>;
|
|
@@ -44445,10 +44704,11 @@ declare const VSnackbar: {
|
|
|
44445
44704
|
maxWidth?: string | number | undefined;
|
|
44446
44705
|
minHeight?: string | number | undefined;
|
|
44447
44706
|
minWidth?: string | number | undefined;
|
|
44707
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44448
44708
|
class?: any;
|
|
44449
44709
|
theme?: string | undefined;
|
|
44450
44710
|
contentClass?: any;
|
|
44451
|
-
activator?:
|
|
44711
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44452
44712
|
closeDelay?: string | number | undefined;
|
|
44453
44713
|
openDelay?: string | number | undefined;
|
|
44454
44714
|
openOnClick?: boolean | undefined;
|
|
@@ -44490,6 +44750,7 @@ declare const VSnackbar: {
|
|
|
44490
44750
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44491
44751
|
}, {
|
|
44492
44752
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
44753
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44493
44754
|
animateClick: () => void;
|
|
44494
44755
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44495
44756
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -44556,7 +44817,7 @@ declare const VSnackbar: {
|
|
|
44556
44817
|
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;
|
|
44557
44818
|
};
|
|
44558
44819
|
$forceUpdate: () => void;
|
|
44559
|
-
$nextTick: typeof
|
|
44820
|
+
$nextTick: typeof nextTick;
|
|
44560
44821
|
$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;
|
|
44561
44822
|
} & {
|
|
44562
44823
|
absolute: boolean;
|
|
@@ -44591,10 +44852,11 @@ declare const VSnackbar: {
|
|
|
44591
44852
|
maxWidth?: string | number | undefined;
|
|
44592
44853
|
minHeight?: string | number | undefined;
|
|
44593
44854
|
minWidth?: string | number | undefined;
|
|
44855
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44594
44856
|
class?: any;
|
|
44595
44857
|
theme?: string | undefined;
|
|
44596
44858
|
contentClass?: any;
|
|
44597
|
-
activator?:
|
|
44859
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44598
44860
|
closeDelay?: string | number | undefined;
|
|
44599
44861
|
openDelay?: string | number | undefined;
|
|
44600
44862
|
openOnClick?: boolean | undefined;
|
|
@@ -44636,12 +44898,13 @@ declare const VSnackbar: {
|
|
|
44636
44898
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44637
44899
|
} & vue.ShallowUnwrapRef<{
|
|
44638
44900
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
44901
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44639
44902
|
animateClick: () => void;
|
|
44640
44903
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44641
44904
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
44642
44905
|
localTop: vue.ComputedRef<boolean>;
|
|
44643
44906
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
44644
|
-
}> & {} & 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, {
|
|
44907
|
+
}> & {} & 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, {
|
|
44645
44908
|
'update:modelValue': (v: boolean) => boolean;
|
|
44646
44909
|
}, string, {
|
|
44647
44910
|
absolute: boolean;
|
|
@@ -44701,7 +44964,7 @@ declare const VSnackbar: {
|
|
|
44701
44964
|
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;
|
|
44702
44965
|
};
|
|
44703
44966
|
$forceUpdate: () => void;
|
|
44704
|
-
$nextTick: typeof
|
|
44967
|
+
$nextTick: typeof nextTick;
|
|
44705
44968
|
$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;
|
|
44706
44969
|
} & {
|
|
44707
44970
|
absolute: boolean;
|
|
@@ -44737,11 +45000,13 @@ declare const VSnackbar: {
|
|
|
44737
45000
|
minHeight?: string | number | undefined;
|
|
44738
45001
|
minWidth?: string | number | undefined;
|
|
44739
45002
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
45003
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44740
45004
|
class?: any;
|
|
45005
|
+
timer?: string | boolean | undefined;
|
|
44741
45006
|
theme?: string | undefined;
|
|
44742
45007
|
contentClass?: any;
|
|
44743
45008
|
rounded?: string | number | boolean | undefined;
|
|
44744
|
-
activator?:
|
|
45009
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44745
45010
|
closeDelay?: string | number | undefined;
|
|
44746
45011
|
openDelay?: string | number | undefined;
|
|
44747
45012
|
openOnClick?: boolean | undefined;
|
|
@@ -44812,6 +45077,7 @@ declare const VSnackbar: {
|
|
|
44812
45077
|
maxWidth?: string | number | undefined;
|
|
44813
45078
|
minHeight?: string | number | undefined;
|
|
44814
45079
|
minWidth?: string | number | undefined;
|
|
45080
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44815
45081
|
class?: any;
|
|
44816
45082
|
onAfterLeave?: (() => any) | undefined;
|
|
44817
45083
|
$children?: vue.VNodeChild | {
|
|
@@ -44881,7 +45147,7 @@ declare const VSnackbar: {
|
|
|
44881
45147
|
[key: string]: any;
|
|
44882
45148
|
}>) => void)[] | undefined;
|
|
44883
45149
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44884
|
-
activator?:
|
|
45150
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44885
45151
|
"v-slot:activator"?: false | ((arg: {
|
|
44886
45152
|
isActive: boolean;
|
|
44887
45153
|
props: Record<string, any>;
|
|
@@ -44948,10 +45214,11 @@ declare const VSnackbar: {
|
|
|
44948
45214
|
maxWidth?: string | number | undefined;
|
|
44949
45215
|
minHeight?: string | number | undefined;
|
|
44950
45216
|
minWidth?: string | number | undefined;
|
|
45217
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44951
45218
|
class?: any;
|
|
44952
45219
|
theme?: string | undefined;
|
|
44953
45220
|
contentClass?: any;
|
|
44954
|
-
activator?:
|
|
45221
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44955
45222
|
closeDelay?: string | number | undefined;
|
|
44956
45223
|
openDelay?: string | number | undefined;
|
|
44957
45224
|
openOnClick?: boolean | undefined;
|
|
@@ -44993,6 +45260,7 @@ declare const VSnackbar: {
|
|
|
44993
45260
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44994
45261
|
}, {
|
|
44995
45262
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45263
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44996
45264
|
animateClick: () => void;
|
|
44997
45265
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44998
45266
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -45059,7 +45327,7 @@ declare const VSnackbar: {
|
|
|
45059
45327
|
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;
|
|
45060
45328
|
};
|
|
45061
45329
|
$forceUpdate: () => void;
|
|
45062
|
-
$nextTick: typeof
|
|
45330
|
+
$nextTick: typeof nextTick;
|
|
45063
45331
|
$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;
|
|
45064
45332
|
} & {
|
|
45065
45333
|
absolute: boolean;
|
|
@@ -45094,10 +45362,11 @@ declare const VSnackbar: {
|
|
|
45094
45362
|
maxWidth?: string | number | undefined;
|
|
45095
45363
|
minHeight?: string | number | undefined;
|
|
45096
45364
|
minWidth?: string | number | undefined;
|
|
45365
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45097
45366
|
class?: any;
|
|
45098
45367
|
theme?: string | undefined;
|
|
45099
45368
|
contentClass?: any;
|
|
45100
|
-
activator?:
|
|
45369
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45101
45370
|
closeDelay?: string | number | undefined;
|
|
45102
45371
|
openDelay?: string | number | undefined;
|
|
45103
45372
|
openOnClick?: boolean | undefined;
|
|
@@ -45139,12 +45408,13 @@ declare const VSnackbar: {
|
|
|
45139
45408
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
45140
45409
|
} & vue.ShallowUnwrapRef<{
|
|
45141
45410
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45411
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
45142
45412
|
animateClick: () => void;
|
|
45143
45413
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
45144
45414
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
45145
45415
|
localTop: vue.ComputedRef<boolean>;
|
|
45146
45416
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
45147
|
-
}> & {} & 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 & {};
|
|
45417
|
+
}> & {} & 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 & {};
|
|
45148
45418
|
__isFragment?: undefined;
|
|
45149
45419
|
__isTeleport?: undefined;
|
|
45150
45420
|
__isSuspense?: undefined;
|
|
@@ -45182,11 +45452,13 @@ declare const VSnackbar: {
|
|
|
45182
45452
|
minHeight?: string | number | undefined;
|
|
45183
45453
|
minWidth?: string | number | undefined;
|
|
45184
45454
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
45455
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45185
45456
|
class?: any;
|
|
45457
|
+
timer?: string | boolean | undefined;
|
|
45186
45458
|
theme?: string | undefined;
|
|
45187
45459
|
contentClass?: any;
|
|
45188
45460
|
rounded?: string | number | boolean | undefined;
|
|
45189
|
-
activator?:
|
|
45461
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45190
45462
|
closeDelay?: string | number | undefined;
|
|
45191
45463
|
openDelay?: string | number | undefined;
|
|
45192
45464
|
openOnClick?: boolean | undefined;
|
|
@@ -45257,6 +45529,7 @@ declare const VSnackbar: {
|
|
|
45257
45529
|
maxWidth?: string | number | undefined;
|
|
45258
45530
|
minHeight?: string | number | undefined;
|
|
45259
45531
|
minWidth?: string | number | undefined;
|
|
45532
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45260
45533
|
class?: any;
|
|
45261
45534
|
onAfterLeave?: (() => any) | undefined;
|
|
45262
45535
|
$children?: vue.VNodeChild | {
|
|
@@ -45326,7 +45599,7 @@ declare const VSnackbar: {
|
|
|
45326
45599
|
[key: string]: any;
|
|
45327
45600
|
}>) => void)[] | undefined;
|
|
45328
45601
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
45329
|
-
activator?:
|
|
45602
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45330
45603
|
"v-slot:activator"?: false | ((arg: {
|
|
45331
45604
|
isActive: boolean;
|
|
45332
45605
|
props: Record<string, any>;
|
|
@@ -45393,10 +45666,11 @@ declare const VSnackbar: {
|
|
|
45393
45666
|
maxWidth?: string | number | undefined;
|
|
45394
45667
|
minHeight?: string | number | undefined;
|
|
45395
45668
|
minWidth?: string | number | undefined;
|
|
45669
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45396
45670
|
class?: any;
|
|
45397
45671
|
theme?: string | undefined;
|
|
45398
45672
|
contentClass?: any;
|
|
45399
|
-
activator?:
|
|
45673
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45400
45674
|
closeDelay?: string | number | undefined;
|
|
45401
45675
|
openDelay?: string | number | undefined;
|
|
45402
45676
|
openOnClick?: boolean | undefined;
|
|
@@ -45438,6 +45712,7 @@ declare const VSnackbar: {
|
|
|
45438
45712
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
45439
45713
|
}, {
|
|
45440
45714
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45715
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
45441
45716
|
animateClick: () => void;
|
|
45442
45717
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
45443
45718
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -45504,7 +45779,7 @@ declare const VSnackbar: {
|
|
|
45504
45779
|
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;
|
|
45505
45780
|
};
|
|
45506
45781
|
$forceUpdate: () => void;
|
|
45507
|
-
$nextTick: typeof
|
|
45782
|
+
$nextTick: typeof nextTick;
|
|
45508
45783
|
$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;
|
|
45509
45784
|
} & {
|
|
45510
45785
|
absolute: boolean;
|
|
@@ -45539,10 +45814,11 @@ declare const VSnackbar: {
|
|
|
45539
45814
|
maxWidth?: string | number | undefined;
|
|
45540
45815
|
minHeight?: string | number | undefined;
|
|
45541
45816
|
minWidth?: string | number | undefined;
|
|
45817
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45542
45818
|
class?: any;
|
|
45543
45819
|
theme?: string | undefined;
|
|
45544
45820
|
contentClass?: any;
|
|
45545
|
-
activator?:
|
|
45821
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45546
45822
|
closeDelay?: string | number | undefined;
|
|
45547
45823
|
openDelay?: string | number | undefined;
|
|
45548
45824
|
openOnClick?: boolean | undefined;
|
|
@@ -45584,12 +45860,13 @@ declare const VSnackbar: {
|
|
|
45584
45860
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
45585
45861
|
} & vue.ShallowUnwrapRef<{
|
|
45586
45862
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45863
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
45587
45864
|
animateClick: () => void;
|
|
45588
45865
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
45589
45866
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
45590
45867
|
localTop: vue.ComputedRef<boolean>;
|
|
45591
45868
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
45592
|
-
}> & {} & 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, {
|
|
45869
|
+
}> & {} & 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, {
|
|
45593
45870
|
'update:modelValue': (v: boolean) => boolean;
|
|
45594
45871
|
}, string, {
|
|
45595
45872
|
absolute: boolean;
|
|
@@ -45670,13 +45947,14 @@ declare const VSnackbar: {
|
|
|
45670
45947
|
type: vue.PropType<vue.StyleValue>;
|
|
45671
45948
|
default: null;
|
|
45672
45949
|
};
|
|
45950
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
45673
45951
|
eager: BooleanConstructor;
|
|
45674
45952
|
disabled: BooleanConstructor;
|
|
45675
45953
|
class: vue.PropType<any>;
|
|
45676
45954
|
theme: StringConstructor;
|
|
45677
45955
|
contentClass: null;
|
|
45678
45956
|
modelValue: BooleanConstructor;
|
|
45679
|
-
activator: vue.PropType<
|
|
45957
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
45680
45958
|
locationStrategy: {
|
|
45681
45959
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
45682
45960
|
updateLocation: (e: Event) => void;
|
|
@@ -45722,6 +46000,7 @@ declare const VSnackbar: {
|
|
|
45722
46000
|
validator: (v: any) => boolean;
|
|
45723
46001
|
};
|
|
45724
46002
|
multiLine: BooleanConstructor;
|
|
46003
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
45725
46004
|
timeout: {
|
|
45726
46005
|
type: (StringConstructor | NumberConstructor)[];
|
|
45727
46006
|
default: number;
|
|
@@ -45766,13 +46045,14 @@ declare const VSnackbar: {
|
|
|
45766
46045
|
type: vue.PropType<vue.StyleValue>;
|
|
45767
46046
|
default: null;
|
|
45768
46047
|
};
|
|
46048
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
45769
46049
|
eager: BooleanConstructor;
|
|
45770
46050
|
disabled: BooleanConstructor;
|
|
45771
46051
|
class: vue.PropType<any>;
|
|
45772
46052
|
theme: StringConstructor;
|
|
45773
46053
|
contentClass: null;
|
|
45774
46054
|
modelValue: BooleanConstructor;
|
|
45775
|
-
activator: vue.PropType<
|
|
46055
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
45776
46056
|
locationStrategy: {
|
|
45777
46057
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
45778
46058
|
updateLocation: (e: Event) => void;
|
|
@@ -45818,6 +46098,7 @@ declare const VSnackbar: {
|
|
|
45818
46098
|
validator: (v: any) => boolean;
|
|
45819
46099
|
};
|
|
45820
46100
|
multiLine: BooleanConstructor;
|
|
46101
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
45821
46102
|
timeout: {
|
|
45822
46103
|
type: (StringConstructor | NumberConstructor)[];
|
|
45823
46104
|
default: number;
|
|
@@ -45951,6 +46232,7 @@ declare const VSwitch: {
|
|
|
45951
46232
|
defaultsTarget?: string | undefined;
|
|
45952
46233
|
falseIcon?: IconValue | undefined;
|
|
45953
46234
|
trueIcon?: IconValue | undefined;
|
|
46235
|
+
baseColor?: string | undefined;
|
|
45954
46236
|
trueValue?: any;
|
|
45955
46237
|
falseValue?: any;
|
|
45956
46238
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -46048,6 +46330,7 @@ declare const VSwitch: {
|
|
|
46048
46330
|
defaultsTarget?: string | undefined;
|
|
46049
46331
|
falseIcon?: IconValue | undefined;
|
|
46050
46332
|
trueIcon?: IconValue | undefined;
|
|
46333
|
+
baseColor?: string | undefined;
|
|
46051
46334
|
trueValue?: any;
|
|
46052
46335
|
falseValue?: any;
|
|
46053
46336
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -46226,6 +46509,7 @@ declare const VSwitch: {
|
|
|
46226
46509
|
defaultsTarget?: string | undefined;
|
|
46227
46510
|
falseIcon?: IconValue | undefined;
|
|
46228
46511
|
trueIcon?: IconValue | undefined;
|
|
46512
|
+
baseColor?: string | undefined;
|
|
46229
46513
|
trueValue?: any;
|
|
46230
46514
|
falseValue?: any;
|
|
46231
46515
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -46331,6 +46615,7 @@ declare const VSwitch: {
|
|
|
46331
46615
|
defaultsTarget?: string | undefined;
|
|
46332
46616
|
falseIcon?: IconValue | undefined;
|
|
46333
46617
|
trueIcon?: IconValue | undefined;
|
|
46618
|
+
baseColor?: string | undefined;
|
|
46334
46619
|
trueValue?: any;
|
|
46335
46620
|
falseValue?: any;
|
|
46336
46621
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -46492,6 +46777,7 @@ declare const VSwitch: {
|
|
|
46492
46777
|
default: typeof deepEqual;
|
|
46493
46778
|
};
|
|
46494
46779
|
label: StringConstructor;
|
|
46780
|
+
baseColor: StringConstructor;
|
|
46495
46781
|
trueValue: null;
|
|
46496
46782
|
falseValue: null;
|
|
46497
46783
|
value: null;
|
|
@@ -46578,6 +46864,7 @@ declare const VSwitch: {
|
|
|
46578
46864
|
default: typeof deepEqual;
|
|
46579
46865
|
};
|
|
46580
46866
|
label: StringConstructor;
|
|
46867
|
+
baseColor: StringConstructor;
|
|
46581
46868
|
trueValue: null;
|
|
46582
46869
|
falseValue: null;
|
|
46583
46870
|
value: null;
|
|
@@ -46967,6 +47254,7 @@ declare const VTabs: {
|
|
|
46967
47254
|
}>) => void)[] | undefined;
|
|
46968
47255
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
46969
47256
|
bgColor?: string | undefined;
|
|
47257
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46970
47258
|
showArrows?: string | boolean | undefined;
|
|
46971
47259
|
sliderColor?: string | undefined;
|
|
46972
47260
|
};
|
|
@@ -47011,6 +47299,7 @@ declare const VTabs: {
|
|
|
47011
47299
|
class?: any;
|
|
47012
47300
|
modelValue?: any;
|
|
47013
47301
|
bgColor?: string | undefined;
|
|
47302
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
47014
47303
|
showArrows?: string | boolean | undefined;
|
|
47015
47304
|
sliderColor?: string | undefined;
|
|
47016
47305
|
} & {
|
|
@@ -47097,6 +47386,7 @@ declare const VTabs: {
|
|
|
47097
47386
|
class?: any;
|
|
47098
47387
|
modelValue?: any;
|
|
47099
47388
|
bgColor?: string | undefined;
|
|
47389
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
47100
47390
|
showArrows?: string | boolean | undefined;
|
|
47101
47391
|
sliderColor?: string | undefined;
|
|
47102
47392
|
} & {
|
|
@@ -47140,6 +47430,7 @@ declare const VTabs: {
|
|
|
47140
47430
|
class?: any;
|
|
47141
47431
|
modelValue?: any;
|
|
47142
47432
|
bgColor?: string | undefined;
|
|
47433
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
47143
47434
|
showArrows?: string | boolean | undefined;
|
|
47144
47435
|
sliderColor?: string | undefined;
|
|
47145
47436
|
} & {
|
|
@@ -47205,6 +47496,7 @@ declare const VTabs: {
|
|
|
47205
47496
|
default: string;
|
|
47206
47497
|
};
|
|
47207
47498
|
disabled: BooleanConstructor;
|
|
47499
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
47208
47500
|
class: PropType<any>;
|
|
47209
47501
|
style: {
|
|
47210
47502
|
type: PropType<vue.StyleValue>;
|
|
@@ -47275,6 +47567,7 @@ declare const VTabs: {
|
|
|
47275
47567
|
default: string;
|
|
47276
47568
|
};
|
|
47277
47569
|
disabled: BooleanConstructor;
|
|
47570
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
47278
47571
|
class: PropType<any>;
|
|
47279
47572
|
style: {
|
|
47280
47573
|
type: PropType<vue.StyleValue>;
|
|
@@ -48218,6 +48511,7 @@ declare const VTextarea: {
|
|
|
48218
48511
|
prependIcon?: IconValue | undefined;
|
|
48219
48512
|
appendIcon?: IconValue | undefined;
|
|
48220
48513
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
48514
|
+
baseColor?: string | undefined;
|
|
48221
48515
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
48222
48516
|
label: string | undefined;
|
|
48223
48517
|
props: Record<string, any>;
|
|
@@ -48236,7 +48530,6 @@ declare const VTextarea: {
|
|
|
48236
48530
|
hint?: string | undefined;
|
|
48237
48531
|
hideDetails?: boolean | "auto" | undefined;
|
|
48238
48532
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
48239
|
-
baseColor?: string | undefined;
|
|
48240
48533
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
48241
48534
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
48242
48535
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -48337,6 +48630,7 @@ declare const VTextarea: {
|
|
|
48337
48630
|
bgColor?: string | undefined;
|
|
48338
48631
|
prependIcon?: IconValue | undefined;
|
|
48339
48632
|
appendIcon?: IconValue | undefined;
|
|
48633
|
+
baseColor?: string | undefined;
|
|
48340
48634
|
appendInnerIcon?: IconValue | undefined;
|
|
48341
48635
|
prependInnerIcon?: IconValue | undefined;
|
|
48342
48636
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -48350,7 +48644,6 @@ declare const VTextarea: {
|
|
|
48350
48644
|
centerAffix?: boolean | undefined;
|
|
48351
48645
|
hint?: string | undefined;
|
|
48352
48646
|
hideDetails?: boolean | "auto" | undefined;
|
|
48353
|
-
baseColor?: string | undefined;
|
|
48354
48647
|
suffix?: string | undefined;
|
|
48355
48648
|
counterValue?: ((value: any) => number) | undefined;
|
|
48356
48649
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -48823,6 +49116,7 @@ declare const VTextarea: {
|
|
|
48823
49116
|
bgColor?: string | undefined;
|
|
48824
49117
|
prependIcon?: IconValue | undefined;
|
|
48825
49118
|
appendIcon?: IconValue | undefined;
|
|
49119
|
+
baseColor?: string | undefined;
|
|
48826
49120
|
appendInnerIcon?: IconValue | undefined;
|
|
48827
49121
|
prependInnerIcon?: IconValue | undefined;
|
|
48828
49122
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -48836,7 +49130,6 @@ declare const VTextarea: {
|
|
|
48836
49130
|
centerAffix?: boolean | undefined;
|
|
48837
49131
|
hint?: string | undefined;
|
|
48838
49132
|
hideDetails?: boolean | "auto" | undefined;
|
|
48839
|
-
baseColor?: string | undefined;
|
|
48840
49133
|
suffix?: string | undefined;
|
|
48841
49134
|
counterValue?: ((value: any) => number) | undefined;
|
|
48842
49135
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -49224,6 +49517,7 @@ declare const VTextarea: {
|
|
|
49224
49517
|
bgColor?: string | undefined;
|
|
49225
49518
|
prependIcon?: IconValue | undefined;
|
|
49226
49519
|
appendIcon?: IconValue | undefined;
|
|
49520
|
+
baseColor?: string | undefined;
|
|
49227
49521
|
appendInnerIcon?: IconValue | undefined;
|
|
49228
49522
|
prependInnerIcon?: IconValue | undefined;
|
|
49229
49523
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -49237,7 +49531,6 @@ declare const VTextarea: {
|
|
|
49237
49531
|
centerAffix?: boolean | undefined;
|
|
49238
49532
|
hint?: string | undefined;
|
|
49239
49533
|
hideDetails?: boolean | "auto" | undefined;
|
|
49240
|
-
baseColor?: string | undefined;
|
|
49241
49534
|
suffix?: string | undefined;
|
|
49242
49535
|
counterValue?: ((value: any) => number) | undefined;
|
|
49243
49536
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -49995,6 +50288,7 @@ declare const VTextField: {
|
|
|
49995
50288
|
prependIcon?: IconValue | undefined;
|
|
49996
50289
|
appendIcon?: IconValue | undefined;
|
|
49997
50290
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
50291
|
+
baseColor?: string | undefined;
|
|
49998
50292
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
49999
50293
|
label: string | undefined;
|
|
50000
50294
|
props: Record<string, any>;
|
|
@@ -50013,7 +50307,6 @@ declare const VTextField: {
|
|
|
50013
50307
|
hint?: string | undefined;
|
|
50014
50308
|
hideDetails?: boolean | "auto" | undefined;
|
|
50015
50309
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
50016
|
-
baseColor?: string | undefined;
|
|
50017
50310
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
50018
50311
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
50019
50312
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -50115,6 +50408,7 @@ declare const VTextField: {
|
|
|
50115
50408
|
bgColor?: string | undefined;
|
|
50116
50409
|
prependIcon?: IconValue | undefined;
|
|
50117
50410
|
appendIcon?: IconValue | undefined;
|
|
50411
|
+
baseColor?: string | undefined;
|
|
50118
50412
|
appendInnerIcon?: IconValue | undefined;
|
|
50119
50413
|
prependInnerIcon?: IconValue | undefined;
|
|
50120
50414
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50128,7 +50422,6 @@ declare const VTextField: {
|
|
|
50128
50422
|
centerAffix?: boolean | undefined;
|
|
50129
50423
|
hint?: string | undefined;
|
|
50130
50424
|
hideDetails?: boolean | "auto" | undefined;
|
|
50131
|
-
baseColor?: string | undefined;
|
|
50132
50425
|
suffix?: string | undefined;
|
|
50133
50426
|
counterValue?: ((value: any) => number) | undefined;
|
|
50134
50427
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -50539,13 +50832,13 @@ declare const VTextField: {
|
|
|
50539
50832
|
}>) => void)[] | undefined;
|
|
50540
50833
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50541
50834
|
bgColor?: string | undefined;
|
|
50835
|
+
baseColor?: string | undefined;
|
|
50542
50836
|
appendInnerIcon?: IconValue | undefined;
|
|
50543
50837
|
prependInnerIcon?: IconValue | undefined;
|
|
50544
50838
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50545
50839
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50546
50840
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50547
50841
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
50548
|
-
baseColor?: string | undefined;
|
|
50549
50842
|
};
|
|
50550
50843
|
$attrs: {
|
|
50551
50844
|
[x: string]: unknown;
|
|
@@ -50603,6 +50896,7 @@ declare const VTextField: {
|
|
|
50603
50896
|
theme?: string | undefined;
|
|
50604
50897
|
rounded?: string | number | boolean | undefined;
|
|
50605
50898
|
bgColor?: string | undefined;
|
|
50899
|
+
baseColor?: string | undefined;
|
|
50606
50900
|
appendInnerIcon?: IconValue | undefined;
|
|
50607
50901
|
prependInnerIcon?: IconValue | undefined;
|
|
50608
50902
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50610,7 +50904,6 @@ declare const VTextField: {
|
|
|
50610
50904
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50611
50905
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
50612
50906
|
centerAffix?: boolean | undefined;
|
|
50613
|
-
baseColor?: string | undefined;
|
|
50614
50907
|
} & {
|
|
50615
50908
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50616
50909
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -50700,6 +50993,7 @@ declare const VTextField: {
|
|
|
50700
50993
|
theme?: string | undefined;
|
|
50701
50994
|
rounded?: string | number | boolean | undefined;
|
|
50702
50995
|
bgColor?: string | undefined;
|
|
50996
|
+
baseColor?: string | undefined;
|
|
50703
50997
|
appendInnerIcon?: IconValue | undefined;
|
|
50704
50998
|
prependInnerIcon?: IconValue | undefined;
|
|
50705
50999
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50707,7 +51001,6 @@ declare const VTextField: {
|
|
|
50707
51001
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50708
51002
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
50709
51003
|
centerAffix?: boolean | undefined;
|
|
50710
|
-
baseColor?: string | undefined;
|
|
50711
51004
|
} & {
|
|
50712
51005
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50713
51006
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -50716,7 +51009,7 @@ declare const VTextField: {
|
|
|
50716
51009
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
50717
51010
|
modelValue?: unknown;
|
|
50718
51011
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
50719
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "
|
|
51012
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "error" | "active" | "style" | "disabled" | "rounded" | "variant" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
50720
51013
|
'click:control': (e: MouseEvent) => true;
|
|
50721
51014
|
'mousedown:control': (e: MouseEvent) => true;
|
|
50722
51015
|
'update:focused': (focused: boolean) => true;
|
|
@@ -50849,6 +51142,7 @@ declare const VTextField: {
|
|
|
50849
51142
|
bgColor?: string | undefined;
|
|
50850
51143
|
prependIcon?: IconValue | undefined;
|
|
50851
51144
|
appendIcon?: IconValue | undefined;
|
|
51145
|
+
baseColor?: string | undefined;
|
|
50852
51146
|
appendInnerIcon?: IconValue | undefined;
|
|
50853
51147
|
prependInnerIcon?: IconValue | undefined;
|
|
50854
51148
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50862,7 +51156,6 @@ declare const VTextField: {
|
|
|
50862
51156
|
centerAffix?: boolean | undefined;
|
|
50863
51157
|
hint?: string | undefined;
|
|
50864
51158
|
hideDetails?: boolean | "auto" | undefined;
|
|
50865
|
-
baseColor?: string | undefined;
|
|
50866
51159
|
suffix?: string | undefined;
|
|
50867
51160
|
counterValue?: ((value: any) => number) | undefined;
|
|
50868
51161
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -51273,13 +51566,13 @@ declare const VTextField: {
|
|
|
51273
51566
|
}>) => void)[] | undefined;
|
|
51274
51567
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51275
51568
|
bgColor?: string | undefined;
|
|
51569
|
+
baseColor?: string | undefined;
|
|
51276
51570
|
appendInnerIcon?: IconValue | undefined;
|
|
51277
51571
|
prependInnerIcon?: IconValue | undefined;
|
|
51278
51572
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51279
51573
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51280
51574
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51281
51575
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
51282
|
-
baseColor?: string | undefined;
|
|
51283
51576
|
};
|
|
51284
51577
|
$attrs: {
|
|
51285
51578
|
[x: string]: unknown;
|
|
@@ -51337,6 +51630,7 @@ declare const VTextField: {
|
|
|
51337
51630
|
theme?: string | undefined;
|
|
51338
51631
|
rounded?: string | number | boolean | undefined;
|
|
51339
51632
|
bgColor?: string | undefined;
|
|
51633
|
+
baseColor?: string | undefined;
|
|
51340
51634
|
appendInnerIcon?: IconValue | undefined;
|
|
51341
51635
|
prependInnerIcon?: IconValue | undefined;
|
|
51342
51636
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51344,7 +51638,6 @@ declare const VTextField: {
|
|
|
51344
51638
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51345
51639
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51346
51640
|
centerAffix?: boolean | undefined;
|
|
51347
|
-
baseColor?: string | undefined;
|
|
51348
51641
|
} & {
|
|
51349
51642
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51350
51643
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51434,6 +51727,7 @@ declare const VTextField: {
|
|
|
51434
51727
|
theme?: string | undefined;
|
|
51435
51728
|
rounded?: string | number | boolean | undefined;
|
|
51436
51729
|
bgColor?: string | undefined;
|
|
51730
|
+
baseColor?: string | undefined;
|
|
51437
51731
|
appendInnerIcon?: IconValue | undefined;
|
|
51438
51732
|
prependInnerIcon?: IconValue | undefined;
|
|
51439
51733
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51441,7 +51735,6 @@ declare const VTextField: {
|
|
|
51441
51735
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51442
51736
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51443
51737
|
centerAffix?: boolean | undefined;
|
|
51444
|
-
baseColor?: string | undefined;
|
|
51445
51738
|
} & {
|
|
51446
51739
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51447
51740
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51450,7 +51743,7 @@ declare const VTextField: {
|
|
|
51450
51743
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
51451
51744
|
modelValue?: unknown;
|
|
51452
51745
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
51453
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "
|
|
51746
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "error" | "active" | "style" | "disabled" | "rounded" | "variant" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
|
|
51454
51747
|
__isFragment?: undefined;
|
|
51455
51748
|
__isTeleport?: undefined;
|
|
51456
51749
|
__isSuspense?: undefined;
|
|
@@ -51497,6 +51790,7 @@ declare const VTextField: {
|
|
|
51497
51790
|
bgColor?: string | undefined;
|
|
51498
51791
|
prependIcon?: IconValue | undefined;
|
|
51499
51792
|
appendIcon?: IconValue | undefined;
|
|
51793
|
+
baseColor?: string | undefined;
|
|
51500
51794
|
appendInnerIcon?: IconValue | undefined;
|
|
51501
51795
|
prependInnerIcon?: IconValue | undefined;
|
|
51502
51796
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51510,7 +51804,6 @@ declare const VTextField: {
|
|
|
51510
51804
|
centerAffix?: boolean | undefined;
|
|
51511
51805
|
hint?: string | undefined;
|
|
51512
51806
|
hideDetails?: boolean | "auto" | undefined;
|
|
51513
|
-
baseColor?: string | undefined;
|
|
51514
51807
|
suffix?: string | undefined;
|
|
51515
51808
|
counterValue?: ((value: any) => number) | undefined;
|
|
51516
51809
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -51921,13 +52214,13 @@ declare const VTextField: {
|
|
|
51921
52214
|
}>) => void)[] | undefined;
|
|
51922
52215
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51923
52216
|
bgColor?: string | undefined;
|
|
52217
|
+
baseColor?: string | undefined;
|
|
51924
52218
|
appendInnerIcon?: IconValue | undefined;
|
|
51925
52219
|
prependInnerIcon?: IconValue | undefined;
|
|
51926
52220
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51927
52221
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51928
52222
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51929
52223
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
51930
|
-
baseColor?: string | undefined;
|
|
51931
52224
|
};
|
|
51932
52225
|
$attrs: {
|
|
51933
52226
|
[x: string]: unknown;
|
|
@@ -51985,6 +52278,7 @@ declare const VTextField: {
|
|
|
51985
52278
|
theme?: string | undefined;
|
|
51986
52279
|
rounded?: string | number | boolean | undefined;
|
|
51987
52280
|
bgColor?: string | undefined;
|
|
52281
|
+
baseColor?: string | undefined;
|
|
51988
52282
|
appendInnerIcon?: IconValue | undefined;
|
|
51989
52283
|
prependInnerIcon?: IconValue | undefined;
|
|
51990
52284
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51992,7 +52286,6 @@ declare const VTextField: {
|
|
|
51992
52286
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51993
52287
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51994
52288
|
centerAffix?: boolean | undefined;
|
|
51995
|
-
baseColor?: string | undefined;
|
|
51996
52289
|
} & {
|
|
51997
52290
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51998
52291
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -52082,6 +52375,7 @@ declare const VTextField: {
|
|
|
52082
52375
|
theme?: string | undefined;
|
|
52083
52376
|
rounded?: string | number | boolean | undefined;
|
|
52084
52377
|
bgColor?: string | undefined;
|
|
52378
|
+
baseColor?: string | undefined;
|
|
52085
52379
|
appendInnerIcon?: IconValue | undefined;
|
|
52086
52380
|
prependInnerIcon?: IconValue | undefined;
|
|
52087
52381
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -52089,7 +52383,6 @@ declare const VTextField: {
|
|
|
52089
52383
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
52090
52384
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
52091
52385
|
centerAffix?: boolean | undefined;
|
|
52092
|
-
baseColor?: string | undefined;
|
|
52093
52386
|
} & {
|
|
52094
52387
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
52095
52388
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -52098,7 +52391,7 @@ declare const VTextField: {
|
|
|
52098
52391
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
52099
52392
|
modelValue?: unknown;
|
|
52100
52393
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
52101
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "
|
|
52394
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "error" | "active" | "style" | "disabled" | "rounded" | "variant" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
52102
52395
|
'click:control': (e: MouseEvent) => true;
|
|
52103
52396
|
'mousedown:control': (e: MouseEvent) => true;
|
|
52104
52397
|
'update:focused': (focused: boolean) => true;
|
|
@@ -53636,6 +53929,7 @@ declare const VTooltip: {
|
|
|
53636
53929
|
maxWidth?: string | number | undefined;
|
|
53637
53930
|
minHeight?: string | number | undefined;
|
|
53638
53931
|
text?: string | undefined;
|
|
53932
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53639
53933
|
class?: any;
|
|
53640
53934
|
$children?: vue.VNodeChild | {
|
|
53641
53935
|
default?: ((arg: {
|
|
@@ -53704,7 +53998,7 @@ declare const VTooltip: {
|
|
|
53704
53998
|
[key: string]: any;
|
|
53705
53999
|
}>) => void)[] | undefined;
|
|
53706
54000
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
53707
|
-
activator?:
|
|
54001
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53708
54002
|
"v-slot:activator"?: false | ((arg: {
|
|
53709
54003
|
isActive: boolean;
|
|
53710
54004
|
props: Record<string, any>;
|
|
@@ -53770,10 +54064,11 @@ declare const VTooltip: {
|
|
|
53770
54064
|
maxWidth?: string | number | undefined;
|
|
53771
54065
|
minHeight?: string | number | undefined;
|
|
53772
54066
|
text?: string | undefined;
|
|
54067
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53773
54068
|
class?: any;
|
|
53774
54069
|
theme?: string | undefined;
|
|
53775
54070
|
contentClass?: any;
|
|
53776
|
-
activator?:
|
|
54071
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53777
54072
|
closeDelay?: string | number | undefined;
|
|
53778
54073
|
openDelay?: string | number | undefined;
|
|
53779
54074
|
openOnFocus?: boolean | undefined;
|
|
@@ -53848,6 +54143,7 @@ declare const VTooltip: {
|
|
|
53848
54143
|
maxWidth?: string | number | undefined;
|
|
53849
54144
|
minHeight?: string | number | undefined;
|
|
53850
54145
|
minWidth?: string | number | undefined;
|
|
54146
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53851
54147
|
class?: any;
|
|
53852
54148
|
onAfterLeave?: (() => any) | undefined;
|
|
53853
54149
|
$children?: vue.VNodeChild | {
|
|
@@ -53917,7 +54213,7 @@ declare const VTooltip: {
|
|
|
53917
54213
|
[key: string]: any;
|
|
53918
54214
|
}>) => void)[] | undefined;
|
|
53919
54215
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
53920
|
-
activator?:
|
|
54216
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53921
54217
|
"v-slot:activator"?: false | ((arg: {
|
|
53922
54218
|
isActive: boolean;
|
|
53923
54219
|
props: Record<string, any>;
|
|
@@ -53984,10 +54280,11 @@ declare const VTooltip: {
|
|
|
53984
54280
|
maxWidth?: string | number | undefined;
|
|
53985
54281
|
minHeight?: string | number | undefined;
|
|
53986
54282
|
minWidth?: string | number | undefined;
|
|
54283
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53987
54284
|
class?: any;
|
|
53988
54285
|
theme?: string | undefined;
|
|
53989
54286
|
contentClass?: any;
|
|
53990
|
-
activator?:
|
|
54287
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53991
54288
|
closeDelay?: string | number | undefined;
|
|
53992
54289
|
openDelay?: string | number | undefined;
|
|
53993
54290
|
openOnClick?: boolean | undefined;
|
|
@@ -54029,6 +54326,7 @@ declare const VTooltip: {
|
|
|
54029
54326
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54030
54327
|
}, {
|
|
54031
54328
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54329
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54032
54330
|
animateClick: () => void;
|
|
54033
54331
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54034
54332
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -54130,10 +54428,11 @@ declare const VTooltip: {
|
|
|
54130
54428
|
maxWidth?: string | number | undefined;
|
|
54131
54429
|
minHeight?: string | number | undefined;
|
|
54132
54430
|
minWidth?: string | number | undefined;
|
|
54431
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54133
54432
|
class?: any;
|
|
54134
54433
|
theme?: string | undefined;
|
|
54135
54434
|
contentClass?: any;
|
|
54136
|
-
activator?:
|
|
54435
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54137
54436
|
closeDelay?: string | number | undefined;
|
|
54138
54437
|
openDelay?: string | number | undefined;
|
|
54139
54438
|
openOnClick?: boolean | undefined;
|
|
@@ -54175,12 +54474,13 @@ declare const VTooltip: {
|
|
|
54175
54474
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54176
54475
|
} & vue.ShallowUnwrapRef<{
|
|
54177
54476
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54477
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54178
54478
|
animateClick: () => void;
|
|
54179
54479
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54180
54480
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
54181
54481
|
localTop: vue.ComputedRef<boolean>;
|
|
54182
54482
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
54183
|
-
}> & {} & 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, {
|
|
54483
|
+
}> & {} & 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, {
|
|
54184
54484
|
'update:modelValue': (value: boolean) => boolean;
|
|
54185
54485
|
}, string, {
|
|
54186
54486
|
offset: NonNullable<string | number | number[] | undefined>;
|
|
@@ -54273,10 +54573,11 @@ declare const VTooltip: {
|
|
|
54273
54573
|
maxWidth?: string | number | undefined;
|
|
54274
54574
|
minHeight?: string | number | undefined;
|
|
54275
54575
|
text?: string | undefined;
|
|
54576
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54276
54577
|
class?: any;
|
|
54277
54578
|
theme?: string | undefined;
|
|
54278
54579
|
contentClass?: any;
|
|
54279
|
-
activator?:
|
|
54580
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54280
54581
|
closeDelay?: string | number | undefined;
|
|
54281
54582
|
openDelay?: string | number | undefined;
|
|
54282
54583
|
openOnFocus?: boolean | undefined;
|
|
@@ -54351,6 +54652,7 @@ declare const VTooltip: {
|
|
|
54351
54652
|
maxWidth?: string | number | undefined;
|
|
54352
54653
|
minHeight?: string | number | undefined;
|
|
54353
54654
|
minWidth?: string | number | undefined;
|
|
54655
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54354
54656
|
class?: any;
|
|
54355
54657
|
onAfterLeave?: (() => any) | undefined;
|
|
54356
54658
|
$children?: vue.VNodeChild | {
|
|
@@ -54420,7 +54722,7 @@ declare const VTooltip: {
|
|
|
54420
54722
|
[key: string]: any;
|
|
54421
54723
|
}>) => void)[] | undefined;
|
|
54422
54724
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54423
|
-
activator?:
|
|
54725
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54424
54726
|
"v-slot:activator"?: false | ((arg: {
|
|
54425
54727
|
isActive: boolean;
|
|
54426
54728
|
props: Record<string, any>;
|
|
@@ -54487,10 +54789,11 @@ declare const VTooltip: {
|
|
|
54487
54789
|
maxWidth?: string | number | undefined;
|
|
54488
54790
|
minHeight?: string | number | undefined;
|
|
54489
54791
|
minWidth?: string | number | undefined;
|
|
54792
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54490
54793
|
class?: any;
|
|
54491
54794
|
theme?: string | undefined;
|
|
54492
54795
|
contentClass?: any;
|
|
54493
|
-
activator?:
|
|
54796
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54494
54797
|
closeDelay?: string | number | undefined;
|
|
54495
54798
|
openDelay?: string | number | undefined;
|
|
54496
54799
|
openOnClick?: boolean | undefined;
|
|
@@ -54532,6 +54835,7 @@ declare const VTooltip: {
|
|
|
54532
54835
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54533
54836
|
}, {
|
|
54534
54837
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54838
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54535
54839
|
animateClick: () => void;
|
|
54536
54840
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54537
54841
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -54633,10 +54937,11 @@ declare const VTooltip: {
|
|
|
54633
54937
|
maxWidth?: string | number | undefined;
|
|
54634
54938
|
minHeight?: string | number | undefined;
|
|
54635
54939
|
minWidth?: string | number | undefined;
|
|
54940
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54636
54941
|
class?: any;
|
|
54637
54942
|
theme?: string | undefined;
|
|
54638
54943
|
contentClass?: any;
|
|
54639
|
-
activator?:
|
|
54944
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54640
54945
|
closeDelay?: string | number | undefined;
|
|
54641
54946
|
openDelay?: string | number | undefined;
|
|
54642
54947
|
openOnClick?: boolean | undefined;
|
|
@@ -54678,12 +54983,13 @@ declare const VTooltip: {
|
|
|
54678
54983
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54679
54984
|
} & vue.ShallowUnwrapRef<{
|
|
54680
54985
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54986
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54681
54987
|
animateClick: () => void;
|
|
54682
54988
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54683
54989
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
54684
54990
|
localTop: vue.ComputedRef<boolean>;
|
|
54685
54991
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
54686
|
-
}> & {} & 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 & {};
|
|
54992
|
+
}> & {} & 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 & {};
|
|
54687
54993
|
__isFragment?: undefined;
|
|
54688
54994
|
__isTeleport?: undefined;
|
|
54689
54995
|
__isSuspense?: undefined;
|
|
@@ -54720,10 +55026,11 @@ declare const VTooltip: {
|
|
|
54720
55026
|
maxWidth?: string | number | undefined;
|
|
54721
55027
|
minHeight?: string | number | undefined;
|
|
54722
55028
|
text?: string | undefined;
|
|
55029
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54723
55030
|
class?: any;
|
|
54724
55031
|
theme?: string | undefined;
|
|
54725
55032
|
contentClass?: any;
|
|
54726
|
-
activator?:
|
|
55033
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54727
55034
|
closeDelay?: string | number | undefined;
|
|
54728
55035
|
openDelay?: string | number | undefined;
|
|
54729
55036
|
openOnFocus?: boolean | undefined;
|
|
@@ -54798,6 +55105,7 @@ declare const VTooltip: {
|
|
|
54798
55105
|
maxWidth?: string | number | undefined;
|
|
54799
55106
|
minHeight?: string | number | undefined;
|
|
54800
55107
|
minWidth?: string | number | undefined;
|
|
55108
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54801
55109
|
class?: any;
|
|
54802
55110
|
onAfterLeave?: (() => any) | undefined;
|
|
54803
55111
|
$children?: vue.VNodeChild | {
|
|
@@ -54867,7 +55175,7 @@ declare const VTooltip: {
|
|
|
54867
55175
|
[key: string]: any;
|
|
54868
55176
|
}>) => void)[] | undefined;
|
|
54869
55177
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54870
|
-
activator?:
|
|
55178
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54871
55179
|
"v-slot:activator"?: false | ((arg: {
|
|
54872
55180
|
isActive: boolean;
|
|
54873
55181
|
props: Record<string, any>;
|
|
@@ -54934,10 +55242,11 @@ declare const VTooltip: {
|
|
|
54934
55242
|
maxWidth?: string | number | undefined;
|
|
54935
55243
|
minHeight?: string | number | undefined;
|
|
54936
55244
|
minWidth?: string | number | undefined;
|
|
55245
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54937
55246
|
class?: any;
|
|
54938
55247
|
theme?: string | undefined;
|
|
54939
55248
|
contentClass?: any;
|
|
54940
|
-
activator?:
|
|
55249
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54941
55250
|
closeDelay?: string | number | undefined;
|
|
54942
55251
|
openDelay?: string | number | undefined;
|
|
54943
55252
|
openOnClick?: boolean | undefined;
|
|
@@ -54979,6 +55288,7 @@ declare const VTooltip: {
|
|
|
54979
55288
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54980
55289
|
}, {
|
|
54981
55290
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
55291
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54982
55292
|
animateClick: () => void;
|
|
54983
55293
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54984
55294
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -55080,10 +55390,11 @@ declare const VTooltip: {
|
|
|
55080
55390
|
maxWidth?: string | number | undefined;
|
|
55081
55391
|
minHeight?: string | number | undefined;
|
|
55082
55392
|
minWidth?: string | number | undefined;
|
|
55393
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
55083
55394
|
class?: any;
|
|
55084
55395
|
theme?: string | undefined;
|
|
55085
55396
|
contentClass?: any;
|
|
55086
|
-
activator?:
|
|
55397
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
55087
55398
|
closeDelay?: string | number | undefined;
|
|
55088
55399
|
openDelay?: string | number | undefined;
|
|
55089
55400
|
openOnClick?: boolean | undefined;
|
|
@@ -55125,12 +55436,13 @@ declare const VTooltip: {
|
|
|
55125
55436
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
55126
55437
|
} & vue.ShallowUnwrapRef<{
|
|
55127
55438
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
55439
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
55128
55440
|
animateClick: () => void;
|
|
55129
55441
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
55130
55442
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
55131
55443
|
localTop: vue.ComputedRef<boolean>;
|
|
55132
55444
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
55133
|
-
}> & {} & 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, {
|
|
55445
|
+
}> & {} & 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, {
|
|
55134
55446
|
'update:modelValue': (value: boolean) => boolean;
|
|
55135
55447
|
}, string, {
|
|
55136
55448
|
offset: NonNullable<string | number | number[] | undefined>;
|
|
@@ -55220,6 +55532,7 @@ declare const VTooltip: {
|
|
|
55220
55532
|
type: vue.PropType<vue.StyleValue>;
|
|
55221
55533
|
default: null;
|
|
55222
55534
|
};
|
|
55535
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
55223
55536
|
eager: {
|
|
55224
55537
|
type: vue.PropType<boolean>;
|
|
55225
55538
|
default: boolean;
|
|
@@ -55229,7 +55542,7 @@ declare const VTooltip: {
|
|
|
55229
55542
|
theme: StringConstructor;
|
|
55230
55543
|
contentClass: null;
|
|
55231
55544
|
modelValue: BooleanConstructor;
|
|
55232
|
-
activator: vue.PropType<
|
|
55545
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
55233
55546
|
locationStrategy: Omit<{
|
|
55234
55547
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
55235
55548
|
updateLocation: (e: Event) => void;
|
|
@@ -55344,6 +55657,7 @@ declare const VTooltip: {
|
|
|
55344
55657
|
type: vue.PropType<vue.StyleValue>;
|
|
55345
55658
|
default: null;
|
|
55346
55659
|
};
|
|
55660
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
55347
55661
|
eager: {
|
|
55348
55662
|
type: vue.PropType<boolean>;
|
|
55349
55663
|
default: boolean;
|
|
@@ -55353,7 +55667,7 @@ declare const VTooltip: {
|
|
|
55353
55667
|
theme: StringConstructor;
|
|
55354
55668
|
contentClass: null;
|
|
55355
55669
|
modelValue: BooleanConstructor;
|
|
55356
|
-
activator: vue.PropType<
|
|
55670
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
55357
55671
|
locationStrategy: Omit<{
|
|
55358
55672
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
55359
55673
|
updateLocation: (e: Event) => void;
|
|
@@ -56966,7 +57280,7 @@ declare const VDialogTransition: {
|
|
|
56966
57280
|
$props: {
|
|
56967
57281
|
key?: string | number | symbol | undefined;
|
|
56968
57282
|
style?: unknown;
|
|
56969
|
-
target?: HTMLElement | undefined;
|
|
57283
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
56970
57284
|
class?: unknown;
|
|
56971
57285
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56972
57286
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -57033,7 +57347,7 @@ declare const VDialogTransition: {
|
|
|
57033
57347
|
$emit: (event: string, ...args: any[]) => void;
|
|
57034
57348
|
$el: any;
|
|
57035
57349
|
$options: vue.ComponentOptionsBase<{} & {
|
|
57036
|
-
target?: HTMLElement | undefined;
|
|
57350
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
57037
57351
|
} & {
|
|
57038
57352
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
57039
57353
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -57068,7 +57382,7 @@ declare const VDialogTransition: {
|
|
|
57068
57382
|
$nextTick: typeof vue.nextTick;
|
|
57069
57383
|
$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;
|
|
57070
57384
|
} & {} & {
|
|
57071
|
-
target?: HTMLElement | undefined;
|
|
57385
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
57072
57386
|
} & {
|
|
57073
57387
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
57074
57388
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -57083,7 +57397,7 @@ declare const VDialogTransition: {
|
|
|
57083
57397
|
__isTeleport?: undefined;
|
|
57084
57398
|
__isSuspense?: undefined;
|
|
57085
57399
|
} & vue.ComponentOptionsBase<{} & {
|
|
57086
|
-
target?: HTMLElement | undefined;
|
|
57400
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
57087
57401
|
} & {
|
|
57088
57402
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
57089
57403
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -57098,9 +57412,9 @@ declare const VDialogTransition: {
|
|
|
57098
57412
|
[key: string]: any;
|
|
57099
57413
|
}>[];
|
|
57100
57414
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
57101
|
-
target: PropType<HTMLElement>;
|
|
57415
|
+
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
57102
57416
|
}, vue.ExtractPropTypes<{
|
|
57103
|
-
target: PropType<HTMLElement>;
|
|
57417
|
+
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
57104
57418
|
}>>;
|
|
57105
57419
|
type VDialogTransition = InstanceType<typeof VDialogTransition>;
|
|
57106
57420
|
|
|
@@ -60164,6 +60478,7 @@ declare const VBottomSheet: {
|
|
|
60164
60478
|
maxWidth?: string | number | undefined;
|
|
60165
60479
|
minHeight?: string | number | undefined;
|
|
60166
60480
|
minWidth?: string | number | undefined;
|
|
60481
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
60167
60482
|
class?: any;
|
|
60168
60483
|
$children?: vue.VNodeChild | {
|
|
60169
60484
|
default?: ((arg: {
|
|
@@ -60231,7 +60546,7 @@ declare const VBottomSheet: {
|
|
|
60231
60546
|
[key: string]: any;
|
|
60232
60547
|
}>) => void)[] | undefined;
|
|
60233
60548
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
60234
|
-
activator?:
|
|
60549
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
60235
60550
|
"v-slot:activator"?: false | ((arg: {
|
|
60236
60551
|
isActive: boolean;
|
|
60237
60552
|
props: Record<string, any>;
|
|
@@ -60302,10 +60617,11 @@ declare const VBottomSheet: {
|
|
|
60302
60617
|
maxWidth?: string | number | undefined;
|
|
60303
60618
|
minHeight?: string | number | undefined;
|
|
60304
60619
|
minWidth?: string | number | undefined;
|
|
60620
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
60305
60621
|
class?: any;
|
|
60306
60622
|
theme?: string | undefined;
|
|
60307
60623
|
contentClass?: any;
|
|
60308
|
-
activator?:
|
|
60624
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
60309
60625
|
closeDelay?: string | number | undefined;
|
|
60310
60626
|
openDelay?: string | number | undefined;
|
|
60311
60627
|
openOnClick?: boolean | undefined;
|
|
@@ -60448,10 +60764,11 @@ declare const VBottomSheet: {
|
|
|
60448
60764
|
maxWidth?: string | number | undefined;
|
|
60449
60765
|
minHeight?: string | number | undefined;
|
|
60450
60766
|
minWidth?: string | number | undefined;
|
|
60767
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
60451
60768
|
class?: any;
|
|
60452
60769
|
theme?: string | undefined;
|
|
60453
60770
|
contentClass?: any;
|
|
60454
|
-
activator?:
|
|
60771
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
60455
60772
|
closeDelay?: string | number | undefined;
|
|
60456
60773
|
openDelay?: string | number | undefined;
|
|
60457
60774
|
openOnClick?: boolean | undefined;
|
|
@@ -60531,10 +60848,11 @@ declare const VBottomSheet: {
|
|
|
60531
60848
|
maxWidth?: string | number | undefined;
|
|
60532
60849
|
minHeight?: string | number | undefined;
|
|
60533
60850
|
minWidth?: string | number | undefined;
|
|
60851
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
60534
60852
|
class?: any;
|
|
60535
60853
|
theme?: string | undefined;
|
|
60536
60854
|
contentClass?: any;
|
|
60537
|
-
activator?:
|
|
60855
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
60538
60856
|
closeDelay?: string | number | undefined;
|
|
60539
60857
|
openDelay?: string | number | undefined;
|
|
60540
60858
|
openOnClick?: boolean | undefined;
|
|
@@ -60691,7 +61009,8 @@ declare const VBottomSheet: {
|
|
|
60691
61009
|
};
|
|
60692
61010
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
60693
61011
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
60694
|
-
|
|
61012
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
61013
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
60695
61014
|
activatorProps: {
|
|
60696
61015
|
type: vue.PropType<Record<string, any>>;
|
|
60697
61016
|
default: () => {};
|
|
@@ -60812,7 +61131,8 @@ declare const VBottomSheet: {
|
|
|
60812
61131
|
};
|
|
60813
61132
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
60814
61133
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
60815
|
-
|
|
61134
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
61135
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
60816
61136
|
activatorProps: {
|
|
60817
61137
|
type: vue.PropType<Record<string, any>>;
|
|
60818
61138
|
default: () => {};
|
|
@@ -74772,8 +75092,8 @@ declare const VOtpInput: {
|
|
|
74772
75092
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
74773
75093
|
bgColor?: string | undefined;
|
|
74774
75094
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
74775
|
-
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((val: boolean) => any)) | undefined;
|
|
74776
75095
|
baseColor?: string | undefined;
|
|
75096
|
+
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((val: boolean) => any)) | undefined;
|
|
74777
75097
|
onFinish?: ((val: string) => any) | undefined;
|
|
74778
75098
|
};
|
|
74779
75099
|
$attrs: {
|
|
@@ -74821,8 +75141,8 @@ declare const VOtpInput: {
|
|
|
74821
75141
|
rounded?: string | number | boolean | undefined;
|
|
74822
75142
|
modelValue?: string | number | undefined;
|
|
74823
75143
|
bgColor?: string | undefined;
|
|
74824
|
-
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74825
75144
|
baseColor?: string | undefined;
|
|
75145
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74826
75146
|
} & {
|
|
74827
75147
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74828
75148
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -74917,8 +75237,8 @@ declare const VOtpInput: {
|
|
|
74917
75237
|
rounded?: string | number | boolean | undefined;
|
|
74918
75238
|
modelValue?: string | number | undefined;
|
|
74919
75239
|
bgColor?: string | undefined;
|
|
74920
|
-
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74921
75240
|
baseColor?: string | undefined;
|
|
75241
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74922
75242
|
} & {
|
|
74923
75243
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74924
75244
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -74973,8 +75293,8 @@ declare const VOtpInput: {
|
|
|
74973
75293
|
rounded?: string | number | boolean | undefined;
|
|
74974
75294
|
modelValue?: string | number | undefined;
|
|
74975
75295
|
bgColor?: string | undefined;
|
|
74976
|
-
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74977
75296
|
baseColor?: string | undefined;
|
|
75297
|
+
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
74978
75298
|
} & {
|
|
74979
75299
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
74980
75300
|
default?: (() => vue.VNodeChild) | undefined;
|