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
|
@@ -3536,13 +3536,13 @@ declare const VField: {
|
|
|
3536
3536
|
}>) => void)[] | undefined;
|
|
3537
3537
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3538
3538
|
bgColor?: string | undefined;
|
|
3539
|
+
baseColor?: string | undefined;
|
|
3539
3540
|
appendInnerIcon?: IconValue | undefined;
|
|
3540
3541
|
prependInnerIcon?: IconValue | undefined;
|
|
3541
3542
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3542
3543
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3543
3544
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3544
3545
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
3545
|
-
baseColor?: string | undefined;
|
|
3546
3546
|
};
|
|
3547
3547
|
$attrs: {
|
|
3548
3548
|
[x: string]: unknown;
|
|
@@ -3600,6 +3600,7 @@ declare const VField: {
|
|
|
3600
3600
|
theme?: string | undefined;
|
|
3601
3601
|
rounded?: string | number | boolean | undefined;
|
|
3602
3602
|
bgColor?: string | undefined;
|
|
3603
|
+
baseColor?: string | undefined;
|
|
3603
3604
|
appendInnerIcon?: IconValue | undefined;
|
|
3604
3605
|
prependInnerIcon?: IconValue | undefined;
|
|
3605
3606
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3607,7 +3608,6 @@ declare const VField: {
|
|
|
3607
3608
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3608
3609
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3609
3610
|
centerAffix?: boolean | undefined;
|
|
3610
|
-
baseColor?: string | undefined;
|
|
3611
3611
|
} & {
|
|
3612
3612
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3613
3613
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -3697,6 +3697,7 @@ declare const VField: {
|
|
|
3697
3697
|
theme?: string | undefined;
|
|
3698
3698
|
rounded?: string | number | boolean | undefined;
|
|
3699
3699
|
bgColor?: string | undefined;
|
|
3700
|
+
baseColor?: string | undefined;
|
|
3700
3701
|
appendInnerIcon?: IconValue | undefined;
|
|
3701
3702
|
prependInnerIcon?: IconValue | undefined;
|
|
3702
3703
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3704,7 +3705,6 @@ declare const VField: {
|
|
|
3704
3705
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3705
3706
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3706
3707
|
centerAffix?: boolean | undefined;
|
|
3707
|
-
baseColor?: string | undefined;
|
|
3708
3708
|
} & {
|
|
3709
3709
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3710
3710
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -3737,6 +3737,7 @@ declare const VField: {
|
|
|
3737
3737
|
theme?: string | undefined;
|
|
3738
3738
|
rounded?: string | number | boolean | undefined;
|
|
3739
3739
|
bgColor?: string | undefined;
|
|
3740
|
+
baseColor?: string | undefined;
|
|
3740
3741
|
appendInnerIcon?: IconValue | undefined;
|
|
3741
3742
|
prependInnerIcon?: IconValue | undefined;
|
|
3742
3743
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -3744,7 +3745,6 @@ declare const VField: {
|
|
|
3744
3745
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
3745
3746
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
3746
3747
|
centerAffix?: boolean | undefined;
|
|
3747
|
-
baseColor?: string | undefined;
|
|
3748
3748
|
} & {
|
|
3749
3749
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
3750
3750
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -4716,7 +4716,7 @@ type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
|
4716
4716
|
interface ScrollStrategyData {
|
|
4717
4717
|
root: Ref<HTMLElement | undefined>;
|
|
4718
4718
|
contentEl: Ref<HTMLElement | undefined>;
|
|
4719
|
-
|
|
4719
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
4720
4720
|
isActive: Ref<boolean>;
|
|
4721
4721
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
4722
4722
|
}
|
|
@@ -4737,7 +4737,7 @@ declare function repositionScrollStrategy(data: ScrollStrategyData, props: Strat
|
|
|
4737
4737
|
|
|
4738
4738
|
interface LocationStrategyData {
|
|
4739
4739
|
contentEl: Ref<HTMLElement | undefined>;
|
|
4740
|
-
|
|
4740
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
4741
4741
|
isActive: Ref<boolean>;
|
|
4742
4742
|
isRtl: Ref<boolean>;
|
|
4743
4743
|
}
|
|
@@ -4895,6 +4895,7 @@ declare const VAutocomplete: {
|
|
|
4895
4895
|
bgColor?: string | undefined;
|
|
4896
4896
|
prependIcon?: IconValue | undefined;
|
|
4897
4897
|
appendIcon?: IconValue | undefined;
|
|
4898
|
+
baseColor?: string | undefined;
|
|
4898
4899
|
prependInnerIcon?: IconValue | undefined;
|
|
4899
4900
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
4900
4901
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -4905,7 +4906,6 @@ declare const VAutocomplete: {
|
|
|
4905
4906
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
4906
4907
|
hint?: string | undefined;
|
|
4907
4908
|
hideDetails?: boolean | "auto" | undefined;
|
|
4908
|
-
baseColor?: string | undefined;
|
|
4909
4909
|
suffix?: string | undefined;
|
|
4910
4910
|
counterValue?: ((value: any) => number) | undefined;
|
|
4911
4911
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -4947,6 +4947,7 @@ declare const VAutocomplete: {
|
|
|
4947
4947
|
maxWidth?: string | number | undefined;
|
|
4948
4948
|
minHeight?: string | number | undefined;
|
|
4949
4949
|
minWidth?: string | number | undefined;
|
|
4950
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
4950
4951
|
class?: any;
|
|
4951
4952
|
$children?: vue.VNodeChild | {
|
|
4952
4953
|
default?: ((arg: {
|
|
@@ -5015,7 +5016,7 @@ declare const VAutocomplete: {
|
|
|
5015
5016
|
[key: string]: any;
|
|
5016
5017
|
}>) => void)[] | undefined;
|
|
5017
5018
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5018
|
-
activator?:
|
|
5019
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5019
5020
|
"v-slot:activator"?: false | ((arg: {
|
|
5020
5021
|
isActive: boolean;
|
|
5021
5022
|
props: Record<string, any>;
|
|
@@ -5165,6 +5166,7 @@ declare const VAutocomplete: {
|
|
|
5165
5166
|
bgColor?: string | undefined;
|
|
5166
5167
|
prependIcon?: IconValue | undefined;
|
|
5167
5168
|
appendIcon?: IconValue | undefined;
|
|
5169
|
+
baseColor?: string | undefined;
|
|
5168
5170
|
prependInnerIcon?: IconValue | undefined;
|
|
5169
5171
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5170
5172
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5176,7 +5178,6 @@ declare const VAutocomplete: {
|
|
|
5176
5178
|
centerAffix?: boolean | undefined;
|
|
5177
5179
|
hint?: string | undefined;
|
|
5178
5180
|
hideDetails?: boolean | "auto" | undefined;
|
|
5179
|
-
baseColor?: string | undefined;
|
|
5180
5181
|
suffix?: string | undefined;
|
|
5181
5182
|
counterValue?: ((value: any) => number) | undefined;
|
|
5182
5183
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5218,6 +5219,7 @@ declare const VAutocomplete: {
|
|
|
5218
5219
|
maxWidth?: string | number | undefined;
|
|
5219
5220
|
minHeight?: string | number | undefined;
|
|
5220
5221
|
minWidth?: string | number | undefined;
|
|
5222
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5221
5223
|
class?: any;
|
|
5222
5224
|
$children?: vue.VNodeChild | {
|
|
5223
5225
|
default?: ((arg: {
|
|
@@ -5286,7 +5288,7 @@ declare const VAutocomplete: {
|
|
|
5286
5288
|
[key: string]: any;
|
|
5287
5289
|
}>) => void)[] | undefined;
|
|
5288
5290
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5289
|
-
activator?:
|
|
5291
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5290
5292
|
"v-slot:activator"?: false | ((arg: {
|
|
5291
5293
|
isActive: boolean;
|
|
5292
5294
|
props: Record<string, any>;
|
|
@@ -5502,6 +5504,7 @@ declare const VAutocomplete: {
|
|
|
5502
5504
|
bgColor?: string | undefined;
|
|
5503
5505
|
prependIcon?: IconValue | undefined;
|
|
5504
5506
|
appendIcon?: IconValue | undefined;
|
|
5507
|
+
baseColor?: string | undefined;
|
|
5505
5508
|
prependInnerIcon?: IconValue | undefined;
|
|
5506
5509
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5507
5510
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5513,7 +5516,6 @@ declare const VAutocomplete: {
|
|
|
5513
5516
|
centerAffix?: boolean | undefined;
|
|
5514
5517
|
hint?: string | undefined;
|
|
5515
5518
|
hideDetails?: boolean | "auto" | undefined;
|
|
5516
|
-
baseColor?: string | undefined;
|
|
5517
5519
|
suffix?: string | undefined;
|
|
5518
5520
|
counterValue?: ((value: any) => number) | undefined;
|
|
5519
5521
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5555,6 +5557,7 @@ declare const VAutocomplete: {
|
|
|
5555
5557
|
maxWidth?: string | number | undefined;
|
|
5556
5558
|
minHeight?: string | number | undefined;
|
|
5557
5559
|
minWidth?: string | number | undefined;
|
|
5560
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5558
5561
|
class?: any;
|
|
5559
5562
|
$children?: vue.VNodeChild | {
|
|
5560
5563
|
default?: ((arg: {
|
|
@@ -5623,7 +5626,7 @@ declare const VAutocomplete: {
|
|
|
5623
5626
|
[key: string]: any;
|
|
5624
5627
|
}>) => void)[] | undefined;
|
|
5625
5628
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5626
|
-
activator?:
|
|
5629
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5627
5630
|
"v-slot:activator"?: false | ((arg: {
|
|
5628
5631
|
isActive: boolean;
|
|
5629
5632
|
props: Record<string, any>;
|
|
@@ -5708,6 +5711,7 @@ declare const VAutocomplete: {
|
|
|
5708
5711
|
bgColor?: string | undefined;
|
|
5709
5712
|
prependIcon?: IconValue | undefined;
|
|
5710
5713
|
appendIcon?: IconValue | undefined;
|
|
5714
|
+
baseColor?: string | undefined;
|
|
5711
5715
|
prependInnerIcon?: IconValue | undefined;
|
|
5712
5716
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
5713
5717
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -5719,7 +5723,6 @@ declare const VAutocomplete: {
|
|
|
5719
5723
|
centerAffix?: boolean | undefined;
|
|
5720
5724
|
hint?: string | undefined;
|
|
5721
5725
|
hideDetails?: boolean | "auto" | undefined;
|
|
5722
|
-
baseColor?: string | undefined;
|
|
5723
5726
|
suffix?: string | undefined;
|
|
5724
5727
|
counterValue?: ((value: any) => number) | undefined;
|
|
5725
5728
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -5761,6 +5764,7 @@ declare const VAutocomplete: {
|
|
|
5761
5764
|
maxWidth?: string | number | undefined;
|
|
5762
5765
|
minHeight?: string | number | undefined;
|
|
5763
5766
|
minWidth?: string | number | undefined;
|
|
5767
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
5764
5768
|
class?: any;
|
|
5765
5769
|
$children?: vue.VNodeChild | {
|
|
5766
5770
|
default?: ((arg: {
|
|
@@ -5829,7 +5833,7 @@ declare const VAutocomplete: {
|
|
|
5829
5833
|
[key: string]: any;
|
|
5830
5834
|
}>) => void)[] | undefined;
|
|
5831
5835
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
5832
|
-
activator?:
|
|
5836
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
5833
5837
|
"v-slot:activator"?: false | ((arg: {
|
|
5834
5838
|
isActive: boolean;
|
|
5835
5839
|
props: Record<string, any>;
|
|
@@ -6089,6 +6093,7 @@ declare const VAutocomplete: {
|
|
|
6089
6093
|
bgColor: StringConstructor;
|
|
6090
6094
|
prependIcon: PropType<IconValue>;
|
|
6091
6095
|
appendIcon: PropType<IconValue>;
|
|
6096
|
+
baseColor: StringConstructor;
|
|
6092
6097
|
clearIcon: {
|
|
6093
6098
|
type: PropType<IconValue>;
|
|
6094
6099
|
default: string;
|
|
@@ -6121,7 +6126,6 @@ declare const VAutocomplete: {
|
|
|
6121
6126
|
hint: StringConstructor;
|
|
6122
6127
|
persistentHint: BooleanConstructor;
|
|
6123
6128
|
hideDetails: PropType<boolean | "auto">;
|
|
6124
|
-
baseColor: StringConstructor;
|
|
6125
6129
|
clearable: BooleanConstructor;
|
|
6126
6130
|
persistentClear: BooleanConstructor;
|
|
6127
6131
|
singleLine: BooleanConstructor;
|
|
@@ -6211,6 +6215,7 @@ declare const VAutocomplete: {
|
|
|
6211
6215
|
maxWidth?: string | number | undefined;
|
|
6212
6216
|
minHeight?: string | number | undefined;
|
|
6213
6217
|
minWidth?: string | number | undefined;
|
|
6218
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
6214
6219
|
class?: any;
|
|
6215
6220
|
$children?: vue.VNodeChild | {
|
|
6216
6221
|
default?: ((arg: {
|
|
@@ -6279,7 +6284,7 @@ declare const VAutocomplete: {
|
|
|
6279
6284
|
[key: string]: any;
|
|
6280
6285
|
}>) => void)[] | undefined;
|
|
6281
6286
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6282
|
-
activator?:
|
|
6287
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
6283
6288
|
"v-slot:activator"?: false | ((arg: {
|
|
6284
6289
|
isActive: boolean;
|
|
6285
6290
|
props: Record<string, any>;
|
|
@@ -6394,6 +6399,7 @@ declare const VAutocomplete: {
|
|
|
6394
6399
|
bgColor: StringConstructor;
|
|
6395
6400
|
prependIcon: PropType<IconValue>;
|
|
6396
6401
|
appendIcon: PropType<IconValue>;
|
|
6402
|
+
baseColor: StringConstructor;
|
|
6397
6403
|
clearIcon: {
|
|
6398
6404
|
type: PropType<IconValue>;
|
|
6399
6405
|
default: string;
|
|
@@ -6426,7 +6432,6 @@ declare const VAutocomplete: {
|
|
|
6426
6432
|
hint: StringConstructor;
|
|
6427
6433
|
persistentHint: BooleanConstructor;
|
|
6428
6434
|
hideDetails: PropType<boolean | "auto">;
|
|
6429
|
-
baseColor: StringConstructor;
|
|
6430
6435
|
clearable: BooleanConstructor;
|
|
6431
6436
|
persistentClear: BooleanConstructor;
|
|
6432
6437
|
singleLine: BooleanConstructor;
|
|
@@ -6516,6 +6521,7 @@ declare const VAutocomplete: {
|
|
|
6516
6521
|
maxWidth?: string | number | undefined;
|
|
6517
6522
|
minHeight?: string | number | undefined;
|
|
6518
6523
|
minWidth?: string | number | undefined;
|
|
6524
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
6519
6525
|
class?: any;
|
|
6520
6526
|
$children?: vue.VNodeChild | {
|
|
6521
6527
|
default?: ((arg: {
|
|
@@ -6584,7 +6590,7 @@ declare const VAutocomplete: {
|
|
|
6584
6590
|
[key: string]: any;
|
|
6585
6591
|
}>) => void)[] | undefined;
|
|
6586
6592
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6587
|
-
activator?:
|
|
6593
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
6588
6594
|
"v-slot:activator"?: false | ((arg: {
|
|
6589
6595
|
isActive: boolean;
|
|
6590
6596
|
props: Record<string, any>;
|
|
@@ -6638,6 +6644,7 @@ declare const VAvatar: {
|
|
|
6638
6644
|
key?: string | number | symbol | undefined;
|
|
6639
6645
|
color?: string | undefined;
|
|
6640
6646
|
image?: string | undefined;
|
|
6647
|
+
text?: string | undefined;
|
|
6641
6648
|
class?: any;
|
|
6642
6649
|
icon?: IconValue | undefined;
|
|
6643
6650
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -6716,6 +6723,7 @@ declare const VAvatar: {
|
|
|
6716
6723
|
} & {
|
|
6717
6724
|
color?: string | undefined;
|
|
6718
6725
|
image?: string | undefined;
|
|
6726
|
+
text?: string | undefined;
|
|
6719
6727
|
class?: any;
|
|
6720
6728
|
icon?: IconValue | undefined;
|
|
6721
6729
|
theme?: string | undefined;
|
|
@@ -6773,6 +6781,7 @@ declare const VAvatar: {
|
|
|
6773
6781
|
} & {
|
|
6774
6782
|
color?: string | undefined;
|
|
6775
6783
|
image?: string | undefined;
|
|
6784
|
+
text?: string | undefined;
|
|
6776
6785
|
class?: any;
|
|
6777
6786
|
icon?: IconValue | undefined;
|
|
6778
6787
|
theme?: string | undefined;
|
|
@@ -6801,6 +6810,7 @@ declare const VAvatar: {
|
|
|
6801
6810
|
} & {
|
|
6802
6811
|
color?: string | undefined;
|
|
6803
6812
|
image?: string | undefined;
|
|
6813
|
+
text?: string | undefined;
|
|
6804
6814
|
class?: any;
|
|
6805
6815
|
icon?: IconValue | undefined;
|
|
6806
6816
|
theme?: string | undefined;
|
|
@@ -6864,6 +6874,7 @@ declare const VAvatar: {
|
|
|
6864
6874
|
end: BooleanConstructor;
|
|
6865
6875
|
icon: vue.PropType<IconValue>;
|
|
6866
6876
|
image: StringConstructor;
|
|
6877
|
+
text: StringConstructor;
|
|
6867
6878
|
}, vue.ExtractPropTypes<{
|
|
6868
6879
|
color: StringConstructor;
|
|
6869
6880
|
variant: Omit<{
|
|
@@ -6901,6 +6912,7 @@ declare const VAvatar: {
|
|
|
6901
6912
|
end: BooleanConstructor;
|
|
6902
6913
|
icon: vue.PropType<IconValue>;
|
|
6903
6914
|
image: StringConstructor;
|
|
6915
|
+
text: StringConstructor;
|
|
6904
6916
|
}>>;
|
|
6905
6917
|
type VAvatar = InstanceType<typeof VAvatar>;
|
|
6906
6918
|
|
|
@@ -7283,6 +7295,10 @@ declare const VBadge: {
|
|
|
7283
7295
|
}>>;
|
|
7284
7296
|
type VBadge = InstanceType<typeof VBadge>;
|
|
7285
7297
|
|
|
7298
|
+
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
|
7299
|
+
type Breakpoint = typeof breakpoints[number];
|
|
7300
|
+
type DisplayBreakpoint = 'xs' | Breakpoint;
|
|
7301
|
+
|
|
7286
7302
|
declare const VBanner: {
|
|
7287
7303
|
new (...args: any[]): {
|
|
7288
7304
|
$: vue.ComponentInternalInstance;
|
|
@@ -7367,6 +7383,7 @@ declare const VBanner: {
|
|
|
7367
7383
|
}>) => void)[] | undefined;
|
|
7368
7384
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
7369
7385
|
lines?: "one" | "two" | "three" | undefined;
|
|
7386
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7370
7387
|
avatar?: string | undefined;
|
|
7371
7388
|
"v-slot:actions"?: false | (() => vue.VNodeChild) | undefined;
|
|
7372
7389
|
};
|
|
@@ -7418,6 +7435,7 @@ declare const VBanner: {
|
|
|
7418
7435
|
theme?: string | undefined;
|
|
7419
7436
|
rounded?: string | number | boolean | undefined;
|
|
7420
7437
|
lines?: "one" | "two" | "three" | undefined;
|
|
7438
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7421
7439
|
avatar?: string | undefined;
|
|
7422
7440
|
} & {
|
|
7423
7441
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7501,6 +7519,7 @@ declare const VBanner: {
|
|
|
7501
7519
|
theme?: string | undefined;
|
|
7502
7520
|
rounded?: string | number | boolean | undefined;
|
|
7503
7521
|
lines?: "one" | "two" | "three" | undefined;
|
|
7522
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7504
7523
|
avatar?: string | undefined;
|
|
7505
7524
|
} & {
|
|
7506
7525
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7548,6 +7567,7 @@ declare const VBanner: {
|
|
|
7548
7567
|
theme?: string | undefined;
|
|
7549
7568
|
rounded?: string | number | boolean | undefined;
|
|
7550
7569
|
lines?: "one" | "two" | "three" | undefined;
|
|
7570
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
7551
7571
|
avatar?: string | undefined;
|
|
7552
7572
|
} & {
|
|
7553
7573
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -7606,6 +7626,7 @@ declare const VBanner: {
|
|
|
7606
7626
|
type: (StringConstructor | NumberConstructor)[];
|
|
7607
7627
|
validator(v: any): boolean;
|
|
7608
7628
|
};
|
|
7629
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
7609
7630
|
height: (StringConstructor | NumberConstructor)[];
|
|
7610
7631
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7611
7632
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -7649,6 +7670,7 @@ declare const VBanner: {
|
|
|
7649
7670
|
type: (StringConstructor | NumberConstructor)[];
|
|
7650
7671
|
validator(v: any): boolean;
|
|
7651
7672
|
};
|
|
7673
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
7652
7674
|
height: (StringConstructor | NumberConstructor)[];
|
|
7653
7675
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
7654
7676
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -8534,6 +8556,12 @@ declare const VBreadcrumbs: {
|
|
|
8534
8556
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8535
8557
|
[key: string]: any;
|
|
8536
8558
|
}>[]) | undefined;
|
|
8559
|
+
item?: ((arg: {
|
|
8560
|
+
item: BreadcrumbItem;
|
|
8561
|
+
index: number;
|
|
8562
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8563
|
+
[key: string]: any;
|
|
8564
|
+
}>[]) | undefined;
|
|
8537
8565
|
default?: (() => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8538
8566
|
[key: string]: any;
|
|
8539
8567
|
}>[]) | undefined;
|
|
@@ -8556,7 +8584,7 @@ declare const VBreadcrumbs: {
|
|
|
8556
8584
|
bgColor?: string | undefined;
|
|
8557
8585
|
activeClass?: string | undefined;
|
|
8558
8586
|
activeColor?: string | undefined;
|
|
8559
|
-
}, {}, 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, {
|
|
8587
|
+
}, {}, 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, {
|
|
8560
8588
|
style: vue.StyleValue;
|
|
8561
8589
|
disabled: boolean;
|
|
8562
8590
|
tag: string;
|
|
@@ -8579,6 +8607,12 @@ declare const VBreadcrumbs: {
|
|
|
8579
8607
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8580
8608
|
[key: string]: any;
|
|
8581
8609
|
}>[];
|
|
8610
|
+
item: (arg: {
|
|
8611
|
+
item: BreadcrumbItem;
|
|
8612
|
+
index: number;
|
|
8613
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8614
|
+
[key: string]: any;
|
|
8615
|
+
}>[];
|
|
8582
8616
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8583
8617
|
[key: string]: any;
|
|
8584
8618
|
}>[];
|
|
@@ -8634,7 +8668,7 @@ declare const VBreadcrumbs: {
|
|
|
8634
8668
|
bgColor?: string | undefined;
|
|
8635
8669
|
activeClass?: string | undefined;
|
|
8636
8670
|
activeColor?: string | undefined;
|
|
8637
|
-
}, {}, 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, {
|
|
8671
|
+
}, {}, 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, {
|
|
8638
8672
|
style: vue.StyleValue;
|
|
8639
8673
|
disabled: boolean;
|
|
8640
8674
|
tag: string;
|
|
@@ -8657,6 +8691,12 @@ declare const VBreadcrumbs: {
|
|
|
8657
8691
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8658
8692
|
[key: string]: any;
|
|
8659
8693
|
}>[];
|
|
8694
|
+
item: (arg: {
|
|
8695
|
+
item: BreadcrumbItem;
|
|
8696
|
+
index: number;
|
|
8697
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8698
|
+
[key: string]: any;
|
|
8699
|
+
}>[];
|
|
8660
8700
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
8661
8701
|
[key: string]: any;
|
|
8662
8702
|
}>[];
|
|
@@ -8672,6 +8712,10 @@ declare const VBreadcrumbs: {
|
|
|
8672
8712
|
item: T_1;
|
|
8673
8713
|
index: number;
|
|
8674
8714
|
};
|
|
8715
|
+
item: {
|
|
8716
|
+
item: T_1;
|
|
8717
|
+
index: number;
|
|
8718
|
+
};
|
|
8675
8719
|
default: never;
|
|
8676
8720
|
}) => GenericProps<{
|
|
8677
8721
|
items?: T_1[] | undefined;
|
|
@@ -8685,6 +8729,10 @@ declare const VBreadcrumbs: {
|
|
|
8685
8729
|
item: T_1;
|
|
8686
8730
|
index: number;
|
|
8687
8731
|
};
|
|
8732
|
+
item: {
|
|
8733
|
+
item: T_1;
|
|
8734
|
+
index: number;
|
|
8735
|
+
};
|
|
8688
8736
|
default: never;
|
|
8689
8737
|
}>) & FilterPropsOptions<{
|
|
8690
8738
|
tag: Omit<{
|
|
@@ -12944,6 +12992,7 @@ declare const VImg: {
|
|
|
12944
12992
|
component?: vue.Component | undefined;
|
|
12945
12993
|
}) | undefined;
|
|
12946
12994
|
style?: vue.StyleValue | undefined;
|
|
12995
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
12947
12996
|
eager?: boolean | undefined;
|
|
12948
12997
|
options?: IntersectionObserverInit | undefined;
|
|
12949
12998
|
cover?: boolean | undefined;
|
|
@@ -12966,7 +13015,9 @@ declare const VImg: {
|
|
|
12966
13015
|
error?: (() => vue.VNodeChild) | undefined;
|
|
12967
13016
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
12968
13017
|
};
|
|
13018
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
12969
13019
|
alt?: string | undefined;
|
|
13020
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
12970
13021
|
sizes?: string | undefined;
|
|
12971
13022
|
srcset?: string | undefined;
|
|
12972
13023
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -13066,8 +13117,11 @@ declare const VImg: {
|
|
|
13066
13117
|
maxWidth?: string | number | undefined;
|
|
13067
13118
|
minHeight?: string | number | undefined;
|
|
13068
13119
|
minWidth?: string | number | undefined;
|
|
13120
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13069
13121
|
class?: any;
|
|
13122
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13070
13123
|
alt?: string | undefined;
|
|
13124
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13071
13125
|
sizes?: string | undefined;
|
|
13072
13126
|
srcset?: string | undefined;
|
|
13073
13127
|
contentClass?: string | undefined;
|
|
@@ -13111,6 +13165,7 @@ declare const VImg: {
|
|
|
13111
13165
|
component?: vue.Component | undefined;
|
|
13112
13166
|
});
|
|
13113
13167
|
style: vue.StyleValue;
|
|
13168
|
+
draggable: boolean | "false" | "true";
|
|
13114
13169
|
eager: boolean;
|
|
13115
13170
|
options: IntersectionObserverInit;
|
|
13116
13171
|
cover: boolean;
|
|
@@ -13166,8 +13221,11 @@ declare const VImg: {
|
|
|
13166
13221
|
maxWidth?: string | number | undefined;
|
|
13167
13222
|
minHeight?: string | number | undefined;
|
|
13168
13223
|
minWidth?: string | number | undefined;
|
|
13224
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13169
13225
|
class?: any;
|
|
13226
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13170
13227
|
alt?: string | undefined;
|
|
13228
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13171
13229
|
sizes?: string | undefined;
|
|
13172
13230
|
srcset?: string | undefined;
|
|
13173
13231
|
contentClass?: string | undefined;
|
|
@@ -13223,8 +13281,11 @@ declare const VImg: {
|
|
|
13223
13281
|
maxWidth?: string | number | undefined;
|
|
13224
13282
|
minHeight?: string | number | undefined;
|
|
13225
13283
|
minWidth?: string | number | undefined;
|
|
13284
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13226
13285
|
class?: any;
|
|
13286
|
+
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
13287
|
alt?: string | undefined;
|
|
13288
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13228
13289
|
sizes?: string | undefined;
|
|
13229
13290
|
srcset?: string | undefined;
|
|
13230
13291
|
contentClass?: string | undefined;
|
|
@@ -13268,6 +13329,7 @@ declare const VImg: {
|
|
|
13268
13329
|
component?: vue.Component | undefined;
|
|
13269
13330
|
});
|
|
13270
13331
|
style: vue.StyleValue;
|
|
13332
|
+
draggable: boolean | "false" | "true";
|
|
13271
13333
|
eager: boolean;
|
|
13272
13334
|
options: IntersectionObserverInit;
|
|
13273
13335
|
cover: boolean;
|
|
@@ -13309,6 +13371,10 @@ declare const VImg: {
|
|
|
13309
13371
|
inline: BooleanConstructor;
|
|
13310
13372
|
alt: StringConstructor;
|
|
13311
13373
|
cover: BooleanConstructor;
|
|
13374
|
+
draggable: {
|
|
13375
|
+
type: PropType<boolean | "false" | "true">;
|
|
13376
|
+
default: undefined;
|
|
13377
|
+
};
|
|
13312
13378
|
eager: BooleanConstructor;
|
|
13313
13379
|
gradient: StringConstructor;
|
|
13314
13380
|
lazySrc: StringConstructor;
|
|
@@ -13325,6 +13391,8 @@ declare const VImg: {
|
|
|
13325
13391
|
type: PropType<string | srcObject>;
|
|
13326
13392
|
default: string;
|
|
13327
13393
|
};
|
|
13394
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
13395
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
13328
13396
|
srcset: StringConstructor;
|
|
13329
13397
|
}, vue.ExtractPropTypes<{
|
|
13330
13398
|
transition: {
|
|
@@ -13350,6 +13418,10 @@ declare const VImg: {
|
|
|
13350
13418
|
inline: BooleanConstructor;
|
|
13351
13419
|
alt: StringConstructor;
|
|
13352
13420
|
cover: BooleanConstructor;
|
|
13421
|
+
draggable: {
|
|
13422
|
+
type: PropType<boolean | "false" | "true">;
|
|
13423
|
+
default: undefined;
|
|
13424
|
+
};
|
|
13353
13425
|
eager: BooleanConstructor;
|
|
13354
13426
|
gradient: StringConstructor;
|
|
13355
13427
|
lazySrc: StringConstructor;
|
|
@@ -13366,6 +13438,8 @@ declare const VImg: {
|
|
|
13366
13438
|
type: PropType<string | srcObject>;
|
|
13367
13439
|
default: string;
|
|
13368
13440
|
};
|
|
13441
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
13442
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
13369
13443
|
srcset: StringConstructor;
|
|
13370
13444
|
}>>;
|
|
13371
13445
|
type VImg = InstanceType<typeof VImg>;
|
|
@@ -13378,6 +13452,7 @@ declare const VCarouselItem: {
|
|
|
13378
13452
|
inline?: boolean | undefined;
|
|
13379
13453
|
transition?: string | boolean | undefined;
|
|
13380
13454
|
style?: vue.StyleValue | undefined;
|
|
13455
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13381
13456
|
eager?: boolean | undefined;
|
|
13382
13457
|
disabled?: boolean | undefined;
|
|
13383
13458
|
options?: IntersectionObserverInit | undefined;
|
|
@@ -13400,7 +13475,9 @@ declare const VCarouselItem: {
|
|
|
13400
13475
|
error?: (() => vue.VNodeChild) | undefined;
|
|
13401
13476
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
13402
13477
|
};
|
|
13478
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13403
13479
|
alt?: string | undefined;
|
|
13480
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13404
13481
|
sizes?: string | undefined;
|
|
13405
13482
|
srcset?: string | undefined;
|
|
13406
13483
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -13501,8 +13578,11 @@ declare const VCarouselItem: {
|
|
|
13501
13578
|
minWidth?: string | number | undefined;
|
|
13502
13579
|
transition?: string | boolean | undefined;
|
|
13503
13580
|
value?: any;
|
|
13581
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13504
13582
|
class?: any;
|
|
13583
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13505
13584
|
alt?: string | undefined;
|
|
13585
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13506
13586
|
sizes?: string | undefined;
|
|
13507
13587
|
srcset?: string | undefined;
|
|
13508
13588
|
contentClass?: string | undefined;
|
|
@@ -13532,6 +13612,7 @@ declare const VCarouselItem: {
|
|
|
13532
13612
|
inline: boolean;
|
|
13533
13613
|
transition: string | boolean;
|
|
13534
13614
|
style: vue.StyleValue;
|
|
13615
|
+
draggable: boolean | "false" | "true";
|
|
13535
13616
|
eager: boolean;
|
|
13536
13617
|
disabled: boolean;
|
|
13537
13618
|
options: IntersectionObserverInit;
|
|
@@ -13589,8 +13670,11 @@ declare const VCarouselItem: {
|
|
|
13589
13670
|
minWidth?: string | number | undefined;
|
|
13590
13671
|
transition?: string | boolean | undefined;
|
|
13591
13672
|
value?: any;
|
|
13673
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13592
13674
|
class?: any;
|
|
13675
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13593
13676
|
alt?: string | undefined;
|
|
13677
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13594
13678
|
sizes?: string | undefined;
|
|
13595
13679
|
srcset?: string | undefined;
|
|
13596
13680
|
contentClass?: string | undefined;
|
|
@@ -13638,8 +13722,11 @@ declare const VCarouselItem: {
|
|
|
13638
13722
|
minWidth?: string | number | undefined;
|
|
13639
13723
|
transition?: string | boolean | undefined;
|
|
13640
13724
|
value?: any;
|
|
13725
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
13641
13726
|
class?: any;
|
|
13727
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
13642
13728
|
alt?: string | undefined;
|
|
13729
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
13643
13730
|
sizes?: string | undefined;
|
|
13644
13731
|
srcset?: string | undefined;
|
|
13645
13732
|
contentClass?: string | undefined;
|
|
@@ -13669,6 +13756,7 @@ declare const VCarouselItem: {
|
|
|
13669
13756
|
inline: boolean;
|
|
13670
13757
|
transition: string | boolean;
|
|
13671
13758
|
style: vue.StyleValue;
|
|
13759
|
+
draggable: boolean | "false" | "true";
|
|
13672
13760
|
eager: boolean;
|
|
13673
13761
|
disabled: boolean;
|
|
13674
13762
|
options: IntersectionObserverInit;
|
|
@@ -13717,6 +13805,10 @@ declare const VCarouselItem: {
|
|
|
13717
13805
|
inline: BooleanConstructor;
|
|
13718
13806
|
alt: StringConstructor;
|
|
13719
13807
|
cover: BooleanConstructor;
|
|
13808
|
+
draggable: {
|
|
13809
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
13810
|
+
default: undefined;
|
|
13811
|
+
};
|
|
13720
13812
|
gradient: StringConstructor;
|
|
13721
13813
|
lazySrc: StringConstructor;
|
|
13722
13814
|
options: {
|
|
@@ -13732,6 +13824,8 @@ declare const VCarouselItem: {
|
|
|
13732
13824
|
type: vue.PropType<string | srcObject>;
|
|
13733
13825
|
default: string;
|
|
13734
13826
|
};
|
|
13827
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
13828
|
+
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">;
|
|
13735
13829
|
srcset: StringConstructor;
|
|
13736
13830
|
}, vue.ExtractPropTypes<{
|
|
13737
13831
|
eager: BooleanConstructor;
|
|
@@ -13762,6 +13856,10 @@ declare const VCarouselItem: {
|
|
|
13762
13856
|
inline: BooleanConstructor;
|
|
13763
13857
|
alt: StringConstructor;
|
|
13764
13858
|
cover: BooleanConstructor;
|
|
13859
|
+
draggable: {
|
|
13860
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
13861
|
+
default: undefined;
|
|
13862
|
+
};
|
|
13765
13863
|
gradient: StringConstructor;
|
|
13766
13864
|
lazySrc: StringConstructor;
|
|
13767
13865
|
options: {
|
|
@@ -13777,6 +13875,8 @@ declare const VCarouselItem: {
|
|
|
13777
13875
|
type: vue.PropType<string | srcObject>;
|
|
13778
13876
|
default: string;
|
|
13779
13877
|
};
|
|
13878
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
13879
|
+
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">;
|
|
13780
13880
|
srcset: StringConstructor;
|
|
13781
13881
|
}>>;
|
|
13782
13882
|
type VCarouselItem = InstanceType<typeof VCarouselItem>;
|
|
@@ -14205,6 +14305,7 @@ declare const VSelectionControl: {
|
|
|
14205
14305
|
defaultsTarget?: string | undefined;
|
|
14206
14306
|
falseIcon?: IconValue | undefined;
|
|
14207
14307
|
trueIcon?: IconValue | undefined;
|
|
14308
|
+
baseColor?: string | undefined;
|
|
14208
14309
|
trueValue?: any;
|
|
14209
14310
|
falseValue?: any;
|
|
14210
14311
|
};
|
|
@@ -14257,6 +14358,7 @@ declare const VSelectionControl: {
|
|
|
14257
14358
|
defaultsTarget?: string | undefined;
|
|
14258
14359
|
falseIcon?: IconValue | undefined;
|
|
14259
14360
|
trueIcon?: IconValue | undefined;
|
|
14361
|
+
baseColor?: string | undefined;
|
|
14260
14362
|
trueValue?: any;
|
|
14261
14363
|
falseValue?: any;
|
|
14262
14364
|
} & {
|
|
@@ -14334,6 +14436,7 @@ declare const VSelectionControl: {
|
|
|
14334
14436
|
defaultsTarget?: string | undefined;
|
|
14335
14437
|
falseIcon?: IconValue | undefined;
|
|
14336
14438
|
trueIcon?: IconValue | undefined;
|
|
14439
|
+
baseColor?: string | undefined;
|
|
14337
14440
|
trueValue?: any;
|
|
14338
14441
|
falseValue?: any;
|
|
14339
14442
|
} & {
|
|
@@ -14367,6 +14470,7 @@ declare const VSelectionControl: {
|
|
|
14367
14470
|
defaultsTarget?: string | undefined;
|
|
14368
14471
|
falseIcon?: IconValue | undefined;
|
|
14369
14472
|
trueIcon?: IconValue | undefined;
|
|
14473
|
+
baseColor?: string | undefined;
|
|
14370
14474
|
trueValue?: any;
|
|
14371
14475
|
falseValue?: any;
|
|
14372
14476
|
} & {
|
|
@@ -14448,6 +14552,7 @@ declare const VSelectionControl: {
|
|
|
14448
14552
|
default: typeof deepEqual;
|
|
14449
14553
|
};
|
|
14450
14554
|
label: StringConstructor;
|
|
14555
|
+
baseColor: StringConstructor;
|
|
14451
14556
|
trueValue: null;
|
|
14452
14557
|
falseValue: null;
|
|
14453
14558
|
value: null;
|
|
@@ -14491,6 +14596,7 @@ declare const VSelectionControl: {
|
|
|
14491
14596
|
default: typeof deepEqual;
|
|
14492
14597
|
};
|
|
14493
14598
|
label: StringConstructor;
|
|
14599
|
+
baseColor: StringConstructor;
|
|
14494
14600
|
trueValue: null;
|
|
14495
14601
|
falseValue: null;
|
|
14496
14602
|
value: null;
|
|
@@ -14616,6 +14722,7 @@ declare const VCheckbox: {
|
|
|
14616
14722
|
prependIcon?: IconValue | undefined;
|
|
14617
14723
|
appendIcon?: IconValue | undefined;
|
|
14618
14724
|
defaultsTarget?: string | undefined;
|
|
14725
|
+
baseColor?: string | undefined;
|
|
14619
14726
|
trueValue?: any;
|
|
14620
14727
|
falseValue?: any;
|
|
14621
14728
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -14706,6 +14813,7 @@ declare const VCheckbox: {
|
|
|
14706
14813
|
prependIcon?: IconValue | undefined;
|
|
14707
14814
|
appendIcon?: IconValue | undefined;
|
|
14708
14815
|
defaultsTarget?: string | undefined;
|
|
14816
|
+
baseColor?: string | undefined;
|
|
14709
14817
|
trueValue?: any;
|
|
14710
14818
|
falseValue?: any;
|
|
14711
14819
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -14872,6 +14980,7 @@ declare const VCheckbox: {
|
|
|
14872
14980
|
prependIcon?: IconValue | undefined;
|
|
14873
14981
|
appendIcon?: IconValue | undefined;
|
|
14874
14982
|
defaultsTarget?: string | undefined;
|
|
14983
|
+
baseColor?: string | undefined;
|
|
14875
14984
|
trueValue?: any;
|
|
14876
14985
|
falseValue?: any;
|
|
14877
14986
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -14970,6 +15079,7 @@ declare const VCheckbox: {
|
|
|
14970
15079
|
prependIcon?: IconValue | undefined;
|
|
14971
15080
|
appendIcon?: IconValue | undefined;
|
|
14972
15081
|
defaultsTarget?: string | undefined;
|
|
15082
|
+
baseColor?: string | undefined;
|
|
14973
15083
|
trueValue?: any;
|
|
14974
15084
|
falseValue?: any;
|
|
14975
15085
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -15129,6 +15239,7 @@ declare const VCheckbox: {
|
|
|
15129
15239
|
type: vue.PropType<typeof deepEqual>;
|
|
15130
15240
|
default: typeof deepEqual;
|
|
15131
15241
|
};
|
|
15242
|
+
baseColor: StringConstructor;
|
|
15132
15243
|
trueValue: null;
|
|
15133
15244
|
falseValue: null;
|
|
15134
15245
|
indeterminateIcon: {
|
|
@@ -15218,6 +15329,7 @@ declare const VCheckbox: {
|
|
|
15218
15329
|
type: vue.PropType<typeof deepEqual>;
|
|
15219
15330
|
default: typeof deepEqual;
|
|
15220
15331
|
};
|
|
15332
|
+
baseColor: StringConstructor;
|
|
15221
15333
|
trueValue: null;
|
|
15222
15334
|
falseValue: null;
|
|
15223
15335
|
indeterminateIcon: {
|
|
@@ -15363,6 +15475,7 @@ declare const VCheckboxBtn: {
|
|
|
15363
15475
|
modelValue?: any;
|
|
15364
15476
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15365
15477
|
defaultsTarget?: string | undefined;
|
|
15478
|
+
baseColor?: string | undefined;
|
|
15366
15479
|
trueValue?: any;
|
|
15367
15480
|
falseValue?: any;
|
|
15368
15481
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -15424,6 +15537,7 @@ declare const VCheckboxBtn: {
|
|
|
15424
15537
|
theme?: string | undefined;
|
|
15425
15538
|
modelValue?: any;
|
|
15426
15539
|
defaultsTarget?: string | undefined;
|
|
15540
|
+
baseColor?: string | undefined;
|
|
15427
15541
|
trueValue?: any;
|
|
15428
15542
|
falseValue?: any;
|
|
15429
15543
|
} & {
|
|
@@ -15543,6 +15657,7 @@ declare const VCheckboxBtn: {
|
|
|
15543
15657
|
theme?: string | undefined;
|
|
15544
15658
|
modelValue?: any;
|
|
15545
15659
|
defaultsTarget?: string | undefined;
|
|
15660
|
+
baseColor?: string | undefined;
|
|
15546
15661
|
trueValue?: any;
|
|
15547
15662
|
falseValue?: any;
|
|
15548
15663
|
} & {
|
|
@@ -15613,6 +15728,7 @@ declare const VCheckboxBtn: {
|
|
|
15613
15728
|
theme?: string | undefined;
|
|
15614
15729
|
modelValue?: any;
|
|
15615
15730
|
defaultsTarget?: string | undefined;
|
|
15731
|
+
baseColor?: string | undefined;
|
|
15616
15732
|
trueValue?: any;
|
|
15617
15733
|
falseValue?: any;
|
|
15618
15734
|
} & {
|
|
@@ -15733,6 +15849,7 @@ declare const VCheckboxBtn: {
|
|
|
15733
15849
|
default: typeof deepEqual;
|
|
15734
15850
|
};
|
|
15735
15851
|
label: StringConstructor;
|
|
15852
|
+
baseColor: StringConstructor;
|
|
15736
15853
|
trueValue: null;
|
|
15737
15854
|
falseValue: null;
|
|
15738
15855
|
value: null;
|
|
@@ -15787,6 +15904,7 @@ declare const VCheckboxBtn: {
|
|
|
15787
15904
|
default: typeof deepEqual;
|
|
15788
15905
|
};
|
|
15789
15906
|
label: StringConstructor;
|
|
15907
|
+
baseColor: StringConstructor;
|
|
15790
15908
|
trueValue: null;
|
|
15791
15909
|
falseValue: null;
|
|
15792
15910
|
value: null;
|
|
@@ -17902,6 +18020,7 @@ declare const VCombobox: {
|
|
|
17902
18020
|
bgColor?: string | undefined;
|
|
17903
18021
|
prependIcon?: IconValue | undefined;
|
|
17904
18022
|
appendIcon?: IconValue | undefined;
|
|
18023
|
+
baseColor?: string | undefined;
|
|
17905
18024
|
prependInnerIcon?: IconValue | undefined;
|
|
17906
18025
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
17907
18026
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -17912,7 +18031,6 @@ declare const VCombobox: {
|
|
|
17912
18031
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
17913
18032
|
hint?: string | undefined;
|
|
17914
18033
|
hideDetails?: boolean | "auto" | undefined;
|
|
17915
|
-
baseColor?: string | undefined;
|
|
17916
18034
|
suffix?: string | undefined;
|
|
17917
18035
|
counterValue?: ((value: any) => number) | undefined;
|
|
17918
18036
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -17954,6 +18072,7 @@ declare const VCombobox: {
|
|
|
17954
18072
|
maxWidth?: string | number | undefined;
|
|
17955
18073
|
minHeight?: string | number | undefined;
|
|
17956
18074
|
minWidth?: string | number | undefined;
|
|
18075
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
17957
18076
|
class?: any;
|
|
17958
18077
|
$children?: vue.VNodeChild | {
|
|
17959
18078
|
default?: ((arg: {
|
|
@@ -18022,7 +18141,7 @@ declare const VCombobox: {
|
|
|
18022
18141
|
[key: string]: any;
|
|
18023
18142
|
}>) => void)[] | undefined;
|
|
18024
18143
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18025
|
-
activator?:
|
|
18144
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18026
18145
|
"v-slot:activator"?: false | ((arg: {
|
|
18027
18146
|
isActive: boolean;
|
|
18028
18147
|
props: Record<string, any>;
|
|
@@ -18172,6 +18291,7 @@ declare const VCombobox: {
|
|
|
18172
18291
|
bgColor?: string | undefined;
|
|
18173
18292
|
prependIcon?: IconValue | undefined;
|
|
18174
18293
|
appendIcon?: IconValue | undefined;
|
|
18294
|
+
baseColor?: string | undefined;
|
|
18175
18295
|
prependInnerIcon?: IconValue | undefined;
|
|
18176
18296
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18177
18297
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18183,7 +18303,6 @@ declare const VCombobox: {
|
|
|
18183
18303
|
centerAffix?: boolean | undefined;
|
|
18184
18304
|
hint?: string | undefined;
|
|
18185
18305
|
hideDetails?: boolean | "auto" | undefined;
|
|
18186
|
-
baseColor?: string | undefined;
|
|
18187
18306
|
suffix?: string | undefined;
|
|
18188
18307
|
counterValue?: ((value: any) => number) | undefined;
|
|
18189
18308
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18225,6 +18344,7 @@ declare const VCombobox: {
|
|
|
18225
18344
|
maxWidth?: string | number | undefined;
|
|
18226
18345
|
minHeight?: string | number | undefined;
|
|
18227
18346
|
minWidth?: string | number | undefined;
|
|
18347
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18228
18348
|
class?: any;
|
|
18229
18349
|
$children?: vue.VNodeChild | {
|
|
18230
18350
|
default?: ((arg: {
|
|
@@ -18293,7 +18413,7 @@ declare const VCombobox: {
|
|
|
18293
18413
|
[key: string]: any;
|
|
18294
18414
|
}>) => void)[] | undefined;
|
|
18295
18415
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18296
|
-
activator?:
|
|
18416
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18297
18417
|
"v-slot:activator"?: false | ((arg: {
|
|
18298
18418
|
isActive: boolean;
|
|
18299
18419
|
props: Record<string, any>;
|
|
@@ -18509,6 +18629,7 @@ declare const VCombobox: {
|
|
|
18509
18629
|
bgColor?: string | undefined;
|
|
18510
18630
|
prependIcon?: IconValue | undefined;
|
|
18511
18631
|
appendIcon?: IconValue | undefined;
|
|
18632
|
+
baseColor?: string | undefined;
|
|
18512
18633
|
prependInnerIcon?: IconValue | undefined;
|
|
18513
18634
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18514
18635
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18520,7 +18641,6 @@ declare const VCombobox: {
|
|
|
18520
18641
|
centerAffix?: boolean | undefined;
|
|
18521
18642
|
hint?: string | undefined;
|
|
18522
18643
|
hideDetails?: boolean | "auto" | undefined;
|
|
18523
|
-
baseColor?: string | undefined;
|
|
18524
18644
|
suffix?: string | undefined;
|
|
18525
18645
|
counterValue?: ((value: any) => number) | undefined;
|
|
18526
18646
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18562,6 +18682,7 @@ declare const VCombobox: {
|
|
|
18562
18682
|
maxWidth?: string | number | undefined;
|
|
18563
18683
|
minHeight?: string | number | undefined;
|
|
18564
18684
|
minWidth?: string | number | undefined;
|
|
18685
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18565
18686
|
class?: any;
|
|
18566
18687
|
$children?: vue.VNodeChild | {
|
|
18567
18688
|
default?: ((arg: {
|
|
@@ -18630,7 +18751,7 @@ declare const VCombobox: {
|
|
|
18630
18751
|
[key: string]: any;
|
|
18631
18752
|
}>) => void)[] | undefined;
|
|
18632
18753
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18633
|
-
activator?:
|
|
18754
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18634
18755
|
"v-slot:activator"?: false | ((arg: {
|
|
18635
18756
|
isActive: boolean;
|
|
18636
18757
|
props: Record<string, any>;
|
|
@@ -18715,6 +18836,7 @@ declare const VCombobox: {
|
|
|
18715
18836
|
bgColor?: string | undefined;
|
|
18716
18837
|
prependIcon?: IconValue | undefined;
|
|
18717
18838
|
appendIcon?: IconValue | undefined;
|
|
18839
|
+
baseColor?: string | undefined;
|
|
18718
18840
|
prependInnerIcon?: IconValue | undefined;
|
|
18719
18841
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
18720
18842
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -18726,7 +18848,6 @@ declare const VCombobox: {
|
|
|
18726
18848
|
centerAffix?: boolean | undefined;
|
|
18727
18849
|
hint?: string | undefined;
|
|
18728
18850
|
hideDetails?: boolean | "auto" | undefined;
|
|
18729
|
-
baseColor?: string | undefined;
|
|
18730
18851
|
suffix?: string | undefined;
|
|
18731
18852
|
counterValue?: ((value: any) => number) | undefined;
|
|
18732
18853
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -18768,6 +18889,7 @@ declare const VCombobox: {
|
|
|
18768
18889
|
maxWidth?: string | number | undefined;
|
|
18769
18890
|
minHeight?: string | number | undefined;
|
|
18770
18891
|
minWidth?: string | number | undefined;
|
|
18892
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
18771
18893
|
class?: any;
|
|
18772
18894
|
$children?: vue.VNodeChild | {
|
|
18773
18895
|
default?: ((arg: {
|
|
@@ -18836,7 +18958,7 @@ declare const VCombobox: {
|
|
|
18836
18958
|
[key: string]: any;
|
|
18837
18959
|
}>) => void)[] | undefined;
|
|
18838
18960
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18839
|
-
activator?:
|
|
18961
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
18840
18962
|
"v-slot:activator"?: false | ((arg: {
|
|
18841
18963
|
isActive: boolean;
|
|
18842
18964
|
props: Record<string, any>;
|
|
@@ -19096,6 +19218,7 @@ declare const VCombobox: {
|
|
|
19096
19218
|
bgColor: StringConstructor;
|
|
19097
19219
|
prependIcon: PropType<IconValue>;
|
|
19098
19220
|
appendIcon: PropType<IconValue>;
|
|
19221
|
+
baseColor: StringConstructor;
|
|
19099
19222
|
clearIcon: {
|
|
19100
19223
|
type: PropType<IconValue>;
|
|
19101
19224
|
default: string;
|
|
@@ -19128,7 +19251,6 @@ declare const VCombobox: {
|
|
|
19128
19251
|
hint: StringConstructor;
|
|
19129
19252
|
persistentHint: BooleanConstructor;
|
|
19130
19253
|
hideDetails: PropType<boolean | "auto">;
|
|
19131
|
-
baseColor: StringConstructor;
|
|
19132
19254
|
clearable: BooleanConstructor;
|
|
19133
19255
|
persistentClear: BooleanConstructor;
|
|
19134
19256
|
singleLine: BooleanConstructor;
|
|
@@ -19224,6 +19346,7 @@ declare const VCombobox: {
|
|
|
19224
19346
|
maxWidth?: string | number | undefined;
|
|
19225
19347
|
minHeight?: string | number | undefined;
|
|
19226
19348
|
minWidth?: string | number | undefined;
|
|
19349
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
19227
19350
|
class?: any;
|
|
19228
19351
|
$children?: vue.VNodeChild | {
|
|
19229
19352
|
default?: ((arg: {
|
|
@@ -19292,7 +19415,7 @@ declare const VCombobox: {
|
|
|
19292
19415
|
[key: string]: any;
|
|
19293
19416
|
}>) => void)[] | undefined;
|
|
19294
19417
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19295
|
-
activator?:
|
|
19418
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
19296
19419
|
"v-slot:activator"?: false | ((arg: {
|
|
19297
19420
|
isActive: boolean;
|
|
19298
19421
|
props: Record<string, any>;
|
|
@@ -19407,6 +19530,7 @@ declare const VCombobox: {
|
|
|
19407
19530
|
bgColor: StringConstructor;
|
|
19408
19531
|
prependIcon: PropType<IconValue>;
|
|
19409
19532
|
appendIcon: PropType<IconValue>;
|
|
19533
|
+
baseColor: StringConstructor;
|
|
19410
19534
|
clearIcon: {
|
|
19411
19535
|
type: PropType<IconValue>;
|
|
19412
19536
|
default: string;
|
|
@@ -19439,7 +19563,6 @@ declare const VCombobox: {
|
|
|
19439
19563
|
hint: StringConstructor;
|
|
19440
19564
|
persistentHint: BooleanConstructor;
|
|
19441
19565
|
hideDetails: PropType<boolean | "auto">;
|
|
19442
|
-
baseColor: StringConstructor;
|
|
19443
19566
|
clearable: BooleanConstructor;
|
|
19444
19567
|
persistentClear: BooleanConstructor;
|
|
19445
19568
|
singleLine: BooleanConstructor;
|
|
@@ -19535,6 +19658,7 @@ declare const VCombobox: {
|
|
|
19535
19658
|
maxWidth?: string | number | undefined;
|
|
19536
19659
|
minHeight?: string | number | undefined;
|
|
19537
19660
|
minWidth?: string | number | undefined;
|
|
19661
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
19538
19662
|
class?: any;
|
|
19539
19663
|
$children?: vue.VNodeChild | {
|
|
19540
19664
|
default?: ((arg: {
|
|
@@ -19603,7 +19727,7 @@ declare const VCombobox: {
|
|
|
19603
19727
|
[key: string]: any;
|
|
19604
19728
|
}>) => void)[] | undefined;
|
|
19605
19729
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19606
|
-
activator?:
|
|
19730
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
19607
19731
|
"v-slot:activator"?: false | ((arg: {
|
|
19608
19732
|
isActive: boolean;
|
|
19609
19733
|
props: Record<string, any>;
|
|
@@ -20135,6 +20259,7 @@ declare const VDialog: {
|
|
|
20135
20259
|
maxWidth?: string | number | undefined;
|
|
20136
20260
|
minHeight?: string | number | undefined;
|
|
20137
20261
|
minWidth?: string | number | undefined;
|
|
20262
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20138
20263
|
class?: any;
|
|
20139
20264
|
$children?: vue.VNodeChild | {
|
|
20140
20265
|
default?: ((arg: {
|
|
@@ -20203,7 +20328,7 @@ declare const VDialog: {
|
|
|
20203
20328
|
[key: string]: any;
|
|
20204
20329
|
}>) => void)[] | undefined;
|
|
20205
20330
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20206
|
-
activator?:
|
|
20331
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20207
20332
|
"v-slot:activator"?: false | ((arg: {
|
|
20208
20333
|
isActive: boolean;
|
|
20209
20334
|
props: Record<string, any>;
|
|
@@ -20273,10 +20398,11 @@ declare const VDialog: {
|
|
|
20273
20398
|
maxWidth?: string | number | undefined;
|
|
20274
20399
|
minHeight?: string | number | undefined;
|
|
20275
20400
|
minWidth?: string | number | undefined;
|
|
20401
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20276
20402
|
class?: any;
|
|
20277
20403
|
theme?: string | undefined;
|
|
20278
20404
|
contentClass?: any;
|
|
20279
|
-
activator?:
|
|
20405
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20280
20406
|
closeDelay?: string | number | undefined;
|
|
20281
20407
|
openDelay?: string | number | undefined;
|
|
20282
20408
|
openOnClick?: boolean | undefined;
|
|
@@ -20352,6 +20478,7 @@ declare const VDialog: {
|
|
|
20352
20478
|
maxWidth?: string | number | undefined;
|
|
20353
20479
|
minHeight?: string | number | undefined;
|
|
20354
20480
|
minWidth?: string | number | undefined;
|
|
20481
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20355
20482
|
class?: any;
|
|
20356
20483
|
onAfterLeave?: (() => any) | undefined;
|
|
20357
20484
|
$children?: vue.VNodeChild | {
|
|
@@ -20421,7 +20548,7 @@ declare const VDialog: {
|
|
|
20421
20548
|
[key: string]: any;
|
|
20422
20549
|
}>) => void)[] | undefined;
|
|
20423
20550
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20424
|
-
activator?:
|
|
20551
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20425
20552
|
"v-slot:activator"?: false | ((arg: {
|
|
20426
20553
|
isActive: boolean;
|
|
20427
20554
|
props: Record<string, any>;
|
|
@@ -20488,10 +20615,11 @@ declare const VDialog: {
|
|
|
20488
20615
|
maxWidth?: string | number | undefined;
|
|
20489
20616
|
minHeight?: string | number | undefined;
|
|
20490
20617
|
minWidth?: string | number | undefined;
|
|
20618
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20491
20619
|
class?: any;
|
|
20492
20620
|
theme?: string | undefined;
|
|
20493
20621
|
contentClass?: any;
|
|
20494
|
-
activator?:
|
|
20622
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20495
20623
|
closeDelay?: string | number | undefined;
|
|
20496
20624
|
openDelay?: string | number | undefined;
|
|
20497
20625
|
openOnClick?: boolean | undefined;
|
|
@@ -20533,6 +20661,7 @@ declare const VDialog: {
|
|
|
20533
20661
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
20534
20662
|
}, {
|
|
20535
20663
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
20664
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
20536
20665
|
animateClick: () => void;
|
|
20537
20666
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
20538
20667
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -20634,10 +20763,11 @@ declare const VDialog: {
|
|
|
20634
20763
|
maxWidth?: string | number | undefined;
|
|
20635
20764
|
minHeight?: string | number | undefined;
|
|
20636
20765
|
minWidth?: string | number | undefined;
|
|
20766
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20637
20767
|
class?: any;
|
|
20638
20768
|
theme?: string | undefined;
|
|
20639
20769
|
contentClass?: any;
|
|
20640
|
-
activator?:
|
|
20770
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20641
20771
|
closeDelay?: string | number | undefined;
|
|
20642
20772
|
openDelay?: string | number | undefined;
|
|
20643
20773
|
openOnClick?: boolean | undefined;
|
|
@@ -20679,12 +20809,13 @@ declare const VDialog: {
|
|
|
20679
20809
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
20680
20810
|
} & vue.ShallowUnwrapRef<{
|
|
20681
20811
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
20812
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
20682
20813
|
animateClick: () => void;
|
|
20683
20814
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
20684
20815
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
20685
20816
|
localTop: vue.ComputedRef<boolean>;
|
|
20686
20817
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
20687
|
-
}> & {} & 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, {
|
|
20818
|
+
}> & {} & 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, {
|
|
20688
20819
|
'update:modelValue': (value: boolean) => boolean;
|
|
20689
20820
|
}, string, {
|
|
20690
20821
|
absolute: boolean;
|
|
@@ -20786,10 +20917,11 @@ declare const VDialog: {
|
|
|
20786
20917
|
maxWidth?: string | number | undefined;
|
|
20787
20918
|
minHeight?: string | number | undefined;
|
|
20788
20919
|
minWidth?: string | number | undefined;
|
|
20920
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20789
20921
|
class?: any;
|
|
20790
20922
|
theme?: string | undefined;
|
|
20791
20923
|
contentClass?: any;
|
|
20792
|
-
activator?:
|
|
20924
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20793
20925
|
closeDelay?: string | number | undefined;
|
|
20794
20926
|
openDelay?: string | number | undefined;
|
|
20795
20927
|
openOnClick?: boolean | undefined;
|
|
@@ -20865,6 +20997,7 @@ declare const VDialog: {
|
|
|
20865
20997
|
maxWidth?: string | number | undefined;
|
|
20866
20998
|
minHeight?: string | number | undefined;
|
|
20867
20999
|
minWidth?: string | number | undefined;
|
|
21000
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
20868
21001
|
class?: any;
|
|
20869
21002
|
onAfterLeave?: (() => any) | undefined;
|
|
20870
21003
|
$children?: vue.VNodeChild | {
|
|
@@ -20934,7 +21067,7 @@ declare const VDialog: {
|
|
|
20934
21067
|
[key: string]: any;
|
|
20935
21068
|
}>) => void)[] | undefined;
|
|
20936
21069
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
20937
|
-
activator?:
|
|
21070
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
20938
21071
|
"v-slot:activator"?: false | ((arg: {
|
|
20939
21072
|
isActive: boolean;
|
|
20940
21073
|
props: Record<string, any>;
|
|
@@ -21001,10 +21134,11 @@ declare const VDialog: {
|
|
|
21001
21134
|
maxWidth?: string | number | undefined;
|
|
21002
21135
|
minHeight?: string | number | undefined;
|
|
21003
21136
|
minWidth?: string | number | undefined;
|
|
21137
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21004
21138
|
class?: any;
|
|
21005
21139
|
theme?: string | undefined;
|
|
21006
21140
|
contentClass?: any;
|
|
21007
|
-
activator?:
|
|
21141
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21008
21142
|
closeDelay?: string | number | undefined;
|
|
21009
21143
|
openDelay?: string | number | undefined;
|
|
21010
21144
|
openOnClick?: boolean | undefined;
|
|
@@ -21046,6 +21180,7 @@ declare const VDialog: {
|
|
|
21046
21180
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21047
21181
|
}, {
|
|
21048
21182
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21183
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21049
21184
|
animateClick: () => void;
|
|
21050
21185
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21051
21186
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -21147,10 +21282,11 @@ declare const VDialog: {
|
|
|
21147
21282
|
maxWidth?: string | number | undefined;
|
|
21148
21283
|
minHeight?: string | number | undefined;
|
|
21149
21284
|
minWidth?: string | number | undefined;
|
|
21285
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21150
21286
|
class?: any;
|
|
21151
21287
|
theme?: string | undefined;
|
|
21152
21288
|
contentClass?: any;
|
|
21153
|
-
activator?:
|
|
21289
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21154
21290
|
closeDelay?: string | number | undefined;
|
|
21155
21291
|
openDelay?: string | number | undefined;
|
|
21156
21292
|
openOnClick?: boolean | undefined;
|
|
@@ -21192,12 +21328,13 @@ declare const VDialog: {
|
|
|
21192
21328
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21193
21329
|
} & vue.ShallowUnwrapRef<{
|
|
21194
21330
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21331
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21195
21332
|
animateClick: () => void;
|
|
21196
21333
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21197
21334
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
21198
21335
|
localTop: vue.ComputedRef<boolean>;
|
|
21199
21336
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
21200
|
-
}> & {} & 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 & {};
|
|
21337
|
+
}> & {} & 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 & {};
|
|
21201
21338
|
__isFragment?: undefined;
|
|
21202
21339
|
__isTeleport?: undefined;
|
|
21203
21340
|
__isSuspense?: undefined;
|
|
@@ -21238,10 +21375,11 @@ declare const VDialog: {
|
|
|
21238
21375
|
maxWidth?: string | number | undefined;
|
|
21239
21376
|
minHeight?: string | number | undefined;
|
|
21240
21377
|
minWidth?: string | number | undefined;
|
|
21378
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21241
21379
|
class?: any;
|
|
21242
21380
|
theme?: string | undefined;
|
|
21243
21381
|
contentClass?: any;
|
|
21244
|
-
activator?:
|
|
21382
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21245
21383
|
closeDelay?: string | number | undefined;
|
|
21246
21384
|
openDelay?: string | number | undefined;
|
|
21247
21385
|
openOnClick?: boolean | undefined;
|
|
@@ -21317,6 +21455,7 @@ declare const VDialog: {
|
|
|
21317
21455
|
maxWidth?: string | number | undefined;
|
|
21318
21456
|
minHeight?: string | number | undefined;
|
|
21319
21457
|
minWidth?: string | number | undefined;
|
|
21458
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21320
21459
|
class?: any;
|
|
21321
21460
|
onAfterLeave?: (() => any) | undefined;
|
|
21322
21461
|
$children?: vue.VNodeChild | {
|
|
@@ -21386,7 +21525,7 @@ declare const VDialog: {
|
|
|
21386
21525
|
[key: string]: any;
|
|
21387
21526
|
}>) => void)[] | undefined;
|
|
21388
21527
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21389
|
-
activator?:
|
|
21528
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21390
21529
|
"v-slot:activator"?: false | ((arg: {
|
|
21391
21530
|
isActive: boolean;
|
|
21392
21531
|
props: Record<string, any>;
|
|
@@ -21453,10 +21592,11 @@ declare const VDialog: {
|
|
|
21453
21592
|
maxWidth?: string | number | undefined;
|
|
21454
21593
|
minHeight?: string | number | undefined;
|
|
21455
21594
|
minWidth?: string | number | undefined;
|
|
21595
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21456
21596
|
class?: any;
|
|
21457
21597
|
theme?: string | undefined;
|
|
21458
21598
|
contentClass?: any;
|
|
21459
|
-
activator?:
|
|
21599
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21460
21600
|
closeDelay?: string | number | undefined;
|
|
21461
21601
|
openDelay?: string | number | undefined;
|
|
21462
21602
|
openOnClick?: boolean | undefined;
|
|
@@ -21498,6 +21638,7 @@ declare const VDialog: {
|
|
|
21498
21638
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21499
21639
|
}, {
|
|
21500
21640
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21641
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21501
21642
|
animateClick: () => void;
|
|
21502
21643
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21503
21644
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -21599,10 +21740,11 @@ declare const VDialog: {
|
|
|
21599
21740
|
maxWidth?: string | number | undefined;
|
|
21600
21741
|
minHeight?: string | number | undefined;
|
|
21601
21742
|
minWidth?: string | number | undefined;
|
|
21743
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
21602
21744
|
class?: any;
|
|
21603
21745
|
theme?: string | undefined;
|
|
21604
21746
|
contentClass?: any;
|
|
21605
|
-
activator?:
|
|
21747
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
21606
21748
|
closeDelay?: string | number | undefined;
|
|
21607
21749
|
openDelay?: string | number | undefined;
|
|
21608
21750
|
openOnClick?: boolean | undefined;
|
|
@@ -21644,12 +21786,13 @@ declare const VDialog: {
|
|
|
21644
21786
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
21645
21787
|
} & vue.ShallowUnwrapRef<{
|
|
21646
21788
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
21789
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
21647
21790
|
animateClick: () => void;
|
|
21648
21791
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
21649
21792
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
21650
21793
|
localTop: vue.ComputedRef<boolean>;
|
|
21651
21794
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
21652
|
-
}> & {} & 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, {
|
|
21795
|
+
}> & {} & 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, {
|
|
21653
21796
|
'update:modelValue': (value: boolean) => boolean;
|
|
21654
21797
|
}, string, {
|
|
21655
21798
|
absolute: boolean;
|
|
@@ -21755,7 +21898,8 @@ declare const VDialog: {
|
|
|
21755
21898
|
};
|
|
21756
21899
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
21757
21900
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
21758
|
-
|
|
21901
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
21902
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
21759
21903
|
activatorProps: {
|
|
21760
21904
|
type: vue.PropType<Record<string, any>>;
|
|
21761
21905
|
default: () => {};
|
|
@@ -21861,7 +22005,8 @@ declare const VDialog: {
|
|
|
21861
22005
|
};
|
|
21862
22006
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
21863
22007
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
21864
|
-
|
|
22008
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
22009
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
21865
22010
|
activatorProps: {
|
|
21866
22011
|
type: vue.PropType<Record<string, any>>;
|
|
21867
22012
|
default: () => {};
|
|
@@ -23521,6 +23666,7 @@ declare const VFileInput: {
|
|
|
23521
23666
|
bgColor?: string | undefined;
|
|
23522
23667
|
appendIcon?: IconValue | undefined;
|
|
23523
23668
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
23669
|
+
baseColor?: string | undefined;
|
|
23524
23670
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
23525
23671
|
label: string | undefined;
|
|
23526
23672
|
props: Record<string, any>;
|
|
@@ -23539,7 +23685,6 @@ declare const VFileInput: {
|
|
|
23539
23685
|
hint?: string | undefined;
|
|
23540
23686
|
hideDetails?: boolean | "auto" | undefined;
|
|
23541
23687
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
23542
|
-
baseColor?: string | undefined;
|
|
23543
23688
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
23544
23689
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
23545
23690
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -23648,6 +23793,7 @@ declare const VFileInput: {
|
|
|
23648
23793
|
rounded?: string | number | boolean | undefined;
|
|
23649
23794
|
bgColor?: string | undefined;
|
|
23650
23795
|
appendIcon?: IconValue | undefined;
|
|
23796
|
+
baseColor?: string | undefined;
|
|
23651
23797
|
appendInnerIcon?: IconValue | undefined;
|
|
23652
23798
|
prependInnerIcon?: IconValue | undefined;
|
|
23653
23799
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -23661,7 +23807,6 @@ declare const VFileInput: {
|
|
|
23661
23807
|
centerAffix?: boolean | undefined;
|
|
23662
23808
|
hint?: string | undefined;
|
|
23663
23809
|
hideDetails?: boolean | "auto" | undefined;
|
|
23664
|
-
baseColor?: string | undefined;
|
|
23665
23810
|
} & {
|
|
23666
23811
|
$children?: vue.VNodeChild | {
|
|
23667
23812
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -24157,6 +24302,7 @@ declare const VFileInput: {
|
|
|
24157
24302
|
rounded?: string | number | boolean | undefined;
|
|
24158
24303
|
bgColor?: string | undefined;
|
|
24159
24304
|
appendIcon?: IconValue | undefined;
|
|
24305
|
+
baseColor?: string | undefined;
|
|
24160
24306
|
appendInnerIcon?: IconValue | undefined;
|
|
24161
24307
|
prependInnerIcon?: IconValue | undefined;
|
|
24162
24308
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -24170,7 +24316,6 @@ declare const VFileInput: {
|
|
|
24170
24316
|
centerAffix?: boolean | undefined;
|
|
24171
24317
|
hint?: string | undefined;
|
|
24172
24318
|
hideDetails?: boolean | "auto" | undefined;
|
|
24173
|
-
baseColor?: string | undefined;
|
|
24174
24319
|
} & {
|
|
24175
24320
|
$children?: vue.VNodeChild | {
|
|
24176
24321
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -24569,6 +24714,7 @@ declare const VFileInput: {
|
|
|
24569
24714
|
rounded?: string | number | boolean | undefined;
|
|
24570
24715
|
bgColor?: string | undefined;
|
|
24571
24716
|
appendIcon?: IconValue | undefined;
|
|
24717
|
+
baseColor?: string | undefined;
|
|
24572
24718
|
appendInnerIcon?: IconValue | undefined;
|
|
24573
24719
|
prependInnerIcon?: IconValue | undefined;
|
|
24574
24720
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -24582,7 +24728,6 @@ declare const VFileInput: {
|
|
|
24582
24728
|
centerAffix?: boolean | undefined;
|
|
24583
24729
|
hint?: string | undefined;
|
|
24584
24730
|
hideDetails?: boolean | "auto" | undefined;
|
|
24585
|
-
baseColor?: string | undefined;
|
|
24586
24731
|
} & {
|
|
24587
24732
|
$children?: vue.VNodeChild | {
|
|
24588
24733
|
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
@@ -29842,11 +29987,11 @@ declare const VListItem: {
|
|
|
29842
29987
|
"v-slot:prepend"?: false | ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
|
29843
29988
|
prependIcon?: IconValue | undefined;
|
|
29844
29989
|
appendIcon?: IconValue | undefined;
|
|
29990
|
+
baseColor?: string | undefined;
|
|
29845
29991
|
activeClass?: string | undefined;
|
|
29846
29992
|
appendAvatar?: string | undefined;
|
|
29847
29993
|
prependAvatar?: string | undefined;
|
|
29848
29994
|
activeColor?: string | undefined;
|
|
29849
|
-
baseColor?: string | undefined;
|
|
29850
29995
|
subtitle?: string | number | boolean | undefined;
|
|
29851
29996
|
lines?: "one" | "two" | "three" | undefined;
|
|
29852
29997
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
@@ -29913,11 +30058,11 @@ declare const VListItem: {
|
|
|
29913
30058
|
rounded?: string | number | boolean | undefined;
|
|
29914
30059
|
prependIcon?: IconValue | undefined;
|
|
29915
30060
|
appendIcon?: IconValue | undefined;
|
|
30061
|
+
baseColor?: string | undefined;
|
|
29916
30062
|
activeClass?: string | undefined;
|
|
29917
30063
|
appendAvatar?: string | undefined;
|
|
29918
30064
|
prependAvatar?: string | undefined;
|
|
29919
30065
|
activeColor?: string | undefined;
|
|
29920
|
-
baseColor?: string | undefined;
|
|
29921
30066
|
subtitle?: string | number | boolean | undefined;
|
|
29922
30067
|
lines?: "one" | "two" | "three" | undefined;
|
|
29923
30068
|
} & {
|
|
@@ -30031,11 +30176,11 @@ declare const VListItem: {
|
|
|
30031
30176
|
rounded?: string | number | boolean | undefined;
|
|
30032
30177
|
prependIcon?: IconValue | undefined;
|
|
30033
30178
|
appendIcon?: IconValue | undefined;
|
|
30179
|
+
baseColor?: string | undefined;
|
|
30034
30180
|
activeClass?: string | undefined;
|
|
30035
30181
|
appendAvatar?: string | undefined;
|
|
30036
30182
|
prependAvatar?: string | undefined;
|
|
30037
30183
|
activeColor?: string | undefined;
|
|
30038
|
-
baseColor?: string | undefined;
|
|
30039
30184
|
subtitle?: string | number | boolean | undefined;
|
|
30040
30185
|
lines?: "one" | "two" | "three" | undefined;
|
|
30041
30186
|
} & {
|
|
@@ -30100,11 +30245,11 @@ declare const VListItem: {
|
|
|
30100
30245
|
rounded?: string | number | boolean | undefined;
|
|
30101
30246
|
prependIcon?: IconValue | undefined;
|
|
30102
30247
|
appendIcon?: IconValue | undefined;
|
|
30248
|
+
baseColor?: string | undefined;
|
|
30103
30249
|
activeClass?: string | undefined;
|
|
30104
30250
|
appendAvatar?: string | undefined;
|
|
30105
30251
|
prependAvatar?: string | undefined;
|
|
30106
30252
|
activeColor?: string | undefined;
|
|
30107
|
-
baseColor?: string | undefined;
|
|
30108
30253
|
subtitle?: string | number | boolean | undefined;
|
|
30109
30254
|
lines?: "one" | "two" | "three" | undefined;
|
|
30110
30255
|
} & {
|
|
@@ -30446,12 +30591,12 @@ declare const VList: {
|
|
|
30446
30591
|
[key: string]: any;
|
|
30447
30592
|
}>) => void)[] | undefined;
|
|
30448
30593
|
bgColor?: string | undefined;
|
|
30594
|
+
baseColor?: string | undefined;
|
|
30449
30595
|
activeClass?: string | undefined;
|
|
30450
30596
|
opened?: readonly unknown[] | undefined;
|
|
30451
30597
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30452
30598
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
30453
30599
|
activeColor?: string | undefined;
|
|
30454
|
-
baseColor?: string | undefined;
|
|
30455
30600
|
"onClick:open"?: ((value: {
|
|
30456
30601
|
id: unknown;
|
|
30457
30602
|
value: boolean;
|
|
@@ -30584,10 +30729,10 @@ declare const VList: {
|
|
|
30584
30729
|
theme?: string | undefined;
|
|
30585
30730
|
rounded?: string | number | boolean | undefined;
|
|
30586
30731
|
bgColor?: string | undefined;
|
|
30732
|
+
baseColor?: string | undefined;
|
|
30587
30733
|
activeClass?: string | undefined;
|
|
30588
30734
|
opened?: readonly unknown[] | undefined;
|
|
30589
30735
|
activeColor?: string | undefined;
|
|
30590
|
-
baseColor?: string | undefined;
|
|
30591
30736
|
} & {
|
|
30592
30737
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30593
30738
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -30758,10 +30903,10 @@ declare const VList: {
|
|
|
30758
30903
|
theme?: string | undefined;
|
|
30759
30904
|
rounded?: string | number | boolean | undefined;
|
|
30760
30905
|
bgColor?: string | undefined;
|
|
30906
|
+
baseColor?: string | undefined;
|
|
30761
30907
|
activeClass?: string | undefined;
|
|
30762
30908
|
opened?: readonly unknown[] | undefined;
|
|
30763
30909
|
activeColor?: string | undefined;
|
|
30764
|
-
baseColor?: string | undefined;
|
|
30765
30910
|
} & {
|
|
30766
30911
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30767
30912
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -30815,10 +30960,10 @@ declare const VList: {
|
|
|
30815
30960
|
theme?: string | undefined;
|
|
30816
30961
|
rounded?: string | number | boolean | undefined;
|
|
30817
30962
|
bgColor?: string | undefined;
|
|
30963
|
+
baseColor?: string | undefined;
|
|
30818
30964
|
activeClass?: string | undefined;
|
|
30819
30965
|
opened?: readonly unknown[] | undefined;
|
|
30820
30966
|
activeColor?: string | undefined;
|
|
30821
|
-
baseColor?: string | undefined;
|
|
30822
30967
|
} & {
|
|
30823
30968
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
30824
30969
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -31190,8 +31335,8 @@ declare const VListGroup: {
|
|
|
31190
31335
|
}>) => void)[] | undefined;
|
|
31191
31336
|
prependIcon?: IconValue | undefined;
|
|
31192
31337
|
appendIcon?: IconValue | undefined;
|
|
31193
|
-
activeColor?: string | undefined;
|
|
31194
31338
|
baseColor?: string | undefined;
|
|
31339
|
+
activeColor?: string | undefined;
|
|
31195
31340
|
"v-slot:activator"?: false | ((arg: {
|
|
31196
31341
|
isOpen: boolean;
|
|
31197
31342
|
props: Record<string, unknown>;
|
|
@@ -31232,8 +31377,8 @@ declare const VListGroup: {
|
|
|
31232
31377
|
class?: any;
|
|
31233
31378
|
prependIcon?: IconValue | undefined;
|
|
31234
31379
|
appendIcon?: IconValue | undefined;
|
|
31235
|
-
activeColor?: string | undefined;
|
|
31236
31380
|
baseColor?: string | undefined;
|
|
31381
|
+
activeColor?: string | undefined;
|
|
31237
31382
|
} & {
|
|
31238
31383
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31239
31384
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -31306,8 +31451,8 @@ declare const VListGroup: {
|
|
|
31306
31451
|
class?: any;
|
|
31307
31452
|
prependIcon?: IconValue | undefined;
|
|
31308
31453
|
appendIcon?: IconValue | undefined;
|
|
31309
|
-
activeColor?: string | undefined;
|
|
31310
31454
|
baseColor?: string | undefined;
|
|
31455
|
+
activeColor?: string | undefined;
|
|
31311
31456
|
} & {
|
|
31312
31457
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31313
31458
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -31347,8 +31492,8 @@ declare const VListGroup: {
|
|
|
31347
31492
|
class?: any;
|
|
31348
31493
|
prependIcon?: IconValue | undefined;
|
|
31349
31494
|
appendIcon?: IconValue | undefined;
|
|
31350
|
-
activeColor?: string | undefined;
|
|
31351
31495
|
baseColor?: string | undefined;
|
|
31496
|
+
activeColor?: string | undefined;
|
|
31352
31497
|
} & {
|
|
31353
31498
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
31354
31499
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -33004,6 +33149,7 @@ declare const VMenu: {
|
|
|
33004
33149
|
maxWidth?: string | number | undefined;
|
|
33005
33150
|
minHeight?: string | number | undefined;
|
|
33006
33151
|
minWidth?: string | number | undefined;
|
|
33152
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33007
33153
|
class?: any;
|
|
33008
33154
|
$children?: vue.VNodeChild | {
|
|
33009
33155
|
default?: ((arg: {
|
|
@@ -33072,7 +33218,7 @@ declare const VMenu: {
|
|
|
33072
33218
|
[key: string]: any;
|
|
33073
33219
|
}>) => void)[] | undefined;
|
|
33074
33220
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33075
|
-
activator?:
|
|
33221
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33076
33222
|
"v-slot:activator"?: false | ((arg: {
|
|
33077
33223
|
isActive: boolean;
|
|
33078
33224
|
props: Record<string, any>;
|
|
@@ -33139,10 +33285,11 @@ declare const VMenu: {
|
|
|
33139
33285
|
maxWidth?: string | number | undefined;
|
|
33140
33286
|
minHeight?: string | number | undefined;
|
|
33141
33287
|
minWidth?: string | number | undefined;
|
|
33288
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33142
33289
|
class?: any;
|
|
33143
33290
|
theme?: string | undefined;
|
|
33144
33291
|
contentClass?: any;
|
|
33145
|
-
activator?:
|
|
33292
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33146
33293
|
openOnClick?: boolean | undefined;
|
|
33147
33294
|
openOnFocus?: boolean | undefined;
|
|
33148
33295
|
contentProps?: any;
|
|
@@ -33219,6 +33366,7 @@ declare const VMenu: {
|
|
|
33219
33366
|
maxWidth?: string | number | undefined;
|
|
33220
33367
|
minHeight?: string | number | undefined;
|
|
33221
33368
|
minWidth?: string | number | undefined;
|
|
33369
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33222
33370
|
class?: any;
|
|
33223
33371
|
onAfterLeave?: (() => any) | undefined;
|
|
33224
33372
|
$children?: vue.VNodeChild | {
|
|
@@ -33288,7 +33436,7 @@ declare const VMenu: {
|
|
|
33288
33436
|
[key: string]: any;
|
|
33289
33437
|
}>) => void)[] | undefined;
|
|
33290
33438
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33291
|
-
activator?:
|
|
33439
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33292
33440
|
"v-slot:activator"?: false | ((arg: {
|
|
33293
33441
|
isActive: boolean;
|
|
33294
33442
|
props: Record<string, any>;
|
|
@@ -33355,10 +33503,11 @@ declare const VMenu: {
|
|
|
33355
33503
|
maxWidth?: string | number | undefined;
|
|
33356
33504
|
minHeight?: string | number | undefined;
|
|
33357
33505
|
minWidth?: string | number | undefined;
|
|
33506
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33358
33507
|
class?: any;
|
|
33359
33508
|
theme?: string | undefined;
|
|
33360
33509
|
contentClass?: any;
|
|
33361
|
-
activator?:
|
|
33510
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33362
33511
|
closeDelay?: string | number | undefined;
|
|
33363
33512
|
openDelay?: string | number | undefined;
|
|
33364
33513
|
openOnClick?: boolean | undefined;
|
|
@@ -33400,6 +33549,7 @@ declare const VMenu: {
|
|
|
33400
33549
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
33401
33550
|
}, {
|
|
33402
33551
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
33552
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
33403
33553
|
animateClick: () => void;
|
|
33404
33554
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
33405
33555
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -33501,10 +33651,11 @@ declare const VMenu: {
|
|
|
33501
33651
|
maxWidth?: string | number | undefined;
|
|
33502
33652
|
minHeight?: string | number | undefined;
|
|
33503
33653
|
minWidth?: string | number | undefined;
|
|
33654
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33504
33655
|
class?: any;
|
|
33505
33656
|
theme?: string | undefined;
|
|
33506
33657
|
contentClass?: any;
|
|
33507
|
-
activator?:
|
|
33658
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33508
33659
|
closeDelay?: string | number | undefined;
|
|
33509
33660
|
openDelay?: string | number | undefined;
|
|
33510
33661
|
openOnClick?: boolean | undefined;
|
|
@@ -33546,12 +33697,13 @@ declare const VMenu: {
|
|
|
33546
33697
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
33547
33698
|
} & vue.ShallowUnwrapRef<{
|
|
33548
33699
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
33700
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
33549
33701
|
animateClick: () => void;
|
|
33550
33702
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
33551
33703
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
33552
33704
|
localTop: vue.ComputedRef<boolean>;
|
|
33553
33705
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
33554
|
-
}> & {} & 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, {
|
|
33706
|
+
}> & {} & 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, {
|
|
33555
33707
|
'update:modelValue': (value: boolean) => boolean;
|
|
33556
33708
|
}, string, {
|
|
33557
33709
|
location: Anchor;
|
|
@@ -33650,10 +33802,11 @@ declare const VMenu: {
|
|
|
33650
33802
|
maxWidth?: string | number | undefined;
|
|
33651
33803
|
minHeight?: string | number | undefined;
|
|
33652
33804
|
minWidth?: string | number | undefined;
|
|
33805
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33653
33806
|
class?: any;
|
|
33654
33807
|
theme?: string | undefined;
|
|
33655
33808
|
contentClass?: any;
|
|
33656
|
-
activator?:
|
|
33809
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33657
33810
|
openOnClick?: boolean | undefined;
|
|
33658
33811
|
openOnFocus?: boolean | undefined;
|
|
33659
33812
|
contentProps?: any;
|
|
@@ -33730,6 +33883,7 @@ declare const VMenu: {
|
|
|
33730
33883
|
maxWidth?: string | number | undefined;
|
|
33731
33884
|
minHeight?: string | number | undefined;
|
|
33732
33885
|
minWidth?: string | number | undefined;
|
|
33886
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33733
33887
|
class?: any;
|
|
33734
33888
|
onAfterLeave?: (() => any) | undefined;
|
|
33735
33889
|
$children?: vue.VNodeChild | {
|
|
@@ -33799,7 +33953,7 @@ declare const VMenu: {
|
|
|
33799
33953
|
[key: string]: any;
|
|
33800
33954
|
}>) => void)[] | undefined;
|
|
33801
33955
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33802
|
-
activator?:
|
|
33956
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33803
33957
|
"v-slot:activator"?: false | ((arg: {
|
|
33804
33958
|
isActive: boolean;
|
|
33805
33959
|
props: Record<string, any>;
|
|
@@ -33866,10 +34020,11 @@ declare const VMenu: {
|
|
|
33866
34020
|
maxWidth?: string | number | undefined;
|
|
33867
34021
|
minHeight?: string | number | undefined;
|
|
33868
34022
|
minWidth?: string | number | undefined;
|
|
34023
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
33869
34024
|
class?: any;
|
|
33870
34025
|
theme?: string | undefined;
|
|
33871
34026
|
contentClass?: any;
|
|
33872
|
-
activator?:
|
|
34027
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
33873
34028
|
closeDelay?: string | number | undefined;
|
|
33874
34029
|
openDelay?: string | number | undefined;
|
|
33875
34030
|
openOnClick?: boolean | undefined;
|
|
@@ -33911,6 +34066,7 @@ declare const VMenu: {
|
|
|
33911
34066
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
33912
34067
|
}, {
|
|
33913
34068
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34069
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
33914
34070
|
animateClick: () => void;
|
|
33915
34071
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
33916
34072
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -34012,10 +34168,11 @@ declare const VMenu: {
|
|
|
34012
34168
|
maxWidth?: string | number | undefined;
|
|
34013
34169
|
minHeight?: string | number | undefined;
|
|
34014
34170
|
minWidth?: string | number | undefined;
|
|
34171
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34015
34172
|
class?: any;
|
|
34016
34173
|
theme?: string | undefined;
|
|
34017
34174
|
contentClass?: any;
|
|
34018
|
-
activator?:
|
|
34175
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34019
34176
|
closeDelay?: string | number | undefined;
|
|
34020
34177
|
openDelay?: string | number | undefined;
|
|
34021
34178
|
openOnClick?: boolean | undefined;
|
|
@@ -34057,12 +34214,13 @@ declare const VMenu: {
|
|
|
34057
34214
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34058
34215
|
} & vue.ShallowUnwrapRef<{
|
|
34059
34216
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34217
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34060
34218
|
animateClick: () => void;
|
|
34061
34219
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34062
34220
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
34063
34221
|
localTop: vue.ComputedRef<boolean>;
|
|
34064
34222
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
34065
|
-
}> & {} & 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 & {};
|
|
34223
|
+
}> & {} & 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 & {};
|
|
34066
34224
|
__isFragment?: undefined;
|
|
34067
34225
|
__isTeleport?: undefined;
|
|
34068
34226
|
__isSuspense?: undefined;
|
|
@@ -34102,10 +34260,11 @@ declare const VMenu: {
|
|
|
34102
34260
|
maxWidth?: string | number | undefined;
|
|
34103
34261
|
minHeight?: string | number | undefined;
|
|
34104
34262
|
minWidth?: string | number | undefined;
|
|
34263
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34105
34264
|
class?: any;
|
|
34106
34265
|
theme?: string | undefined;
|
|
34107
34266
|
contentClass?: any;
|
|
34108
|
-
activator?:
|
|
34267
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34109
34268
|
openOnClick?: boolean | undefined;
|
|
34110
34269
|
openOnFocus?: boolean | undefined;
|
|
34111
34270
|
contentProps?: any;
|
|
@@ -34182,6 +34341,7 @@ declare const VMenu: {
|
|
|
34182
34341
|
maxWidth?: string | number | undefined;
|
|
34183
34342
|
minHeight?: string | number | undefined;
|
|
34184
34343
|
minWidth?: string | number | undefined;
|
|
34344
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34185
34345
|
class?: any;
|
|
34186
34346
|
onAfterLeave?: (() => any) | undefined;
|
|
34187
34347
|
$children?: vue.VNodeChild | {
|
|
@@ -34251,7 +34411,7 @@ declare const VMenu: {
|
|
|
34251
34411
|
[key: string]: any;
|
|
34252
34412
|
}>) => void)[] | undefined;
|
|
34253
34413
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
34254
|
-
activator?:
|
|
34414
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34255
34415
|
"v-slot:activator"?: false | ((arg: {
|
|
34256
34416
|
isActive: boolean;
|
|
34257
34417
|
props: Record<string, any>;
|
|
@@ -34318,10 +34478,11 @@ declare const VMenu: {
|
|
|
34318
34478
|
maxWidth?: string | number | undefined;
|
|
34319
34479
|
minHeight?: string | number | undefined;
|
|
34320
34480
|
minWidth?: string | number | undefined;
|
|
34481
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34321
34482
|
class?: any;
|
|
34322
34483
|
theme?: string | undefined;
|
|
34323
34484
|
contentClass?: any;
|
|
34324
|
-
activator?:
|
|
34485
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34325
34486
|
closeDelay?: string | number | undefined;
|
|
34326
34487
|
openDelay?: string | number | undefined;
|
|
34327
34488
|
openOnClick?: boolean | undefined;
|
|
@@ -34363,6 +34524,7 @@ declare const VMenu: {
|
|
|
34363
34524
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34364
34525
|
}, {
|
|
34365
34526
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34527
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34366
34528
|
animateClick: () => void;
|
|
34367
34529
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34368
34530
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -34464,10 +34626,11 @@ declare const VMenu: {
|
|
|
34464
34626
|
maxWidth?: string | number | undefined;
|
|
34465
34627
|
minHeight?: string | number | undefined;
|
|
34466
34628
|
minWidth?: string | number | undefined;
|
|
34629
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
34467
34630
|
class?: any;
|
|
34468
34631
|
theme?: string | undefined;
|
|
34469
34632
|
contentClass?: any;
|
|
34470
|
-
activator?:
|
|
34633
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
34471
34634
|
closeDelay?: string | number | undefined;
|
|
34472
34635
|
openDelay?: string | number | undefined;
|
|
34473
34636
|
openOnClick?: boolean | undefined;
|
|
@@ -34509,12 +34672,13 @@ declare const VMenu: {
|
|
|
34509
34672
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
34510
34673
|
} & vue.ShallowUnwrapRef<{
|
|
34511
34674
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
34675
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
34512
34676
|
animateClick: () => void;
|
|
34513
34677
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
34514
34678
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
34515
34679
|
localTop: vue.ComputedRef<boolean>;
|
|
34516
34680
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
34517
|
-
}> & {} & 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, {
|
|
34681
|
+
}> & {} & 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, {
|
|
34518
34682
|
'update:modelValue': (value: boolean) => boolean;
|
|
34519
34683
|
}, string, {
|
|
34520
34684
|
location: Anchor;
|
|
@@ -34599,13 +34763,14 @@ declare const VMenu: {
|
|
|
34599
34763
|
type: vue.PropType<vue.StyleValue>;
|
|
34600
34764
|
default: null;
|
|
34601
34765
|
};
|
|
34766
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
34602
34767
|
eager: BooleanConstructor;
|
|
34603
34768
|
disabled: BooleanConstructor;
|
|
34604
34769
|
class: vue.PropType<any>;
|
|
34605
34770
|
theme: StringConstructor;
|
|
34606
34771
|
contentClass: null;
|
|
34607
34772
|
modelValue: BooleanConstructor;
|
|
34608
|
-
activator: vue.PropType<
|
|
34773
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
34609
34774
|
locationStrategy: Omit<{
|
|
34610
34775
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
34611
34776
|
updateLocation: (e: Event) => void;
|
|
@@ -34712,13 +34877,14 @@ declare const VMenu: {
|
|
|
34712
34877
|
type: vue.PropType<vue.StyleValue>;
|
|
34713
34878
|
default: null;
|
|
34714
34879
|
};
|
|
34880
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
34715
34881
|
eager: BooleanConstructor;
|
|
34716
34882
|
disabled: BooleanConstructor;
|
|
34717
34883
|
class: vue.PropType<any>;
|
|
34718
34884
|
theme: StringConstructor;
|
|
34719
34885
|
contentClass: null;
|
|
34720
34886
|
modelValue: BooleanConstructor;
|
|
34721
|
-
activator: vue.PropType<
|
|
34887
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
34722
34888
|
locationStrategy: Omit<{
|
|
34723
34889
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
34724
34890
|
updateLocation: (e: Event) => void;
|
|
@@ -34879,6 +35045,7 @@ declare const VNavigationDrawer: {
|
|
|
34879
35045
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
34880
35046
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
34881
35047
|
"onUpdate:modelValue"?: ((val: boolean) => any) | undefined;
|
|
35048
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
34882
35049
|
"onUpdate:rail"?: ((val: boolean) => any) | undefined;
|
|
34883
35050
|
};
|
|
34884
35051
|
$attrs: {
|
|
@@ -34933,6 +35100,7 @@ declare const VNavigationDrawer: {
|
|
|
34933
35100
|
elevation?: string | number | undefined;
|
|
34934
35101
|
theme?: string | undefined;
|
|
34935
35102
|
rounded?: string | number | boolean | undefined;
|
|
35103
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
34936
35104
|
} & {
|
|
34937
35105
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
34938
35106
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35040,6 +35208,7 @@ declare const VNavigationDrawer: {
|
|
|
35040
35208
|
elevation?: string | number | undefined;
|
|
35041
35209
|
theme?: string | undefined;
|
|
35042
35210
|
rounded?: string | number | boolean | undefined;
|
|
35211
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35043
35212
|
} & {
|
|
35044
35213
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
35045
35214
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35095,6 +35264,7 @@ declare const VNavigationDrawer: {
|
|
|
35095
35264
|
elevation?: string | number | undefined;
|
|
35096
35265
|
theme?: string | undefined;
|
|
35097
35266
|
rounded?: string | number | boolean | undefined;
|
|
35267
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
35098
35268
|
} & {
|
|
35099
35269
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
35100
35270
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -35179,6 +35349,7 @@ declare const VNavigationDrawer: {
|
|
|
35179
35349
|
type: (StringConstructor | NumberConstructor)[];
|
|
35180
35350
|
validator(v: any): boolean;
|
|
35181
35351
|
};
|
|
35352
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
35182
35353
|
class: PropType<any>;
|
|
35183
35354
|
style: {
|
|
35184
35355
|
type: PropType<vue.StyleValue>;
|
|
@@ -35245,6 +35416,7 @@ declare const VNavigationDrawer: {
|
|
|
35245
35416
|
type: (StringConstructor | NumberConstructor)[];
|
|
35246
35417
|
validator(v: any): boolean;
|
|
35247
35418
|
};
|
|
35419
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
35248
35420
|
class: PropType<any>;
|
|
35249
35421
|
style: {
|
|
35250
35422
|
type: PropType<vue.StyleValue>;
|
|
@@ -35333,6 +35505,7 @@ declare const VOverlay: {
|
|
|
35333
35505
|
maxWidth?: string | number | undefined;
|
|
35334
35506
|
minHeight?: string | number | undefined;
|
|
35335
35507
|
minWidth?: string | number | undefined;
|
|
35508
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35336
35509
|
class?: any;
|
|
35337
35510
|
onAfterLeave?: (() => any) | undefined;
|
|
35338
35511
|
$children?: vue.VNodeChild | {
|
|
@@ -35402,7 +35575,7 @@ declare const VOverlay: {
|
|
|
35402
35575
|
[key: string]: any;
|
|
35403
35576
|
}>) => void)[] | undefined;
|
|
35404
35577
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
35405
|
-
activator?:
|
|
35578
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35406
35579
|
"v-slot:activator"?: false | ((arg: {
|
|
35407
35580
|
isActive: boolean;
|
|
35408
35581
|
props: Record<string, any>;
|
|
@@ -35469,10 +35642,11 @@ declare const VOverlay: {
|
|
|
35469
35642
|
maxWidth?: string | number | undefined;
|
|
35470
35643
|
minHeight?: string | number | undefined;
|
|
35471
35644
|
minWidth?: string | number | undefined;
|
|
35645
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35472
35646
|
class?: any;
|
|
35473
35647
|
theme?: string | undefined;
|
|
35474
35648
|
contentClass?: any;
|
|
35475
|
-
activator?:
|
|
35649
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35476
35650
|
closeDelay?: string | number | undefined;
|
|
35477
35651
|
openDelay?: string | number | undefined;
|
|
35478
35652
|
openOnClick?: boolean | undefined;
|
|
@@ -35514,6 +35688,7 @@ declare const VOverlay: {
|
|
|
35514
35688
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35515
35689
|
}, {
|
|
35516
35690
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
35691
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35517
35692
|
animateClick: () => void;
|
|
35518
35693
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35519
35694
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -35615,10 +35790,11 @@ declare const VOverlay: {
|
|
|
35615
35790
|
maxWidth?: string | number | undefined;
|
|
35616
35791
|
minHeight?: string | number | undefined;
|
|
35617
35792
|
minWidth?: string | number | undefined;
|
|
35793
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35618
35794
|
class?: any;
|
|
35619
35795
|
theme?: string | undefined;
|
|
35620
35796
|
contentClass?: any;
|
|
35621
|
-
activator?:
|
|
35797
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35622
35798
|
closeDelay?: string | number | undefined;
|
|
35623
35799
|
openDelay?: string | number | undefined;
|
|
35624
35800
|
openOnClick?: boolean | undefined;
|
|
@@ -35660,6 +35836,7 @@ declare const VOverlay: {
|
|
|
35660
35836
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35661
35837
|
} & vue.ShallowUnwrapRef<{
|
|
35662
35838
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
35839
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35663
35840
|
animateClick: () => void;
|
|
35664
35841
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35665
35842
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -35702,10 +35879,11 @@ declare const VOverlay: {
|
|
|
35702
35879
|
maxWidth?: string | number | undefined;
|
|
35703
35880
|
minHeight?: string | number | undefined;
|
|
35704
35881
|
minWidth?: string | number | undefined;
|
|
35882
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
35705
35883
|
class?: any;
|
|
35706
35884
|
theme?: string | undefined;
|
|
35707
35885
|
contentClass?: any;
|
|
35708
|
-
activator?:
|
|
35886
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
35709
35887
|
closeDelay?: string | number | undefined;
|
|
35710
35888
|
openDelay?: string | number | undefined;
|
|
35711
35889
|
openOnClick?: boolean | undefined;
|
|
@@ -35747,6 +35925,7 @@ declare const VOverlay: {
|
|
|
35747
35925
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
35748
35926
|
}, {
|
|
35749
35927
|
activatorEl: Ref<HTMLElement | undefined>;
|
|
35928
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
35750
35929
|
animateClick: () => void;
|
|
35751
35930
|
contentEl: Ref<HTMLElement | undefined>;
|
|
35752
35931
|
globalTop: Readonly<Ref<boolean>>;
|
|
@@ -35839,7 +36018,8 @@ declare const VOverlay: {
|
|
|
35839
36018
|
};
|
|
35840
36019
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
35841
36020
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
35842
|
-
|
|
36021
|
+
target: PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
36022
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
35843
36023
|
activatorProps: {
|
|
35844
36024
|
type: PropType<Record<string, any>>;
|
|
35845
36025
|
default: () => {};
|
|
@@ -35920,7 +36100,8 @@ declare const VOverlay: {
|
|
|
35920
36100
|
};
|
|
35921
36101
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
35922
36102
|
openDelay: (StringConstructor | NumberConstructor)[];
|
|
35923
|
-
|
|
36103
|
+
target: PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
36104
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
35924
36105
|
activatorProps: {
|
|
35925
36106
|
type: PropType<Record<string, any>>;
|
|
35926
36107
|
default: () => {};
|
|
@@ -37668,6 +37849,7 @@ declare const VRadio: {
|
|
|
37668
37849
|
}>) => void)[] | undefined;
|
|
37669
37850
|
modelValue?: any;
|
|
37670
37851
|
defaultsTarget?: string | undefined;
|
|
37852
|
+
baseColor?: string | undefined;
|
|
37671
37853
|
trueValue?: any;
|
|
37672
37854
|
falseValue?: any;
|
|
37673
37855
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -37726,6 +37908,7 @@ declare const VRadio: {
|
|
|
37726
37908
|
theme?: string | undefined;
|
|
37727
37909
|
modelValue?: any;
|
|
37728
37910
|
defaultsTarget?: string | undefined;
|
|
37911
|
+
baseColor?: string | undefined;
|
|
37729
37912
|
trueValue?: any;
|
|
37730
37913
|
falseValue?: any;
|
|
37731
37914
|
} & {
|
|
@@ -37835,6 +38018,7 @@ declare const VRadio: {
|
|
|
37835
38018
|
theme?: string | undefined;
|
|
37836
38019
|
modelValue?: any;
|
|
37837
38020
|
defaultsTarget?: string | undefined;
|
|
38021
|
+
baseColor?: string | undefined;
|
|
37838
38022
|
trueValue?: any;
|
|
37839
38023
|
falseValue?: any;
|
|
37840
38024
|
} & {
|
|
@@ -37900,6 +38084,7 @@ declare const VRadio: {
|
|
|
37900
38084
|
theme?: string | undefined;
|
|
37901
38085
|
modelValue?: any;
|
|
37902
38086
|
defaultsTarget?: string | undefined;
|
|
38087
|
+
baseColor?: string | undefined;
|
|
37903
38088
|
trueValue?: any;
|
|
37904
38089
|
falseValue?: any;
|
|
37905
38090
|
} & {
|
|
@@ -38012,6 +38197,7 @@ declare const VRadio: {
|
|
|
38012
38197
|
default: typeof deepEqual;
|
|
38013
38198
|
};
|
|
38014
38199
|
label: StringConstructor;
|
|
38200
|
+
baseColor: StringConstructor;
|
|
38015
38201
|
trueValue: null;
|
|
38016
38202
|
falseValue: null;
|
|
38017
38203
|
value: null;
|
|
@@ -38061,6 +38247,7 @@ declare const VRadio: {
|
|
|
38061
38247
|
default: typeof deepEqual;
|
|
38062
38248
|
};
|
|
38063
38249
|
label: StringConstructor;
|
|
38250
|
+
baseColor: StringConstructor;
|
|
38064
38251
|
trueValue: null;
|
|
38065
38252
|
falseValue: null;
|
|
38066
38253
|
value: null;
|
|
@@ -38752,6 +38939,7 @@ declare const VRangeSlider: {
|
|
|
38752
38939
|
rounded?: string | number | boolean | undefined;
|
|
38753
38940
|
density?: Density | undefined;
|
|
38754
38941
|
modelValue?: readonly (string | number)[] | undefined;
|
|
38942
|
+
ripple?: boolean | undefined;
|
|
38755
38943
|
focused?: boolean | undefined;
|
|
38756
38944
|
errorMessages?: string | readonly string[] | undefined;
|
|
38757
38945
|
maxErrors?: string | number | undefined;
|
|
@@ -38926,6 +39114,7 @@ declare const VRangeSlider: {
|
|
|
38926
39114
|
messages: string | readonly string[];
|
|
38927
39115
|
density: Density;
|
|
38928
39116
|
modelValue: readonly (string | number)[];
|
|
39117
|
+
ripple: boolean;
|
|
38929
39118
|
focused: boolean;
|
|
38930
39119
|
errorMessages: string | readonly string[];
|
|
38931
39120
|
maxErrors: string | number;
|
|
@@ -39028,6 +39217,7 @@ declare const VRangeSlider: {
|
|
|
39028
39217
|
rounded: string | number | boolean;
|
|
39029
39218
|
density: Density;
|
|
39030
39219
|
modelValue: readonly (string | number)[];
|
|
39220
|
+
ripple: boolean;
|
|
39031
39221
|
focused: boolean;
|
|
39032
39222
|
errorMessages: string | readonly string[];
|
|
39033
39223
|
maxErrors: string | number;
|
|
@@ -39104,6 +39294,7 @@ declare const VRangeSlider: {
|
|
|
39104
39294
|
messages: string | readonly string[];
|
|
39105
39295
|
density: Density;
|
|
39106
39296
|
modelValue: readonly (string | number)[];
|
|
39297
|
+
ripple: boolean;
|
|
39107
39298
|
focused: boolean;
|
|
39108
39299
|
errorMessages: string | readonly string[];
|
|
39109
39300
|
maxErrors: string | number;
|
|
@@ -39204,6 +39395,7 @@ declare const VRangeSlider: {
|
|
|
39204
39395
|
messages: string | readonly string[];
|
|
39205
39396
|
density: Density;
|
|
39206
39397
|
modelValue: readonly (string | number)[];
|
|
39398
|
+
ripple: boolean;
|
|
39207
39399
|
focused: boolean;
|
|
39208
39400
|
errorMessages: string | readonly string[];
|
|
39209
39401
|
maxErrors: string | number;
|
|
@@ -39306,6 +39498,7 @@ declare const VRangeSlider: {
|
|
|
39306
39498
|
rounded: string | number | boolean;
|
|
39307
39499
|
density: Density;
|
|
39308
39500
|
modelValue: readonly (string | number)[];
|
|
39501
|
+
ripple: boolean;
|
|
39309
39502
|
focused: boolean;
|
|
39310
39503
|
errorMessages: string | readonly string[];
|
|
39311
39504
|
maxErrors: string | number;
|
|
@@ -39353,6 +39546,10 @@ declare const VRangeSlider: {
|
|
|
39353
39546
|
type: PropType<readonly (string | number)[]>;
|
|
39354
39547
|
default: () => number[];
|
|
39355
39548
|
};
|
|
39549
|
+
ripple: {
|
|
39550
|
+
type: BooleanConstructor;
|
|
39551
|
+
default: boolean;
|
|
39552
|
+
};
|
|
39356
39553
|
elevation: Omit<{
|
|
39357
39554
|
type: (StringConstructor | NumberConstructor)[];
|
|
39358
39555
|
validator(v: any): boolean;
|
|
@@ -39470,6 +39667,10 @@ declare const VRangeSlider: {
|
|
|
39470
39667
|
type: PropType<readonly (string | number)[]>;
|
|
39471
39668
|
default: () => number[];
|
|
39472
39669
|
};
|
|
39670
|
+
ripple: {
|
|
39671
|
+
type: BooleanConstructor;
|
|
39672
|
+
default: boolean;
|
|
39673
|
+
};
|
|
39473
39674
|
elevation: Omit<{
|
|
39474
39675
|
type: (StringConstructor | NumberConstructor)[];
|
|
39475
39676
|
validator(v: any): boolean;
|
|
@@ -40352,6 +40553,7 @@ declare const VSelect: {
|
|
|
40352
40553
|
bgColor?: string | undefined;
|
|
40353
40554
|
prependIcon?: IconValue | undefined;
|
|
40354
40555
|
appendIcon?: IconValue | undefined;
|
|
40556
|
+
baseColor?: string | undefined;
|
|
40355
40557
|
prependInnerIcon?: IconValue | undefined;
|
|
40356
40558
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
40357
40559
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -40362,7 +40564,6 @@ declare const VSelect: {
|
|
|
40362
40564
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
40363
40565
|
hint?: string | undefined;
|
|
40364
40566
|
hideDetails?: boolean | "auto" | undefined;
|
|
40365
|
-
baseColor?: string | undefined;
|
|
40366
40567
|
suffix?: string | undefined;
|
|
40367
40568
|
counterValue?: ((value: any) => number) | undefined;
|
|
40368
40569
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -40404,6 +40605,7 @@ declare const VSelect: {
|
|
|
40404
40605
|
maxWidth?: string | number | undefined;
|
|
40405
40606
|
minHeight?: string | number | undefined;
|
|
40406
40607
|
minWidth?: string | number | undefined;
|
|
40608
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
40407
40609
|
class?: any;
|
|
40408
40610
|
$children?: vue.VNodeChild | {
|
|
40409
40611
|
default?: ((arg: {
|
|
@@ -40472,7 +40674,7 @@ declare const VSelect: {
|
|
|
40472
40674
|
[key: string]: any;
|
|
40473
40675
|
}>) => void)[] | undefined;
|
|
40474
40676
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40475
|
-
activator?:
|
|
40677
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
40476
40678
|
"v-slot:activator"?: false | ((arg: {
|
|
40477
40679
|
isActive: boolean;
|
|
40478
40680
|
props: Record<string, any>;
|
|
@@ -40616,6 +40818,7 @@ declare const VSelect: {
|
|
|
40616
40818
|
bgColor?: string | undefined;
|
|
40617
40819
|
prependIcon?: IconValue | undefined;
|
|
40618
40820
|
appendIcon?: IconValue | undefined;
|
|
40821
|
+
baseColor?: string | undefined;
|
|
40619
40822
|
prependInnerIcon?: IconValue | undefined;
|
|
40620
40823
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
40621
40824
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -40627,7 +40830,6 @@ declare const VSelect: {
|
|
|
40627
40830
|
centerAffix?: boolean | undefined;
|
|
40628
40831
|
hint?: string | undefined;
|
|
40629
40832
|
hideDetails?: boolean | "auto" | undefined;
|
|
40630
|
-
baseColor?: string | undefined;
|
|
40631
40833
|
suffix?: string | undefined;
|
|
40632
40834
|
counterValue?: ((value: any) => number) | undefined;
|
|
40633
40835
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -40669,6 +40871,7 @@ declare const VSelect: {
|
|
|
40669
40871
|
maxWidth?: string | number | undefined;
|
|
40670
40872
|
minHeight?: string | number | undefined;
|
|
40671
40873
|
minWidth?: string | number | undefined;
|
|
40874
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
40672
40875
|
class?: any;
|
|
40673
40876
|
$children?: vue.VNodeChild | {
|
|
40674
40877
|
default?: ((arg: {
|
|
@@ -40737,7 +40940,7 @@ declare const VSelect: {
|
|
|
40737
40940
|
[key: string]: any;
|
|
40738
40941
|
}>) => void)[] | undefined;
|
|
40739
40942
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40740
|
-
activator?:
|
|
40943
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
40741
40944
|
"v-slot:activator"?: false | ((arg: {
|
|
40742
40945
|
isActive: boolean;
|
|
40743
40946
|
props: Record<string, any>;
|
|
@@ -40945,6 +41148,7 @@ declare const VSelect: {
|
|
|
40945
41148
|
bgColor?: string | undefined;
|
|
40946
41149
|
prependIcon?: IconValue | undefined;
|
|
40947
41150
|
appendIcon?: IconValue | undefined;
|
|
41151
|
+
baseColor?: string | undefined;
|
|
40948
41152
|
prependInnerIcon?: IconValue | undefined;
|
|
40949
41153
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
40950
41154
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -40956,7 +41160,6 @@ declare const VSelect: {
|
|
|
40956
41160
|
centerAffix?: boolean | undefined;
|
|
40957
41161
|
hint?: string | undefined;
|
|
40958
41162
|
hideDetails?: boolean | "auto" | undefined;
|
|
40959
|
-
baseColor?: string | undefined;
|
|
40960
41163
|
suffix?: string | undefined;
|
|
40961
41164
|
counterValue?: ((value: any) => number) | undefined;
|
|
40962
41165
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -40998,6 +41201,7 @@ declare const VSelect: {
|
|
|
40998
41201
|
maxWidth?: string | number | undefined;
|
|
40999
41202
|
minHeight?: string | number | undefined;
|
|
41000
41203
|
minWidth?: string | number | undefined;
|
|
41204
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41001
41205
|
class?: any;
|
|
41002
41206
|
$children?: vue.VNodeChild | {
|
|
41003
41207
|
default?: ((arg: {
|
|
@@ -41066,7 +41270,7 @@ declare const VSelect: {
|
|
|
41066
41270
|
[key: string]: any;
|
|
41067
41271
|
}>) => void)[] | undefined;
|
|
41068
41272
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41069
|
-
activator?:
|
|
41273
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41070
41274
|
"v-slot:activator"?: false | ((arg: {
|
|
41071
41275
|
isActive: boolean;
|
|
41072
41276
|
props: Record<string, any>;
|
|
@@ -41145,6 +41349,7 @@ declare const VSelect: {
|
|
|
41145
41349
|
bgColor?: string | undefined;
|
|
41146
41350
|
prependIcon?: IconValue | undefined;
|
|
41147
41351
|
appendIcon?: IconValue | undefined;
|
|
41352
|
+
baseColor?: string | undefined;
|
|
41148
41353
|
prependInnerIcon?: IconValue | undefined;
|
|
41149
41354
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
41150
41355
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -41156,7 +41361,6 @@ declare const VSelect: {
|
|
|
41156
41361
|
centerAffix?: boolean | undefined;
|
|
41157
41362
|
hint?: string | undefined;
|
|
41158
41363
|
hideDetails?: boolean | "auto" | undefined;
|
|
41159
|
-
baseColor?: string | undefined;
|
|
41160
41364
|
suffix?: string | undefined;
|
|
41161
41365
|
counterValue?: ((value: any) => number) | undefined;
|
|
41162
41366
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -41198,6 +41402,7 @@ declare const VSelect: {
|
|
|
41198
41402
|
maxWidth?: string | number | undefined;
|
|
41199
41403
|
minHeight?: string | number | undefined;
|
|
41200
41404
|
minWidth?: string | number | undefined;
|
|
41405
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41201
41406
|
class?: any;
|
|
41202
41407
|
$children?: vue.VNodeChild | {
|
|
41203
41408
|
default?: ((arg: {
|
|
@@ -41266,7 +41471,7 @@ declare const VSelect: {
|
|
|
41266
41471
|
[key: string]: any;
|
|
41267
41472
|
}>) => void)[] | undefined;
|
|
41268
41473
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41269
|
-
activator?:
|
|
41474
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41270
41475
|
"v-slot:activator"?: false | ((arg: {
|
|
41271
41476
|
isActive: boolean;
|
|
41272
41477
|
props: Record<string, any>;
|
|
@@ -41524,6 +41729,7 @@ declare const VSelect: {
|
|
|
41524
41729
|
bgColor: StringConstructor;
|
|
41525
41730
|
prependIcon: PropType<IconValue>;
|
|
41526
41731
|
appendIcon: PropType<IconValue>;
|
|
41732
|
+
baseColor: StringConstructor;
|
|
41527
41733
|
clearIcon: {
|
|
41528
41734
|
type: PropType<IconValue>;
|
|
41529
41735
|
default: string;
|
|
@@ -41556,7 +41762,6 @@ declare const VSelect: {
|
|
|
41556
41762
|
hint: StringConstructor;
|
|
41557
41763
|
persistentHint: BooleanConstructor;
|
|
41558
41764
|
hideDetails: PropType<boolean | "auto">;
|
|
41559
|
-
baseColor: StringConstructor;
|
|
41560
41765
|
clearable: BooleanConstructor;
|
|
41561
41766
|
persistentClear: BooleanConstructor;
|
|
41562
41767
|
singleLine: BooleanConstructor;
|
|
@@ -41646,6 +41851,7 @@ declare const VSelect: {
|
|
|
41646
41851
|
maxWidth?: string | number | undefined;
|
|
41647
41852
|
minHeight?: string | number | undefined;
|
|
41648
41853
|
minWidth?: string | number | undefined;
|
|
41854
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41649
41855
|
class?: any;
|
|
41650
41856
|
$children?: vue.VNodeChild | {
|
|
41651
41857
|
default?: ((arg: {
|
|
@@ -41714,7 +41920,7 @@ declare const VSelect: {
|
|
|
41714
41920
|
[key: string]: any;
|
|
41715
41921
|
}>) => void)[] | undefined;
|
|
41716
41922
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
41717
|
-
activator?:
|
|
41923
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
41718
41924
|
"v-slot:activator"?: false | ((arg: {
|
|
41719
41925
|
isActive: boolean;
|
|
41720
41926
|
props: Record<string, any>;
|
|
@@ -41818,6 +42024,7 @@ declare const VSelect: {
|
|
|
41818
42024
|
bgColor: StringConstructor;
|
|
41819
42025
|
prependIcon: PropType<IconValue>;
|
|
41820
42026
|
appendIcon: PropType<IconValue>;
|
|
42027
|
+
baseColor: StringConstructor;
|
|
41821
42028
|
clearIcon: {
|
|
41822
42029
|
type: PropType<IconValue>;
|
|
41823
42030
|
default: string;
|
|
@@ -41850,7 +42057,6 @@ declare const VSelect: {
|
|
|
41850
42057
|
hint: StringConstructor;
|
|
41851
42058
|
persistentHint: BooleanConstructor;
|
|
41852
42059
|
hideDetails: PropType<boolean | "auto">;
|
|
41853
|
-
baseColor: StringConstructor;
|
|
41854
42060
|
clearable: BooleanConstructor;
|
|
41855
42061
|
persistentClear: BooleanConstructor;
|
|
41856
42062
|
singleLine: BooleanConstructor;
|
|
@@ -41940,6 +42146,7 @@ declare const VSelect: {
|
|
|
41940
42146
|
maxWidth?: string | number | undefined;
|
|
41941
42147
|
minHeight?: string | number | undefined;
|
|
41942
42148
|
minWidth?: string | number | undefined;
|
|
42149
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
41943
42150
|
class?: any;
|
|
41944
42151
|
$children?: vue.VNodeChild | {
|
|
41945
42152
|
default?: ((arg: {
|
|
@@ -42008,7 +42215,7 @@ declare const VSelect: {
|
|
|
42008
42215
|
[key: string]: any;
|
|
42009
42216
|
}>) => void)[] | undefined;
|
|
42010
42217
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
42011
|
-
activator?:
|
|
42218
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
42012
42219
|
"v-slot:activator"?: false | ((arg: {
|
|
42013
42220
|
isActive: boolean;
|
|
42014
42221
|
props: Record<string, any>;
|
|
@@ -42384,6 +42591,7 @@ declare const VSlideGroup: {
|
|
|
42384
42591
|
[key: string]: any;
|
|
42385
42592
|
}>) => void)[] | undefined;
|
|
42386
42593
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42594
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42387
42595
|
showArrows?: string | boolean | undefined;
|
|
42388
42596
|
"v-slot:next"?: false | ((arg: SlideGroupSlot) => vue.VNodeChild) | undefined;
|
|
42389
42597
|
"v-slot:prev"?: false | ((arg: SlideGroupSlot) => vue.VNodeChild) | undefined;
|
|
@@ -42425,6 +42633,7 @@ declare const VSlideGroup: {
|
|
|
42425
42633
|
class?: any;
|
|
42426
42634
|
mandatory?: boolean | "force" | undefined;
|
|
42427
42635
|
modelValue?: any;
|
|
42636
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42428
42637
|
showArrows?: string | boolean | undefined;
|
|
42429
42638
|
} & {
|
|
42430
42639
|
$children?: vue.VNodeChild | {
|
|
@@ -42508,6 +42717,7 @@ declare const VSlideGroup: {
|
|
|
42508
42717
|
class?: any;
|
|
42509
42718
|
mandatory?: boolean | "force" | undefined;
|
|
42510
42719
|
modelValue?: any;
|
|
42720
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42511
42721
|
showArrows?: string | boolean | undefined;
|
|
42512
42722
|
} & {
|
|
42513
42723
|
$children?: vue.VNodeChild | {
|
|
@@ -42551,6 +42761,7 @@ declare const VSlideGroup: {
|
|
|
42551
42761
|
class?: any;
|
|
42552
42762
|
mandatory?: boolean | "force" | undefined;
|
|
42553
42763
|
modelValue?: any;
|
|
42764
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
42554
42765
|
showArrows?: string | boolean | undefined;
|
|
42555
42766
|
} & {
|
|
42556
42767
|
$children?: vue.VNodeChild | {
|
|
@@ -42615,6 +42826,7 @@ declare const VSlideGroup: {
|
|
|
42615
42826
|
type: StringConstructor;
|
|
42616
42827
|
default: string;
|
|
42617
42828
|
};
|
|
42829
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
42618
42830
|
class: PropType<any>;
|
|
42619
42831
|
style: {
|
|
42620
42832
|
type: PropType<vue.StyleValue>;
|
|
@@ -42658,6 +42870,7 @@ declare const VSlideGroup: {
|
|
|
42658
42870
|
type: StringConstructor;
|
|
42659
42871
|
default: string;
|
|
42660
42872
|
};
|
|
42873
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
42661
42874
|
class: PropType<any>;
|
|
42662
42875
|
style: {
|
|
42663
42876
|
type: PropType<vue.StyleValue>;
|
|
@@ -42996,6 +43209,7 @@ declare const VSlider: {
|
|
|
42996
43209
|
rounded?: string | number | boolean | undefined;
|
|
42997
43210
|
density?: Density | undefined;
|
|
42998
43211
|
modelValue?: string | number | undefined;
|
|
43212
|
+
ripple?: boolean | undefined;
|
|
42999
43213
|
focused?: boolean | undefined;
|
|
43000
43214
|
errorMessages?: string | readonly string[] | undefined;
|
|
43001
43215
|
maxErrors?: string | number | undefined;
|
|
@@ -43169,6 +43383,7 @@ declare const VSlider: {
|
|
|
43169
43383
|
messages: string | readonly string[];
|
|
43170
43384
|
density: Density;
|
|
43171
43385
|
modelValue: string | number;
|
|
43386
|
+
ripple: boolean;
|
|
43172
43387
|
focused: boolean;
|
|
43173
43388
|
errorMessages: string | readonly string[];
|
|
43174
43389
|
maxErrors: string | number;
|
|
@@ -43270,6 +43485,7 @@ declare const VSlider: {
|
|
|
43270
43485
|
rounded: string | number | boolean;
|
|
43271
43486
|
density: Density;
|
|
43272
43487
|
modelValue: string | number;
|
|
43488
|
+
ripple: boolean;
|
|
43273
43489
|
focused: boolean;
|
|
43274
43490
|
errorMessages: string | readonly string[];
|
|
43275
43491
|
maxErrors: string | number;
|
|
@@ -43345,6 +43561,7 @@ declare const VSlider: {
|
|
|
43345
43561
|
messages: string | readonly string[];
|
|
43346
43562
|
density: Density;
|
|
43347
43563
|
modelValue: string | number;
|
|
43564
|
+
ripple: boolean;
|
|
43348
43565
|
focused: boolean;
|
|
43349
43566
|
errorMessages: string | readonly string[];
|
|
43350
43567
|
maxErrors: string | number;
|
|
@@ -43444,6 +43661,7 @@ declare const VSlider: {
|
|
|
43444
43661
|
messages: string | readonly string[];
|
|
43445
43662
|
density: Density;
|
|
43446
43663
|
modelValue: string | number;
|
|
43664
|
+
ripple: boolean;
|
|
43447
43665
|
focused: boolean;
|
|
43448
43666
|
errorMessages: string | readonly string[];
|
|
43449
43667
|
maxErrors: string | number;
|
|
@@ -43545,6 +43763,7 @@ declare const VSlider: {
|
|
|
43545
43763
|
rounded: string | number | boolean;
|
|
43546
43764
|
density: Density;
|
|
43547
43765
|
modelValue: string | number;
|
|
43766
|
+
ripple: boolean;
|
|
43548
43767
|
focused: boolean;
|
|
43549
43768
|
errorMessages: string | readonly string[];
|
|
43550
43769
|
maxErrors: string | number;
|
|
@@ -43649,6 +43868,10 @@ declare const VSlider: {
|
|
|
43649
43868
|
};
|
|
43650
43869
|
'onClick:prepend': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
43651
43870
|
'onClick:append': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
43871
|
+
ripple: {
|
|
43872
|
+
type: BooleanConstructor;
|
|
43873
|
+
default: boolean;
|
|
43874
|
+
};
|
|
43652
43875
|
elevation: Omit<{
|
|
43653
43876
|
type: (StringConstructor | NumberConstructor)[];
|
|
43654
43877
|
validator(v: any): boolean;
|
|
@@ -43765,6 +43988,10 @@ declare const VSlider: {
|
|
|
43765
43988
|
};
|
|
43766
43989
|
'onClick:prepend': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
43767
43990
|
'onClick:append': vue.PropType<EventProp<[MouseEvent], (args_0: MouseEvent) => any>>;
|
|
43991
|
+
ripple: {
|
|
43992
|
+
type: BooleanConstructor;
|
|
43993
|
+
default: boolean;
|
|
43994
|
+
};
|
|
43768
43995
|
elevation: Omit<{
|
|
43769
43996
|
type: (StringConstructor | NumberConstructor)[];
|
|
43770
43997
|
validator(v: any): boolean;
|
|
@@ -43862,6 +44089,7 @@ declare const VSnackbar: {
|
|
|
43862
44089
|
minHeight?: string | number | undefined;
|
|
43863
44090
|
minWidth?: string | number | undefined;
|
|
43864
44091
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
44092
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
43865
44093
|
class?: any;
|
|
43866
44094
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
43867
44095
|
activator?: ((arg: {
|
|
@@ -43874,6 +44102,7 @@ declare const VSnackbar: {
|
|
|
43874
44102
|
ref?: vue.VNodeRef | undefined;
|
|
43875
44103
|
ref_for?: boolean | undefined;
|
|
43876
44104
|
ref_key?: string | undefined;
|
|
44105
|
+
timer?: string | boolean | undefined;
|
|
43877
44106
|
theme?: string | undefined;
|
|
43878
44107
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
43879
44108
|
'v-slots'?: {
|
|
@@ -43924,7 +44153,7 @@ declare const VSnackbar: {
|
|
|
43924
44153
|
[key: string]: any;
|
|
43925
44154
|
}>) => void)[] | undefined;
|
|
43926
44155
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
43927
|
-
activator?:
|
|
44156
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
43928
44157
|
"v-slot:activator"?: false | ((arg: {
|
|
43929
44158
|
isActive: boolean;
|
|
43930
44159
|
props: Record<string, any>;
|
|
@@ -43993,11 +44222,13 @@ declare const VSnackbar: {
|
|
|
43993
44222
|
minHeight?: string | number | undefined;
|
|
43994
44223
|
minWidth?: string | number | undefined;
|
|
43995
44224
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
44225
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
43996
44226
|
class?: any;
|
|
44227
|
+
timer?: string | boolean | undefined;
|
|
43997
44228
|
theme?: string | undefined;
|
|
43998
44229
|
contentClass?: any;
|
|
43999
44230
|
rounded?: string | number | boolean | undefined;
|
|
44000
|
-
activator?:
|
|
44231
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44001
44232
|
closeDelay?: string | number | undefined;
|
|
44002
44233
|
openDelay?: string | number | undefined;
|
|
44003
44234
|
openOnClick?: boolean | undefined;
|
|
@@ -44068,6 +44299,7 @@ declare const VSnackbar: {
|
|
|
44068
44299
|
maxWidth?: string | number | undefined;
|
|
44069
44300
|
minHeight?: string | number | undefined;
|
|
44070
44301
|
minWidth?: string | number | undefined;
|
|
44302
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44071
44303
|
class?: any;
|
|
44072
44304
|
onAfterLeave?: (() => any) | undefined;
|
|
44073
44305
|
$children?: vue.VNodeChild | {
|
|
@@ -44137,7 +44369,7 @@ declare const VSnackbar: {
|
|
|
44137
44369
|
[key: string]: any;
|
|
44138
44370
|
}>) => void)[] | undefined;
|
|
44139
44371
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44140
|
-
activator?:
|
|
44372
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44141
44373
|
"v-slot:activator"?: false | ((arg: {
|
|
44142
44374
|
isActive: boolean;
|
|
44143
44375
|
props: Record<string, any>;
|
|
@@ -44204,10 +44436,11 @@ declare const VSnackbar: {
|
|
|
44204
44436
|
maxWidth?: string | number | undefined;
|
|
44205
44437
|
minHeight?: string | number | undefined;
|
|
44206
44438
|
minWidth?: string | number | undefined;
|
|
44439
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44207
44440
|
class?: any;
|
|
44208
44441
|
theme?: string | undefined;
|
|
44209
44442
|
contentClass?: any;
|
|
44210
|
-
activator?:
|
|
44443
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44211
44444
|
closeDelay?: string | number | undefined;
|
|
44212
44445
|
openDelay?: string | number | undefined;
|
|
44213
44446
|
openOnClick?: boolean | undefined;
|
|
@@ -44249,6 +44482,7 @@ declare const VSnackbar: {
|
|
|
44249
44482
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44250
44483
|
}, {
|
|
44251
44484
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
44485
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44252
44486
|
animateClick: () => void;
|
|
44253
44487
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44254
44488
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -44315,7 +44549,7 @@ declare const VSnackbar: {
|
|
|
44315
44549
|
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;
|
|
44316
44550
|
};
|
|
44317
44551
|
$forceUpdate: () => void;
|
|
44318
|
-
$nextTick: typeof
|
|
44552
|
+
$nextTick: typeof nextTick;
|
|
44319
44553
|
$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;
|
|
44320
44554
|
} & {
|
|
44321
44555
|
absolute: boolean;
|
|
@@ -44350,10 +44584,11 @@ declare const VSnackbar: {
|
|
|
44350
44584
|
maxWidth?: string | number | undefined;
|
|
44351
44585
|
minHeight?: string | number | undefined;
|
|
44352
44586
|
minWidth?: string | number | undefined;
|
|
44587
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44353
44588
|
class?: any;
|
|
44354
44589
|
theme?: string | undefined;
|
|
44355
44590
|
contentClass?: any;
|
|
44356
|
-
activator?:
|
|
44591
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44357
44592
|
closeDelay?: string | number | undefined;
|
|
44358
44593
|
openDelay?: string | number | undefined;
|
|
44359
44594
|
openOnClick?: boolean | undefined;
|
|
@@ -44395,12 +44630,13 @@ declare const VSnackbar: {
|
|
|
44395
44630
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44396
44631
|
} & vue.ShallowUnwrapRef<{
|
|
44397
44632
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
44633
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44398
44634
|
animateClick: () => void;
|
|
44399
44635
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44400
44636
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
44401
44637
|
localTop: vue.ComputedRef<boolean>;
|
|
44402
44638
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
44403
|
-
}> & {} & 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, {
|
|
44639
|
+
}> & {} & 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, {
|
|
44404
44640
|
'update:modelValue': (v: boolean) => boolean;
|
|
44405
44641
|
}, string, {
|
|
44406
44642
|
absolute: boolean;
|
|
@@ -44460,7 +44696,7 @@ declare const VSnackbar: {
|
|
|
44460
44696
|
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;
|
|
44461
44697
|
};
|
|
44462
44698
|
$forceUpdate: () => void;
|
|
44463
|
-
$nextTick: typeof
|
|
44699
|
+
$nextTick: typeof nextTick;
|
|
44464
44700
|
$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;
|
|
44465
44701
|
} & {
|
|
44466
44702
|
absolute: boolean;
|
|
@@ -44496,11 +44732,13 @@ declare const VSnackbar: {
|
|
|
44496
44732
|
minHeight?: string | number | undefined;
|
|
44497
44733
|
minWidth?: string | number | undefined;
|
|
44498
44734
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
44735
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44499
44736
|
class?: any;
|
|
44737
|
+
timer?: string | boolean | undefined;
|
|
44500
44738
|
theme?: string | undefined;
|
|
44501
44739
|
contentClass?: any;
|
|
44502
44740
|
rounded?: string | number | boolean | undefined;
|
|
44503
|
-
activator?:
|
|
44741
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44504
44742
|
closeDelay?: string | number | undefined;
|
|
44505
44743
|
openDelay?: string | number | undefined;
|
|
44506
44744
|
openOnClick?: boolean | undefined;
|
|
@@ -44571,6 +44809,7 @@ declare const VSnackbar: {
|
|
|
44571
44809
|
maxWidth?: string | number | undefined;
|
|
44572
44810
|
minHeight?: string | number | undefined;
|
|
44573
44811
|
minWidth?: string | number | undefined;
|
|
44812
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44574
44813
|
class?: any;
|
|
44575
44814
|
onAfterLeave?: (() => any) | undefined;
|
|
44576
44815
|
$children?: vue.VNodeChild | {
|
|
@@ -44640,7 +44879,7 @@ declare const VSnackbar: {
|
|
|
44640
44879
|
[key: string]: any;
|
|
44641
44880
|
}>) => void)[] | undefined;
|
|
44642
44881
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
44643
|
-
activator?:
|
|
44882
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44644
44883
|
"v-slot:activator"?: false | ((arg: {
|
|
44645
44884
|
isActive: boolean;
|
|
44646
44885
|
props: Record<string, any>;
|
|
@@ -44707,10 +44946,11 @@ declare const VSnackbar: {
|
|
|
44707
44946
|
maxWidth?: string | number | undefined;
|
|
44708
44947
|
minHeight?: string | number | undefined;
|
|
44709
44948
|
minWidth?: string | number | undefined;
|
|
44949
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44710
44950
|
class?: any;
|
|
44711
44951
|
theme?: string | undefined;
|
|
44712
44952
|
contentClass?: any;
|
|
44713
|
-
activator?:
|
|
44953
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44714
44954
|
closeDelay?: string | number | undefined;
|
|
44715
44955
|
openDelay?: string | number | undefined;
|
|
44716
44956
|
openOnClick?: boolean | undefined;
|
|
@@ -44752,6 +44992,7 @@ declare const VSnackbar: {
|
|
|
44752
44992
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44753
44993
|
}, {
|
|
44754
44994
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
44995
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44755
44996
|
animateClick: () => void;
|
|
44756
44997
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44757
44998
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -44818,7 +45059,7 @@ declare const VSnackbar: {
|
|
|
44818
45059
|
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;
|
|
44819
45060
|
};
|
|
44820
45061
|
$forceUpdate: () => void;
|
|
44821
|
-
$nextTick: typeof
|
|
45062
|
+
$nextTick: typeof nextTick;
|
|
44822
45063
|
$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;
|
|
44823
45064
|
} & {
|
|
44824
45065
|
absolute: boolean;
|
|
@@ -44853,10 +45094,11 @@ declare const VSnackbar: {
|
|
|
44853
45094
|
maxWidth?: string | number | undefined;
|
|
44854
45095
|
minHeight?: string | number | undefined;
|
|
44855
45096
|
minWidth?: string | number | undefined;
|
|
45097
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44856
45098
|
class?: any;
|
|
44857
45099
|
theme?: string | undefined;
|
|
44858
45100
|
contentClass?: any;
|
|
44859
|
-
activator?:
|
|
45101
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44860
45102
|
closeDelay?: string | number | undefined;
|
|
44861
45103
|
openDelay?: string | number | undefined;
|
|
44862
45104
|
openOnClick?: boolean | undefined;
|
|
@@ -44898,12 +45140,13 @@ declare const VSnackbar: {
|
|
|
44898
45140
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
44899
45141
|
} & vue.ShallowUnwrapRef<{
|
|
44900
45142
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45143
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
44901
45144
|
animateClick: () => void;
|
|
44902
45145
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
44903
45146
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
44904
45147
|
localTop: vue.ComputedRef<boolean>;
|
|
44905
45148
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
44906
|
-
}> & {} & 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 & {};
|
|
45149
|
+
}> & {} & 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 & {};
|
|
44907
45150
|
__isFragment?: undefined;
|
|
44908
45151
|
__isTeleport?: undefined;
|
|
44909
45152
|
__isSuspense?: undefined;
|
|
@@ -44941,11 +45184,13 @@ declare const VSnackbar: {
|
|
|
44941
45184
|
minHeight?: string | number | undefined;
|
|
44942
45185
|
minWidth?: string | number | undefined;
|
|
44943
45186
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
45187
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
44944
45188
|
class?: any;
|
|
45189
|
+
timer?: string | boolean | undefined;
|
|
44945
45190
|
theme?: string | undefined;
|
|
44946
45191
|
contentClass?: any;
|
|
44947
45192
|
rounded?: string | number | boolean | undefined;
|
|
44948
|
-
activator?:
|
|
45193
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
44949
45194
|
closeDelay?: string | number | undefined;
|
|
44950
45195
|
openDelay?: string | number | undefined;
|
|
44951
45196
|
openOnClick?: boolean | undefined;
|
|
@@ -45016,6 +45261,7 @@ declare const VSnackbar: {
|
|
|
45016
45261
|
maxWidth?: string | number | undefined;
|
|
45017
45262
|
minHeight?: string | number | undefined;
|
|
45018
45263
|
minWidth?: string | number | undefined;
|
|
45264
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45019
45265
|
class?: any;
|
|
45020
45266
|
onAfterLeave?: (() => any) | undefined;
|
|
45021
45267
|
$children?: vue.VNodeChild | {
|
|
@@ -45085,7 +45331,7 @@ declare const VSnackbar: {
|
|
|
45085
45331
|
[key: string]: any;
|
|
45086
45332
|
}>) => void)[] | undefined;
|
|
45087
45333
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
45088
|
-
activator?:
|
|
45334
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45089
45335
|
"v-slot:activator"?: false | ((arg: {
|
|
45090
45336
|
isActive: boolean;
|
|
45091
45337
|
props: Record<string, any>;
|
|
@@ -45152,10 +45398,11 @@ declare const VSnackbar: {
|
|
|
45152
45398
|
maxWidth?: string | number | undefined;
|
|
45153
45399
|
minHeight?: string | number | undefined;
|
|
45154
45400
|
minWidth?: string | number | undefined;
|
|
45401
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45155
45402
|
class?: any;
|
|
45156
45403
|
theme?: string | undefined;
|
|
45157
45404
|
contentClass?: any;
|
|
45158
|
-
activator?:
|
|
45405
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45159
45406
|
closeDelay?: string | number | undefined;
|
|
45160
45407
|
openDelay?: string | number | undefined;
|
|
45161
45408
|
openOnClick?: boolean | undefined;
|
|
@@ -45197,6 +45444,7 @@ declare const VSnackbar: {
|
|
|
45197
45444
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
45198
45445
|
}, {
|
|
45199
45446
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45447
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
45200
45448
|
animateClick: () => void;
|
|
45201
45449
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
45202
45450
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -45263,7 +45511,7 @@ declare const VSnackbar: {
|
|
|
45263
45511
|
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;
|
|
45264
45512
|
};
|
|
45265
45513
|
$forceUpdate: () => void;
|
|
45266
|
-
$nextTick: typeof
|
|
45514
|
+
$nextTick: typeof nextTick;
|
|
45267
45515
|
$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;
|
|
45268
45516
|
} & {
|
|
45269
45517
|
absolute: boolean;
|
|
@@ -45298,10 +45546,11 @@ declare const VSnackbar: {
|
|
|
45298
45546
|
maxWidth?: string | number | undefined;
|
|
45299
45547
|
minHeight?: string | number | undefined;
|
|
45300
45548
|
minWidth?: string | number | undefined;
|
|
45549
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
45301
45550
|
class?: any;
|
|
45302
45551
|
theme?: string | undefined;
|
|
45303
45552
|
contentClass?: any;
|
|
45304
|
-
activator?:
|
|
45553
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
45305
45554
|
closeDelay?: string | number | undefined;
|
|
45306
45555
|
openDelay?: string | number | undefined;
|
|
45307
45556
|
openOnClick?: boolean | undefined;
|
|
@@ -45343,12 +45592,13 @@ declare const VSnackbar: {
|
|
|
45343
45592
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
45344
45593
|
} & vue.ShallowUnwrapRef<{
|
|
45345
45594
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
45595
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
45346
45596
|
animateClick: () => void;
|
|
45347
45597
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
45348
45598
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
45349
45599
|
localTop: vue.ComputedRef<boolean>;
|
|
45350
45600
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
45351
|
-
}> & {} & 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, {
|
|
45601
|
+
}> & {} & 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, {
|
|
45352
45602
|
'update:modelValue': (v: boolean) => boolean;
|
|
45353
45603
|
}, string, {
|
|
45354
45604
|
absolute: boolean;
|
|
@@ -45429,13 +45679,14 @@ declare const VSnackbar: {
|
|
|
45429
45679
|
type: vue.PropType<vue.StyleValue>;
|
|
45430
45680
|
default: null;
|
|
45431
45681
|
};
|
|
45682
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
45432
45683
|
eager: BooleanConstructor;
|
|
45433
45684
|
disabled: BooleanConstructor;
|
|
45434
45685
|
class: vue.PropType<any>;
|
|
45435
45686
|
theme: StringConstructor;
|
|
45436
45687
|
contentClass: null;
|
|
45437
45688
|
modelValue: BooleanConstructor;
|
|
45438
|
-
activator: vue.PropType<
|
|
45689
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
45439
45690
|
locationStrategy: {
|
|
45440
45691
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
45441
45692
|
updateLocation: (e: Event) => void;
|
|
@@ -45481,6 +45732,7 @@ declare const VSnackbar: {
|
|
|
45481
45732
|
validator: (v: any) => boolean;
|
|
45482
45733
|
};
|
|
45483
45734
|
multiLine: BooleanConstructor;
|
|
45735
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
45484
45736
|
timeout: {
|
|
45485
45737
|
type: (StringConstructor | NumberConstructor)[];
|
|
45486
45738
|
default: number;
|
|
@@ -45525,13 +45777,14 @@ declare const VSnackbar: {
|
|
|
45525
45777
|
type: vue.PropType<vue.StyleValue>;
|
|
45526
45778
|
default: null;
|
|
45527
45779
|
};
|
|
45780
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
45528
45781
|
eager: BooleanConstructor;
|
|
45529
45782
|
disabled: BooleanConstructor;
|
|
45530
45783
|
class: vue.PropType<any>;
|
|
45531
45784
|
theme: StringConstructor;
|
|
45532
45785
|
contentClass: null;
|
|
45533
45786
|
modelValue: BooleanConstructor;
|
|
45534
|
-
activator: vue.PropType<
|
|
45787
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
45535
45788
|
locationStrategy: {
|
|
45536
45789
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
45537
45790
|
updateLocation: (e: Event) => void;
|
|
@@ -45577,6 +45830,7 @@ declare const VSnackbar: {
|
|
|
45577
45830
|
validator: (v: any) => boolean;
|
|
45578
45831
|
};
|
|
45579
45832
|
multiLine: BooleanConstructor;
|
|
45833
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
45580
45834
|
timeout: {
|
|
45581
45835
|
type: (StringConstructor | NumberConstructor)[];
|
|
45582
45836
|
default: number;
|
|
@@ -45710,6 +45964,7 @@ declare const VSwitch: {
|
|
|
45710
45964
|
defaultsTarget?: string | undefined;
|
|
45711
45965
|
falseIcon?: IconValue | undefined;
|
|
45712
45966
|
trueIcon?: IconValue | undefined;
|
|
45967
|
+
baseColor?: string | undefined;
|
|
45713
45968
|
trueValue?: any;
|
|
45714
45969
|
falseValue?: any;
|
|
45715
45970
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -45807,6 +46062,7 @@ declare const VSwitch: {
|
|
|
45807
46062
|
defaultsTarget?: string | undefined;
|
|
45808
46063
|
falseIcon?: IconValue | undefined;
|
|
45809
46064
|
trueIcon?: IconValue | undefined;
|
|
46065
|
+
baseColor?: string | undefined;
|
|
45810
46066
|
trueValue?: any;
|
|
45811
46067
|
falseValue?: any;
|
|
45812
46068
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -45985,6 +46241,7 @@ declare const VSwitch: {
|
|
|
45985
46241
|
defaultsTarget?: string | undefined;
|
|
45986
46242
|
falseIcon?: IconValue | undefined;
|
|
45987
46243
|
trueIcon?: IconValue | undefined;
|
|
46244
|
+
baseColor?: string | undefined;
|
|
45988
46245
|
trueValue?: any;
|
|
45989
46246
|
falseValue?: any;
|
|
45990
46247
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -46090,6 +46347,7 @@ declare const VSwitch: {
|
|
|
46090
46347
|
defaultsTarget?: string | undefined;
|
|
46091
46348
|
falseIcon?: IconValue | undefined;
|
|
46092
46349
|
trueIcon?: IconValue | undefined;
|
|
46350
|
+
baseColor?: string | undefined;
|
|
46093
46351
|
trueValue?: any;
|
|
46094
46352
|
falseValue?: any;
|
|
46095
46353
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -46251,6 +46509,7 @@ declare const VSwitch: {
|
|
|
46251
46509
|
default: typeof deepEqual;
|
|
46252
46510
|
};
|
|
46253
46511
|
label: StringConstructor;
|
|
46512
|
+
baseColor: StringConstructor;
|
|
46254
46513
|
trueValue: null;
|
|
46255
46514
|
falseValue: null;
|
|
46256
46515
|
value: null;
|
|
@@ -46337,6 +46596,7 @@ declare const VSwitch: {
|
|
|
46337
46596
|
default: typeof deepEqual;
|
|
46338
46597
|
};
|
|
46339
46598
|
label: StringConstructor;
|
|
46599
|
+
baseColor: StringConstructor;
|
|
46340
46600
|
trueValue: null;
|
|
46341
46601
|
falseValue: null;
|
|
46342
46602
|
value: null;
|
|
@@ -46726,6 +46986,7 @@ declare const VTabs: {
|
|
|
46726
46986
|
}>) => void)[] | undefined;
|
|
46727
46987
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
46728
46988
|
bgColor?: string | undefined;
|
|
46989
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46729
46990
|
showArrows?: string | boolean | undefined;
|
|
46730
46991
|
sliderColor?: string | undefined;
|
|
46731
46992
|
};
|
|
@@ -46770,6 +47031,7 @@ declare const VTabs: {
|
|
|
46770
47031
|
class?: any;
|
|
46771
47032
|
modelValue?: any;
|
|
46772
47033
|
bgColor?: string | undefined;
|
|
47034
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46773
47035
|
showArrows?: string | boolean | undefined;
|
|
46774
47036
|
sliderColor?: string | undefined;
|
|
46775
47037
|
} & {
|
|
@@ -46856,6 +47118,7 @@ declare const VTabs: {
|
|
|
46856
47118
|
class?: any;
|
|
46857
47119
|
modelValue?: any;
|
|
46858
47120
|
bgColor?: string | undefined;
|
|
47121
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46859
47122
|
showArrows?: string | boolean | undefined;
|
|
46860
47123
|
sliderColor?: string | undefined;
|
|
46861
47124
|
} & {
|
|
@@ -46899,6 +47162,7 @@ declare const VTabs: {
|
|
|
46899
47162
|
class?: any;
|
|
46900
47163
|
modelValue?: any;
|
|
46901
47164
|
bgColor?: string | undefined;
|
|
47165
|
+
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
46902
47166
|
showArrows?: string | boolean | undefined;
|
|
46903
47167
|
sliderColor?: string | undefined;
|
|
46904
47168
|
} & {
|
|
@@ -46964,6 +47228,7 @@ declare const VTabs: {
|
|
|
46964
47228
|
default: string;
|
|
46965
47229
|
};
|
|
46966
47230
|
disabled: BooleanConstructor;
|
|
47231
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
46967
47232
|
class: PropType<any>;
|
|
46968
47233
|
style: {
|
|
46969
47234
|
type: PropType<vue.StyleValue>;
|
|
@@ -47034,6 +47299,7 @@ declare const VTabs: {
|
|
|
47034
47299
|
default: string;
|
|
47035
47300
|
};
|
|
47036
47301
|
disabled: BooleanConstructor;
|
|
47302
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
47037
47303
|
class: PropType<any>;
|
|
47038
47304
|
style: {
|
|
47039
47305
|
type: PropType<vue.StyleValue>;
|
|
@@ -47977,6 +48243,7 @@ declare const VTextarea: {
|
|
|
47977
48243
|
prependIcon?: IconValue | undefined;
|
|
47978
48244
|
appendIcon?: IconValue | undefined;
|
|
47979
48245
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
48246
|
+
baseColor?: string | undefined;
|
|
47980
48247
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
47981
48248
|
label: string | undefined;
|
|
47982
48249
|
props: Record<string, any>;
|
|
@@ -47995,7 +48262,6 @@ declare const VTextarea: {
|
|
|
47995
48262
|
hint?: string | undefined;
|
|
47996
48263
|
hideDetails?: boolean | "auto" | undefined;
|
|
47997
48264
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
47998
|
-
baseColor?: string | undefined;
|
|
47999
48265
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
48000
48266
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
48001
48267
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -48096,6 +48362,7 @@ declare const VTextarea: {
|
|
|
48096
48362
|
bgColor?: string | undefined;
|
|
48097
48363
|
prependIcon?: IconValue | undefined;
|
|
48098
48364
|
appendIcon?: IconValue | undefined;
|
|
48365
|
+
baseColor?: string | undefined;
|
|
48099
48366
|
appendInnerIcon?: IconValue | undefined;
|
|
48100
48367
|
prependInnerIcon?: IconValue | undefined;
|
|
48101
48368
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -48109,7 +48376,6 @@ declare const VTextarea: {
|
|
|
48109
48376
|
centerAffix?: boolean | undefined;
|
|
48110
48377
|
hint?: string | undefined;
|
|
48111
48378
|
hideDetails?: boolean | "auto" | undefined;
|
|
48112
|
-
baseColor?: string | undefined;
|
|
48113
48379
|
suffix?: string | undefined;
|
|
48114
48380
|
counterValue?: ((value: any) => number) | undefined;
|
|
48115
48381
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -48582,6 +48848,7 @@ declare const VTextarea: {
|
|
|
48582
48848
|
bgColor?: string | undefined;
|
|
48583
48849
|
prependIcon?: IconValue | undefined;
|
|
48584
48850
|
appendIcon?: IconValue | undefined;
|
|
48851
|
+
baseColor?: string | undefined;
|
|
48585
48852
|
appendInnerIcon?: IconValue | undefined;
|
|
48586
48853
|
prependInnerIcon?: IconValue | undefined;
|
|
48587
48854
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -48595,7 +48862,6 @@ declare const VTextarea: {
|
|
|
48595
48862
|
centerAffix?: boolean | undefined;
|
|
48596
48863
|
hint?: string | undefined;
|
|
48597
48864
|
hideDetails?: boolean | "auto" | undefined;
|
|
48598
|
-
baseColor?: string | undefined;
|
|
48599
48865
|
suffix?: string | undefined;
|
|
48600
48866
|
counterValue?: ((value: any) => number) | undefined;
|
|
48601
48867
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -48983,6 +49249,7 @@ declare const VTextarea: {
|
|
|
48983
49249
|
bgColor?: string | undefined;
|
|
48984
49250
|
prependIcon?: IconValue | undefined;
|
|
48985
49251
|
appendIcon?: IconValue | undefined;
|
|
49252
|
+
baseColor?: string | undefined;
|
|
48986
49253
|
appendInnerIcon?: IconValue | undefined;
|
|
48987
49254
|
prependInnerIcon?: IconValue | undefined;
|
|
48988
49255
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -48996,7 +49263,6 @@ declare const VTextarea: {
|
|
|
48996
49263
|
centerAffix?: boolean | undefined;
|
|
48997
49264
|
hint?: string | undefined;
|
|
48998
49265
|
hideDetails?: boolean | "auto" | undefined;
|
|
48999
|
-
baseColor?: string | undefined;
|
|
49000
49266
|
suffix?: string | undefined;
|
|
49001
49267
|
counterValue?: ((value: any) => number) | undefined;
|
|
49002
49268
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -49754,6 +50020,7 @@ declare const VTextField: {
|
|
|
49754
50020
|
prependIcon?: IconValue | undefined;
|
|
49755
50021
|
appendIcon?: IconValue | undefined;
|
|
49756
50022
|
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
50023
|
+
baseColor?: string | undefined;
|
|
49757
50024
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
49758
50025
|
label: string | undefined;
|
|
49759
50026
|
props: Record<string, any>;
|
|
@@ -49772,7 +50039,6 @@ declare const VTextField: {
|
|
|
49772
50039
|
hint?: string | undefined;
|
|
49773
50040
|
hideDetails?: boolean | "auto" | undefined;
|
|
49774
50041
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
49775
|
-
baseColor?: string | undefined;
|
|
49776
50042
|
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
49777
50043
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
49778
50044
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
@@ -49874,6 +50140,7 @@ declare const VTextField: {
|
|
|
49874
50140
|
bgColor?: string | undefined;
|
|
49875
50141
|
prependIcon?: IconValue | undefined;
|
|
49876
50142
|
appendIcon?: IconValue | undefined;
|
|
50143
|
+
baseColor?: string | undefined;
|
|
49877
50144
|
appendInnerIcon?: IconValue | undefined;
|
|
49878
50145
|
prependInnerIcon?: IconValue | undefined;
|
|
49879
50146
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -49887,7 +50154,6 @@ declare const VTextField: {
|
|
|
49887
50154
|
centerAffix?: boolean | undefined;
|
|
49888
50155
|
hint?: string | undefined;
|
|
49889
50156
|
hideDetails?: boolean | "auto" | undefined;
|
|
49890
|
-
baseColor?: string | undefined;
|
|
49891
50157
|
suffix?: string | undefined;
|
|
49892
50158
|
counterValue?: ((value: any) => number) | undefined;
|
|
49893
50159
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -50298,13 +50564,13 @@ declare const VTextField: {
|
|
|
50298
50564
|
}>) => void)[] | undefined;
|
|
50299
50565
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50300
50566
|
bgColor?: string | undefined;
|
|
50567
|
+
baseColor?: string | undefined;
|
|
50301
50568
|
appendInnerIcon?: IconValue | undefined;
|
|
50302
50569
|
prependInnerIcon?: IconValue | undefined;
|
|
50303
50570
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50304
50571
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50305
50572
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50306
50573
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
50307
|
-
baseColor?: string | undefined;
|
|
50308
50574
|
};
|
|
50309
50575
|
$attrs: {
|
|
50310
50576
|
[x: string]: unknown;
|
|
@@ -50362,6 +50628,7 @@ declare const VTextField: {
|
|
|
50362
50628
|
theme?: string | undefined;
|
|
50363
50629
|
rounded?: string | number | boolean | undefined;
|
|
50364
50630
|
bgColor?: string | undefined;
|
|
50631
|
+
baseColor?: string | undefined;
|
|
50365
50632
|
appendInnerIcon?: IconValue | undefined;
|
|
50366
50633
|
prependInnerIcon?: IconValue | undefined;
|
|
50367
50634
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50369,7 +50636,6 @@ declare const VTextField: {
|
|
|
50369
50636
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50370
50637
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
50371
50638
|
centerAffix?: boolean | undefined;
|
|
50372
|
-
baseColor?: string | undefined;
|
|
50373
50639
|
} & {
|
|
50374
50640
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50375
50641
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -50459,6 +50725,7 @@ declare const VTextField: {
|
|
|
50459
50725
|
theme?: string | undefined;
|
|
50460
50726
|
rounded?: string | number | boolean | undefined;
|
|
50461
50727
|
bgColor?: string | undefined;
|
|
50728
|
+
baseColor?: string | undefined;
|
|
50462
50729
|
appendInnerIcon?: IconValue | undefined;
|
|
50463
50730
|
prependInnerIcon?: IconValue | undefined;
|
|
50464
50731
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50466,7 +50733,6 @@ declare const VTextField: {
|
|
|
50466
50733
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
50467
50734
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
50468
50735
|
centerAffix?: boolean | undefined;
|
|
50469
|
-
baseColor?: string | undefined;
|
|
50470
50736
|
} & {
|
|
50471
50737
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
50472
50738
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -50475,7 +50741,7 @@ declare const VTextField: {
|
|
|
50475
50741
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
50476
50742
|
modelValue?: unknown;
|
|
50477
50743
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
50478
|
-
}, 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" | "
|
|
50744
|
+
}, 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, {
|
|
50479
50745
|
'click:control': (e: MouseEvent) => true;
|
|
50480
50746
|
'mousedown:control': (e: MouseEvent) => true;
|
|
50481
50747
|
'update:focused': (focused: boolean) => true;
|
|
@@ -50608,6 +50874,7 @@ declare const VTextField: {
|
|
|
50608
50874
|
bgColor?: string | undefined;
|
|
50609
50875
|
prependIcon?: IconValue | undefined;
|
|
50610
50876
|
appendIcon?: IconValue | undefined;
|
|
50877
|
+
baseColor?: string | undefined;
|
|
50611
50878
|
appendInnerIcon?: IconValue | undefined;
|
|
50612
50879
|
prependInnerIcon?: IconValue | undefined;
|
|
50613
50880
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -50621,7 +50888,6 @@ declare const VTextField: {
|
|
|
50621
50888
|
centerAffix?: boolean | undefined;
|
|
50622
50889
|
hint?: string | undefined;
|
|
50623
50890
|
hideDetails?: boolean | "auto" | undefined;
|
|
50624
|
-
baseColor?: string | undefined;
|
|
50625
50891
|
suffix?: string | undefined;
|
|
50626
50892
|
counterValue?: ((value: any) => number) | undefined;
|
|
50627
50893
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -51032,13 +51298,13 @@ declare const VTextField: {
|
|
|
51032
51298
|
}>) => void)[] | undefined;
|
|
51033
51299
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51034
51300
|
bgColor?: string | undefined;
|
|
51301
|
+
baseColor?: string | undefined;
|
|
51035
51302
|
appendInnerIcon?: IconValue | undefined;
|
|
51036
51303
|
prependInnerIcon?: IconValue | undefined;
|
|
51037
51304
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51038
51305
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51039
51306
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51040
51307
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
51041
|
-
baseColor?: string | undefined;
|
|
51042
51308
|
};
|
|
51043
51309
|
$attrs: {
|
|
51044
51310
|
[x: string]: unknown;
|
|
@@ -51096,6 +51362,7 @@ declare const VTextField: {
|
|
|
51096
51362
|
theme?: string | undefined;
|
|
51097
51363
|
rounded?: string | number | boolean | undefined;
|
|
51098
51364
|
bgColor?: string | undefined;
|
|
51365
|
+
baseColor?: string | undefined;
|
|
51099
51366
|
appendInnerIcon?: IconValue | undefined;
|
|
51100
51367
|
prependInnerIcon?: IconValue | undefined;
|
|
51101
51368
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51103,7 +51370,6 @@ declare const VTextField: {
|
|
|
51103
51370
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51104
51371
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51105
51372
|
centerAffix?: boolean | undefined;
|
|
51106
|
-
baseColor?: string | undefined;
|
|
51107
51373
|
} & {
|
|
51108
51374
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51109
51375
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51193,6 +51459,7 @@ declare const VTextField: {
|
|
|
51193
51459
|
theme?: string | undefined;
|
|
51194
51460
|
rounded?: string | number | boolean | undefined;
|
|
51195
51461
|
bgColor?: string | undefined;
|
|
51462
|
+
baseColor?: string | undefined;
|
|
51196
51463
|
appendInnerIcon?: IconValue | undefined;
|
|
51197
51464
|
prependInnerIcon?: IconValue | undefined;
|
|
51198
51465
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51200,7 +51467,6 @@ declare const VTextField: {
|
|
|
51200
51467
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51201
51468
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51202
51469
|
centerAffix?: boolean | undefined;
|
|
51203
|
-
baseColor?: string | undefined;
|
|
51204
51470
|
} & {
|
|
51205
51471
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51206
51472
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51209,7 +51475,7 @@ declare const VTextField: {
|
|
|
51209
51475
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
51210
51476
|
modelValue?: unknown;
|
|
51211
51477
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
51212
|
-
}, 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" | "
|
|
51478
|
+
}, 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 & {};
|
|
51213
51479
|
__isFragment?: undefined;
|
|
51214
51480
|
__isTeleport?: undefined;
|
|
51215
51481
|
__isSuspense?: undefined;
|
|
@@ -51256,6 +51522,7 @@ declare const VTextField: {
|
|
|
51256
51522
|
bgColor?: string | undefined;
|
|
51257
51523
|
prependIcon?: IconValue | undefined;
|
|
51258
51524
|
appendIcon?: IconValue | undefined;
|
|
51525
|
+
baseColor?: string | undefined;
|
|
51259
51526
|
appendInnerIcon?: IconValue | undefined;
|
|
51260
51527
|
prependInnerIcon?: IconValue | undefined;
|
|
51261
51528
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51269,7 +51536,6 @@ declare const VTextField: {
|
|
|
51269
51536
|
centerAffix?: boolean | undefined;
|
|
51270
51537
|
hint?: string | undefined;
|
|
51271
51538
|
hideDetails?: boolean | "auto" | undefined;
|
|
51272
|
-
baseColor?: string | undefined;
|
|
51273
51539
|
suffix?: string | undefined;
|
|
51274
51540
|
counterValue?: ((value: any) => number) | undefined;
|
|
51275
51541
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -51680,13 +51946,13 @@ declare const VTextField: {
|
|
|
51680
51946
|
}>) => void)[] | undefined;
|
|
51681
51947
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51682
51948
|
bgColor?: string | undefined;
|
|
51949
|
+
baseColor?: string | undefined;
|
|
51683
51950
|
appendInnerIcon?: IconValue | undefined;
|
|
51684
51951
|
prependInnerIcon?: IconValue | undefined;
|
|
51685
51952
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51686
51953
|
'onClick:appendInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51687
51954
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51688
51955
|
'onUpdate:focused'?: (EventProp<[boolean], (args_0: boolean) => any> & ((focused: boolean) => any)) | undefined;
|
|
51689
|
-
baseColor?: string | undefined;
|
|
51690
51956
|
};
|
|
51691
51957
|
$attrs: {
|
|
51692
51958
|
[x: string]: unknown;
|
|
@@ -51744,6 +52010,7 @@ declare const VTextField: {
|
|
|
51744
52010
|
theme?: string | undefined;
|
|
51745
52011
|
rounded?: string | number | boolean | undefined;
|
|
51746
52012
|
bgColor?: string | undefined;
|
|
52013
|
+
baseColor?: string | undefined;
|
|
51747
52014
|
appendInnerIcon?: IconValue | undefined;
|
|
51748
52015
|
prependInnerIcon?: IconValue | undefined;
|
|
51749
52016
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51751,7 +52018,6 @@ declare const VTextField: {
|
|
|
51751
52018
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51752
52019
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51753
52020
|
centerAffix?: boolean | undefined;
|
|
51754
|
-
baseColor?: string | undefined;
|
|
51755
52021
|
} & {
|
|
51756
52022
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51757
52023
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51841,6 +52107,7 @@ declare const VTextField: {
|
|
|
51841
52107
|
theme?: string | undefined;
|
|
51842
52108
|
rounded?: string | number | boolean | undefined;
|
|
51843
52109
|
bgColor?: string | undefined;
|
|
52110
|
+
baseColor?: string | undefined;
|
|
51844
52111
|
appendInnerIcon?: IconValue | undefined;
|
|
51845
52112
|
prependInnerIcon?: IconValue | undefined;
|
|
51846
52113
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -51848,7 +52115,6 @@ declare const VTextField: {
|
|
|
51848
52115
|
'onClick:prependInner'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
51849
52116
|
'onUpdate:focused'?: EventProp<[boolean], (args_0: boolean) => any> | undefined;
|
|
51850
52117
|
centerAffix?: boolean | undefined;
|
|
51851
|
-
baseColor?: string | undefined;
|
|
51852
52118
|
} & {
|
|
51853
52119
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
51854
52120
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
@@ -51857,7 +52123,7 @@ declare const VTextField: {
|
|
|
51857
52123
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
51858
52124
|
modelValue?: unknown;
|
|
51859
52125
|
'onUpdate:modelValue'?: ((val: unknown) => any) | undefined;
|
|
51860
|
-
}, 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" | "
|
|
52126
|
+
}, 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, {
|
|
51861
52127
|
'click:control': (e: MouseEvent) => true;
|
|
51862
52128
|
'mousedown:control': (e: MouseEvent) => true;
|
|
51863
52129
|
'update:focused': (focused: boolean) => true;
|
|
@@ -53395,6 +53661,7 @@ declare const VTooltip: {
|
|
|
53395
53661
|
maxWidth?: string | number | undefined;
|
|
53396
53662
|
minHeight?: string | number | undefined;
|
|
53397
53663
|
text?: string | undefined;
|
|
53664
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53398
53665
|
class?: any;
|
|
53399
53666
|
$children?: vue.VNodeChild | {
|
|
53400
53667
|
default?: ((arg: {
|
|
@@ -53463,7 +53730,7 @@ declare const VTooltip: {
|
|
|
53463
53730
|
[key: string]: any;
|
|
53464
53731
|
}>) => void)[] | undefined;
|
|
53465
53732
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
53466
|
-
activator?:
|
|
53733
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53467
53734
|
"v-slot:activator"?: false | ((arg: {
|
|
53468
53735
|
isActive: boolean;
|
|
53469
53736
|
props: Record<string, any>;
|
|
@@ -53529,10 +53796,11 @@ declare const VTooltip: {
|
|
|
53529
53796
|
maxWidth?: string | number | undefined;
|
|
53530
53797
|
minHeight?: string | number | undefined;
|
|
53531
53798
|
text?: string | undefined;
|
|
53799
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53532
53800
|
class?: any;
|
|
53533
53801
|
theme?: string | undefined;
|
|
53534
53802
|
contentClass?: any;
|
|
53535
|
-
activator?:
|
|
53803
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53536
53804
|
closeDelay?: string | number | undefined;
|
|
53537
53805
|
openDelay?: string | number | undefined;
|
|
53538
53806
|
openOnFocus?: boolean | undefined;
|
|
@@ -53607,6 +53875,7 @@ declare const VTooltip: {
|
|
|
53607
53875
|
maxWidth?: string | number | undefined;
|
|
53608
53876
|
minHeight?: string | number | undefined;
|
|
53609
53877
|
minWidth?: string | number | undefined;
|
|
53878
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53610
53879
|
class?: any;
|
|
53611
53880
|
onAfterLeave?: (() => any) | undefined;
|
|
53612
53881
|
$children?: vue.VNodeChild | {
|
|
@@ -53676,7 +53945,7 @@ declare const VTooltip: {
|
|
|
53676
53945
|
[key: string]: any;
|
|
53677
53946
|
}>) => void)[] | undefined;
|
|
53678
53947
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
53679
|
-
activator?:
|
|
53948
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53680
53949
|
"v-slot:activator"?: false | ((arg: {
|
|
53681
53950
|
isActive: boolean;
|
|
53682
53951
|
props: Record<string, any>;
|
|
@@ -53743,10 +54012,11 @@ declare const VTooltip: {
|
|
|
53743
54012
|
maxWidth?: string | number | undefined;
|
|
53744
54013
|
minHeight?: string | number | undefined;
|
|
53745
54014
|
minWidth?: string | number | undefined;
|
|
54015
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53746
54016
|
class?: any;
|
|
53747
54017
|
theme?: string | undefined;
|
|
53748
54018
|
contentClass?: any;
|
|
53749
|
-
activator?:
|
|
54019
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53750
54020
|
closeDelay?: string | number | undefined;
|
|
53751
54021
|
openDelay?: string | number | undefined;
|
|
53752
54022
|
openOnClick?: boolean | undefined;
|
|
@@ -53788,6 +54058,7 @@ declare const VTooltip: {
|
|
|
53788
54058
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
53789
54059
|
}, {
|
|
53790
54060
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54061
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
53791
54062
|
animateClick: () => void;
|
|
53792
54063
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
53793
54064
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -53889,10 +54160,11 @@ declare const VTooltip: {
|
|
|
53889
54160
|
maxWidth?: string | number | undefined;
|
|
53890
54161
|
minHeight?: string | number | undefined;
|
|
53891
54162
|
minWidth?: string | number | undefined;
|
|
54163
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
53892
54164
|
class?: any;
|
|
53893
54165
|
theme?: string | undefined;
|
|
53894
54166
|
contentClass?: any;
|
|
53895
|
-
activator?:
|
|
54167
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
53896
54168
|
closeDelay?: string | number | undefined;
|
|
53897
54169
|
openDelay?: string | number | undefined;
|
|
53898
54170
|
openOnClick?: boolean | undefined;
|
|
@@ -53934,12 +54206,13 @@ declare const VTooltip: {
|
|
|
53934
54206
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
53935
54207
|
} & vue.ShallowUnwrapRef<{
|
|
53936
54208
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54209
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
53937
54210
|
animateClick: () => void;
|
|
53938
54211
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
53939
54212
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
53940
54213
|
localTop: vue.ComputedRef<boolean>;
|
|
53941
54214
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
53942
|
-
}> & {} & 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, {
|
|
54215
|
+
}> & {} & 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, {
|
|
53943
54216
|
'update:modelValue': (value: boolean) => boolean;
|
|
53944
54217
|
}, string, {
|
|
53945
54218
|
offset: NonNullable<string | number | number[] | undefined>;
|
|
@@ -54032,10 +54305,11 @@ declare const VTooltip: {
|
|
|
54032
54305
|
maxWidth?: string | number | undefined;
|
|
54033
54306
|
minHeight?: string | number | undefined;
|
|
54034
54307
|
text?: string | undefined;
|
|
54308
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54035
54309
|
class?: any;
|
|
54036
54310
|
theme?: string | undefined;
|
|
54037
54311
|
contentClass?: any;
|
|
54038
|
-
activator?:
|
|
54312
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54039
54313
|
closeDelay?: string | number | undefined;
|
|
54040
54314
|
openDelay?: string | number | undefined;
|
|
54041
54315
|
openOnFocus?: boolean | undefined;
|
|
@@ -54110,6 +54384,7 @@ declare const VTooltip: {
|
|
|
54110
54384
|
maxWidth?: string | number | undefined;
|
|
54111
54385
|
minHeight?: string | number | undefined;
|
|
54112
54386
|
minWidth?: string | number | undefined;
|
|
54387
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54113
54388
|
class?: any;
|
|
54114
54389
|
onAfterLeave?: (() => any) | undefined;
|
|
54115
54390
|
$children?: vue.VNodeChild | {
|
|
@@ -54179,7 +54454,7 @@ declare const VTooltip: {
|
|
|
54179
54454
|
[key: string]: any;
|
|
54180
54455
|
}>) => void)[] | undefined;
|
|
54181
54456
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54182
|
-
activator?:
|
|
54457
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54183
54458
|
"v-slot:activator"?: false | ((arg: {
|
|
54184
54459
|
isActive: boolean;
|
|
54185
54460
|
props: Record<string, any>;
|
|
@@ -54246,10 +54521,11 @@ declare const VTooltip: {
|
|
|
54246
54521
|
maxWidth?: string | number | undefined;
|
|
54247
54522
|
minHeight?: string | number | undefined;
|
|
54248
54523
|
minWidth?: string | number | undefined;
|
|
54524
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54249
54525
|
class?: any;
|
|
54250
54526
|
theme?: string | undefined;
|
|
54251
54527
|
contentClass?: any;
|
|
54252
|
-
activator?:
|
|
54528
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54253
54529
|
closeDelay?: string | number | undefined;
|
|
54254
54530
|
openDelay?: string | number | undefined;
|
|
54255
54531
|
openOnClick?: boolean | undefined;
|
|
@@ -54291,6 +54567,7 @@ declare const VTooltip: {
|
|
|
54291
54567
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54292
54568
|
}, {
|
|
54293
54569
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54570
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54294
54571
|
animateClick: () => void;
|
|
54295
54572
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54296
54573
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -54392,10 +54669,11 @@ declare const VTooltip: {
|
|
|
54392
54669
|
maxWidth?: string | number | undefined;
|
|
54393
54670
|
minHeight?: string | number | undefined;
|
|
54394
54671
|
minWidth?: string | number | undefined;
|
|
54672
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54395
54673
|
class?: any;
|
|
54396
54674
|
theme?: string | undefined;
|
|
54397
54675
|
contentClass?: any;
|
|
54398
|
-
activator?:
|
|
54676
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54399
54677
|
closeDelay?: string | number | undefined;
|
|
54400
54678
|
openDelay?: string | number | undefined;
|
|
54401
54679
|
openOnClick?: boolean | undefined;
|
|
@@ -54437,12 +54715,13 @@ declare const VTooltip: {
|
|
|
54437
54715
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54438
54716
|
} & vue.ShallowUnwrapRef<{
|
|
54439
54717
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
54718
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54440
54719
|
animateClick: () => void;
|
|
54441
54720
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54442
54721
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
54443
54722
|
localTop: vue.ComputedRef<boolean>;
|
|
54444
54723
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
54445
|
-
}> & {} & 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 & {};
|
|
54724
|
+
}> & {} & 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 & {};
|
|
54446
54725
|
__isFragment?: undefined;
|
|
54447
54726
|
__isTeleport?: undefined;
|
|
54448
54727
|
__isSuspense?: undefined;
|
|
@@ -54479,10 +54758,11 @@ declare const VTooltip: {
|
|
|
54479
54758
|
maxWidth?: string | number | undefined;
|
|
54480
54759
|
minHeight?: string | number | undefined;
|
|
54481
54760
|
text?: string | undefined;
|
|
54761
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54482
54762
|
class?: any;
|
|
54483
54763
|
theme?: string | undefined;
|
|
54484
54764
|
contentClass?: any;
|
|
54485
|
-
activator?:
|
|
54765
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54486
54766
|
closeDelay?: string | number | undefined;
|
|
54487
54767
|
openDelay?: string | number | undefined;
|
|
54488
54768
|
openOnFocus?: boolean | undefined;
|
|
@@ -54557,6 +54837,7 @@ declare const VTooltip: {
|
|
|
54557
54837
|
maxWidth?: string | number | undefined;
|
|
54558
54838
|
minHeight?: string | number | undefined;
|
|
54559
54839
|
minWidth?: string | number | undefined;
|
|
54840
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54560
54841
|
class?: any;
|
|
54561
54842
|
onAfterLeave?: (() => any) | undefined;
|
|
54562
54843
|
$children?: vue.VNodeChild | {
|
|
@@ -54626,7 +54907,7 @@ declare const VTooltip: {
|
|
|
54626
54907
|
[key: string]: any;
|
|
54627
54908
|
}>) => void)[] | undefined;
|
|
54628
54909
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54629
|
-
activator?:
|
|
54910
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54630
54911
|
"v-slot:activator"?: false | ((arg: {
|
|
54631
54912
|
isActive: boolean;
|
|
54632
54913
|
props: Record<string, any>;
|
|
@@ -54693,10 +54974,11 @@ declare const VTooltip: {
|
|
|
54693
54974
|
maxWidth?: string | number | undefined;
|
|
54694
54975
|
minHeight?: string | number | undefined;
|
|
54695
54976
|
minWidth?: string | number | undefined;
|
|
54977
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54696
54978
|
class?: any;
|
|
54697
54979
|
theme?: string | undefined;
|
|
54698
54980
|
contentClass?: any;
|
|
54699
|
-
activator?:
|
|
54981
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54700
54982
|
closeDelay?: string | number | undefined;
|
|
54701
54983
|
openDelay?: string | number | undefined;
|
|
54702
54984
|
openOnClick?: boolean | undefined;
|
|
@@ -54738,6 +55020,7 @@ declare const VTooltip: {
|
|
|
54738
55020
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54739
55021
|
}, {
|
|
54740
55022
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
55023
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54741
55024
|
animateClick: () => void;
|
|
54742
55025
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54743
55026
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -54839,10 +55122,11 @@ declare const VTooltip: {
|
|
|
54839
55122
|
maxWidth?: string | number | undefined;
|
|
54840
55123
|
minHeight?: string | number | undefined;
|
|
54841
55124
|
minWidth?: string | number | undefined;
|
|
55125
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
54842
55126
|
class?: any;
|
|
54843
55127
|
theme?: string | undefined;
|
|
54844
55128
|
contentClass?: any;
|
|
54845
|
-
activator?:
|
|
55129
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
54846
55130
|
closeDelay?: string | number | undefined;
|
|
54847
55131
|
openDelay?: string | number | undefined;
|
|
54848
55132
|
openOnClick?: boolean | undefined;
|
|
@@ -54884,12 +55168,13 @@ declare const VTooltip: {
|
|
|
54884
55168
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
54885
55169
|
} & vue.ShallowUnwrapRef<{
|
|
54886
55170
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
55171
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
54887
55172
|
animateClick: () => void;
|
|
54888
55173
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
54889
55174
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
54890
55175
|
localTop: vue.ComputedRef<boolean>;
|
|
54891
55176
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
54892
|
-
}> & {} & 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, {
|
|
55177
|
+
}> & {} & 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, {
|
|
54893
55178
|
'update:modelValue': (value: boolean) => boolean;
|
|
54894
55179
|
}, string, {
|
|
54895
55180
|
offset: NonNullable<string | number | number[] | undefined>;
|
|
@@ -54979,6 +55264,7 @@ declare const VTooltip: {
|
|
|
54979
55264
|
type: vue.PropType<vue.StyleValue>;
|
|
54980
55265
|
default: null;
|
|
54981
55266
|
};
|
|
55267
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
54982
55268
|
eager: {
|
|
54983
55269
|
type: vue.PropType<boolean>;
|
|
54984
55270
|
default: boolean;
|
|
@@ -54988,7 +55274,7 @@ declare const VTooltip: {
|
|
|
54988
55274
|
theme: StringConstructor;
|
|
54989
55275
|
contentClass: null;
|
|
54990
55276
|
modelValue: BooleanConstructor;
|
|
54991
|
-
activator: vue.PropType<
|
|
55277
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
54992
55278
|
locationStrategy: Omit<{
|
|
54993
55279
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
54994
55280
|
updateLocation: (e: Event) => void;
|
|
@@ -55103,6 +55389,7 @@ declare const VTooltip: {
|
|
|
55103
55389
|
type: vue.PropType<vue.StyleValue>;
|
|
55104
55390
|
default: null;
|
|
55105
55391
|
};
|
|
55392
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
55106
55393
|
eager: {
|
|
55107
55394
|
type: vue.PropType<boolean>;
|
|
55108
55395
|
default: boolean;
|
|
@@ -55112,7 +55399,7 @@ declare const VTooltip: {
|
|
|
55112
55399
|
theme: StringConstructor;
|
|
55113
55400
|
contentClass: null;
|
|
55114
55401
|
modelValue: BooleanConstructor;
|
|
55115
|
-
activator: vue.PropType<
|
|
55402
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
55116
55403
|
locationStrategy: Omit<{
|
|
55117
55404
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
55118
55405
|
updateLocation: (e: Event) => void;
|
|
@@ -56725,7 +57012,7 @@ declare const VDialogTransition: {
|
|
|
56725
57012
|
$props: {
|
|
56726
57013
|
key?: string | number | symbol | undefined;
|
|
56727
57014
|
style?: unknown;
|
|
56728
|
-
target?: HTMLElement | undefined;
|
|
57015
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
56729
57016
|
class?: unknown;
|
|
56730
57017
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56731
57018
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -56792,7 +57079,7 @@ declare const VDialogTransition: {
|
|
|
56792
57079
|
$emit: (event: string, ...args: any[]) => void;
|
|
56793
57080
|
$el: any;
|
|
56794
57081
|
$options: vue.ComponentOptionsBase<{} & {
|
|
56795
|
-
target?: HTMLElement | undefined;
|
|
57082
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
56796
57083
|
} & {
|
|
56797
57084
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56798
57085
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -56827,7 +57114,7 @@ declare const VDialogTransition: {
|
|
|
56827
57114
|
$nextTick: typeof vue.nextTick;
|
|
56828
57115
|
$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;
|
|
56829
57116
|
} & {} & {
|
|
56830
|
-
target?: HTMLElement | undefined;
|
|
57117
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
56831
57118
|
} & {
|
|
56832
57119
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56833
57120
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -56842,7 +57129,7 @@ declare const VDialogTransition: {
|
|
|
56842
57129
|
__isTeleport?: undefined;
|
|
56843
57130
|
__isSuspense?: undefined;
|
|
56844
57131
|
} & vue.ComponentOptionsBase<{} & {
|
|
56845
|
-
target?: HTMLElement | undefined;
|
|
57132
|
+
target?: HTMLElement | [x: number, y: number] | undefined;
|
|
56846
57133
|
} & {
|
|
56847
57134
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56848
57135
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -56857,9 +57144,9 @@ declare const VDialogTransition: {
|
|
|
56857
57144
|
[key: string]: any;
|
|
56858
57145
|
}>[];
|
|
56859
57146
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
56860
|
-
target: PropType<HTMLElement>;
|
|
57147
|
+
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
56861
57148
|
}, vue.ExtractPropTypes<{
|
|
56862
|
-
target: PropType<HTMLElement>;
|
|
57149
|
+
target: PropType<HTMLElement | [x: number, y: number]>;
|
|
56863
57150
|
}>>;
|
|
56864
57151
|
type VDialogTransition = InstanceType<typeof VDialogTransition>;
|
|
56865
57152
|
|