vuetify 3.5.3 → 3.5.5
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 +2771 -2523
- package/dist/json/importMap-labs.json +12 -8
- package/dist/json/importMap.json +100 -100
- package/dist/json/tags.json +236 -169
- package/dist/json/web-types.json +3218 -2563
- package/dist/vuetify-labs.css +2265 -2242
- package/dist/vuetify-labs.d.ts +1234 -152
- package/dist/vuetify-labs.esm.js +582 -88
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +582 -88
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1316 -1293
- package/dist/vuetify.d.ts +894 -187
- package/dist/vuetify.esm.js +148 -87
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +148 -87
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +652 -647
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.mts +9 -0
- package/lib/components/VAppBar/index.d.mts +18 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +33 -6
- package/lib/components/VAvatar/VAvatar.mjs +2 -2
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +9 -0
- package/lib/components/VBadge/index.d.mts +9 -0
- package/lib/components/VBanner/index.d.mts +9 -0
- package/lib/components/VBottomNavigation/index.d.mts +9 -0
- package/lib/components/VBreadcrumbs/index.d.mts +9 -0
- package/lib/components/VBtn/index.d.mts +9 -0
- package/lib/components/VBtnGroup/index.d.mts +9 -0
- package/lib/components/VBtnToggle/index.d.mts +9 -0
- package/lib/components/VCard/index.d.mts +9 -0
- package/lib/components/VCarousel/index.d.mts +9 -0
- package/lib/components/VChip/index.d.mts +9 -0
- package/lib/components/VColorPicker/VColorPicker.mjs +24 -12
- package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
- package/lib/components/VColorPicker/index.d.mts +9 -0
- package/lib/components/VCombobox/index.d.mts +33 -6
- package/lib/components/VDataIterator/index.d.mts +3 -3
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +355 -117
- package/lib/components/VDataTable/types.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.css +2 -21
- package/lib/components/VDatePicker/VDatePicker.mjs +15 -11
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.sass +3 -18
- package/lib/components/VDatePicker/VDatePickerHeader.css +2 -0
- package/lib/components/VDatePicker/VDatePickerHeader.sass +3 -0
- package/lib/components/VDatePicker/VDatePickerMonth.css +11 -5
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.sass +13 -5
- package/lib/components/VDatePicker/VDatePickerMonths.css +2 -3
- package/lib/components/VDatePicker/VDatePickerMonths.mjs +6 -3
- package/lib/components/VDatePicker/VDatePickerMonths.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonths.sass +4 -3
- package/lib/components/VDatePicker/VDatePickerYears.css +2 -2
- package/lib/components/VDatePicker/VDatePickerYears.mjs +8 -1
- package/lib/components/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerYears.sass +4 -2
- package/lib/components/VDatePicker/_variables.scss +14 -34
- package/lib/components/VDatePicker/index.d.mts +13 -4
- package/lib/components/VExpansionPanel/VExpansionPanel.css +14 -0
- package/lib/components/VExpansionPanel/VExpansionPanel.sass +14 -0
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +9 -2
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +27 -0
- package/lib/components/VField/VField.css +20 -1
- package/lib/components/VField/VField.sass +19 -1
- package/lib/components/VField/index.d.mts +9 -0
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +9 -0
- package/lib/components/VFooter/index.d.mts +9 -0
- package/lib/components/VImg/index.d.mts +9 -0
- package/lib/components/VList/VListItem.css +2 -1
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VList/_variables.scss +2 -1
- package/lib/components/VList/index.d.mts +18 -0
- package/lib/components/VMenu/VMenu.mjs +5 -5
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMenu/shared.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +9 -0
- package/lib/components/VPagination/index.d.mts +9 -0
- package/lib/components/VProgressLinear/index.d.mts +9 -0
- package/lib/components/VRangeSlider/index.d.mts +9 -0
- package/lib/components/VSelect/VSelect.mjs +4 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +33 -6
- package/lib/components/VSheet/index.d.mts +9 -0
- package/lib/components/VSlider/index.d.mts +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +1 -2
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.mts +9 -0
- package/lib/components/VStepper/index.d.mts +9 -0
- package/lib/components/VSystemBar/index.d.mts +9 -0
- package/lib/components/VTabs/index.d.mts +33 -6
- package/lib/components/VTextField/index.d.mts +33 -6
- package/lib/components/VTextarea/index.d.mts +9 -0
- package/lib/components/VTimeline/index.d.mts +9 -0
- package/lib/components/VToolbar/index.d.mts +9 -0
- package/lib/components/VTooltip/VTooltip.css +1 -0
- package/lib/components/VTooltip/VTooltip.sass +1 -0
- package/lib/components/VTooltip/_variables.scss +1 -0
- package/lib/components/index.d.mts +857 -151
- package/lib/composables/form.mjs +2 -1
- package/lib/composables/form.mjs.map +1 -1
- package/lib/composables/goto.mjs +16 -18
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/group.mjs +2 -0
- package/lib/composables/group.mjs.map +1 -1
- package/lib/composables/icons.mjs +17 -13
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/rounded.mjs +5 -1
- package/lib/composables/rounded.mjs.map +1 -1
- package/lib/composables/virtual.mjs +11 -3
- package/lib/composables/virtual.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.mjs +2 -1
- package/lib/iconsets/fa-svg.mjs.map +1 -1
- package/lib/index.d.mts +37 -36
- package/lib/labs/VCalendar/VCalendar.mjs +1 -1
- package/lib/labs/VCalendar/VCalendar.mjs.map +1 -1
- package/lib/labs/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs +1 -1
- package/lib/labs/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs.map +1 -1
- package/lib/labs/VPicker/VPicker.css +2 -2
- package/lib/labs/VPicker/VPicker.sass +2 -2
- package/lib/labs/VPicker/_variables.scss +2 -4
- package/lib/labs/VPicker/index.d.mts +9 -0
- package/lib/labs/VSparkline/VBarline.mjs +138 -0
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -0
- package/lib/labs/VSparkline/VSparkline.mjs +49 -0
- package/lib/labs/VSparkline/VSparkline.mjs.map +1 -0
- package/lib/labs/VSparkline/VTrendline.mjs +143 -0
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -0
- package/lib/labs/VSparkline/index.d.mts +374 -0
- package/lib/labs/VSparkline/index.mjs +2 -0
- package/lib/labs/VSparkline/index.mjs.map +1 -0
- package/lib/labs/VSparkline/util/line.mjs +52 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -0
- package/lib/labs/VSparkline/util/path.mjs +60 -0
- package/lib/labs/VSparkline/util/path.mjs.map +1 -0
- package/lib/labs/components.d.mts +376 -1
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/locale/nl.mjs +1 -1
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
- package/lib/components/VDatePicker/VDatePickerTitle.mjs +0 -81
- package/lib/components/VDatePicker/VDatePickerTitle.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerTitle.sass +0 -33
|
@@ -12,6 +12,7 @@ declare const VSystemBar: {
|
|
|
12
12
|
order: string | number;
|
|
13
13
|
style: vue.StyleValue;
|
|
14
14
|
tag: string;
|
|
15
|
+
tile: boolean;
|
|
15
16
|
} & {
|
|
16
17
|
height?: string | number | undefined;
|
|
17
18
|
name?: string | undefined;
|
|
@@ -35,6 +36,7 @@ declare const VSystemBar: {
|
|
|
35
36
|
order: string | number;
|
|
36
37
|
style: vue.StyleValue;
|
|
37
38
|
tag: string;
|
|
39
|
+
tile: boolean;
|
|
38
40
|
} & {
|
|
39
41
|
height?: string | number | undefined;
|
|
40
42
|
name?: string | undefined;
|
|
@@ -59,6 +61,7 @@ declare const VSystemBar: {
|
|
|
59
61
|
style: vue.StyleValue;
|
|
60
62
|
tag: string;
|
|
61
63
|
rounded: string | number | boolean;
|
|
64
|
+
tile: boolean;
|
|
62
65
|
}, true, {}, vue.SlotsType<Partial<{
|
|
63
66
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
64
67
|
[key: string]: any;
|
|
@@ -76,6 +79,7 @@ declare const VSystemBar: {
|
|
|
76
79
|
order: string | number;
|
|
77
80
|
style: vue.StyleValue;
|
|
78
81
|
tag: string;
|
|
82
|
+
tile: boolean;
|
|
79
83
|
} & {
|
|
80
84
|
height?: string | number | undefined;
|
|
81
85
|
name?: string | undefined;
|
|
@@ -100,6 +104,7 @@ declare const VSystemBar: {
|
|
|
100
104
|
style: vue.StyleValue;
|
|
101
105
|
tag: string;
|
|
102
106
|
rounded: string | number | boolean;
|
|
107
|
+
tile: boolean;
|
|
103
108
|
}>;
|
|
104
109
|
__isFragment?: undefined;
|
|
105
110
|
__isTeleport?: undefined;
|
|
@@ -110,6 +115,7 @@ declare const VSystemBar: {
|
|
|
110
115
|
order: string | number;
|
|
111
116
|
style: vue.StyleValue;
|
|
112
117
|
tag: string;
|
|
118
|
+
tile: boolean;
|
|
113
119
|
} & {
|
|
114
120
|
height?: string | number | undefined;
|
|
115
121
|
name?: string | undefined;
|
|
@@ -134,6 +140,7 @@ declare const VSystemBar: {
|
|
|
134
140
|
style: vue.StyleValue;
|
|
135
141
|
tag: string;
|
|
136
142
|
rounded: string | number | boolean;
|
|
143
|
+
tile: boolean;
|
|
137
144
|
}, {}, string, vue.SlotsType<Partial<{
|
|
138
145
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
139
146
|
[key: string]: any;
|
|
@@ -148,6 +155,7 @@ declare const VSystemBar: {
|
|
|
148
155
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
149
156
|
default: undefined;
|
|
150
157
|
};
|
|
158
|
+
tile: BooleanConstructor;
|
|
151
159
|
name: {
|
|
152
160
|
type: StringConstructor;
|
|
153
161
|
};
|
|
@@ -178,6 +186,7 @@ declare const VSystemBar: {
|
|
|
178
186
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
179
187
|
default: undefined;
|
|
180
188
|
};
|
|
189
|
+
tile: BooleanConstructor;
|
|
181
190
|
name: {
|
|
182
191
|
type: StringConstructor;
|
|
183
192
|
};
|
|
@@ -459,6 +459,7 @@ declare const VTab: {
|
|
|
459
459
|
disabled: boolean;
|
|
460
460
|
size: string | number;
|
|
461
461
|
tag: string;
|
|
462
|
+
tile: boolean;
|
|
462
463
|
density: Density;
|
|
463
464
|
selectedClass: string;
|
|
464
465
|
slim: boolean;
|
|
@@ -523,6 +524,7 @@ declare const VTab: {
|
|
|
523
524
|
size: string | number;
|
|
524
525
|
tag: string;
|
|
525
526
|
rounded: string | number | boolean;
|
|
527
|
+
tile: boolean;
|
|
526
528
|
density: Density;
|
|
527
529
|
slim: boolean;
|
|
528
530
|
stacked: boolean;
|
|
@@ -540,6 +542,7 @@ declare const VTab: {
|
|
|
540
542
|
disabled: boolean;
|
|
541
543
|
size: string | number;
|
|
542
544
|
tag: string;
|
|
545
|
+
tile: boolean;
|
|
543
546
|
density: Density;
|
|
544
547
|
slim: boolean;
|
|
545
548
|
stacked: boolean;
|
|
@@ -600,6 +603,7 @@ declare const VTab: {
|
|
|
600
603
|
disabled: boolean;
|
|
601
604
|
size: string | number;
|
|
602
605
|
tag: string;
|
|
606
|
+
tile: boolean;
|
|
603
607
|
density: Density;
|
|
604
608
|
slim: boolean;
|
|
605
609
|
stacked: boolean;
|
|
@@ -653,7 +657,7 @@ declare const VTab: {
|
|
|
653
657
|
"onGroup:selected"?: ((val: {
|
|
654
658
|
value: boolean;
|
|
655
659
|
}) => any) | undefined;
|
|
656
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
660
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
657
661
|
$attrs: {
|
|
658
662
|
[x: string]: unknown;
|
|
659
663
|
};
|
|
@@ -691,6 +695,7 @@ declare const VTab: {
|
|
|
691
695
|
disabled: boolean;
|
|
692
696
|
size: string | number;
|
|
693
697
|
tag: string;
|
|
698
|
+
tile: boolean;
|
|
694
699
|
density: Density;
|
|
695
700
|
slim: boolean;
|
|
696
701
|
stacked: boolean;
|
|
@@ -763,6 +768,7 @@ declare const VTab: {
|
|
|
763
768
|
size: string | number;
|
|
764
769
|
tag: string;
|
|
765
770
|
rounded: string | number | boolean;
|
|
771
|
+
tile: boolean;
|
|
766
772
|
density: Density;
|
|
767
773
|
slim: boolean;
|
|
768
774
|
stacked: boolean;
|
|
@@ -813,6 +819,7 @@ declare const VTab: {
|
|
|
813
819
|
disabled: boolean;
|
|
814
820
|
size: string | number;
|
|
815
821
|
tag: string;
|
|
822
|
+
tile: boolean;
|
|
816
823
|
density: Density;
|
|
817
824
|
slim: boolean;
|
|
818
825
|
stacked: boolean;
|
|
@@ -868,7 +875,7 @@ declare const VTab: {
|
|
|
868
875
|
}) => any) | undefined;
|
|
869
876
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
870
877
|
group: GroupItemProvide | null;
|
|
871
|
-
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
878
|
+
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
872
879
|
replace: boolean;
|
|
873
880
|
fixed: boolean;
|
|
874
881
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -878,6 +885,7 @@ declare const VTab: {
|
|
|
878
885
|
disabled: boolean;
|
|
879
886
|
size: string | number;
|
|
880
887
|
tag: string;
|
|
888
|
+
tile: boolean;
|
|
881
889
|
density: Density;
|
|
882
890
|
selectedClass: string;
|
|
883
891
|
slim: boolean;
|
|
@@ -937,6 +945,7 @@ declare const VTab: {
|
|
|
937
945
|
size: string | number;
|
|
938
946
|
tag: string;
|
|
939
947
|
rounded: string | number | boolean;
|
|
948
|
+
tile: boolean;
|
|
940
949
|
density: Density;
|
|
941
950
|
selectedClass: string;
|
|
942
951
|
slim: boolean;
|
|
@@ -975,6 +984,7 @@ declare const VTab: {
|
|
|
975
984
|
disabled: boolean;
|
|
976
985
|
size: string | number;
|
|
977
986
|
tag: string;
|
|
987
|
+
tile: boolean;
|
|
978
988
|
density: Density;
|
|
979
989
|
selectedClass: string;
|
|
980
990
|
slim: boolean;
|
|
@@ -1039,6 +1049,7 @@ declare const VTab: {
|
|
|
1039
1049
|
size: string | number;
|
|
1040
1050
|
tag: string;
|
|
1041
1051
|
rounded: string | number | boolean;
|
|
1052
|
+
tile: boolean;
|
|
1042
1053
|
density: Density;
|
|
1043
1054
|
slim: boolean;
|
|
1044
1055
|
stacked: boolean;
|
|
@@ -1056,6 +1067,7 @@ declare const VTab: {
|
|
|
1056
1067
|
disabled: boolean;
|
|
1057
1068
|
size: string | number;
|
|
1058
1069
|
tag: string;
|
|
1070
|
+
tile: boolean;
|
|
1059
1071
|
density: Density;
|
|
1060
1072
|
slim: boolean;
|
|
1061
1073
|
stacked: boolean;
|
|
@@ -1116,6 +1128,7 @@ declare const VTab: {
|
|
|
1116
1128
|
disabled: boolean;
|
|
1117
1129
|
size: string | number;
|
|
1118
1130
|
tag: string;
|
|
1131
|
+
tile: boolean;
|
|
1119
1132
|
density: Density;
|
|
1120
1133
|
slim: boolean;
|
|
1121
1134
|
stacked: boolean;
|
|
@@ -1169,7 +1182,7 @@ declare const VTab: {
|
|
|
1169
1182
|
"onGroup:selected"?: ((val: {
|
|
1170
1183
|
value: boolean;
|
|
1171
1184
|
}) => any) | undefined;
|
|
1172
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
1185
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
1173
1186
|
$attrs: {
|
|
1174
1187
|
[x: string]: unknown;
|
|
1175
1188
|
};
|
|
@@ -1207,6 +1220,7 @@ declare const VTab: {
|
|
|
1207
1220
|
disabled: boolean;
|
|
1208
1221
|
size: string | number;
|
|
1209
1222
|
tag: string;
|
|
1223
|
+
tile: boolean;
|
|
1210
1224
|
density: Density;
|
|
1211
1225
|
slim: boolean;
|
|
1212
1226
|
stacked: boolean;
|
|
@@ -1279,6 +1293,7 @@ declare const VTab: {
|
|
|
1279
1293
|
size: string | number;
|
|
1280
1294
|
tag: string;
|
|
1281
1295
|
rounded: string | number | boolean;
|
|
1296
|
+
tile: boolean;
|
|
1282
1297
|
density: Density;
|
|
1283
1298
|
slim: boolean;
|
|
1284
1299
|
stacked: boolean;
|
|
@@ -1329,6 +1344,7 @@ declare const VTab: {
|
|
|
1329
1344
|
disabled: boolean;
|
|
1330
1345
|
size: string | number;
|
|
1331
1346
|
tag: string;
|
|
1347
|
+
tile: boolean;
|
|
1332
1348
|
density: Density;
|
|
1333
1349
|
slim: boolean;
|
|
1334
1350
|
stacked: boolean;
|
|
@@ -1384,7 +1400,7 @@ declare const VTab: {
|
|
|
1384
1400
|
}) => any) | undefined;
|
|
1385
1401
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
1386
1402
|
group: GroupItemProvide | null;
|
|
1387
|
-
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
|
|
1403
|
+
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, {}, {}, {}, {
|
|
1388
1404
|
replace: boolean;
|
|
1389
1405
|
fixed: boolean;
|
|
1390
1406
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -1395,6 +1411,7 @@ declare const VTab: {
|
|
|
1395
1411
|
size: string | number;
|
|
1396
1412
|
tag: string;
|
|
1397
1413
|
rounded: string | number | boolean;
|
|
1414
|
+
tile: boolean;
|
|
1398
1415
|
density: Density;
|
|
1399
1416
|
selectedClass: string;
|
|
1400
1417
|
slim: boolean;
|
|
@@ -1417,6 +1434,7 @@ declare const VTab: {
|
|
|
1417
1434
|
disabled: boolean;
|
|
1418
1435
|
size: string | number;
|
|
1419
1436
|
tag: string;
|
|
1437
|
+
tile: boolean;
|
|
1420
1438
|
density: Density;
|
|
1421
1439
|
selectedClass: string;
|
|
1422
1440
|
slim: boolean;
|
|
@@ -1481,6 +1499,7 @@ declare const VTab: {
|
|
|
1481
1499
|
size: string | number;
|
|
1482
1500
|
tag: string;
|
|
1483
1501
|
rounded: string | number | boolean;
|
|
1502
|
+
tile: boolean;
|
|
1484
1503
|
density: Density;
|
|
1485
1504
|
slim: boolean;
|
|
1486
1505
|
stacked: boolean;
|
|
@@ -1498,6 +1517,7 @@ declare const VTab: {
|
|
|
1498
1517
|
disabled: boolean;
|
|
1499
1518
|
size: string | number;
|
|
1500
1519
|
tag: string;
|
|
1520
|
+
tile: boolean;
|
|
1501
1521
|
density: Density;
|
|
1502
1522
|
slim: boolean;
|
|
1503
1523
|
stacked: boolean;
|
|
@@ -1558,6 +1578,7 @@ declare const VTab: {
|
|
|
1558
1578
|
disabled: boolean;
|
|
1559
1579
|
size: string | number;
|
|
1560
1580
|
tag: string;
|
|
1581
|
+
tile: boolean;
|
|
1561
1582
|
density: Density;
|
|
1562
1583
|
slim: boolean;
|
|
1563
1584
|
stacked: boolean;
|
|
@@ -1611,7 +1632,7 @@ declare const VTab: {
|
|
|
1611
1632
|
"onGroup:selected"?: ((val: {
|
|
1612
1633
|
value: boolean;
|
|
1613
1634
|
}) => any) | undefined;
|
|
1614
|
-
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple">;
|
|
1635
|
+
}, "symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple">;
|
|
1615
1636
|
$attrs: {
|
|
1616
1637
|
[x: string]: unknown;
|
|
1617
1638
|
};
|
|
@@ -1649,6 +1670,7 @@ declare const VTab: {
|
|
|
1649
1670
|
disabled: boolean;
|
|
1650
1671
|
size: string | number;
|
|
1651
1672
|
tag: string;
|
|
1673
|
+
tile: boolean;
|
|
1652
1674
|
density: Density;
|
|
1653
1675
|
slim: boolean;
|
|
1654
1676
|
stacked: boolean;
|
|
@@ -1721,6 +1743,7 @@ declare const VTab: {
|
|
|
1721
1743
|
size: string | number;
|
|
1722
1744
|
tag: string;
|
|
1723
1745
|
rounded: string | number | boolean;
|
|
1746
|
+
tile: boolean;
|
|
1724
1747
|
density: Density;
|
|
1725
1748
|
slim: boolean;
|
|
1726
1749
|
stacked: boolean;
|
|
@@ -1771,6 +1794,7 @@ declare const VTab: {
|
|
|
1771
1794
|
disabled: boolean;
|
|
1772
1795
|
size: string | number;
|
|
1773
1796
|
tag: string;
|
|
1797
|
+
tile: boolean;
|
|
1774
1798
|
density: Density;
|
|
1775
1799
|
slim: boolean;
|
|
1776
1800
|
stacked: boolean;
|
|
@@ -1826,7 +1850,7 @@ declare const VTab: {
|
|
|
1826
1850
|
}) => any) | undefined;
|
|
1827
1851
|
}, "group"> & vue.ShallowUnwrapRef<{
|
|
1828
1852
|
group: GroupItemProvide | null;
|
|
1829
|
-
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
1853
|
+
}> & {} & vue.ComponentCustomProperties & {}, "key" | "location" | "height" | "width" | "border" | "color" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "position" | "value" | "loading" | "text" | "class" | "ref" | "icon" | "$children" | "href" | "elevation" | "to" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "v-slot:append" | "v-slot:prepend" | "selectedClass" | "onGroup:selected" | "prependIcon" | "appendIcon" | ("symbol" | "replace" | "flat" | "variant" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "rounded" | "tile" | "density" | "slim" | "stacked" | "ripple") | "v-slot:loader">, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
1830
1854
|
replace: boolean;
|
|
1831
1855
|
fixed: boolean;
|
|
1832
1856
|
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
@@ -1837,6 +1861,7 @@ declare const VTab: {
|
|
|
1837
1861
|
size: string | number;
|
|
1838
1862
|
tag: string;
|
|
1839
1863
|
rounded: string | number | boolean;
|
|
1864
|
+
tile: boolean;
|
|
1840
1865
|
density: Density;
|
|
1841
1866
|
selectedClass: string;
|
|
1842
1867
|
slim: boolean;
|
|
@@ -1912,6 +1937,7 @@ declare const VTab: {
|
|
|
1912
1937
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1913
1938
|
default: undefined;
|
|
1914
1939
|
};
|
|
1940
|
+
tile: BooleanConstructor;
|
|
1915
1941
|
density: {
|
|
1916
1942
|
type: PropType<Density>;
|
|
1917
1943
|
default: string;
|
|
@@ -1992,6 +2018,7 @@ declare const VTab: {
|
|
|
1992
2018
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1993
2019
|
default: undefined;
|
|
1994
2020
|
};
|
|
2021
|
+
tile: BooleanConstructor;
|
|
1995
2022
|
density: {
|
|
1996
2023
|
type: PropType<Density>;
|
|
1997
2024
|
default: string;
|
|
@@ -110,6 +110,7 @@ declare const VTextField: {
|
|
|
110
110
|
disabled: boolean;
|
|
111
111
|
readonly: boolean | null;
|
|
112
112
|
messages: string | readonly string[];
|
|
113
|
+
tile: boolean;
|
|
113
114
|
density: Density;
|
|
114
115
|
clearIcon: IconValue;
|
|
115
116
|
focused: boolean;
|
|
@@ -452,6 +453,7 @@ declare const VTextField: {
|
|
|
452
453
|
style: vue.StyleValue;
|
|
453
454
|
disabled: boolean;
|
|
454
455
|
rounded: string | number | boolean;
|
|
456
|
+
tile: boolean;
|
|
455
457
|
clearIcon: IconValue;
|
|
456
458
|
focused: boolean;
|
|
457
459
|
centerAffix: boolean;
|
|
@@ -467,6 +469,7 @@ declare const VTextField: {
|
|
|
467
469
|
active: boolean;
|
|
468
470
|
style: vue.StyleValue;
|
|
469
471
|
disabled: boolean;
|
|
472
|
+
tile: boolean;
|
|
470
473
|
clearIcon: IconValue;
|
|
471
474
|
focused: boolean;
|
|
472
475
|
clearable: boolean;
|
|
@@ -497,6 +500,7 @@ declare const VTextField: {
|
|
|
497
500
|
active: boolean;
|
|
498
501
|
style: vue.StyleValue;
|
|
499
502
|
disabled: boolean;
|
|
503
|
+
tile: boolean;
|
|
500
504
|
clearIcon: IconValue;
|
|
501
505
|
focused: boolean;
|
|
502
506
|
clearable: boolean;
|
|
@@ -522,7 +526,7 @@ declare const VTextField: {
|
|
|
522
526
|
centerAffix?: boolean | undefined;
|
|
523
527
|
} & {
|
|
524
528
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
525
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
529
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
526
530
|
$attrs: {
|
|
527
531
|
[x: string]: unknown;
|
|
528
532
|
};
|
|
@@ -564,6 +568,7 @@ declare const VTextField: {
|
|
|
564
568
|
active: boolean;
|
|
565
569
|
style: vue.StyleValue;
|
|
566
570
|
disabled: boolean;
|
|
571
|
+
tile: boolean;
|
|
567
572
|
clearIcon: IconValue;
|
|
568
573
|
focused: boolean;
|
|
569
574
|
clearable: boolean;
|
|
@@ -603,6 +608,7 @@ declare const VTextField: {
|
|
|
603
608
|
style: vue.StyleValue;
|
|
604
609
|
disabled: boolean;
|
|
605
610
|
rounded: string | number | boolean;
|
|
611
|
+
tile: boolean;
|
|
606
612
|
clearIcon: IconValue;
|
|
607
613
|
focused: boolean;
|
|
608
614
|
centerAffix: boolean;
|
|
@@ -660,6 +666,7 @@ declare const VTextField: {
|
|
|
660
666
|
active: boolean;
|
|
661
667
|
style: vue.StyleValue;
|
|
662
668
|
disabled: boolean;
|
|
669
|
+
tile: boolean;
|
|
663
670
|
clearIcon: IconValue;
|
|
664
671
|
focused: boolean;
|
|
665
672
|
clearable: boolean;
|
|
@@ -690,7 +697,7 @@ declare const VTextField: {
|
|
|
690
697
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
691
698
|
modelValue?: unknown;
|
|
692
699
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
693
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
700
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
694
701
|
'click:control': (e: MouseEvent) => true;
|
|
695
702
|
'mousedown:control': (e: MouseEvent) => true;
|
|
696
703
|
'update:focused': (focused: boolean) => true;
|
|
@@ -708,6 +715,7 @@ declare const VTextField: {
|
|
|
708
715
|
disabled: boolean;
|
|
709
716
|
readonly: boolean | null;
|
|
710
717
|
messages: string | readonly string[];
|
|
718
|
+
tile: boolean;
|
|
711
719
|
density: Density;
|
|
712
720
|
clearIcon: IconValue;
|
|
713
721
|
focused: boolean;
|
|
@@ -823,6 +831,7 @@ declare const VTextField: {
|
|
|
823
831
|
readonly: boolean | null;
|
|
824
832
|
messages: string | readonly string[];
|
|
825
833
|
rounded: string | number | boolean;
|
|
834
|
+
tile: boolean;
|
|
826
835
|
density: Density;
|
|
827
836
|
clearIcon: IconValue;
|
|
828
837
|
focused: boolean;
|
|
@@ -895,6 +904,7 @@ declare const VTextField: {
|
|
|
895
904
|
disabled: boolean;
|
|
896
905
|
readonly: boolean | null;
|
|
897
906
|
messages: string | readonly string[];
|
|
907
|
+
tile: boolean;
|
|
898
908
|
density: Density;
|
|
899
909
|
clearIcon: IconValue;
|
|
900
910
|
focused: boolean;
|
|
@@ -1237,6 +1247,7 @@ declare const VTextField: {
|
|
|
1237
1247
|
style: vue.StyleValue;
|
|
1238
1248
|
disabled: boolean;
|
|
1239
1249
|
rounded: string | number | boolean;
|
|
1250
|
+
tile: boolean;
|
|
1240
1251
|
clearIcon: IconValue;
|
|
1241
1252
|
focused: boolean;
|
|
1242
1253
|
centerAffix: boolean;
|
|
@@ -1252,6 +1263,7 @@ declare const VTextField: {
|
|
|
1252
1263
|
active: boolean;
|
|
1253
1264
|
style: vue.StyleValue;
|
|
1254
1265
|
disabled: boolean;
|
|
1266
|
+
tile: boolean;
|
|
1255
1267
|
clearIcon: IconValue;
|
|
1256
1268
|
focused: boolean;
|
|
1257
1269
|
clearable: boolean;
|
|
@@ -1282,6 +1294,7 @@ declare const VTextField: {
|
|
|
1282
1294
|
active: boolean;
|
|
1283
1295
|
style: vue.StyleValue;
|
|
1284
1296
|
disabled: boolean;
|
|
1297
|
+
tile: boolean;
|
|
1285
1298
|
clearIcon: IconValue;
|
|
1286
1299
|
focused: boolean;
|
|
1287
1300
|
clearable: boolean;
|
|
@@ -1307,7 +1320,7 @@ declare const VTextField: {
|
|
|
1307
1320
|
centerAffix?: boolean | undefined;
|
|
1308
1321
|
} & {
|
|
1309
1322
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1310
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1323
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1311
1324
|
$attrs: {
|
|
1312
1325
|
[x: string]: unknown;
|
|
1313
1326
|
};
|
|
@@ -1349,6 +1362,7 @@ declare const VTextField: {
|
|
|
1349
1362
|
active: boolean;
|
|
1350
1363
|
style: vue.StyleValue;
|
|
1351
1364
|
disabled: boolean;
|
|
1365
|
+
tile: boolean;
|
|
1352
1366
|
clearIcon: IconValue;
|
|
1353
1367
|
focused: boolean;
|
|
1354
1368
|
clearable: boolean;
|
|
@@ -1388,6 +1402,7 @@ declare const VTextField: {
|
|
|
1388
1402
|
style: vue.StyleValue;
|
|
1389
1403
|
disabled: boolean;
|
|
1390
1404
|
rounded: string | number | boolean;
|
|
1405
|
+
tile: boolean;
|
|
1391
1406
|
clearIcon: IconValue;
|
|
1392
1407
|
focused: boolean;
|
|
1393
1408
|
centerAffix: boolean;
|
|
@@ -1445,6 +1460,7 @@ declare const VTextField: {
|
|
|
1445
1460
|
active: boolean;
|
|
1446
1461
|
style: vue.StyleValue;
|
|
1447
1462
|
disabled: boolean;
|
|
1463
|
+
tile: boolean;
|
|
1448
1464
|
clearIcon: IconValue;
|
|
1449
1465
|
focused: boolean;
|
|
1450
1466
|
clearable: boolean;
|
|
@@ -1475,7 +1491,7 @@ declare const VTextField: {
|
|
|
1475
1491
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
1476
1492
|
modelValue?: unknown;
|
|
1477
1493
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
1478
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, {}, {}, {}, {
|
|
1494
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, {}, {}, {}, {
|
|
1479
1495
|
flat: boolean;
|
|
1480
1496
|
reverse: boolean;
|
|
1481
1497
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
|
@@ -1489,6 +1505,7 @@ declare const VTextField: {
|
|
|
1489
1505
|
readonly: boolean | null;
|
|
1490
1506
|
messages: string | readonly string[];
|
|
1491
1507
|
rounded: string | number | boolean;
|
|
1508
|
+
tile: boolean;
|
|
1492
1509
|
density: Density;
|
|
1493
1510
|
clearIcon: IconValue;
|
|
1494
1511
|
focused: boolean;
|
|
@@ -1521,6 +1538,7 @@ declare const VTextField: {
|
|
|
1521
1538
|
disabled: boolean;
|
|
1522
1539
|
readonly: boolean | null;
|
|
1523
1540
|
messages: string | readonly string[];
|
|
1541
|
+
tile: boolean;
|
|
1524
1542
|
density: Density;
|
|
1525
1543
|
clearIcon: IconValue;
|
|
1526
1544
|
focused: boolean;
|
|
@@ -1863,6 +1881,7 @@ declare const VTextField: {
|
|
|
1863
1881
|
style: vue.StyleValue;
|
|
1864
1882
|
disabled: boolean;
|
|
1865
1883
|
rounded: string | number | boolean;
|
|
1884
|
+
tile: boolean;
|
|
1866
1885
|
clearIcon: IconValue;
|
|
1867
1886
|
focused: boolean;
|
|
1868
1887
|
centerAffix: boolean;
|
|
@@ -1878,6 +1897,7 @@ declare const VTextField: {
|
|
|
1878
1897
|
active: boolean;
|
|
1879
1898
|
style: vue.StyleValue;
|
|
1880
1899
|
disabled: boolean;
|
|
1900
|
+
tile: boolean;
|
|
1881
1901
|
clearIcon: IconValue;
|
|
1882
1902
|
focused: boolean;
|
|
1883
1903
|
clearable: boolean;
|
|
@@ -1908,6 +1928,7 @@ declare const VTextField: {
|
|
|
1908
1928
|
active: boolean;
|
|
1909
1929
|
style: vue.StyleValue;
|
|
1910
1930
|
disabled: boolean;
|
|
1931
|
+
tile: boolean;
|
|
1911
1932
|
clearIcon: IconValue;
|
|
1912
1933
|
focused: boolean;
|
|
1913
1934
|
clearable: boolean;
|
|
@@ -1933,7 +1954,7 @@ declare const VTextField: {
|
|
|
1933
1954
|
centerAffix?: boolean | undefined;
|
|
1934
1955
|
} & {
|
|
1935
1956
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1936
|
-
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1957
|
+
}, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1937
1958
|
$attrs: {
|
|
1938
1959
|
[x: string]: unknown;
|
|
1939
1960
|
};
|
|
@@ -1975,6 +1996,7 @@ declare const VTextField: {
|
|
|
1975
1996
|
active: boolean;
|
|
1976
1997
|
style: vue.StyleValue;
|
|
1977
1998
|
disabled: boolean;
|
|
1999
|
+
tile: boolean;
|
|
1978
2000
|
clearIcon: IconValue;
|
|
1979
2001
|
focused: boolean;
|
|
1980
2002
|
clearable: boolean;
|
|
@@ -2014,6 +2036,7 @@ declare const VTextField: {
|
|
|
2014
2036
|
style: vue.StyleValue;
|
|
2015
2037
|
disabled: boolean;
|
|
2016
2038
|
rounded: string | number | boolean;
|
|
2039
|
+
tile: boolean;
|
|
2017
2040
|
clearIcon: IconValue;
|
|
2018
2041
|
focused: boolean;
|
|
2019
2042
|
centerAffix: boolean;
|
|
@@ -2071,6 +2094,7 @@ declare const VTextField: {
|
|
|
2071
2094
|
active: boolean;
|
|
2072
2095
|
style: vue.StyleValue;
|
|
2073
2096
|
disabled: boolean;
|
|
2097
|
+
tile: boolean;
|
|
2074
2098
|
clearIcon: IconValue;
|
|
2075
2099
|
focused: boolean;
|
|
2076
2100
|
clearable: boolean;
|
|
@@ -2101,7 +2125,7 @@ declare const VTextField: {
|
|
|
2101
2125
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
2102
2126
|
modelValue?: unknown;
|
|
2103
2127
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2104
|
-
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2128
|
+
}, VFieldSlots>, "key" | "id" | "color" | "loading" | "label" | "class" | "ref" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "v-slot:loader" | "baseColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "rounded" | "tile" | "clearIcon" | "focused" | "centerAffix" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
2105
2129
|
'click:control': (e: MouseEvent) => true;
|
|
2106
2130
|
'mousedown:control': (e: MouseEvent) => true;
|
|
2107
2131
|
'update:focused': (focused: boolean) => true;
|
|
@@ -2120,6 +2144,7 @@ declare const VTextField: {
|
|
|
2120
2144
|
readonly: boolean | null;
|
|
2121
2145
|
messages: string | readonly string[];
|
|
2122
2146
|
rounded: string | number | boolean;
|
|
2147
|
+
tile: boolean;
|
|
2123
2148
|
density: Density;
|
|
2124
2149
|
clearIcon: IconValue;
|
|
2125
2150
|
focused: boolean;
|
|
@@ -2178,6 +2203,7 @@ declare const VTextField: {
|
|
|
2178
2203
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2179
2204
|
default: undefined;
|
|
2180
2205
|
};
|
|
2206
|
+
tile: BooleanConstructor;
|
|
2181
2207
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
2182
2208
|
class: PropType<any>;
|
|
2183
2209
|
style: {
|
|
@@ -2283,6 +2309,7 @@ declare const VTextField: {
|
|
|
2283
2309
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2284
2310
|
default: undefined;
|
|
2285
2311
|
};
|
|
2312
|
+
tile: BooleanConstructor;
|
|
2286
2313
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
2287
2314
|
class: PropType<any>;
|
|
2288
2315
|
style: {
|
|
@@ -95,6 +95,7 @@ declare const VTextarea: {
|
|
|
95
95
|
disabled: boolean;
|
|
96
96
|
readonly: boolean | null;
|
|
97
97
|
messages: string | readonly string[];
|
|
98
|
+
tile: boolean;
|
|
98
99
|
density: Density;
|
|
99
100
|
clearIcon: IconValue;
|
|
100
101
|
focused: boolean;
|
|
@@ -442,6 +443,7 @@ declare const VTextarea: {
|
|
|
442
443
|
disabled: boolean;
|
|
443
444
|
readonly: boolean | null;
|
|
444
445
|
messages: string | readonly string[];
|
|
446
|
+
tile: boolean;
|
|
445
447
|
density: Density;
|
|
446
448
|
clearIcon: IconValue;
|
|
447
449
|
focused: boolean;
|
|
@@ -556,6 +558,7 @@ declare const VTextarea: {
|
|
|
556
558
|
readonly: boolean | null;
|
|
557
559
|
messages: string | readonly string[];
|
|
558
560
|
rounded: string | number | boolean;
|
|
561
|
+
tile: boolean;
|
|
559
562
|
density: Density;
|
|
560
563
|
clearIcon: IconValue;
|
|
561
564
|
focused: boolean;
|
|
@@ -627,6 +630,7 @@ declare const VTextarea: {
|
|
|
627
630
|
disabled: boolean;
|
|
628
631
|
readonly: boolean | null;
|
|
629
632
|
messages: string | readonly string[];
|
|
633
|
+
tile: boolean;
|
|
630
634
|
density: Density;
|
|
631
635
|
clearIcon: IconValue;
|
|
632
636
|
focused: boolean;
|
|
@@ -970,6 +974,7 @@ declare const VTextarea: {
|
|
|
970
974
|
readonly: boolean | null;
|
|
971
975
|
messages: string | readonly string[];
|
|
972
976
|
rounded: string | number | boolean;
|
|
977
|
+
tile: boolean;
|
|
973
978
|
density: Density;
|
|
974
979
|
clearIcon: IconValue;
|
|
975
980
|
focused: boolean;
|
|
@@ -1004,6 +1009,7 @@ declare const VTextarea: {
|
|
|
1004
1009
|
disabled: boolean;
|
|
1005
1010
|
readonly: boolean | null;
|
|
1006
1011
|
messages: string | readonly string[];
|
|
1012
|
+
tile: boolean;
|
|
1007
1013
|
density: Density;
|
|
1008
1014
|
clearIcon: IconValue;
|
|
1009
1015
|
focused: boolean;
|
|
@@ -1352,6 +1358,7 @@ declare const VTextarea: {
|
|
|
1352
1358
|
readonly: boolean | null;
|
|
1353
1359
|
messages: string | readonly string[];
|
|
1354
1360
|
rounded: string | number | boolean;
|
|
1361
|
+
tile: boolean;
|
|
1355
1362
|
density: Density;
|
|
1356
1363
|
clearIcon: IconValue;
|
|
1357
1364
|
focused: boolean;
|
|
@@ -1410,6 +1417,7 @@ declare const VTextarea: {
|
|
|
1410
1417
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1411
1418
|
default: undefined;
|
|
1412
1419
|
};
|
|
1420
|
+
tile: BooleanConstructor;
|
|
1413
1421
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
1414
1422
|
class: PropType<any>;
|
|
1415
1423
|
style: {
|
|
@@ -1521,6 +1529,7 @@ declare const VTextarea: {
|
|
|
1521
1529
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
1522
1530
|
default: undefined;
|
|
1523
1531
|
};
|
|
1532
|
+
tile: BooleanConstructor;
|
|
1524
1533
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
1525
1534
|
class: PropType<any>;
|
|
1526
1535
|
style: {
|