vuetify 3.6.12 → 3.6.13
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 +30 -22
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +140 -140
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +53 -42
- package/dist/vuetify-labs.css +1513 -1515
- package/dist/vuetify-labs.d.ts +287 -178
- package/dist/vuetify-labs.esm.js +59 -28
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +59 -28
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +858 -860
- package/dist/vuetify.d.ts +322 -233
- package/dist/vuetify.esm.js +51 -24
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +51 -24
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +40 -40
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/index.d.mts +12 -6
- package/lib/components/VBtn/VBtn.css +3 -0
- package/lib/components/VBtn/VBtn.sass +3 -0
- package/lib/components/VCheckbox/index.d.mts +8 -2
- package/lib/components/VCombobox/index.d.mts +12 -6
- package/lib/components/VDataIterator/index.d.mts +1 -0
- package/lib/components/VDataTable/VDataTable.mjs +10 -3
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +6 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +10 -3
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/group.mjs +2 -1
- package/lib/components/VDataTable/composables/group.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +4 -4
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +22 -21
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +3 -0
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VField/VField.css +6 -11
- package/lib/components/VField/VField.mjs +7 -5
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/VField.sass +2 -6
- package/lib/components/VField/index.d.mts +12 -6
- package/lib/components/VFileInput/index.d.mts +12 -6
- package/lib/components/VInput/VInput.css +5 -5
- package/lib/components/VInput/VInput.mjs +4 -1
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/VInput.sass +1 -1
- package/lib/components/VInput/index.d.mts +8 -2
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VRadioGroup/index.d.mts +8 -2
- package/lib/components/VRangeSlider/index.d.mts +8 -2
- package/lib/components/VSelect/index.d.mts +12 -6
- package/lib/components/VSlider/index.d.mts +8 -2
- package/lib/components/VSwitch/index.d.mts +8 -2
- package/lib/components/VTextField/VTextField.mjs +1 -1
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/index.d.mts +24 -18
- package/lib/components/VTextarea/VTextarea.mjs +5 -5
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/VTextarea/index.d.mts +87 -72
- package/lib/components/index.d.mts +247 -159
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +75 -74
- package/lib/labs/VDateInput/VDateInput.mjs +6 -3
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +12 -6
- package/lib/labs/VNumberInput/index.d.mts +12 -6
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +2 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTimePicker/index.d.mts +16 -7
- package/lib/labs/components.d.mts +40 -19
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -1352,7 +1352,7 @@ declare const VAppBar: {
|
|
|
1352
1352
|
rounded?: string | number | boolean | undefined;
|
|
1353
1353
|
elevation?: string | number | undefined;
|
|
1354
1354
|
scrollTarget?: string | undefined;
|
|
1355
|
-
scrollBehavior?: (string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1355
|
+
scrollBehavior?: (string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1356
1356
|
} & {
|
|
1357
1357
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1358
1358
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1408,7 +1408,7 @@ declare const VAppBar: {
|
|
|
1408
1408
|
rounded?: string | number | boolean | undefined;
|
|
1409
1409
|
elevation?: string | number | undefined;
|
|
1410
1410
|
scrollTarget?: string | undefined;
|
|
1411
|
-
scrollBehavior?: (string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1411
|
+
scrollBehavior?: (string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1412
1412
|
} & {
|
|
1413
1413
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1414
1414
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1505,7 +1505,7 @@ declare const VAppBar: {
|
|
|
1505
1505
|
rounded?: string | number | boolean | undefined;
|
|
1506
1506
|
elevation?: string | number | undefined;
|
|
1507
1507
|
scrollTarget?: string | undefined;
|
|
1508
|
-
scrollBehavior?: (string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1508
|
+
scrollBehavior?: (string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1509
1509
|
} & {
|
|
1510
1510
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1511
1511
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1580,7 +1580,7 @@ declare const VAppBar: {
|
|
|
1580
1580
|
rounded?: string | number | boolean | undefined;
|
|
1581
1581
|
elevation?: string | number | undefined;
|
|
1582
1582
|
scrollTarget?: string | undefined;
|
|
1583
|
-
scrollBehavior?: (string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1583
|
+
scrollBehavior?: (string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image" | undefined;
|
|
1584
1584
|
} & {
|
|
1585
1585
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1586
1586
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1704,7 +1704,7 @@ declare const VAppBar: {
|
|
|
1704
1704
|
floating: BooleanConstructor;
|
|
1705
1705
|
image: StringConstructor;
|
|
1706
1706
|
title: StringConstructor;
|
|
1707
|
-
scrollBehavior: PropType<(string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image">;
|
|
1707
|
+
scrollBehavior: PropType<(string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image">;
|
|
1708
1708
|
modelValue: {
|
|
1709
1709
|
type: BooleanConstructor;
|
|
1710
1710
|
default: boolean;
|
|
@@ -1773,7 +1773,7 @@ declare const VAppBar: {
|
|
|
1773
1773
|
floating: BooleanConstructor;
|
|
1774
1774
|
image: StringConstructor;
|
|
1775
1775
|
title: StringConstructor;
|
|
1776
|
-
scrollBehavior: PropType<(string & {}) | "collapse" | "hide" | "inverted" | "elevate" | "fade-image">;
|
|
1776
|
+
scrollBehavior: PropType<(string & {}) | "collapse" | "hide" | "fully-hide" | "inverted" | "elevate" | "fade-image">;
|
|
1777
1777
|
modelValue: {
|
|
1778
1778
|
type: BooleanConstructor;
|
|
1779
1779
|
default: boolean;
|
|
@@ -3657,7 +3657,10 @@ declare const VInput: {
|
|
|
3657
3657
|
};
|
|
3658
3658
|
id: StringConstructor;
|
|
3659
3659
|
appendIcon: PropType<IconValue>;
|
|
3660
|
-
centerAffix:
|
|
3660
|
+
centerAffix: {
|
|
3661
|
+
type: BooleanConstructor;
|
|
3662
|
+
default: boolean;
|
|
3663
|
+
};
|
|
3661
3664
|
prependIcon: PropType<IconValue>;
|
|
3662
3665
|
hideDetails: PropType<boolean | "auto">;
|
|
3663
3666
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -3719,7 +3722,10 @@ declare const VInput: {
|
|
|
3719
3722
|
};
|
|
3720
3723
|
id: StringConstructor;
|
|
3721
3724
|
appendIcon: PropType<IconValue>;
|
|
3722
|
-
centerAffix:
|
|
3725
|
+
centerAffix: {
|
|
3726
|
+
type: BooleanConstructor;
|
|
3727
|
+
default: boolean;
|
|
3728
|
+
};
|
|
3723
3729
|
prependIcon: PropType<IconValue>;
|
|
3724
3730
|
hideDetails: PropType<boolean | "auto">;
|
|
3725
3731
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -3774,7 +3780,6 @@ declare const VField: {
|
|
|
3774
3780
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3775
3781
|
tile: boolean;
|
|
3776
3782
|
clearIcon: IconValue;
|
|
3777
|
-
centerAffix: boolean;
|
|
3778
3783
|
clearable: boolean;
|
|
3779
3784
|
dirty: boolean;
|
|
3780
3785
|
persistentClear: boolean;
|
|
@@ -3795,6 +3800,7 @@ declare const VField: {
|
|
|
3795
3800
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3796
3801
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3797
3802
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3803
|
+
centerAffix?: boolean | undefined;
|
|
3798
3804
|
} & {
|
|
3799
3805
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3800
3806
|
}, {
|
|
@@ -3813,7 +3819,6 @@ declare const VField: {
|
|
|
3813
3819
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3814
3820
|
tile: boolean;
|
|
3815
3821
|
clearIcon: IconValue;
|
|
3816
|
-
centerAffix: boolean;
|
|
3817
3822
|
clearable: boolean;
|
|
3818
3823
|
dirty: boolean;
|
|
3819
3824
|
persistentClear: boolean;
|
|
@@ -3834,6 +3839,7 @@ declare const VField: {
|
|
|
3834
3839
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3835
3840
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3836
3841
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3842
|
+
centerAffix?: boolean | undefined;
|
|
3837
3843
|
} & {
|
|
3838
3844
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3839
3845
|
}, {
|
|
@@ -3895,7 +3901,6 @@ declare const VField: {
|
|
|
3895
3901
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3896
3902
|
tile: boolean;
|
|
3897
3903
|
clearIcon: IconValue;
|
|
3898
|
-
centerAffix: boolean;
|
|
3899
3904
|
clearable: boolean;
|
|
3900
3905
|
dirty: boolean;
|
|
3901
3906
|
persistentClear: boolean;
|
|
@@ -3916,6 +3921,7 @@ declare const VField: {
|
|
|
3916
3921
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3917
3922
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3918
3923
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3924
|
+
centerAffix?: boolean | undefined;
|
|
3919
3925
|
} & {
|
|
3920
3926
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3921
3927
|
}, {
|
|
@@ -3952,7 +3958,6 @@ declare const VField: {
|
|
|
3952
3958
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3953
3959
|
tile: boolean;
|
|
3954
3960
|
clearIcon: IconValue;
|
|
3955
|
-
centerAffix: boolean;
|
|
3956
3961
|
clearable: boolean;
|
|
3957
3962
|
dirty: boolean;
|
|
3958
3963
|
persistentClear: boolean;
|
|
@@ -3973,6 +3978,7 @@ declare const VField: {
|
|
|
3973
3978
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3974
3979
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3975
3980
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3981
|
+
centerAffix?: boolean | undefined;
|
|
3976
3982
|
} & {
|
|
3977
3983
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3978
3984
|
}, {
|
|
@@ -4048,7 +4054,10 @@ declare const VField: {
|
|
|
4048
4054
|
default: string;
|
|
4049
4055
|
};
|
|
4050
4056
|
active: BooleanConstructor;
|
|
4051
|
-
centerAffix:
|
|
4057
|
+
centerAffix: {
|
|
4058
|
+
type: BooleanConstructor;
|
|
4059
|
+
default: undefined;
|
|
4060
|
+
};
|
|
4052
4061
|
color: StringConstructor;
|
|
4053
4062
|
baseColor: StringConstructor;
|
|
4054
4063
|
dirty: BooleanConstructor;
|
|
@@ -4095,7 +4104,10 @@ declare const VField: {
|
|
|
4095
4104
|
default: string;
|
|
4096
4105
|
};
|
|
4097
4106
|
active: BooleanConstructor;
|
|
4098
|
-
centerAffix:
|
|
4107
|
+
centerAffix: {
|
|
4108
|
+
type: BooleanConstructor;
|
|
4109
|
+
default: undefined;
|
|
4110
|
+
};
|
|
4099
4111
|
color: StringConstructor;
|
|
4100
4112
|
baseColor: StringConstructor;
|
|
4101
4113
|
dirty: BooleanConstructor;
|
|
@@ -4865,7 +4877,6 @@ declare const VAutocomplete: {
|
|
|
4865
4877
|
direction: "horizontal" | "vertical";
|
|
4866
4878
|
valueComparator: typeof deepEqual;
|
|
4867
4879
|
clearIcon: IconValue;
|
|
4868
|
-
centerAffix: boolean;
|
|
4869
4880
|
hideSpinButtons: boolean;
|
|
4870
4881
|
persistentHint: boolean;
|
|
4871
4882
|
filterMode: FilterMode;
|
|
@@ -4915,6 +4926,7 @@ declare const VAutocomplete: {
|
|
|
4915
4926
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
4916
4927
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
4917
4928
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
4929
|
+
centerAffix?: boolean | undefined;
|
|
4918
4930
|
hint?: string | undefined;
|
|
4919
4931
|
hideDetails?: boolean | "auto" | undefined;
|
|
4920
4932
|
customFilter?: FilterFunction | undefined;
|
|
@@ -5405,7 +5417,6 @@ declare const VAutocomplete: {
|
|
|
5405
5417
|
direction: "horizontal" | "vertical";
|
|
5406
5418
|
valueComparator: typeof deepEqual;
|
|
5407
5419
|
clearIcon: IconValue;
|
|
5408
|
-
centerAffix: boolean;
|
|
5409
5420
|
hideSpinButtons: boolean;
|
|
5410
5421
|
persistentHint: boolean;
|
|
5411
5422
|
filterMode: FilterMode;
|
|
@@ -5455,6 +5466,7 @@ declare const VAutocomplete: {
|
|
|
5455
5466
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
5456
5467
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
5457
5468
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
5469
|
+
centerAffix?: boolean | undefined;
|
|
5458
5470
|
hint?: string | undefined;
|
|
5459
5471
|
hideDetails?: boolean | "auto" | undefined;
|
|
5460
5472
|
customFilter?: FilterFunction | undefined;
|
|
@@ -6059,7 +6071,6 @@ declare const VAutocomplete: {
|
|
|
6059
6071
|
direction: "horizontal" | "vertical";
|
|
6060
6072
|
valueComparator: typeof deepEqual;
|
|
6061
6073
|
clearIcon: IconValue;
|
|
6062
|
-
centerAffix: boolean;
|
|
6063
6074
|
hideSpinButtons: boolean;
|
|
6064
6075
|
persistentHint: boolean;
|
|
6065
6076
|
filterMode: FilterMode;
|
|
@@ -6109,6 +6120,7 @@ declare const VAutocomplete: {
|
|
|
6109
6120
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6110
6121
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6111
6122
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6123
|
+
centerAffix?: boolean | undefined;
|
|
6112
6124
|
hint?: string | undefined;
|
|
6113
6125
|
hideDetails?: boolean | "auto" | undefined;
|
|
6114
6126
|
customFilter?: FilterFunction | undefined;
|
|
@@ -6648,7 +6660,6 @@ declare const VAutocomplete: {
|
|
|
6648
6660
|
direction: "horizontal" | "vertical";
|
|
6649
6661
|
valueComparator: typeof deepEqual;
|
|
6650
6662
|
clearIcon: IconValue;
|
|
6651
|
-
centerAffix: boolean;
|
|
6652
6663
|
hideSpinButtons: boolean;
|
|
6653
6664
|
persistentHint: boolean;
|
|
6654
6665
|
filterMode: FilterMode;
|
|
@@ -6698,6 +6709,7 @@ declare const VAutocomplete: {
|
|
|
6698
6709
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6699
6710
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6700
6711
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6712
|
+
centerAffix?: boolean | undefined;
|
|
6701
6713
|
hint?: string | undefined;
|
|
6702
6714
|
hideDetails?: boolean | "auto" | undefined;
|
|
6703
6715
|
customFilter?: FilterFunction | undefined;
|
|
@@ -7436,7 +7448,10 @@ declare const VAutocomplete: {
|
|
|
7436
7448
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
7437
7449
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
7438
7450
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
7439
|
-
centerAffix:
|
|
7451
|
+
centerAffix: {
|
|
7452
|
+
type: BooleanConstructor;
|
|
7453
|
+
default: undefined;
|
|
7454
|
+
};
|
|
7440
7455
|
hideSpinButtons: BooleanConstructor;
|
|
7441
7456
|
hint: StringConstructor;
|
|
7442
7457
|
persistentHint: BooleanConstructor;
|
|
@@ -8077,7 +8092,10 @@ declare const VAutocomplete: {
|
|
|
8077
8092
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
8078
8093
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
8079
8094
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
8080
|
-
centerAffix:
|
|
8095
|
+
centerAffix: {
|
|
8096
|
+
type: BooleanConstructor;
|
|
8097
|
+
default: undefined;
|
|
8098
|
+
};
|
|
8081
8099
|
hideSpinButtons: BooleanConstructor;
|
|
8082
8100
|
hint: StringConstructor;
|
|
8083
8101
|
persistentHint: BooleanConstructor;
|
|
@@ -16204,7 +16222,10 @@ declare const VCheckbox: {
|
|
|
16204
16222
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
16205
16223
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
16206
16224
|
appendIcon: vue.PropType<IconValue>;
|
|
16207
|
-
centerAffix:
|
|
16225
|
+
centerAffix: {
|
|
16226
|
+
type: BooleanConstructor;
|
|
16227
|
+
default: boolean;
|
|
16228
|
+
};
|
|
16208
16229
|
prependIcon: vue.PropType<IconValue>;
|
|
16209
16230
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
16210
16231
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -16300,7 +16321,10 @@ declare const VCheckbox: {
|
|
|
16300
16321
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
16301
16322
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
16302
16323
|
appendIcon: vue.PropType<IconValue>;
|
|
16303
|
-
centerAffix:
|
|
16324
|
+
centerAffix: {
|
|
16325
|
+
type: BooleanConstructor;
|
|
16326
|
+
default: boolean;
|
|
16327
|
+
};
|
|
16304
16328
|
prependIcon: vue.PropType<IconValue>;
|
|
16305
16329
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
16306
16330
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -18465,7 +18489,6 @@ declare const VCombobox: {
|
|
|
18465
18489
|
direction: "horizontal" | "vertical";
|
|
18466
18490
|
valueComparator: typeof deepEqual;
|
|
18467
18491
|
clearIcon: IconValue;
|
|
18468
|
-
centerAffix: boolean;
|
|
18469
18492
|
hideSpinButtons: boolean;
|
|
18470
18493
|
persistentHint: boolean;
|
|
18471
18494
|
filterMode: FilterMode;
|
|
@@ -18515,6 +18538,7 @@ declare const VCombobox: {
|
|
|
18515
18538
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
18516
18539
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
18517
18540
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
18541
|
+
centerAffix?: boolean | undefined;
|
|
18518
18542
|
hint?: string | undefined;
|
|
18519
18543
|
hideDetails?: boolean | "auto" | undefined;
|
|
18520
18544
|
customFilter?: FilterFunction | undefined;
|
|
@@ -19005,7 +19029,6 @@ declare const VCombobox: {
|
|
|
19005
19029
|
direction: "horizontal" | "vertical";
|
|
19006
19030
|
valueComparator: typeof deepEqual;
|
|
19007
19031
|
clearIcon: IconValue;
|
|
19008
|
-
centerAffix: boolean;
|
|
19009
19032
|
hideSpinButtons: boolean;
|
|
19010
19033
|
persistentHint: boolean;
|
|
19011
19034
|
filterMode: FilterMode;
|
|
@@ -19055,6 +19078,7 @@ declare const VCombobox: {
|
|
|
19055
19078
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19056
19079
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19057
19080
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19081
|
+
centerAffix?: boolean | undefined;
|
|
19058
19082
|
hint?: string | undefined;
|
|
19059
19083
|
hideDetails?: boolean | "auto" | undefined;
|
|
19060
19084
|
customFilter?: FilterFunction | undefined;
|
|
@@ -19659,7 +19683,6 @@ declare const VCombobox: {
|
|
|
19659
19683
|
direction: "horizontal" | "vertical";
|
|
19660
19684
|
valueComparator: typeof deepEqual;
|
|
19661
19685
|
clearIcon: IconValue;
|
|
19662
|
-
centerAffix: boolean;
|
|
19663
19686
|
hideSpinButtons: boolean;
|
|
19664
19687
|
persistentHint: boolean;
|
|
19665
19688
|
filterMode: FilterMode;
|
|
@@ -19709,6 +19732,7 @@ declare const VCombobox: {
|
|
|
19709
19732
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19710
19733
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19711
19734
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
19735
|
+
centerAffix?: boolean | undefined;
|
|
19712
19736
|
hint?: string | undefined;
|
|
19713
19737
|
hideDetails?: boolean | "auto" | undefined;
|
|
19714
19738
|
customFilter?: FilterFunction | undefined;
|
|
@@ -20248,7 +20272,6 @@ declare const VCombobox: {
|
|
|
20248
20272
|
direction: "horizontal" | "vertical";
|
|
20249
20273
|
valueComparator: typeof deepEqual;
|
|
20250
20274
|
clearIcon: IconValue;
|
|
20251
|
-
centerAffix: boolean;
|
|
20252
20275
|
hideSpinButtons: boolean;
|
|
20253
20276
|
persistentHint: boolean;
|
|
20254
20277
|
filterMode: FilterMode;
|
|
@@ -20298,6 +20321,7 @@ declare const VCombobox: {
|
|
|
20298
20321
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
20299
20322
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
20300
20323
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
20324
|
+
centerAffix?: boolean | undefined;
|
|
20301
20325
|
hint?: string | undefined;
|
|
20302
20326
|
hideDetails?: boolean | "auto" | undefined;
|
|
20303
20327
|
customFilter?: FilterFunction | undefined;
|
|
@@ -21036,7 +21060,10 @@ declare const VCombobox: {
|
|
|
21036
21060
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
21037
21061
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
21038
21062
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
21039
|
-
centerAffix:
|
|
21063
|
+
centerAffix: {
|
|
21064
|
+
type: BooleanConstructor;
|
|
21065
|
+
default: undefined;
|
|
21066
|
+
};
|
|
21040
21067
|
hideSpinButtons: BooleanConstructor;
|
|
21041
21068
|
hint: StringConstructor;
|
|
21042
21069
|
persistentHint: BooleanConstructor;
|
|
@@ -21686,7 +21713,10 @@ declare const VCombobox: {
|
|
|
21686
21713
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
21687
21714
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
21688
21715
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
21689
|
-
centerAffix:
|
|
21716
|
+
centerAffix: {
|
|
21717
|
+
type: BooleanConstructor;
|
|
21718
|
+
default: undefined;
|
|
21719
|
+
};
|
|
21690
21720
|
hideSpinButtons: BooleanConstructor;
|
|
21691
21721
|
hint: StringConstructor;
|
|
21692
21722
|
persistentHint: BooleanConstructor;
|
|
@@ -22618,6 +22648,7 @@ interface Group<T = any> {
|
|
|
22618
22648
|
declare function provideGroupBy(options: {
|
|
22619
22649
|
groupBy: Ref<readonly SortItem[]>;
|
|
22620
22650
|
sortBy: Ref<readonly SortItem[]>;
|
|
22651
|
+
disableSort?: Ref<boolean>;
|
|
22621
22652
|
}): {
|
|
22622
22653
|
sortByWithGroups: vue.ComputedRef<SortItem[]>;
|
|
22623
22654
|
toggleGroup: (group: Group) => void;
|
|
@@ -24013,6 +24044,7 @@ declare const VDataTable: {
|
|
|
24013
24044
|
multiSort: boolean;
|
|
24014
24045
|
mustSort: boolean;
|
|
24015
24046
|
groupBy: readonly SortItem[];
|
|
24047
|
+
disableSort: boolean;
|
|
24016
24048
|
showSelect: boolean;
|
|
24017
24049
|
expandOnClick: boolean;
|
|
24018
24050
|
showExpand: boolean;
|
|
@@ -24028,7 +24060,6 @@ declare const VDataTable: {
|
|
|
24028
24060
|
value: number;
|
|
24029
24061
|
})[];
|
|
24030
24062
|
showCurrentPage: boolean;
|
|
24031
|
-
disableSort: boolean;
|
|
24032
24063
|
sortAscIcon: IconValue;
|
|
24033
24064
|
sortDescIcon: IconValue;
|
|
24034
24065
|
fixedHeader: boolean;
|
|
@@ -24092,6 +24123,7 @@ declare const VDataTable: {
|
|
|
24092
24123
|
multiSort: boolean;
|
|
24093
24124
|
mustSort: boolean;
|
|
24094
24125
|
groupBy: readonly SortItem[];
|
|
24126
|
+
disableSort: boolean;
|
|
24095
24127
|
showSelect: boolean;
|
|
24096
24128
|
expandOnClick: boolean;
|
|
24097
24129
|
showExpand: boolean;
|
|
@@ -24107,7 +24139,6 @@ declare const VDataTable: {
|
|
|
24107
24139
|
value: number;
|
|
24108
24140
|
})[];
|
|
24109
24141
|
showCurrentPage: boolean;
|
|
24110
|
-
disableSort: boolean;
|
|
24111
24142
|
sortAscIcon: IconValue;
|
|
24112
24143
|
sortDescIcon: IconValue;
|
|
24113
24144
|
fixedHeader: boolean;
|
|
@@ -24162,6 +24193,7 @@ declare const VDataTable: {
|
|
|
24162
24193
|
multiSort: boolean;
|
|
24163
24194
|
mustSort: boolean;
|
|
24164
24195
|
groupBy: readonly SortItem[];
|
|
24196
|
+
disableSort: boolean;
|
|
24165
24197
|
showSelect: boolean;
|
|
24166
24198
|
expandOnClick: boolean;
|
|
24167
24199
|
showExpand: boolean;
|
|
@@ -24177,7 +24209,6 @@ declare const VDataTable: {
|
|
|
24177
24209
|
value: number;
|
|
24178
24210
|
})[];
|
|
24179
24211
|
showCurrentPage: boolean;
|
|
24180
|
-
disableSort: boolean;
|
|
24181
24212
|
sortAscIcon: IconValue;
|
|
24182
24213
|
sortDescIcon: IconValue;
|
|
24183
24214
|
fixedHeader: boolean;
|
|
@@ -24314,6 +24345,7 @@ declare const VDataTable: {
|
|
|
24314
24345
|
multiSort: boolean;
|
|
24315
24346
|
mustSort: boolean;
|
|
24316
24347
|
groupBy: readonly SortItem[];
|
|
24348
|
+
disableSort: boolean;
|
|
24317
24349
|
showSelect: boolean;
|
|
24318
24350
|
expandOnClick: boolean;
|
|
24319
24351
|
showExpand: boolean;
|
|
@@ -24329,7 +24361,6 @@ declare const VDataTable: {
|
|
|
24329
24361
|
value: number;
|
|
24330
24362
|
})[];
|
|
24331
24363
|
showCurrentPage: boolean;
|
|
24332
|
-
disableSort: boolean;
|
|
24333
24364
|
sortAscIcon: IconValue;
|
|
24334
24365
|
sortDescIcon: IconValue;
|
|
24335
24366
|
fixedHeader: boolean;
|
|
@@ -24384,6 +24415,7 @@ declare const VDataTable: {
|
|
|
24384
24415
|
multiSort: boolean;
|
|
24385
24416
|
mustSort: boolean;
|
|
24386
24417
|
groupBy: readonly SortItem[];
|
|
24418
|
+
disableSort: boolean;
|
|
24387
24419
|
showSelect: boolean;
|
|
24388
24420
|
expandOnClick: boolean;
|
|
24389
24421
|
showExpand: boolean;
|
|
@@ -24399,7 +24431,6 @@ declare const VDataTable: {
|
|
|
24399
24431
|
value: number;
|
|
24400
24432
|
})[];
|
|
24401
24433
|
showCurrentPage: boolean;
|
|
24402
|
-
disableSort: boolean;
|
|
24403
24434
|
sortAscIcon: IconValue;
|
|
24404
24435
|
sortDescIcon: IconValue;
|
|
24405
24436
|
fixedHeader: boolean;
|
|
@@ -24436,6 +24467,7 @@ declare const VDataTable: {
|
|
|
24436
24467
|
multiSort: boolean;
|
|
24437
24468
|
mustSort: boolean;
|
|
24438
24469
|
groupBy: readonly SortItem[];
|
|
24470
|
+
disableSort: boolean;
|
|
24439
24471
|
showSelect: boolean;
|
|
24440
24472
|
expandOnClick: boolean;
|
|
24441
24473
|
showExpand: boolean;
|
|
@@ -24451,7 +24483,6 @@ declare const VDataTable: {
|
|
|
24451
24483
|
value: number;
|
|
24452
24484
|
})[];
|
|
24453
24485
|
showCurrentPage: boolean;
|
|
24454
|
-
disableSort: boolean;
|
|
24455
24486
|
sortAscIcon: IconValue;
|
|
24456
24487
|
sortDescIcon: IconValue;
|
|
24457
24488
|
fixedHeader: boolean;
|
|
@@ -24515,6 +24546,7 @@ declare const VDataTable: {
|
|
|
24515
24546
|
multiSort: boolean;
|
|
24516
24547
|
mustSort: boolean;
|
|
24517
24548
|
groupBy: readonly SortItem[];
|
|
24549
|
+
disableSort: boolean;
|
|
24518
24550
|
showSelect: boolean;
|
|
24519
24551
|
expandOnClick: boolean;
|
|
24520
24552
|
showExpand: boolean;
|
|
@@ -24530,7 +24562,6 @@ declare const VDataTable: {
|
|
|
24530
24562
|
value: number;
|
|
24531
24563
|
})[];
|
|
24532
24564
|
showCurrentPage: boolean;
|
|
24533
|
-
disableSort: boolean;
|
|
24534
24565
|
sortAscIcon: IconValue;
|
|
24535
24566
|
sortDescIcon: IconValue;
|
|
24536
24567
|
fixedHeader: boolean;
|
|
@@ -25431,10 +25462,10 @@ declare const VDataTableVirtual: {
|
|
|
25431
25462
|
multiSort: boolean;
|
|
25432
25463
|
mustSort: boolean;
|
|
25433
25464
|
groupBy: readonly SortItem[];
|
|
25465
|
+
disableSort: boolean;
|
|
25434
25466
|
showSelect: boolean;
|
|
25435
25467
|
expandOnClick: boolean;
|
|
25436
25468
|
showExpand: boolean;
|
|
25437
|
-
disableSort: boolean;
|
|
25438
25469
|
sortAscIcon: IconValue;
|
|
25439
25470
|
sortDescIcon: IconValue;
|
|
25440
25471
|
fixedHeader: boolean;
|
|
@@ -25533,10 +25564,10 @@ declare const VDataTableVirtual: {
|
|
|
25533
25564
|
multiSort: boolean;
|
|
25534
25565
|
mustSort: boolean;
|
|
25535
25566
|
groupBy: readonly SortItem[];
|
|
25567
|
+
disableSort: boolean;
|
|
25536
25568
|
showSelect: boolean;
|
|
25537
25569
|
expandOnClick: boolean;
|
|
25538
25570
|
showExpand: boolean;
|
|
25539
|
-
disableSort: boolean;
|
|
25540
25571
|
sortAscIcon: IconValue;
|
|
25541
25572
|
sortDescIcon: IconValue;
|
|
25542
25573
|
fixedHeader: boolean;
|
|
@@ -25629,10 +25660,10 @@ declare const VDataTableVirtual: {
|
|
|
25629
25660
|
multiSort: boolean;
|
|
25630
25661
|
mustSort: boolean;
|
|
25631
25662
|
groupBy: readonly SortItem[];
|
|
25663
|
+
disableSort: boolean;
|
|
25632
25664
|
showSelect: boolean;
|
|
25633
25665
|
expandOnClick: boolean;
|
|
25634
25666
|
showExpand: boolean;
|
|
25635
|
-
disableSort: boolean;
|
|
25636
25667
|
sortAscIcon: IconValue;
|
|
25637
25668
|
sortDescIcon: IconValue;
|
|
25638
25669
|
fixedHeader: boolean;
|
|
@@ -25749,10 +25780,10 @@ declare const VDataTableVirtual: {
|
|
|
25749
25780
|
multiSort: boolean;
|
|
25750
25781
|
mustSort: boolean;
|
|
25751
25782
|
groupBy: readonly SortItem[];
|
|
25783
|
+
disableSort: boolean;
|
|
25752
25784
|
showSelect: boolean;
|
|
25753
25785
|
expandOnClick: boolean;
|
|
25754
25786
|
showExpand: boolean;
|
|
25755
|
-
disableSort: boolean;
|
|
25756
25787
|
sortAscIcon: IconValue;
|
|
25757
25788
|
sortDescIcon: IconValue;
|
|
25758
25789
|
fixedHeader: boolean;
|
|
@@ -25845,10 +25876,10 @@ declare const VDataTableVirtual: {
|
|
|
25845
25876
|
multiSort: boolean;
|
|
25846
25877
|
mustSort: boolean;
|
|
25847
25878
|
groupBy: readonly SortItem[];
|
|
25879
|
+
disableSort: boolean;
|
|
25848
25880
|
showSelect: boolean;
|
|
25849
25881
|
expandOnClick: boolean;
|
|
25850
25882
|
showExpand: boolean;
|
|
25851
|
-
disableSort: boolean;
|
|
25852
25883
|
sortAscIcon: IconValue;
|
|
25853
25884
|
sortDescIcon: IconValue;
|
|
25854
25885
|
fixedHeader: boolean;
|
|
@@ -25881,10 +25912,10 @@ declare const VDataTableVirtual: {
|
|
|
25881
25912
|
multiSort: boolean;
|
|
25882
25913
|
mustSort: boolean;
|
|
25883
25914
|
groupBy: readonly SortItem[];
|
|
25915
|
+
disableSort: boolean;
|
|
25884
25916
|
showSelect: boolean;
|
|
25885
25917
|
expandOnClick: boolean;
|
|
25886
25918
|
showExpand: boolean;
|
|
25887
|
-
disableSort: boolean;
|
|
25888
25919
|
sortAscIcon: IconValue;
|
|
25889
25920
|
sortDescIcon: IconValue;
|
|
25890
25921
|
fixedHeader: boolean;
|
|
@@ -25983,10 +26014,10 @@ declare const VDataTableVirtual: {
|
|
|
25983
26014
|
multiSort: boolean;
|
|
25984
26015
|
mustSort: boolean;
|
|
25985
26016
|
groupBy: readonly SortItem[];
|
|
26017
|
+
disableSort: boolean;
|
|
25986
26018
|
showSelect: boolean;
|
|
25987
26019
|
expandOnClick: boolean;
|
|
25988
26020
|
showExpand: boolean;
|
|
25989
|
-
disableSort: boolean;
|
|
25990
26021
|
sortAscIcon: IconValue;
|
|
25991
26022
|
sortDescIcon: IconValue;
|
|
25992
26023
|
fixedHeader: boolean;
|
|
@@ -26431,6 +26462,7 @@ declare const VDataTableServer: {
|
|
|
26431
26462
|
multiSort: boolean;
|
|
26432
26463
|
mustSort: boolean;
|
|
26433
26464
|
groupBy: readonly SortItem[];
|
|
26465
|
+
disableSort: boolean;
|
|
26434
26466
|
showSelect: boolean;
|
|
26435
26467
|
expandOnClick: boolean;
|
|
26436
26468
|
showExpand: boolean;
|
|
@@ -26447,7 +26479,6 @@ declare const VDataTableServer: {
|
|
|
26447
26479
|
value: number;
|
|
26448
26480
|
})[];
|
|
26449
26481
|
showCurrentPage: boolean;
|
|
26450
|
-
disableSort: boolean;
|
|
26451
26482
|
sortAscIcon: IconValue;
|
|
26452
26483
|
sortDescIcon: IconValue;
|
|
26453
26484
|
fixedHeader: boolean;
|
|
@@ -26549,6 +26580,7 @@ declare const VDataTableServer: {
|
|
|
26549
26580
|
multiSort: boolean;
|
|
26550
26581
|
mustSort: boolean;
|
|
26551
26582
|
groupBy: readonly SortItem[];
|
|
26583
|
+
disableSort: boolean;
|
|
26552
26584
|
showSelect: boolean;
|
|
26553
26585
|
expandOnClick: boolean;
|
|
26554
26586
|
showExpand: boolean;
|
|
@@ -26565,7 +26597,6 @@ declare const VDataTableServer: {
|
|
|
26565
26597
|
value: number;
|
|
26566
26598
|
})[];
|
|
26567
26599
|
showCurrentPage: boolean;
|
|
26568
|
-
disableSort: boolean;
|
|
26569
26600
|
sortAscIcon: IconValue;
|
|
26570
26601
|
sortDescIcon: IconValue;
|
|
26571
26602
|
fixedHeader: boolean;
|
|
@@ -26659,6 +26690,7 @@ declare const VDataTableServer: {
|
|
|
26659
26690
|
multiSort: boolean;
|
|
26660
26691
|
mustSort: boolean;
|
|
26661
26692
|
groupBy: readonly SortItem[];
|
|
26693
|
+
disableSort: boolean;
|
|
26662
26694
|
showSelect: boolean;
|
|
26663
26695
|
expandOnClick: boolean;
|
|
26664
26696
|
showExpand: boolean;
|
|
@@ -26674,7 +26706,6 @@ declare const VDataTableServer: {
|
|
|
26674
26706
|
value: number;
|
|
26675
26707
|
})[];
|
|
26676
26708
|
showCurrentPage: boolean;
|
|
26677
|
-
disableSort: boolean;
|
|
26678
26709
|
sortAscIcon: IconValue;
|
|
26679
26710
|
sortDescIcon: IconValue;
|
|
26680
26711
|
fixedHeader: boolean;
|
|
@@ -26809,6 +26840,7 @@ declare const VDataTableServer: {
|
|
|
26809
26840
|
multiSort: boolean;
|
|
26810
26841
|
mustSort: boolean;
|
|
26811
26842
|
groupBy: readonly SortItem[];
|
|
26843
|
+
disableSort: boolean;
|
|
26812
26844
|
showSelect: boolean;
|
|
26813
26845
|
expandOnClick: boolean;
|
|
26814
26846
|
showExpand: boolean;
|
|
@@ -26825,7 +26857,6 @@ declare const VDataTableServer: {
|
|
|
26825
26857
|
value: number;
|
|
26826
26858
|
})[];
|
|
26827
26859
|
showCurrentPage: boolean;
|
|
26828
|
-
disableSort: boolean;
|
|
26829
26860
|
sortAscIcon: IconValue;
|
|
26830
26861
|
sortDescIcon: IconValue;
|
|
26831
26862
|
fixedHeader: boolean;
|
|
@@ -26919,6 +26950,7 @@ declare const VDataTableServer: {
|
|
|
26919
26950
|
multiSort: boolean;
|
|
26920
26951
|
mustSort: boolean;
|
|
26921
26952
|
groupBy: readonly SortItem[];
|
|
26953
|
+
disableSort: boolean;
|
|
26922
26954
|
showSelect: boolean;
|
|
26923
26955
|
expandOnClick: boolean;
|
|
26924
26956
|
showExpand: boolean;
|
|
@@ -26934,7 +26966,6 @@ declare const VDataTableServer: {
|
|
|
26934
26966
|
value: number;
|
|
26935
26967
|
})[];
|
|
26936
26968
|
showCurrentPage: boolean;
|
|
26937
|
-
disableSort: boolean;
|
|
26938
26969
|
sortAscIcon: IconValue;
|
|
26939
26970
|
sortDescIcon: IconValue;
|
|
26940
26971
|
fixedHeader: boolean;
|
|
@@ -26969,6 +27000,7 @@ declare const VDataTableServer: {
|
|
|
26969
27000
|
multiSort: boolean;
|
|
26970
27001
|
mustSort: boolean;
|
|
26971
27002
|
groupBy: readonly SortItem[];
|
|
27003
|
+
disableSort: boolean;
|
|
26972
27004
|
showSelect: boolean;
|
|
26973
27005
|
expandOnClick: boolean;
|
|
26974
27006
|
showExpand: boolean;
|
|
@@ -26985,7 +27017,6 @@ declare const VDataTableServer: {
|
|
|
26985
27017
|
value: number;
|
|
26986
27018
|
})[];
|
|
26987
27019
|
showCurrentPage: boolean;
|
|
26988
|
-
disableSort: boolean;
|
|
26989
27020
|
sortAscIcon: IconValue;
|
|
26990
27021
|
sortDescIcon: IconValue;
|
|
26991
27022
|
fixedHeader: boolean;
|
|
@@ -27087,6 +27118,7 @@ declare const VDataTableServer: {
|
|
|
27087
27118
|
multiSort: boolean;
|
|
27088
27119
|
mustSort: boolean;
|
|
27089
27120
|
groupBy: readonly SortItem[];
|
|
27121
|
+
disableSort: boolean;
|
|
27090
27122
|
showSelect: boolean;
|
|
27091
27123
|
expandOnClick: boolean;
|
|
27092
27124
|
showExpand: boolean;
|
|
@@ -27102,7 +27134,6 @@ declare const VDataTableServer: {
|
|
|
27102
27134
|
value: number;
|
|
27103
27135
|
})[];
|
|
27104
27136
|
showCurrentPage: boolean;
|
|
27105
|
-
disableSort: boolean;
|
|
27106
27137
|
sortAscIcon: IconValue;
|
|
27107
27138
|
sortDescIcon: IconValue;
|
|
27108
27139
|
fixedHeader: boolean;
|
|
@@ -34012,7 +34043,6 @@ declare const VFileInput: {
|
|
|
34012
34043
|
direction: "horizontal" | "vertical";
|
|
34013
34044
|
prependIcon: NonNullable<IconValue>;
|
|
34014
34045
|
clearIcon: IconValue;
|
|
34015
|
-
centerAffix: boolean;
|
|
34016
34046
|
hideSpinButtons: boolean;
|
|
34017
34047
|
persistentHint: boolean;
|
|
34018
34048
|
clearable: boolean;
|
|
@@ -34049,6 +34079,7 @@ declare const VFileInput: {
|
|
|
34049
34079
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34050
34080
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34051
34081
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34082
|
+
centerAffix?: boolean | undefined;
|
|
34052
34083
|
hint?: string | undefined;
|
|
34053
34084
|
hideDetails?: boolean | "auto" | undefined;
|
|
34054
34085
|
} & {
|
|
@@ -34397,7 +34428,6 @@ declare const VFileInput: {
|
|
|
34397
34428
|
direction: "horizontal" | "vertical";
|
|
34398
34429
|
prependIcon: NonNullable<IconValue>;
|
|
34399
34430
|
clearIcon: IconValue;
|
|
34400
|
-
centerAffix: boolean;
|
|
34401
34431
|
hideSpinButtons: boolean;
|
|
34402
34432
|
persistentHint: boolean;
|
|
34403
34433
|
clearable: boolean;
|
|
@@ -34434,6 +34464,7 @@ declare const VFileInput: {
|
|
|
34434
34464
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34435
34465
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34436
34466
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34467
|
+
centerAffix?: boolean | undefined;
|
|
34437
34468
|
hint?: string | undefined;
|
|
34438
34469
|
hideDetails?: boolean | "auto" | undefined;
|
|
34439
34470
|
} & {
|
|
@@ -34620,7 +34651,6 @@ declare const VFileInput: {
|
|
|
34620
34651
|
direction: "horizontal" | "vertical";
|
|
34621
34652
|
prependIcon: NonNullable<IconValue>;
|
|
34622
34653
|
clearIcon: IconValue;
|
|
34623
|
-
centerAffix: boolean;
|
|
34624
34654
|
hideSpinButtons: boolean;
|
|
34625
34655
|
persistentHint: boolean;
|
|
34626
34656
|
clearable: boolean;
|
|
@@ -34657,6 +34687,7 @@ declare const VFileInput: {
|
|
|
34657
34687
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34658
34688
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34659
34689
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
34690
|
+
centerAffix?: boolean | undefined;
|
|
34660
34691
|
hint?: string | undefined;
|
|
34661
34692
|
hideDetails?: boolean | "auto" | undefined;
|
|
34662
34693
|
} & {
|
|
@@ -35039,7 +35070,6 @@ declare const VFileInput: {
|
|
|
35039
35070
|
direction: "horizontal" | "vertical";
|
|
35040
35071
|
prependIcon: NonNullable<IconValue>;
|
|
35041
35072
|
clearIcon: IconValue;
|
|
35042
|
-
centerAffix: boolean;
|
|
35043
35073
|
hideSpinButtons: boolean;
|
|
35044
35074
|
persistentHint: boolean;
|
|
35045
35075
|
clearable: boolean;
|
|
@@ -35076,6 +35106,7 @@ declare const VFileInput: {
|
|
|
35076
35106
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
35077
35107
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
35078
35108
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
35109
|
+
centerAffix?: boolean | undefined;
|
|
35079
35110
|
hint?: string | undefined;
|
|
35080
35111
|
hideDetails?: boolean | "auto" | undefined;
|
|
35081
35112
|
} & {
|
|
@@ -35507,7 +35538,10 @@ declare const VFileInput: {
|
|
|
35507
35538
|
default: string;
|
|
35508
35539
|
};
|
|
35509
35540
|
active: BooleanConstructor;
|
|
35510
|
-
centerAffix:
|
|
35541
|
+
centerAffix: {
|
|
35542
|
+
type: BooleanConstructor;
|
|
35543
|
+
default: undefined;
|
|
35544
|
+
};
|
|
35511
35545
|
color: StringConstructor;
|
|
35512
35546
|
baseColor: StringConstructor;
|
|
35513
35547
|
dirty: BooleanConstructor;
|
|
@@ -35626,7 +35660,10 @@ declare const VFileInput: {
|
|
|
35626
35660
|
default: string;
|
|
35627
35661
|
};
|
|
35628
35662
|
active: BooleanConstructor;
|
|
35629
|
-
centerAffix:
|
|
35663
|
+
centerAffix: {
|
|
35664
|
+
type: BooleanConstructor;
|
|
35665
|
+
default: undefined;
|
|
35666
|
+
};
|
|
35630
35667
|
color: StringConstructor;
|
|
35631
35668
|
baseColor: StringConstructor;
|
|
35632
35669
|
dirty: BooleanConstructor;
|
|
@@ -47274,7 +47311,10 @@ declare const VRadioGroup: {
|
|
|
47274
47311
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
47275
47312
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
47276
47313
|
appendIcon: vue.PropType<IconValue>;
|
|
47277
|
-
centerAffix:
|
|
47314
|
+
centerAffix: {
|
|
47315
|
+
type: BooleanConstructor;
|
|
47316
|
+
default: boolean;
|
|
47317
|
+
};
|
|
47278
47318
|
prependIcon: vue.PropType<IconValue>;
|
|
47279
47319
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
47280
47320
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -47365,7 +47405,10 @@ declare const VRadioGroup: {
|
|
|
47365
47405
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
47366
47406
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
47367
47407
|
appendIcon: vue.PropType<IconValue>;
|
|
47368
|
-
centerAffix:
|
|
47408
|
+
centerAffix: {
|
|
47409
|
+
type: BooleanConstructor;
|
|
47410
|
+
default: boolean;
|
|
47411
|
+
};
|
|
47369
47412
|
prependIcon: vue.PropType<IconValue>;
|
|
47370
47413
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
47371
47414
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -48091,7 +48134,10 @@ declare const VRangeSlider: {
|
|
|
48091
48134
|
};
|
|
48092
48135
|
id: StringConstructor;
|
|
48093
48136
|
appendIcon: PropType<IconValue>;
|
|
48094
|
-
centerAffix:
|
|
48137
|
+
centerAffix: {
|
|
48138
|
+
type: BooleanConstructor;
|
|
48139
|
+
default: boolean;
|
|
48140
|
+
};
|
|
48095
48141
|
prependIcon: PropType<IconValue>;
|
|
48096
48142
|
hideDetails: PropType<boolean | "auto">;
|
|
48097
48143
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -48215,7 +48261,10 @@ declare const VRangeSlider: {
|
|
|
48215
48261
|
};
|
|
48216
48262
|
id: StringConstructor;
|
|
48217
48263
|
appendIcon: PropType<IconValue>;
|
|
48218
|
-
centerAffix:
|
|
48264
|
+
centerAffix: {
|
|
48265
|
+
type: BooleanConstructor;
|
|
48266
|
+
default: boolean;
|
|
48267
|
+
};
|
|
48219
48268
|
prependIcon: PropType<IconValue>;
|
|
48220
48269
|
hideDetails: PropType<boolean | "auto">;
|
|
48221
48270
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -48793,7 +48842,6 @@ declare const VSelect: {
|
|
|
48793
48842
|
direction: "horizontal" | "vertical";
|
|
48794
48843
|
valueComparator: typeof deepEqual;
|
|
48795
48844
|
clearIcon: IconValue;
|
|
48796
|
-
centerAffix: boolean;
|
|
48797
48845
|
hideSpinButtons: boolean;
|
|
48798
48846
|
persistentHint: boolean;
|
|
48799
48847
|
itemChildren: NonNullable<SelectItemKey>;
|
|
@@ -48838,6 +48886,7 @@ declare const VSelect: {
|
|
|
48838
48886
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
48839
48887
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
48840
48888
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
48889
|
+
centerAffix?: boolean | undefined;
|
|
48841
48890
|
hint?: string | undefined;
|
|
48842
48891
|
hideDetails?: boolean | "auto" | undefined;
|
|
48843
48892
|
suffix?: string | undefined;
|
|
@@ -49325,7 +49374,6 @@ declare const VSelect: {
|
|
|
49325
49374
|
direction: "horizontal" | "vertical";
|
|
49326
49375
|
valueComparator: typeof deepEqual;
|
|
49327
49376
|
clearIcon: IconValue;
|
|
49328
|
-
centerAffix: boolean;
|
|
49329
49377
|
hideSpinButtons: boolean;
|
|
49330
49378
|
persistentHint: boolean;
|
|
49331
49379
|
itemChildren: NonNullable<SelectItemKey>;
|
|
@@ -49370,6 +49418,7 @@ declare const VSelect: {
|
|
|
49370
49418
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
49371
49419
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
49372
49420
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
49421
|
+
centerAffix?: boolean | undefined;
|
|
49373
49422
|
hint?: string | undefined;
|
|
49374
49423
|
hideDetails?: boolean | "auto" | undefined;
|
|
49375
49424
|
suffix?: string | undefined;
|
|
@@ -49970,7 +50019,6 @@ declare const VSelect: {
|
|
|
49970
50019
|
direction: "horizontal" | "vertical";
|
|
49971
50020
|
valueComparator: typeof deepEqual;
|
|
49972
50021
|
clearIcon: IconValue;
|
|
49973
|
-
centerAffix: boolean;
|
|
49974
50022
|
hideSpinButtons: boolean;
|
|
49975
50023
|
persistentHint: boolean;
|
|
49976
50024
|
itemChildren: NonNullable<SelectItemKey>;
|
|
@@ -50015,6 +50063,7 @@ declare const VSelect: {
|
|
|
50015
50063
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50016
50064
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50017
50065
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50066
|
+
centerAffix?: boolean | undefined;
|
|
50018
50067
|
hint?: string | undefined;
|
|
50019
50068
|
hideDetails?: boolean | "auto" | undefined;
|
|
50020
50069
|
suffix?: string | undefined;
|
|
@@ -50550,7 +50599,6 @@ declare const VSelect: {
|
|
|
50550
50599
|
direction: "horizontal" | "vertical";
|
|
50551
50600
|
valueComparator: typeof deepEqual;
|
|
50552
50601
|
clearIcon: IconValue;
|
|
50553
|
-
centerAffix: boolean;
|
|
50554
50602
|
hideSpinButtons: boolean;
|
|
50555
50603
|
persistentHint: boolean;
|
|
50556
50604
|
itemChildren: NonNullable<SelectItemKey>;
|
|
@@ -50595,6 +50643,7 @@ declare const VSelect: {
|
|
|
50595
50643
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50596
50644
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50597
50645
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
50646
|
+
centerAffix?: boolean | undefined;
|
|
50598
50647
|
hint?: string | undefined;
|
|
50599
50648
|
hideDetails?: boolean | "auto" | undefined;
|
|
50600
50649
|
suffix?: string | undefined;
|
|
@@ -51330,7 +51379,10 @@ declare const VSelect: {
|
|
|
51330
51379
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
51331
51380
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
51332
51381
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
51333
|
-
centerAffix:
|
|
51382
|
+
centerAffix: {
|
|
51383
|
+
type: BooleanConstructor;
|
|
51384
|
+
default: undefined;
|
|
51385
|
+
};
|
|
51334
51386
|
hideSpinButtons: BooleanConstructor;
|
|
51335
51387
|
hint: StringConstructor;
|
|
51336
51388
|
persistentHint: BooleanConstructor;
|
|
@@ -51959,7 +52011,10 @@ declare const VSelect: {
|
|
|
51959
52011
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
51960
52012
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
51961
52013
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
51962
|
-
centerAffix:
|
|
52014
|
+
centerAffix: {
|
|
52015
|
+
type: BooleanConstructor;
|
|
52016
|
+
default: undefined;
|
|
52017
|
+
};
|
|
51963
52018
|
hideSpinButtons: BooleanConstructor;
|
|
51964
52019
|
hint: StringConstructor;
|
|
51965
52020
|
persistentHint: BooleanConstructor;
|
|
@@ -53993,7 +54048,10 @@ declare const VSlider: {
|
|
|
53993
54048
|
};
|
|
53994
54049
|
id: StringConstructor;
|
|
53995
54050
|
appendIcon: vue.PropType<IconValue>;
|
|
53996
|
-
centerAffix:
|
|
54051
|
+
centerAffix: {
|
|
54052
|
+
type: BooleanConstructor;
|
|
54053
|
+
default: boolean;
|
|
54054
|
+
};
|
|
53997
54055
|
prependIcon: vue.PropType<IconValue>;
|
|
53998
54056
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
53999
54057
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -54116,7 +54174,10 @@ declare const VSlider: {
|
|
|
54116
54174
|
};
|
|
54117
54175
|
id: StringConstructor;
|
|
54118
54176
|
appendIcon: vue.PropType<IconValue>;
|
|
54119
|
-
centerAffix:
|
|
54177
|
+
centerAffix: {
|
|
54178
|
+
type: BooleanConstructor;
|
|
54179
|
+
default: boolean;
|
|
54180
|
+
};
|
|
54120
54181
|
prependIcon: vue.PropType<IconValue>;
|
|
54121
54182
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
54122
54183
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -59596,7 +59657,10 @@ declare const VSwitch: {
|
|
|
59596
59657
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
59597
59658
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
59598
59659
|
appendIcon: vue.PropType<IconValue>;
|
|
59599
|
-
centerAffix:
|
|
59660
|
+
centerAffix: {
|
|
59661
|
+
type: BooleanConstructor;
|
|
59662
|
+
default: boolean;
|
|
59663
|
+
};
|
|
59600
59664
|
prependIcon: vue.PropType<IconValue>;
|
|
59601
59665
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
59602
59666
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -59689,7 +59753,10 @@ declare const VSwitch: {
|
|
|
59689
59753
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
59690
59754
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
59691
59755
|
appendIcon: vue.PropType<IconValue>;
|
|
59692
|
-
centerAffix:
|
|
59756
|
+
centerAffix: {
|
|
59757
|
+
type: BooleanConstructor;
|
|
59758
|
+
default: boolean;
|
|
59759
|
+
};
|
|
59693
59760
|
prependIcon: vue.PropType<IconValue>;
|
|
59694
59761
|
hideDetails: vue.PropType<boolean | "auto">;
|
|
59695
59762
|
hideSpinButtons: BooleanConstructor;
|
|
@@ -62691,6 +62758,7 @@ declare const VTextarea: {
|
|
|
62691
62758
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
62692
62759
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
62693
62760
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
62761
|
+
centerAffix?: boolean | undefined;
|
|
62694
62762
|
hint?: string | undefined;
|
|
62695
62763
|
hideDetails?: boolean | "auto" | undefined;
|
|
62696
62764
|
suffix?: string | undefined;
|
|
@@ -63063,6 +63131,7 @@ declare const VTextarea: {
|
|
|
63063
63131
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63064
63132
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63065
63133
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63134
|
+
centerAffix?: boolean | undefined;
|
|
63066
63135
|
hint?: string | undefined;
|
|
63067
63136
|
hideDetails?: boolean | "auto" | undefined;
|
|
63068
63137
|
suffix?: string | undefined;
|
|
@@ -63144,6 +63213,7 @@ declare const VTextarea: {
|
|
|
63144
63213
|
density: Density;
|
|
63145
63214
|
direction: "horizontal" | "vertical";
|
|
63146
63215
|
clearIcon: IconValue;
|
|
63216
|
+
centerAffix: boolean;
|
|
63147
63217
|
hideSpinButtons: boolean;
|
|
63148
63218
|
persistentHint: boolean;
|
|
63149
63219
|
autofocus: boolean;
|
|
@@ -63259,6 +63329,7 @@ declare const VTextarea: {
|
|
|
63259
63329
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63260
63330
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63261
63331
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63332
|
+
centerAffix?: boolean | undefined;
|
|
63262
63333
|
hint?: string | undefined;
|
|
63263
63334
|
hideDetails?: boolean | "auto" | undefined;
|
|
63264
63335
|
suffix?: string | undefined;
|
|
@@ -63585,6 +63656,7 @@ declare const VTextarea: {
|
|
|
63585
63656
|
density: Density;
|
|
63586
63657
|
direction: "horizontal" | "vertical";
|
|
63587
63658
|
clearIcon: IconValue;
|
|
63659
|
+
centerAffix: boolean;
|
|
63588
63660
|
hideSpinButtons: boolean;
|
|
63589
63661
|
persistentHint: boolean;
|
|
63590
63662
|
autofocus: boolean;
|
|
@@ -63661,6 +63733,7 @@ declare const VTextarea: {
|
|
|
63661
63733
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63662
63734
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63663
63735
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
63736
|
+
centerAffix?: boolean | undefined;
|
|
63664
63737
|
hint?: string | undefined;
|
|
63665
63738
|
hideDetails?: boolean | "auto" | undefined;
|
|
63666
63739
|
suffix?: string | undefined;
|
|
@@ -63992,6 +64065,7 @@ declare const VTextarea: {
|
|
|
63992
64065
|
density: Density;
|
|
63993
64066
|
direction: "horizontal" | "vertical";
|
|
63994
64067
|
clearIcon: IconValue;
|
|
64068
|
+
centerAffix: boolean;
|
|
63995
64069
|
hideSpinButtons: boolean;
|
|
63996
64070
|
persistentHint: boolean;
|
|
63997
64071
|
autofocus: boolean;
|
|
@@ -64041,55 +64115,52 @@ declare const VTextarea: {
|
|
|
64041
64115
|
[key: string]: any;
|
|
64042
64116
|
}>[];
|
|
64043
64117
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
64044
|
-
|
|
64045
|
-
|
|
64118
|
+
theme: StringConstructor;
|
|
64119
|
+
rounded: {
|
|
64120
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
64121
|
+
default: undefined;
|
|
64122
|
+
};
|
|
64123
|
+
tile: BooleanConstructor;
|
|
64124
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
64046
64125
|
class: PropType<any>;
|
|
64047
64126
|
style: {
|
|
64048
64127
|
type: PropType<vue.StyleValue>;
|
|
64049
64128
|
default: null;
|
|
64050
64129
|
};
|
|
64051
|
-
|
|
64130
|
+
appendInnerIcon: PropType<IconValue>;
|
|
64131
|
+
bgColor: StringConstructor;
|
|
64132
|
+
clearable: BooleanConstructor;
|
|
64133
|
+
clearIcon: {
|
|
64134
|
+
type: PropType<IconValue>;
|
|
64135
|
+
default: string;
|
|
64136
|
+
};
|
|
64052
64137
|
active: BooleanConstructor;
|
|
64053
|
-
|
|
64054
|
-
|
|
64138
|
+
centerAffix: {
|
|
64139
|
+
type: BooleanConstructor;
|
|
64140
|
+
default: undefined;
|
|
64141
|
+
};
|
|
64055
64142
|
color: StringConstructor;
|
|
64143
|
+
baseColor: StringConstructor;
|
|
64144
|
+
dirty: BooleanConstructor;
|
|
64056
64145
|
disabled: {
|
|
64057
64146
|
type: BooleanConstructor;
|
|
64058
64147
|
default: null;
|
|
64059
64148
|
};
|
|
64060
|
-
|
|
64061
|
-
|
|
64062
|
-
|
|
64063
|
-
|
|
64064
|
-
|
|
64149
|
+
error: BooleanConstructor;
|
|
64150
|
+
flat: BooleanConstructor;
|
|
64151
|
+
label: StringConstructor;
|
|
64152
|
+
persistentClear: BooleanConstructor;
|
|
64153
|
+
prependInnerIcon: PropType<IconValue>;
|
|
64154
|
+
reverse: BooleanConstructor;
|
|
64155
|
+
singleLine: BooleanConstructor;
|
|
64065
64156
|
variant: {
|
|
64066
64157
|
type: PropType<"underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
64067
64158
|
default: string;
|
|
64068
64159
|
validator: (v: any) => boolean;
|
|
64069
64160
|
};
|
|
64070
|
-
tile: BooleanConstructor;
|
|
64071
|
-
baseColor: StringConstructor;
|
|
64072
|
-
bgColor: StringConstructor;
|
|
64073
|
-
clearIcon: {
|
|
64074
|
-
type: PropType<IconValue>;
|
|
64075
|
-
default: string;
|
|
64076
|
-
};
|
|
64077
|
-
appendInnerIcon: PropType<IconValue>;
|
|
64078
|
-
prependInnerIcon: PropType<IconValue>;
|
|
64079
64161
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
64080
64162
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
64081
64163
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
64082
|
-
clearable: BooleanConstructor;
|
|
64083
|
-
dirty: BooleanConstructor;
|
|
64084
|
-
persistentClear: BooleanConstructor;
|
|
64085
|
-
singleLine: BooleanConstructor;
|
|
64086
|
-
id: StringConstructor;
|
|
64087
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
64088
|
-
name: StringConstructor;
|
|
64089
|
-
messages: {
|
|
64090
|
-
type: PropType<string | readonly string[]>;
|
|
64091
|
-
default: () => never[];
|
|
64092
|
-
};
|
|
64093
64164
|
focused: BooleanConstructor;
|
|
64094
64165
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
64095
64166
|
errorMessages: {
|
|
@@ -64100,6 +64171,7 @@ declare const VTextarea: {
|
|
|
64100
64171
|
type: (StringConstructor | NumberConstructor)[];
|
|
64101
64172
|
default: number;
|
|
64102
64173
|
};
|
|
64174
|
+
name: StringConstructor;
|
|
64103
64175
|
readonly: {
|
|
64104
64176
|
type: PropType<boolean | null>;
|
|
64105
64177
|
default: null;
|
|
@@ -64111,6 +64183,7 @@ declare const VTextarea: {
|
|
|
64111
64183
|
modelValue: null;
|
|
64112
64184
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
64113
64185
|
validationValue: null;
|
|
64186
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
64114
64187
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
64115
64188
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
64116
64189
|
density: {
|
|
@@ -64118,19 +64191,24 @@ declare const VTextarea: {
|
|
|
64118
64191
|
default: string;
|
|
64119
64192
|
validator: (v: any) => boolean;
|
|
64120
64193
|
};
|
|
64194
|
+
id: StringConstructor;
|
|
64195
|
+
appendIcon: PropType<IconValue>;
|
|
64196
|
+
prependIcon: PropType<IconValue>;
|
|
64197
|
+
hideDetails: PropType<boolean | "auto">;
|
|
64198
|
+
hideSpinButtons: BooleanConstructor;
|
|
64199
|
+
hint: StringConstructor;
|
|
64200
|
+
persistentHint: BooleanConstructor;
|
|
64201
|
+
messages: {
|
|
64202
|
+
type: PropType<string | readonly string[]>;
|
|
64203
|
+
default: () => never[];
|
|
64204
|
+
};
|
|
64121
64205
|
direction: {
|
|
64122
64206
|
type: PropType<"horizontal" | "vertical">;
|
|
64123
64207
|
default: string;
|
|
64124
64208
|
validator: (v: any) => boolean;
|
|
64125
64209
|
};
|
|
64126
|
-
prependIcon: PropType<IconValue>;
|
|
64127
|
-
appendIcon: PropType<IconValue>;
|
|
64128
64210
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
|
64129
64211
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
64130
|
-
hideSpinButtons: BooleanConstructor;
|
|
64131
|
-
hint: StringConstructor;
|
|
64132
|
-
persistentHint: BooleanConstructor;
|
|
64133
|
-
hideDetails: PropType<boolean | "auto">;
|
|
64134
64212
|
autoGrow: BooleanConstructor;
|
|
64135
64213
|
autofocus: BooleanConstructor;
|
|
64136
64214
|
counter: PropType<string | number | true>;
|
|
@@ -64152,55 +64230,52 @@ declare const VTextarea: {
|
|
|
64152
64230
|
suffix: StringConstructor;
|
|
64153
64231
|
modelModifiers: PropType<Record<string, boolean>>;
|
|
64154
64232
|
}, vue.ExtractPropTypes<{
|
|
64155
|
-
|
|
64156
|
-
|
|
64233
|
+
theme: StringConstructor;
|
|
64234
|
+
rounded: {
|
|
64235
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
64236
|
+
default: undefined;
|
|
64237
|
+
};
|
|
64238
|
+
tile: BooleanConstructor;
|
|
64239
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
64157
64240
|
class: PropType<any>;
|
|
64158
64241
|
style: {
|
|
64159
64242
|
type: PropType<vue.StyleValue>;
|
|
64160
64243
|
default: null;
|
|
64161
64244
|
};
|
|
64162
|
-
|
|
64245
|
+
appendInnerIcon: PropType<IconValue>;
|
|
64246
|
+
bgColor: StringConstructor;
|
|
64247
|
+
clearable: BooleanConstructor;
|
|
64248
|
+
clearIcon: {
|
|
64249
|
+
type: PropType<IconValue>;
|
|
64250
|
+
default: string;
|
|
64251
|
+
};
|
|
64163
64252
|
active: BooleanConstructor;
|
|
64164
|
-
|
|
64165
|
-
|
|
64253
|
+
centerAffix: {
|
|
64254
|
+
type: BooleanConstructor;
|
|
64255
|
+
default: undefined;
|
|
64256
|
+
};
|
|
64166
64257
|
color: StringConstructor;
|
|
64258
|
+
baseColor: StringConstructor;
|
|
64259
|
+
dirty: BooleanConstructor;
|
|
64167
64260
|
disabled: {
|
|
64168
64261
|
type: BooleanConstructor;
|
|
64169
64262
|
default: null;
|
|
64170
64263
|
};
|
|
64171
|
-
|
|
64172
|
-
|
|
64173
|
-
|
|
64174
|
-
|
|
64175
|
-
|
|
64264
|
+
error: BooleanConstructor;
|
|
64265
|
+
flat: BooleanConstructor;
|
|
64266
|
+
label: StringConstructor;
|
|
64267
|
+
persistentClear: BooleanConstructor;
|
|
64268
|
+
prependInnerIcon: PropType<IconValue>;
|
|
64269
|
+
reverse: BooleanConstructor;
|
|
64270
|
+
singleLine: BooleanConstructor;
|
|
64176
64271
|
variant: {
|
|
64177
64272
|
type: PropType<"underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
64178
64273
|
default: string;
|
|
64179
64274
|
validator: (v: any) => boolean;
|
|
64180
64275
|
};
|
|
64181
|
-
tile: BooleanConstructor;
|
|
64182
|
-
baseColor: StringConstructor;
|
|
64183
|
-
bgColor: StringConstructor;
|
|
64184
|
-
clearIcon: {
|
|
64185
|
-
type: PropType<IconValue>;
|
|
64186
|
-
default: string;
|
|
64187
|
-
};
|
|
64188
|
-
appendInnerIcon: PropType<IconValue>;
|
|
64189
|
-
prependInnerIcon: PropType<IconValue>;
|
|
64190
64276
|
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
64191
64277
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
64192
64278
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
64193
|
-
clearable: BooleanConstructor;
|
|
64194
|
-
dirty: BooleanConstructor;
|
|
64195
|
-
persistentClear: BooleanConstructor;
|
|
64196
|
-
singleLine: BooleanConstructor;
|
|
64197
|
-
id: StringConstructor;
|
|
64198
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
64199
|
-
name: StringConstructor;
|
|
64200
|
-
messages: {
|
|
64201
|
-
type: PropType<string | readonly string[]>;
|
|
64202
|
-
default: () => never[];
|
|
64203
|
-
};
|
|
64204
64279
|
focused: BooleanConstructor;
|
|
64205
64280
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
64206
64281
|
errorMessages: {
|
|
@@ -64211,6 +64286,7 @@ declare const VTextarea: {
|
|
|
64211
64286
|
type: (StringConstructor | NumberConstructor)[];
|
|
64212
64287
|
default: number;
|
|
64213
64288
|
};
|
|
64289
|
+
name: StringConstructor;
|
|
64214
64290
|
readonly: {
|
|
64215
64291
|
type: PropType<boolean | null>;
|
|
64216
64292
|
default: null;
|
|
@@ -64222,6 +64298,7 @@ declare const VTextarea: {
|
|
|
64222
64298
|
modelValue: null;
|
|
64223
64299
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
64224
64300
|
validationValue: null;
|
|
64301
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
64225
64302
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
64226
64303
|
minWidth: (StringConstructor | NumberConstructor)[];
|
|
64227
64304
|
density: {
|
|
@@ -64229,19 +64306,24 @@ declare const VTextarea: {
|
|
|
64229
64306
|
default: string;
|
|
64230
64307
|
validator: (v: any) => boolean;
|
|
64231
64308
|
};
|
|
64309
|
+
id: StringConstructor;
|
|
64310
|
+
appendIcon: PropType<IconValue>;
|
|
64311
|
+
prependIcon: PropType<IconValue>;
|
|
64312
|
+
hideDetails: PropType<boolean | "auto">;
|
|
64313
|
+
hideSpinButtons: BooleanConstructor;
|
|
64314
|
+
hint: StringConstructor;
|
|
64315
|
+
persistentHint: BooleanConstructor;
|
|
64316
|
+
messages: {
|
|
64317
|
+
type: PropType<string | readonly string[]>;
|
|
64318
|
+
default: () => never[];
|
|
64319
|
+
};
|
|
64232
64320
|
direction: {
|
|
64233
64321
|
type: PropType<"horizontal" | "vertical">;
|
|
64234
64322
|
default: string;
|
|
64235
64323
|
validator: (v: any) => boolean;
|
|
64236
64324
|
};
|
|
64237
|
-
prependIcon: PropType<IconValue>;
|
|
64238
|
-
appendIcon: PropType<IconValue>;
|
|
64239
64325
|
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
|
64240
64326
|
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
64241
|
-
hideSpinButtons: BooleanConstructor;
|
|
64242
|
-
hint: StringConstructor;
|
|
64243
|
-
persistentHint: BooleanConstructor;
|
|
64244
|
-
hideDetails: PropType<boolean | "auto">;
|
|
64245
64327
|
autoGrow: BooleanConstructor;
|
|
64246
64328
|
autofocus: BooleanConstructor;
|
|
64247
64329
|
counter: PropType<string | number | true>;
|
|
@@ -64285,7 +64367,6 @@ declare const VTextField: {
|
|
|
64285
64367
|
density: Density;
|
|
64286
64368
|
direction: "horizontal" | "vertical";
|
|
64287
64369
|
clearIcon: IconValue;
|
|
64288
|
-
centerAffix: boolean;
|
|
64289
64370
|
hideSpinButtons: boolean;
|
|
64290
64371
|
persistentHint: boolean;
|
|
64291
64372
|
autofocus: boolean;
|
|
@@ -64326,6 +64407,7 @@ declare const VTextField: {
|
|
|
64326
64407
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64327
64408
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64328
64409
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64410
|
+
centerAffix?: boolean | undefined;
|
|
64329
64411
|
hint?: string | undefined;
|
|
64330
64412
|
hideDetails?: boolean | "auto" | undefined;
|
|
64331
64413
|
suffix?: string | undefined;
|
|
@@ -64666,7 +64748,6 @@ declare const VTextField: {
|
|
|
64666
64748
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
64667
64749
|
tile: boolean;
|
|
64668
64750
|
clearIcon: IconValue;
|
|
64669
|
-
centerAffix: boolean;
|
|
64670
64751
|
clearable: boolean;
|
|
64671
64752
|
dirty: boolean;
|
|
64672
64753
|
persistentClear: boolean;
|
|
@@ -64686,6 +64767,7 @@ declare const VTextField: {
|
|
|
64686
64767
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64687
64768
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64688
64769
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64770
|
+
centerAffix?: boolean | undefined;
|
|
64689
64771
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
64690
64772
|
reverse: boolean;
|
|
64691
64773
|
flat: boolean;
|
|
@@ -64697,7 +64779,6 @@ declare const VTextField: {
|
|
|
64697
64779
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
64698
64780
|
tile: boolean;
|
|
64699
64781
|
clearIcon: IconValue;
|
|
64700
|
-
centerAffix: boolean;
|
|
64701
64782
|
clearable: boolean;
|
|
64702
64783
|
dirty: boolean;
|
|
64703
64784
|
persistentClear: boolean;
|
|
@@ -64718,6 +64799,7 @@ declare const VTextField: {
|
|
|
64718
64799
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64719
64800
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64720
64801
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64802
|
+
centerAffix?: boolean | undefined;
|
|
64721
64803
|
} & {
|
|
64722
64804
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
64723
64805
|
}, "reverse" | "flat" | "style" | "active" | "error" | "disabled" | "focused" | "rounded" | "variant" | "tile" | "clearIcon" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -64767,7 +64849,6 @@ declare const VTextField: {
|
|
|
64767
64849
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
64768
64850
|
tile: boolean;
|
|
64769
64851
|
clearIcon: IconValue;
|
|
64770
|
-
centerAffix: boolean;
|
|
64771
64852
|
clearable: boolean;
|
|
64772
64853
|
dirty: boolean;
|
|
64773
64854
|
persistentClear: boolean;
|
|
@@ -64788,6 +64869,7 @@ declare const VTextField: {
|
|
|
64788
64869
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64789
64870
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64790
64871
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64872
|
+
centerAffix?: boolean | undefined;
|
|
64791
64873
|
} & {
|
|
64792
64874
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
64793
64875
|
}, {
|
|
@@ -64867,7 +64949,6 @@ declare const VTextField: {
|
|
|
64867
64949
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
64868
64950
|
tile: boolean;
|
|
64869
64951
|
clearIcon: IconValue;
|
|
64870
|
-
centerAffix: boolean;
|
|
64871
64952
|
clearable: boolean;
|
|
64872
64953
|
dirty: boolean;
|
|
64873
64954
|
persistentClear: boolean;
|
|
@@ -64888,6 +64969,7 @@ declare const VTextField: {
|
|
|
64888
64969
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64889
64970
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64890
64971
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64972
|
+
centerAffix?: boolean | undefined;
|
|
64891
64973
|
} & {
|
|
64892
64974
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
64893
64975
|
}, "controlRef"> & vue.ShallowUnwrapRef<{
|
|
@@ -64919,7 +65001,6 @@ declare const VTextField: {
|
|
|
64919
65001
|
density: Density;
|
|
64920
65002
|
direction: "horizontal" | "vertical";
|
|
64921
65003
|
clearIcon: IconValue;
|
|
64922
|
-
centerAffix: boolean;
|
|
64923
65004
|
hideSpinButtons: boolean;
|
|
64924
65005
|
persistentHint: boolean;
|
|
64925
65006
|
autofocus: boolean;
|
|
@@ -64960,6 +65041,7 @@ declare const VTextField: {
|
|
|
64960
65041
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64961
65042
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
64962
65043
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65044
|
+
centerAffix?: boolean | undefined;
|
|
64963
65045
|
hint?: string | undefined;
|
|
64964
65046
|
hideDetails?: boolean | "auto" | undefined;
|
|
64965
65047
|
suffix?: string | undefined;
|
|
@@ -65119,7 +65201,6 @@ declare const VTextField: {
|
|
|
65119
65201
|
density: Density;
|
|
65120
65202
|
direction: "horizontal" | "vertical";
|
|
65121
65203
|
clearIcon: IconValue;
|
|
65122
|
-
centerAffix: boolean;
|
|
65123
65204
|
hideSpinButtons: boolean;
|
|
65124
65205
|
persistentHint: boolean;
|
|
65125
65206
|
autofocus: boolean;
|
|
@@ -65160,6 +65241,7 @@ declare const VTextField: {
|
|
|
65160
65241
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65161
65242
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65162
65243
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65244
|
+
centerAffix?: boolean | undefined;
|
|
65163
65245
|
hint?: string | undefined;
|
|
65164
65246
|
hideDetails?: boolean | "auto" | undefined;
|
|
65165
65247
|
suffix?: string | undefined;
|
|
@@ -65500,7 +65582,6 @@ declare const VTextField: {
|
|
|
65500
65582
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
65501
65583
|
tile: boolean;
|
|
65502
65584
|
clearIcon: IconValue;
|
|
65503
|
-
centerAffix: boolean;
|
|
65504
65585
|
clearable: boolean;
|
|
65505
65586
|
dirty: boolean;
|
|
65506
65587
|
persistentClear: boolean;
|
|
@@ -65520,6 +65601,7 @@ declare const VTextField: {
|
|
|
65520
65601
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65521
65602
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65522
65603
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65604
|
+
centerAffix?: boolean | undefined;
|
|
65523
65605
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
65524
65606
|
reverse: boolean;
|
|
65525
65607
|
flat: boolean;
|
|
@@ -65531,7 +65613,6 @@ declare const VTextField: {
|
|
|
65531
65613
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
65532
65614
|
tile: boolean;
|
|
65533
65615
|
clearIcon: IconValue;
|
|
65534
|
-
centerAffix: boolean;
|
|
65535
65616
|
clearable: boolean;
|
|
65536
65617
|
dirty: boolean;
|
|
65537
65618
|
persistentClear: boolean;
|
|
@@ -65552,6 +65633,7 @@ declare const VTextField: {
|
|
|
65552
65633
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65553
65634
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65554
65635
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65636
|
+
centerAffix?: boolean | undefined;
|
|
65555
65637
|
} & {
|
|
65556
65638
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
65557
65639
|
}, "reverse" | "flat" | "style" | "active" | "error" | "disabled" | "focused" | "rounded" | "variant" | "tile" | "clearIcon" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -65601,7 +65683,6 @@ declare const VTextField: {
|
|
|
65601
65683
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
65602
65684
|
tile: boolean;
|
|
65603
65685
|
clearIcon: IconValue;
|
|
65604
|
-
centerAffix: boolean;
|
|
65605
65686
|
clearable: boolean;
|
|
65606
65687
|
dirty: boolean;
|
|
65607
65688
|
persistentClear: boolean;
|
|
@@ -65622,6 +65703,7 @@ declare const VTextField: {
|
|
|
65622
65703
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65623
65704
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65624
65705
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65706
|
+
centerAffix?: boolean | undefined;
|
|
65625
65707
|
} & {
|
|
65626
65708
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
65627
65709
|
}, {
|
|
@@ -65701,7 +65783,6 @@ declare const VTextField: {
|
|
|
65701
65783
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
65702
65784
|
tile: boolean;
|
|
65703
65785
|
clearIcon: IconValue;
|
|
65704
|
-
centerAffix: boolean;
|
|
65705
65786
|
clearable: boolean;
|
|
65706
65787
|
dirty: boolean;
|
|
65707
65788
|
persistentClear: boolean;
|
|
@@ -65722,6 +65803,7 @@ declare const VTextField: {
|
|
|
65722
65803
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65723
65804
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65724
65805
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65806
|
+
centerAffix?: boolean | undefined;
|
|
65725
65807
|
} & {
|
|
65726
65808
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
65727
65809
|
}, "controlRef"> & vue.ShallowUnwrapRef<{
|
|
@@ -65782,7 +65864,6 @@ declare const VTextField: {
|
|
|
65782
65864
|
density: Density;
|
|
65783
65865
|
direction: "horizontal" | "vertical";
|
|
65784
65866
|
clearIcon: IconValue;
|
|
65785
|
-
centerAffix: boolean;
|
|
65786
65867
|
hideSpinButtons: boolean;
|
|
65787
65868
|
persistentHint: boolean;
|
|
65788
65869
|
autofocus: boolean;
|
|
@@ -65823,6 +65904,7 @@ declare const VTextField: {
|
|
|
65823
65904
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65824
65905
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65825
65906
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
65907
|
+
centerAffix?: boolean | undefined;
|
|
65826
65908
|
hint?: string | undefined;
|
|
65827
65909
|
hideDetails?: boolean | "auto" | undefined;
|
|
65828
65910
|
suffix?: string | undefined;
|
|
@@ -66163,7 +66245,6 @@ declare const VTextField: {
|
|
|
66163
66245
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
66164
66246
|
tile: boolean;
|
|
66165
66247
|
clearIcon: IconValue;
|
|
66166
|
-
centerAffix: boolean;
|
|
66167
66248
|
clearable: boolean;
|
|
66168
66249
|
dirty: boolean;
|
|
66169
66250
|
persistentClear: boolean;
|
|
@@ -66183,6 +66264,7 @@ declare const VTextField: {
|
|
|
66183
66264
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66184
66265
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66185
66266
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66267
|
+
centerAffix?: boolean | undefined;
|
|
66186
66268
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
66187
66269
|
reverse: boolean;
|
|
66188
66270
|
flat: boolean;
|
|
@@ -66194,7 +66276,6 @@ declare const VTextField: {
|
|
|
66194
66276
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
66195
66277
|
tile: boolean;
|
|
66196
66278
|
clearIcon: IconValue;
|
|
66197
|
-
centerAffix: boolean;
|
|
66198
66279
|
clearable: boolean;
|
|
66199
66280
|
dirty: boolean;
|
|
66200
66281
|
persistentClear: boolean;
|
|
@@ -66215,6 +66296,7 @@ declare const VTextField: {
|
|
|
66215
66296
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66216
66297
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66217
66298
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66299
|
+
centerAffix?: boolean | undefined;
|
|
66218
66300
|
} & {
|
|
66219
66301
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
66220
66302
|
}, "reverse" | "flat" | "style" | "active" | "error" | "disabled" | "focused" | "rounded" | "variant" | "tile" | "clearIcon" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
@@ -66264,7 +66346,6 @@ declare const VTextField: {
|
|
|
66264
66346
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
66265
66347
|
tile: boolean;
|
|
66266
66348
|
clearIcon: IconValue;
|
|
66267
|
-
centerAffix: boolean;
|
|
66268
66349
|
clearable: boolean;
|
|
66269
66350
|
dirty: boolean;
|
|
66270
66351
|
persistentClear: boolean;
|
|
@@ -66285,6 +66366,7 @@ declare const VTextField: {
|
|
|
66285
66366
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66286
66367
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66287
66368
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66369
|
+
centerAffix?: boolean | undefined;
|
|
66288
66370
|
} & {
|
|
66289
66371
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
66290
66372
|
}, {
|
|
@@ -66364,7 +66446,6 @@ declare const VTextField: {
|
|
|
66364
66446
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
66365
66447
|
tile: boolean;
|
|
66366
66448
|
clearIcon: IconValue;
|
|
66367
|
-
centerAffix: boolean;
|
|
66368
66449
|
clearable: boolean;
|
|
66369
66450
|
dirty: boolean;
|
|
66370
66451
|
persistentClear: boolean;
|
|
@@ -66385,6 +66466,7 @@ declare const VTextField: {
|
|
|
66385
66466
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66386
66467
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66387
66468
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
66469
|
+
centerAffix?: boolean | undefined;
|
|
66388
66470
|
} & {
|
|
66389
66471
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
66390
66472
|
}, "controlRef"> & vue.ShallowUnwrapRef<{
|
|
@@ -66487,7 +66569,10 @@ declare const VTextField: {
|
|
|
66487
66569
|
default: string;
|
|
66488
66570
|
};
|
|
66489
66571
|
active: BooleanConstructor;
|
|
66490
|
-
centerAffix:
|
|
66572
|
+
centerAffix: {
|
|
66573
|
+
type: BooleanConstructor;
|
|
66574
|
+
default: undefined;
|
|
66575
|
+
};
|
|
66491
66576
|
color: StringConstructor;
|
|
66492
66577
|
baseColor: StringConstructor;
|
|
66493
66578
|
dirty: BooleanConstructor;
|
|
@@ -66593,7 +66678,10 @@ declare const VTextField: {
|
|
|
66593
66678
|
default: string;
|
|
66594
66679
|
};
|
|
66595
66680
|
active: BooleanConstructor;
|
|
66596
|
-
centerAffix:
|
|
66681
|
+
centerAffix: {
|
|
66682
|
+
type: BooleanConstructor;
|
|
66683
|
+
default: undefined;
|
|
66684
|
+
};
|
|
66597
66685
|
color: StringConstructor;
|
|
66598
66686
|
baseColor: StringConstructor;
|
|
66599
66687
|
dirty: BooleanConstructor;
|
|
@@ -72725,78 +72813,49 @@ declare global {
|
|
|
72725
72813
|
}
|
|
72726
72814
|
}
|
|
72727
72815
|
}
|
|
72728
|
-
|
|
72729
|
-
declare module 'vue' {
|
|
72730
|
-
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|
|
72731
|
-
}
|
|
72732
|
-
|
|
72733
|
-
declare module '@vue/runtime-dom' {
|
|
72734
|
-
export interface HTMLAttributes {
|
|
72735
|
-
$children?: VNodeChild
|
|
72736
|
-
}
|
|
72737
|
-
export interface SVGAttributes {
|
|
72738
|
-
$children?: VNodeChild
|
|
72739
|
-
}
|
|
72740
|
-
}
|
|
72741
|
-
|
|
72742
|
-
declare module '@vue/runtime-core' {
|
|
72743
|
-
interface Vuetify {
|
|
72744
|
-
defaults: DefaultsInstance
|
|
72745
|
-
display: UnwrapNestedRefs<DisplayInstance>
|
|
72746
|
-
theme: UnwrapNestedRefs<ThemeInstance>
|
|
72747
|
-
icons: IconOptions
|
|
72748
|
-
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
|
72749
|
-
date: DateInstance
|
|
72750
|
-
}
|
|
72751
|
-
|
|
72752
|
-
export interface ComponentCustomProperties {
|
|
72753
|
-
$vuetify: Vuetify
|
|
72754
|
-
}
|
|
72755
|
-
|
|
72756
|
-
export interface GlobalComponents {
|
|
72816
|
+
interface _GlobalComponents {
|
|
72757
72817
|
VApp: typeof import('vuetify/components')['VApp']
|
|
72758
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
72759
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
72760
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
72761
72818
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
72762
72819
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
72763
72820
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
72764
72821
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
72765
72822
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
72766
72823
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
72824
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
72825
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
72767
72826
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
72827
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
72828
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
72829
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
72768
72830
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
72769
72831
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
72770
72832
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
72771
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
72772
72833
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
72834
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
72773
72835
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
72774
|
-
|
|
72836
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
72775
72837
|
VCard: typeof import('vuetify/components')['VCard']
|
|
72776
72838
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
72777
72839
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
72778
72840
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
72779
72841
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
72780
72842
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
72781
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
72782
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
72783
72843
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
72784
72844
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
72785
|
-
|
|
72845
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
72786
72846
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
72787
72847
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
72788
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
72789
72848
|
VCode: typeof import('vuetify/components')['VCode']
|
|
72790
72849
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
72850
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
72851
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
72791
72852
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
72792
72853
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
72793
72854
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
72794
72855
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
72795
72856
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
72796
72857
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
72797
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
72798
72858
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
72799
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
72800
72859
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
72801
72860
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
72802
72861
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -72806,27 +72865,28 @@ declare module '@vue/runtime-core' {
|
|
|
72806
72865
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
72807
72866
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
72808
72867
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
72809
|
-
VField: typeof import('vuetify/components')['VField']
|
|
72810
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
72811
72868
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
72812
72869
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
72813
72870
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
72814
72871
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
72872
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
72815
72873
|
VFab: typeof import('vuetify/components')['VFab']
|
|
72816
72874
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
72875
|
+
VField: typeof import('vuetify/components')['VField']
|
|
72876
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
72877
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
72817
72878
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
72818
72879
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
72819
72880
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
72820
72881
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
72821
72882
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
72822
|
-
|
|
72823
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
72883
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
72824
72884
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
72825
72885
|
VItem: typeof import('vuetify/components')['VItem']
|
|
72826
|
-
|
|
72886
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
72827
72887
|
VInput: typeof import('vuetify/components')['VInput']
|
|
72828
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
72829
72888
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
72889
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
72830
72890
|
VList: typeof import('vuetify/components')['VList']
|
|
72831
72891
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
72832
72892
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -72837,69 +72897,71 @@ declare module '@vue/runtime-core' {
|
|
|
72837
72897
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
72838
72898
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
72839
72899
|
VMain: typeof import('vuetify/components')['VMain']
|
|
72900
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
72901
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
72840
72902
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
72841
72903
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
72842
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
72843
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
72844
72904
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
72905
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
72845
72906
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
72907
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
72846
72908
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
72847
72909
|
VRating: typeof import('vuetify/components')['VRating']
|
|
72848
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
72849
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
72850
72910
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
72851
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
72852
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
72853
72911
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
72854
|
-
|
|
72912
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
72855
72913
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
72856
72914
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
72857
|
-
|
|
72858
|
-
|
|
72859
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
72860
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
72861
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
72915
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
72916
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
72862
72917
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
72918
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
72919
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
72920
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
72921
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
72863
72922
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
72864
72923
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
72865
72924
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
72866
72925
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
72867
72926
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
72868
72927
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
72928
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
72929
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
72930
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
72931
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
72869
72932
|
VTable: typeof import('vuetify/components')['VTable']
|
|
72870
72933
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
72871
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
72872
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
72873
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
72874
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
72875
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
72876
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
72877
72934
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
72878
72935
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
72879
72936
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
72937
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
72938
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
72939
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
72880
72940
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
72881
72941
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
72882
72942
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
72943
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
72883
72944
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
72884
72945
|
VForm: typeof import('vuetify/components')['VForm']
|
|
72885
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
72886
72946
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
72887
72947
|
VCol: typeof import('vuetify/components')['VCol']
|
|
72888
72948
|
VRow: typeof import('vuetify/components')['VRow']
|
|
72889
72949
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
72950
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
72890
72951
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
72891
72952
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
72953
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
72892
72954
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
72893
72955
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
72894
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
72895
72956
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
72957
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
72896
72958
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
72897
72959
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
72898
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
72899
72960
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
72961
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
72900
72962
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
72901
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
72902
72963
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
72964
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
72903
72965
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
72904
72966
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
72905
72967
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -72916,20 +72978,18 @@ declare module '@vue/runtime-core' {
|
|
|
72916
72978
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
72917
72979
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
72918
72980
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
72919
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
72920
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
72921
72981
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
72922
72982
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
72923
72983
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
72924
72984
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
72925
72985
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
72926
72986
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
72927
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
72928
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
72929
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
72930
72987
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
72931
72988
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
72932
72989
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
72990
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
72991
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
72992
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
72933
72993
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
72934
72994
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
72935
72995
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
@@ -72937,7 +72997,36 @@ declare module '@vue/runtime-core' {
|
|
|
72937
72997
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
72938
72998
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
72939
72999
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
|
72940
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
|
72941
73000
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
|
73001
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
|
73002
|
+
}
|
|
73003
|
+
declare module 'vue' {
|
|
73004
|
+
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|
|
73005
|
+
export interface GlobalComponents extends _GlobalComponents {}
|
|
73006
|
+
}
|
|
73007
|
+
|
|
73008
|
+
declare module '@vue/runtime-dom' {
|
|
73009
|
+
export interface HTMLAttributes {
|
|
73010
|
+
$children?: VNodeChild
|
|
73011
|
+
}
|
|
73012
|
+
export interface SVGAttributes {
|
|
73013
|
+
$children?: VNodeChild
|
|
73014
|
+
}
|
|
73015
|
+
export interface GlobalComponents extends _GlobalComponents {}
|
|
73016
|
+
}
|
|
73017
|
+
|
|
73018
|
+
declare module '@vue/runtime-core' {
|
|
73019
|
+
interface Vuetify {
|
|
73020
|
+
defaults: DefaultsInstance
|
|
73021
|
+
display: UnwrapNestedRefs<DisplayInstance>
|
|
73022
|
+
theme: UnwrapNestedRefs<ThemeInstance>
|
|
73023
|
+
icons: IconOptions
|
|
73024
|
+
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
|
73025
|
+
date: DateInstance
|
|
73026
|
+
}
|
|
73027
|
+
|
|
73028
|
+
export interface ComponentCustomProperties {
|
|
73029
|
+
$vuetify: Vuetify
|
|
72942
73030
|
}
|
|
73031
|
+
export interface GlobalComponents extends _GlobalComponents {}
|
|
72943
73032
|
}
|